diff options
author | Nickolay V. Shmyrev <nshmyrev@src.gnome.org> | 2007-01-27 07:53:57 +0800 |
---|---|---|
committer | Nickolay V. Shmyrev <nshmyrev@src.gnome.org> | 2007-01-27 07:53:57 +0800 |
commit | 44eb71780ac5a7e72ba9106c20eef913b29abd05 (patch) | |
tree | b6360a88d2b2d6ce69e376d9350a917f0754079e /plugins/startup-wizard | |
parent | fcfe102b0c0340918e013b7f3cb39fb5560a4fef (diff) | |
download | gsoc2013-evolution-44eb71780ac5a7e72ba9106c20eef913b29abd05.tar.gz gsoc2013-evolution-44eb71780ac5a7e72ba9106c20eef913b29abd05.tar.zst gsoc2013-evolution-44eb71780ac5a7e72ba9106c20eef913b29abd05.zip |
Mark strings as translatable. See bug #399381 for details.
svn path=/trunk/; revision=33152
Diffstat (limited to 'plugins/startup-wizard')
-rw-r--r-- | plugins/startup-wizard/ChangeLog | 6 | ||||
-rw-r--r-- | plugins/startup-wizard/startup-wizard.c | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/plugins/startup-wizard/ChangeLog b/plugins/startup-wizard/ChangeLog index cf72fe35cb..92455b55c6 100644 --- a/plugins/startup-wizard/ChangeLog +++ b/plugins/startup-wizard/ChangeLog @@ -1,3 +1,9 @@ +2007-01-27 Nickolay V. Shmyrev <nshmyrev@yandex.ru> + + * startup-wizard.c: (startup_wizard_timezone_page), + (startup_wizard_importer_page): + mark strings as translatable. See bug #399381 for details. + 2006-06-14 Srinivasa Ragavan <sragavan@novell.com> * startup-wizard.c: (startup_wizard_timezone_page): Pass the default diff --git a/plugins/startup-wizard/startup-wizard.c b/plugins/startup-wizard/startup-wizard.c index eceb683c2c..fd05318674 100644 --- a/plugins/startup-wizard/startup-wizard.c +++ b/plugins/startup-wizard/startup-wizard.c @@ -107,7 +107,7 @@ startup_wizard_timezone_page (EPlugin *ep, EConfigHookItemFactoryData *hook_data etd = e_timezone_dialog_new (); g_object_set_data (G_OBJECT (hook_data->config), IMPORT_TIMEZONE_DIALOG, etd); - page = gnome_druid_page_standard_new_with_vals ("Timezone", NULL, NULL); + page = gnome_druid_page_standard_new_with_vals (_("Timezone"), NULL, NULL); e_timezone_dialog_reparent (etd, GNOME_DRUID_PAGE_STANDARD (page)->vbox); e_timezone_dialog_set_timezone (etd, NULL); @@ -133,7 +133,7 @@ startup_wizard_importer_page (EPlugin *ep, EConfigHookItemFactoryData *hook_data if (import_importers == NULL) return NULL; - page = gnome_druid_page_standard_new_with_vals ("Importing files", NULL, NULL); + page = gnome_druid_page_standard_new_with_vals (_("Importing files"), NULL, NULL); label = gtk_label_new (_("Please select the information that you would like to import:")); gtk_box_pack_start (GTK_BOX (GNOME_DRUID_PAGE_STANDARD (page)->vbox), label, FALSE, FALSE, 3); |