diff options
author | Takao Fujiwara <takao.fujiwara@sun.com> | 2009-01-09 23:26:20 +0800 |
---|---|---|
committer | Takao Fujiwara <fujiwarat@src.gnome.org> | 2009-01-09 23:26:20 +0800 |
commit | 538f13dd6e28f1463e3c30f1cef8783f5b9ec835 (patch) | |
tree | 81f3437de3a19970a0ae9cb3577443df79052a9f /plugins | |
parent | 607ce3802eabee692e55d89aacefd06390819e07 (diff) | |
download | gsoc2013-evolution-538f13dd6e28f1463e3c30f1cef8783f5b9ec835.tar.gz gsoc2013-evolution-538f13dd6e28f1463e3c30f1cef8783f5b9ec835.tar.zst gsoc2013-evolution-538f13dd6e28f1463e3c30f1cef8783f5b9ec835.zip |
Reviewed by Matthew Barnes <mbarnes@redhat.com>
2009-01-09 Takao Fujiwara <takao.fujiwara@sun.com>
Reviewed by Matthew Barnes <mbarnes@redhat.com>
** Fix for bug #567129
* apps_evolution_email_custom_header.schemas.in:
Add <default> tag in C locale to localize the value.
* email-custom-header.c (epech_setup_widgets):
Add gettext.
svn path=/trunk/; revision=37022
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/email-custom-header/ChangeLog | 11 | ||||
-rw-r--r-- | plugins/email-custom-header/apps_evolution_email_custom_header.schemas.in | 1 | ||||
-rw-r--r-- | plugins/email-custom-header/email-custom-header.c | 2 |
3 files changed, 13 insertions, 1 deletions
diff --git a/plugins/email-custom-header/ChangeLog b/plugins/email-custom-header/ChangeLog index 44bf5cb76b..20b2a9b3a4 100644 --- a/plugins/email-custom-header/ChangeLog +++ b/plugins/email-custom-header/ChangeLog @@ -1,3 +1,14 @@ +2009-01-09 Takao Fujiwara <takao.fujiwara@sun.com> + + Reviewed by Matthew Barnes <mbarnes@redhat.com> + + ** Fix for bug #567129 + + * apps_evolution_email_custom_header.schemas.in: + Add <default> tag in C locale to localize the value. + * email-custom-header.c (epech_setup_widgets): + Add gettext. + 2008-09-12 Sankar P <psankar@novell.com> License Changes diff --git a/plugins/email-custom-header/apps_evolution_email_custom_header.schemas.in b/plugins/email-custom-header/apps_evolution_email_custom_header.schemas.in index cb3bd97ce8..1648026d54 100644 --- a/plugins/email-custom-header/apps_evolution_email_custom_header.schemas.in +++ b/plugins/email-custom-header/apps_evolution_email_custom_header.schemas.in @@ -8,6 +8,7 @@ <list_type>string</list_type> <default>[Security=Personal;Unclassified;Protected;InConfidence;Secret;Topsecret]</default> <locale name="C"> + <default><!-- Translators: '=' and ';' should not be changed but ASCII -->[Security=Personal;Unclassified;Protected;InConfidence;Secret;Topsecret]</default> <short>List of Custom Headers</short> <long>The key specifies the list of custom headers that you can add to an outgoing message. The format for specifying a Header and Header value is: Name of the custom header followed by "=" and the values separated by ";"</long> </locale> diff --git a/plugins/email-custom-header/email-custom-header.c b/plugins/email-custom-header/email-custom-header.c index b3feb99de2..5942d28c20 100644 --- a/plugins/email-custom-header/email-custom-header.c +++ b/plugins/email-custom-header/email-custom-header.c @@ -367,7 +367,7 @@ epech_setup_widgets (CustomHeaderOptionsDialog *mch) (temp_header_value_ptr->sub_header_string_value)->str); } - gtk_combo_box_append_text (GTK_COMBO_BOX (sub_combo_box_ptr->header_value_combo_box),"None"); + gtk_combo_box_append_text (GTK_COMBO_BOX (sub_combo_box_ptr->header_value_combo_box), _("None")); gtk_widget_show (sub_combo_box_ptr->header_value_combo_box); } } |