diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-03-28 06:48:46 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-03-28 06:48:46 +0800 |
commit | 532249a3e5fc8d923c3ad2188f658a7321b8ee95 (patch) | |
tree | 63adc37f33efc410d84c9b52c85661f0a57626c0 | |
parent | 30bcf40a8ee6f8bf2e0ac0fecfbe616670e3348f (diff) | |
parent | ebf898a9fc2f3b025533b27c9d835d57b089e84b (diff) | |
download | gsoc2013-evolution-532249a3e5fc8d923c3ad2188f658a7321b8ee95.tar.gz gsoc2013-evolution-532249a3e5fc8d923c3ad2188f658a7321b8ee95.tar.zst gsoc2013-evolution-532249a3e5fc8d923c3ad2188f658a7321b8ee95.zip |
Merge branch 'string-changes-2.31'
-rw-r--r-- | calendar/gui/dialogs/cal-prefs-dialog.c | 4 | ||||
-rw-r--r-- | mail/mail-config.ui | 2 | ||||
-rw-r--r-- | modules/addressbook/autocompletion-config.c | 2 | ||||
-rw-r--r-- | plugins/bbdb/bbdb.c | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/calendar/gui/dialogs/cal-prefs-dialog.c b/calendar/gui/dialogs/cal-prefs-dialog.c index 5baf22306c..6d204e642b 100644 --- a/calendar/gui/dialogs/cal-prefs-dialog.c +++ b/calendar/gui/dialogs/cal-prefs-dialog.c @@ -782,8 +782,8 @@ calendar_prefs_dialog_construct (CalendarPrefsDialog *prefs, /* date/time format */ table = e_builder_get_widget (prefs->builder, "datetime_format_table"); - e_datetime_format_add_setup_widget (table, 0, "calendar", "table", DTFormatKindDateTime, _("Time and date:")); - e_datetime_format_add_setup_widget (table, 1, "calendar", "table", DTFormatKindDate, _("Date only:")); + e_datetime_format_add_setup_widget (table, 0, "calendar", "table", DTFormatKindDateTime, _("Ti_me and date:")); + e_datetime_format_add_setup_widget (table, 1, "calendar", "table", DTFormatKindDate, _("_Date only:")); show_config (prefs); /* FIXME: weakref? */ diff --git a/mail/mail-config.ui b/mail/mail-config.ui index 55f5ee6227..663b34616f 100644 --- a/mail/mail-config.ui +++ b/mail/mail-config.ui @@ -3667,7 +3667,7 @@ For example: "Work" or "Personal"</property> <object class="GtkLabel" id="label524"> <property name="visible">True</property> <property name="xalign">0</property> - <property name="label" translatable="yes">Displayed Message _Headers</property> + <property name="label" translatable="yes">Displayed Message Headers</property> <property name="use_underline">True</property> <property name="mnemonic_widget">txtHeaders</property> <attributes> diff --git a/modules/addressbook/autocompletion-config.c b/modules/addressbook/autocompletion-config.c index 6b51427be1..99a8b9b8ae 100644 --- a/modules/addressbook/autocompletion-config.c +++ b/modules/addressbook/autocompletion-config.c @@ -156,7 +156,7 @@ autocompletion_config_new (EShell *shell) gtk_box_pack_start (GTK_BOX (itembox), widget, TRUE, TRUE, 0); e_datetime_format_add_setup_widget ( widget, 0, "addressbook", "table", - DTFormatKindDateTime, _("Table column:")); + DTFormatKindDateTime, _("_Table column:")); gtk_widget_show (widget); itembox = add_section (vbox, _("Autocompletion"), TRUE); diff --git a/plugins/bbdb/bbdb.c b/plugins/bbdb/bbdb.c index e3666f94de..2c88afd787 100644 --- a/plugins/bbdb/bbdb.c +++ b/plugins/bbdb/bbdb.c @@ -743,7 +743,7 @@ bbdb_page_factory (EPlugin *ep, EConfigHookItemFactoryData *hook_data) gtk_box_pack_start (GTK_BOX (hbox), inner_vbox, FALSE, FALSE, 0); /* Enable Gaim Checkbox */ - check_gaim = gtk_check_button_new_with_mnemonic (_("Synchronize contact info and images from Pidgin buddy list")); + check_gaim = gtk_check_button_new_with_mnemonic (_("_Synchronize contact info and images from Pidgin buddy list")); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (check_gaim), gconf_client_get_bool (target->gconf, GCONF_KEY_ENABLE_GAIM, NULL)); g_signal_connect (GTK_TOGGLE_BUTTON (check_gaim), "toggled", G_CALLBACK (enable_gaim_toggled_cb), stuff); gtk_box_pack_start (GTK_BOX (inner_vbox), check_gaim, FALSE, FALSE, 0); |