Complete.Org: Mailing Lists: Archives: freeciv-dev: October 2004:
[Freeciv-Dev] (PR#10532) another short i18n patch
Home

[Freeciv-Dev] (PR#10532) another short i18n patch

[Top] [All Lists]

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index] [Thread Index]
To: undisclosed-recipients: ;
Subject: [Freeciv-Dev] (PR#10532) another short i18n patch
From: "Dmitriy Genzel" <dg@xxxxxxxxxxxx>
Date: Thu, 14 Oct 2004 16:12:10 -0700
Reply-to: rt@xxxxxxxxxxx

<URL: http://rt.freeciv.org/Ticket/Display.html?id=10532 >

Two entries to be i18n'ed. The patch for both branches is attached.

Dmitriy Genzel
--- client/gui-gtk-2.0/gui_main.c.old   2004-10-14 16:11:21.000000000 -0400
+++ client/gui-gtk-2.0/gui_main.c       2004-10-14 16:04:40.000000000 -0400
@@ -900,7 +900,7 @@
   gtk_widget_set_size_request(sw, 600, 100);
   gtk_box_pack_start(GTK_BOX(vbox), sw, TRUE, TRUE, 0);
 
-  label = gtk_label_new_with_mnemonic("_Chat");
+  label = gtk_label_new_with_mnemonic(_("_Chat"));
   gtk_notebook_append_page(GTK_NOTEBOOK(notebook), vbox, label);
 
   text = gtk_text_view_new();
@@ -932,7 +932,7 @@
   g_signal_connect(inputline, "focus_out_event",
                   G_CALLBACK(inputline_focus), GINT_TO_POINTER(0));
 
-  label = gtk_label_new_with_mnemonic("_Messages");
+  label = gtk_label_new_with_mnemonic(_("_Messages"));
   messages = create_meswin_area();
   gtk_notebook_append_page(GTK_NOTEBOOK(notebook), messages, label);
 

[Prev in Thread] Current Thread [Next in Thread]
  • [Freeciv-Dev] (PR#10532) another short i18n patch, Dmitriy Genzel <=