diff options
| author | Simon Rettberg | 2015-08-12 19:09:45 +0200 |
|---|---|---|
| committer | Simon Rettberg | 2015-08-12 19:09:45 +0200 |
| commit | d359f855ed6d827ba9ce88889926dbb3ef9204d2 (patch) | |
| tree | 2927a709fed5521b2604990992187088b52430ff | |
| parent | Merge branch 'v1.1' of git.openslx.org:openslx-ng/tutor-module into v1.1 (diff) | |
| download | tutor-module-d359f855ed6d827ba9ce88889926dbb3ef9204d2.tar.gz tutor-module-d359f855ed6d827ba9ce88889926dbb3ef9204d2.tar.xz tutor-module-d359f855ed6d827ba9ce88889926dbb3ef9204d2.zip | |
[client] Extended description text for main menu
| -rw-r--r-- | dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/MainMenuWindowLayout.java | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/MainMenuWindowLayout.java b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/MainMenuWindowLayout.java index c1e57e8b..c2172aea 100644 --- a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/MainMenuWindowLayout.java +++ b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/MainMenuWindowLayout.java @@ -37,10 +37,18 @@ import org.openslx.dozmod.util.ResourceLoader; @SuppressWarnings("serial") public abstract class MainMenuWindowLayout extends CompositePage { // text for info for the vms selection - protected String vmInfo = "... Infotext VMs..."; + protected String vmInfo = "<html><b>Übersicht Virtuelle Maschinen</b><br>" + + "Zur Übersicht über die verfügbaren Virtuellen Maschinen wechseln. Hier können Sie<br><br>" + + "1) Veranstaltungen auf Basis einer Virtuellen Maschine erstellen<br>" + + "2) Neue Virtuelle Maschinen hochladen<br>" + + "3) Virtuelle Maschinen herunterladen<br>" + + "4) Virtuelle Maschinen bearbeiten und löschen</html>"; // text for the info for the lecture selection - protected String lecturesInfo = "Infotext Veranstaltungen."; + protected String lecturesInfo = "<html><b>Übersicht Veranstaltungen</b><br>" + + "Zur Übersicht über die verfügbaren Veranstaltugen wechseln Hier können Sie<br><br>" + + "1) Veranstaltungen bearbeiten oder löschen<br>" + + "2) Zu Veranstaltungen gehörende Virtuelle Maschinen herunterladen</html>"; // buttons protected JButton vmButton; |
