r422 - in trunk: . scripts

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Mon Jan 14 21:11:58 EST 2008


Author: icculus
Date: 2008-01-14 21:11:58 -0500 (Mon, 14 Jan 2008)
New Revision: 422

Modified:
   trunk/gui_gtkplus2.c
   trunk/scripts/localization.lua
Log:
Fixed some missing localizations.


Modified: trunk/gui_gtkplus2.c
===================================================================
--- trunk/gui_gtkplus2.c	2008-01-15 01:16:32 UTC (rev 421)
+++ trunk/gui_gtkplus2.c	2008-01-15 02:11:58 UTC (rev 422)
@@ -501,7 +501,7 @@
     gtk_widget_show(box);
 
     hbox = gtk_hbox_new (FALSE, 6);
-    widget = gtk_label_new("Folder:");
+    widget = gtk_label_new(entry->_("Folder:"));
     gtk_widget_show(widget);
     gtk_box_pack_start(GTK_BOX(hbox), widget, FALSE, TRUE, 0);
     gtk_label_set_justify(GTK_LABEL(widget), GTK_JUSTIFY_CENTER);
@@ -754,7 +754,7 @@
         gtk_combo_box_prepend_text(combo, recommends[i]);
     gtk_combo_box_set_active (combo, 0);
 
-    *command = run_wizard(entry->_("Installation location"), PAGE_DESTINATION,
+    *command = run_wizard(entry->_("Destination"), PAGE_DESTINATION,
                           can_back, can_fwd);
 
     str = gtk_combo_box_get_active_text(combo);

Modified: trunk/scripts/localization.lua
===================================================================
--- trunk/scripts/localization.lua	2008-01-15 01:16:32 UTC (rev 421)
+++ trunk/scripts/localization.lua	2008-01-15 02:11:58 UTC (rev 422)
@@ -519,6 +519,12 @@
         nb = "Kunne ikke slette!",
     };
 
+    -- This is a label displayed next to the text entry in the GTK+ UI where
+    --  the user specifies the installation destination (folder/directory) in
+    --  the filesystem.
+    ["Folder:"] = {
+    };
+
     -- This is a window title when user is selecting a path to install files.
     ["Destination"] = {
         de = "Ziel",




More information about the mojosetup-commits mailing list