summaryrefslogtreecommitdiffstats
path: root/dozentenmodul/src/main/java/org/openslx/dozmod
diff options
context:
space:
mode:
authorralph isenmann2021-03-17 15:55:44 +0100
committerralph isenmann2021-03-17 15:55:51 +0100
commit285709df9ae24dcacec23e25c30060b1caea242a (patch)
tree244b37a82e0b102b61b8a9c3d582c3629cd3208d /dozentenmodul/src/main/java/org/openslx/dozmod
parent[client] Wording No2 (diff)
downloadtutor-module-285709df9ae24dcacec23e25c30060b1caea242a.tar.gz
tutor-module-285709df9ae24dcacec23e25c30060b1caea242a.tar.xz
tutor-module-285709df9ae24dcacec23e25c30060b1caea242a.zip
[client] Wording Container
Diffstat (limited to 'dozentenmodul/src/main/java/org/openslx/dozmod')
-rw-r--r--dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/layout/ContainerUploadPageLayout.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/layout/ContainerUploadPageLayout.java b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/layout/ContainerUploadPageLayout.java
index ada3324a..5fcc6dcd 100644
--- a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/layout/ContainerUploadPageLayout.java
+++ b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/layout/ContainerUploadPageLayout.java
@@ -81,11 +81,15 @@ public class ContainerUploadPageLayout extends WizardPage {
grid.add(txtImageName, 2, 1).fill(true, false).expand(true, false);
grid.nextRow();
- QLabel lblContainerImageFile = new QLabel("Prebuild Container Image");
+ QLabel lblContainerImageFile = new QLabel(
+ I18n.PAGE_LAYOUT.getString("ContainerUploadPage.ContainerImageFile.label"));
lblContainerImageFile.setToolTipText(
I18n.PAGE_LAYOUT.getString("ContainerUploadPage.ContainerImageFile.ToolTipText"));
txtContainerImageFile = new JTextField();
txtContainerImageFile.setEnabled(false);
+ txtContainerImageFile.setToolTipText(
+ I18n.PAGE_LAYOUT.getString("ContainerUploadPage.ContainerImageFile.ToolTipText")
+ );
grid.add(lblContainerImageFile);
grid.add(txtContainerImageFile, 2).fill(true, false).expand(true, false);
grid.nextRow();