From eddcb87ae54ec673971da43bcfa5f452a7511999 Mon Sep 17 00:00:00 2001 From: Sergio Villar Senin Date: Tue, 18 Nov 2008 10:40:21 +0000 Subject: [PATCH] * Fixes NB#92212, fixed two logical strings in the account settings window pmo-trunk-r6325 --- .../modest-default-account-settings-dialog.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hildon2/modest-default-account-settings-dialog.c b/src/hildon2/modest-default-account-settings-dialog.c index c278c87..f5d17e4 100644 --- a/src/hildon2/modest-default-account-settings-dialog.c +++ b/src/hildon2/modest-default-account-settings-dialog.c @@ -611,13 +611,13 @@ create_page_user_details (ModestDefaultAccountSettingsDialog *self) /* Delete button: */ if (!priv->button_delete) - priv->button_delete = gtk_button_new_with_label (_("mcen_bd_delete")); + priv->button_delete = gtk_button_new_with_label (_HL("wdgt_bd_delete")); gtk_box_pack_start (GTK_BOX (GTK_DIALOG (self)->action_area), priv->button_delete, FALSE, FALSE, 0); /* Signature button: */ if (!priv->button_signature) - priv->button_signature = gtk_button_new_with_label (_("mcen_fi_email_signature")); + priv->button_signature = gtk_button_new_with_label (_("mcen_bd_email_signature")); gtk_box_pack_start (GTK_BOX (GTK_DIALOG (self)->action_area), priv->button_signature, FALSE, FALSE, 0); gtk_widget_show (priv->button_signature); -- 1.7.9.5