[evolution/webkit] Properly translate NC_ messages
- From: Dan VrÃtil <dvratil src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution/webkit] Properly translate NC_ messages
- Date: Mon, 11 Jul 2011 13:55:06 +0000 (UTC)
commit 482c6102f8bc72e1260e172c41dfc1d9c8aeddc7
Author: Milan Crha <mcrha redhat com>
Date: Fri Dec 10 18:42:48 2010 +0100
Properly translate NC_ messages
plugins/email-custom-header/email-custom-header.c | 15 +++------------
1 files changed, 3 insertions(+), 12 deletions(-)
---
diff --git a/plugins/email-custom-header/email-custom-header.c b/plugins/email-custom-header/email-custom-header.c
index d44dc0f..6deb67a 100644
--- a/plugins/email-custom-header/email-custom-header.c
+++ b/plugins/email-custom-header/email-custom-header.c
@@ -339,13 +339,8 @@ epech_setup_widgets (CustomHeaderOptionsDialog *mch)
priv->header_type_name_label = gtk_label_new ("");
temp_header_ptr = &g_array_index (priv->email_custom_header_details, EmailCustomHeaderDetails,header_section_id);
str = (temp_header_ptr->header_type_value)->str;
- if (strcmp (str, security_field) == 0) {
- gchar *tmp = g_strconcat ("email-custom-header-Security" "\004", security_field, NULL);
-
- str = g_dpgettext (NULL, tmp, strlen ("email-custom-header-Security") + 1);
-
- g_free (tmp);
- }
+ if (strcmp (str, security_field) == 0)
+ str = g_dpgettext2 (GETTEXT_PACKAGE, "email-custom-header-Security", security_field);
gtk_label_set_markup (GTK_LABEL (priv->header_type_name_label), str);
gtk_table_attach (GTK_TABLE (priv->header_table), priv->header_type_name_label, 0, 1, row, column,
@@ -373,11 +368,7 @@ epech_setup_widgets (CustomHeaderOptionsDialog *mch)
str = (temp_header_value_ptr->sub_header_string_value)->str;
for (i = 0; security_values[i].value != NULL; i++) {
if (strcmp (str, security_values[i].value) == 0) {
- gchar *tmp = g_strconcat ("email-custom-header-Security" "\004", security_values[i].str, NULL);
-
- str = g_dpgettext (NULL, tmp, strlen ("email-custom-header-Security") + 1);
-
- g_free (tmp);
+ str = g_dpgettext2 (GETTEXT_PACKAGE, "email-custom-header-Security", security_values[i].str);
break;
}
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]