summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorralph isenmann2020-11-05 16:15:52 +0100
committerralph isenmann2020-11-05 16:15:52 +0100
commit3a9851421d23731bf98f5611b0a459a92748cfe2 (patch)
tree6733ba4969f31b4b1eaf84b325a7f5a195db7fcb
parent[client] refactoring (diff)
downloadtutor-module-3a9851421d23731bf98f5611b0a459a92748cfe2.tar.gz
tutor-module-3a9851421d23731bf98f5611b0a459a92748cfe2.tar.xz
tutor-module-3a9851421d23731bf98f5611b0a459a92748cfe2.zip
[client] change hint text
-rw-r--r--dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/layout/ContainerUploadPageLayout.java7
1 files changed, 5 insertions, 2 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 928c7c3f..799a6ccc 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
@@ -92,7 +92,7 @@ public class ContainerUploadPageLayout extends WizardPage {
grid.add(txtContainerRun, 2, 1).fill(true, false).expand(true, false);
grid.nextRow();
- //grid.add(Box.createVerticalGlue(), 3).expand(true, true);
+ grid.add(Box.createVerticalGlue(), 3).expand(true, true);
txtInfoText = new JTextArea();
txtInfoText.setBorder(BorderFactory.createTitledBorder("Hinweis"));
txtInfoText.setLineWrap(true);
@@ -100,7 +100,10 @@ public class ContainerUploadPageLayout extends WizardPage {
txtInfoText.setEditable(false);
txtInfoText.setFocusable(false);
txtInfoText.setOpaque(false);
- txtInfoText.setText("Container Info Text \n Container Info Text \n Container Info Text \n");
+ txtInfoText.setText("In dieser Maske sind alle Infromationen zur Definition eines Container Images anzugeben. "
+ + "Weitere Informationen zur Verwendung von Contanier in bwLehrpool finden Sie unter "
+ + "https://gitlab.com/risenman/bwlehrpool-vmchooser-docker/");
+
grid.add(txtInfoText, 3).fill(true, false).expand(true, false);
grid.nextRow();