diff options
author | Sushma Rai <rsushma@src.gnome.org> | 2005-01-25 12:46:58 +0800 |
---|---|---|
committer | Sushma Rai <rsushma@src.gnome.org> | 2005-01-25 12:46:58 +0800 |
commit | ec7f3aa586a3dfb6ae7cf48a98bfbc107b9df28a (patch) | |
tree | 4507eda37157b74aefc4935684d0ba2c671a943b | |
parent | 4fd7d8f14a3f9d804b37f8bfbb741f3e32dd8638 (diff) | |
download | gsoc2013-evolution-ec7f3aa586a3dfb6ae7cf48a98bfbc107b9df28a.tar.gz gsoc2013-evolution-ec7f3aa586a3dfb6ae7cf48a98bfbc107b9df28a.tar.zst gsoc2013-evolution-ec7f3aa586a3dfb6ae7cf48a98bfbc107b9df28a.zip |
Fixed empty string being marked for translation.
svn path=/trunk/; revision=28542
-rw-r--r-- | plugins/exchange-account-setup/ChangeLog | 19 | ||||
-rw-r--r-- | plugins/exchange-account-setup/exchange-account-setup.c | 2 |
2 files changed, 20 insertions, 1 deletions
diff --git a/plugins/exchange-account-setup/ChangeLog b/plugins/exchange-account-setup/ChangeLog index 39e505743d..7d31a1acda 100644 --- a/plugins/exchange-account-setup/ChangeLog +++ b/plugins/exchange-account-setup/ChangeLog @@ -1,3 +1,22 @@ +2005-01-25 Sushma Rai <rsushma@novell.com> + + * exchange-account-setup.c (create_page): Fixed empty + string being marked for translation problem. #71644 + +2005-01-23 Sushma Rai <rsushma@novell.com> + + * org-gnome-exchange-account-setup.eplug.in: Added plugins + for handling hiding auth type section in druid. + + * exchange-account-setup.c (add_owa_entry_to_editor): Changed the + button label to "Authenticate" from OK + + * exchange-ask-password.c (add_owa_entry): Changed the button label + to Authenticate. + (org_gnome_exchange_handle_auth): Hiding Auth section in receive page. + (org_gnome_exchange_handle_send_auth_option): Hiding the Auth section + in send page + 2005-01-22 Sushma Rai <rsushma@novell.com> * org-gnome-exchange-account-setup.eplug.in: Added diff --git a/plugins/exchange-account-setup/exchange-account-setup.c b/plugins/exchange-account-setup/exchange-account-setup.c index 4d4fd6187d..b996489faf 100644 --- a/plugins/exchange-account-setup/exchange-account-setup.c +++ b/plugins/exchange-account-setup/exchange-account-setup.c @@ -116,7 +116,7 @@ create_page () gtk_table_attach (GTK_TABLE (oof_table), radiobutton_inoff, 1, 2, 0, 1, GTK_FILL, GTK_FILL, 0, 0); - label_empty = gtk_label_new (_("")); + label_empty = gtk_label_new (""); gtk_label_set_justify (GTK_LABEL (label_empty), GTK_JUSTIFY_LEFT); gtk_misc_set_alignment (GTK_MISC (label_empty), 0, 0.5); gtk_misc_set_padding (GTK_MISC (label_empty), 0, 0); |