[Gpa-commits] r913 - trunk/src
scm-commit@wald.intevation.org
scm-commit at wald.intevation.org
Thu Dec 4 16:44:47 CET 2008
Author: marcus
Date: 2008-12-04 16:44:45 +0100 (Thu, 04 Dec 2008)
New Revision: 913
Modified:
trunk/src/ChangeLog
trunk/src/clipboard.c
trunk/src/fileman.c
trunk/src/helpmenu.c
trunk/src/keyring.c
trunk/src/recipientdlg.c
Log:
2008-12-04 Marcus Brinkmann <marcus at g10code.com>
* helpmenu.c (gpa_help_about): Add translator-credits.
* recipientdlg.c (recplist_popup_menu_new),
fileman.c (fileman_action_new),
keyring.c (keyring_editor_action_new),
clipboard.c (clipboard_action_new): Initialize translation domain
for ACTION_GROUP.
Submitted by gozer at progrock.com
Modified: trunk/src/ChangeLog
===================================================================
--- trunk/src/ChangeLog 2008-10-31 16:15:43 UTC (rev 912)
+++ trunk/src/ChangeLog 2008-12-04 15:44:45 UTC (rev 913)
@@ -1,3 +1,14 @@
+2008-12-04 Marcus Brinkmann <marcus at g10code.com>
+
+ * helpmenu.c (gpa_help_about): Add translator-credits.
+ * recipientdlg.c (recplist_popup_menu_new),
+ fileman.c (fileman_action_new),
+ keyring.c (keyring_editor_action_new),
+ clipboard.c (clipboard_action_new): Initialize translation domain
+ for ACTION_GROUP.
+
+ Submitted by gozer at progrock.com
+
2008-10-31 Marcus Brinkmann <marcus at g10code.com>
* server.c (cmd_sender): Add missing label.
Modified: trunk/src/clipboard.c
===================================================================
--- trunk/src/clipboard.c 2008-10-31 16:15:43 UTC (rev 912)
+++ trunk/src/clipboard.c 2008-12-04 15:44:45 UTC (rev 913)
@@ -874,6 +874,7 @@
GError *error;
action_group = gtk_action_group_new ("MenuActions");
+ gtk_action_group_set_translation_domain (action_group, PACKAGE);
gtk_action_group_add_actions (action_group, entries, G_N_ELEMENTS (entries),
clipboard);
gtk_action_group_add_actions (action_group, gpa_help_menu_action_entries,
Modified: trunk/src/fileman.c
===================================================================
--- trunk/src/fileman.c 2008-10-31 16:15:43 UTC (rev 912)
+++ trunk/src/fileman.c 2008-12-04 15:44:45 UTC (rev 913)
@@ -597,6 +597,7 @@
GError *error;
action_group = gtk_action_group_new ("MenuActions");
+ gtk_action_group_set_translation_domain (action_group, PACKAGE);
gtk_action_group_add_actions (action_group, entries, G_N_ELEMENTS (entries),
fileman);
gtk_action_group_add_actions (action_group, gpa_help_menu_action_entries,
Modified: trunk/src/helpmenu.c
===================================================================
--- trunk/src/helpmenu.c 2008-10-31 16:15:43 UTC (rev 912)
+++ trunk/src/helpmenu.c 2008-12-04 15:44:45 UTC (rev 913)
@@ -90,6 +90,9 @@
"authors", authors,
"license", get_gpl_text (),
"logo", logo,
+ /* TRANSLATORS: The translation of this string should
+ be your name and mail */
+ "translator-credits", _("translator-credits"),
NULL);
if (logo)
g_object_unref (logo);
Modified: trunk/src/keyring.c
===================================================================
--- trunk/src/keyring.c 2008-10-31 16:15:43 UTC (rev 912)
+++ trunk/src/keyring.c 2008-12-04 15:44:45 UTC (rev 913)
@@ -1030,6 +1030,7 @@
detailed = gpa_options_get_detailed_view (gpa_options_get_instance());
action_group = gtk_action_group_new ("MenuActions");
+ gtk_action_group_set_translation_domain (action_group, PACKAGE);
gtk_action_group_add_actions (action_group, entries, G_N_ELEMENTS (entries),
editor);
gtk_action_group_add_radio_actions (action_group, radio_entries,
Modified: trunk/src/recipientdlg.c
===================================================================
--- trunk/src/recipientdlg.c 2008-10-31 16:15:43 UTC (rev 912)
+++ trunk/src/recipientdlg.c 2008-12-04 15:44:45 UTC (rev 913)
@@ -844,6 +844,7 @@
GError *error;
action_group = gtk_action_group_new ("MenuActions");
+ gtk_action_group_set_translation_domain (action_group, PACKAGE);
gtk_action_group_add_actions (action_group, entries, G_N_ELEMENTS (entries),
dialog);
ui_manager = gtk_ui_manager_new ();
More information about the Gpa-commits
mailing list