diff options
author | Chyla Zbigniew <chyla@src.gnome.org> | 2001-08-27 06:22:57 +0800 |
---|---|---|
committer | Chyla Zbigniew <chyla@src.gnome.org> | 2001-08-27 06:22:57 +0800 |
commit | cc3f82deb561b50800911dfd34f039b2246dbeb2 (patch) | |
tree | 8dff96c510a960b2ec5fb30ab42d6d34b8af198c /addressbook/gui | |
parent | f50915e81d419a127a3cf4733f5a79f866251098 (diff) | |
download | gsoc2013-evolution-cc3f82deb561b50800911dfd34f039b2246dbeb2.tar.gz gsoc2013-evolution-cc3f82deb561b50800911dfd34f039b2246dbeb2.tar.zst gsoc2013-evolution-cc3f82deb561b50800911dfd34f039b2246dbeb2.zip |
Display localized status string (added missing _()).
* gui/widgets/e-addressbook-util.c (e_addressbook_error_dialog):
Display localized status string (added missing _()).
svn path=/trunk/; revision=12476
Diffstat (limited to 'addressbook/gui')
-rw-r--r-- | addressbook/gui/widgets/e-addressbook-util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addressbook/gui/widgets/e-addressbook-util.c b/addressbook/gui/widgets/e-addressbook-util.c index 24a2ab93c0..6ecf00cbf5 100644 --- a/addressbook/gui/widgets/e-addressbook-util.c +++ b/addressbook/gui/widgets/e-addressbook-util.c @@ -43,7 +43,7 @@ e_addressbook_error_dialog (const gchar *msg, EBookStatus status) }; char *error_msg; - error_msg = g_strdup_printf ("%s: %s", msg, status_to_string [status]); + error_msg = g_strdup_printf ("%s: %s", msg, _(status_to_string [status])); gtk_widget_show (gnome_error_dialog (error_msg)); |