summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--po/fr.po4
-rw-r--r--src/Main.cc12
2 files changed, 11 insertions, 5 deletions
diff --git a/po/fr.po b/po/fr.po
index 688e15b..dff75e5 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Baltisot 1.0.0\n"
-"POT-Creation-Date: 2001-11-14 18:16+0100\n"
+"POT-Creation-Date: 2001-11-26 00:57+0100\n"
"PO-Revision-Date: 2001-10-29 08:26GMT\n"
"Last-Translator: Nicolas Noble <nicolas@nobis-crew.org>\n"
"Language-Team: French <fr@li.org>\n"
@@ -40,6 +40,6 @@ msgstr "Plus d'octets à lire ou écrire"
msgid "Switching task in a non-tasked environnement"
msgstr "Basculement de tâche dans un environnement non multi-tâches"
-#: lib/Handle.cc:151
+#: lib/Handle.cc:148
msgid "Bare Handle - should not happend"
msgstr "Handle pur - ne devrait pas arriver"
diff --git a/src/Main.cc b/src/Main.cc
index 2398814..c396568 100644
--- a/src/Main.cc
+++ b/src/Main.cc
@@ -76,11 +76,17 @@ Action * a3 = new Message("Schéma EA",
"schemaea");
Action * a4 = new Form("Test de formulaire...", "menu4", "Rentrez des trucs...", Noms, Invites, Defaults, Lists, Descs, 3);
Action * a5 = new Confirm("Confirmation", "Oui ou non?", "menu5", 0, 0);
-Action * Liste[] = {a1, a2, a3, a4, a5, ad};
-String Labels[] = {"Action 1", "Action 2", "Action 3", "Action 4", "Action 5", "Action dynamique"};
+Action * java = new Message("Applet JAVA",
+"
+<applet CODE=\"/image/HelloSwingApplet.class\" WIDTH = 400 HEIGHT = 50 >
+</applet>
+", "java");
+
+Action * Liste[] = {a1, a2, a3, a4, a5, ad, java};
+String Labels[] = {"Action 1", "Action 2", "Action 3", "Action 4", "Action 5", "Action dynamique", "Essai de java"};
Action * buildmenu(void) {
- return new Menu("Menu Principal", "start", Labels, Liste, 6);
+ return new Menu("Menu Principal", "start", Labels, Liste, 7);
}
int main(int argc, char ** argv) {