From 44eb71780ac5a7e72ba9106c20eef913b29abd05 Mon Sep 17 00:00:00 2001 From: "Nickolay V. Shmyrev" Date: Fri, 26 Jan 2007 23:53:57 +0000 Subject: Mark strings as translatable. See bug #399381 for details. svn path=/trunk/; revision=33152 --- plugins/startup-wizard/ChangeLog | 6 ++++++ plugins/startup-wizard/startup-wizard.c | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) (limited to 'plugins/startup-wizard') 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 + + * 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 * 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); -- cgit