diff options
author | Kjartan Maraas <kmaraas@src.gnome.org> | 2000-10-31 08:22:53 +0800 |
---|---|---|
committer | Kjartan Maraas <kmaraas@src.gnome.org> | 2000-10-31 08:22:53 +0800 |
commit | 7c3fad23b7c212cc96606a44e81d43e65b85acf8 (patch) | |
tree | 03e7bdfe48281c023698a1cd45f578dd25209b22 /addressbook/gui | |
parent | 4ac107769e4ac89e0b9595a6ed7a9539f4ef64fa (diff) | |
download | gsoc2013-evolution-7c3fad23b7c212cc96606a44e81d43e65b85acf8.tar gsoc2013-evolution-7c3fad23b7c212cc96606a44e81d43e65b85acf8.tar.gz gsoc2013-evolution-7c3fad23b7c212cc96606a44e81d43e65b85acf8.tar.bz2 gsoc2013-evolution-7c3fad23b7c212cc96606a44e81d43e65b85acf8.tar.lz gsoc2013-evolution-7c3fad23b7c212cc96606a44e81d43e65b85acf8.tar.xz gsoc2013-evolution-7c3fad23b7c212cc96606a44e81d43e65b85acf8.tar.zst gsoc2013-evolution-7c3fad23b7c212cc96606a44e81d43e65b85acf8.zip |
Mark two strings correctly
svn path=/trunk/; revision=6284
Diffstat (limited to 'addressbook/gui')
-rw-r--r-- | addressbook/gui/component/addressbook.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/addressbook/gui/component/addressbook.c b/addressbook/gui/component/addressbook.c index 22ab0516fb..6401654751 100644 --- a/addressbook/gui/component/addressbook.c +++ b/addressbook/gui/component/addressbook.c @@ -307,13 +307,13 @@ update_view_type (AddressbookView *view) case E_ADDRESSBOOK_VIEW_TABLE: if (uic) bonobo_ui_component_set_prop (uic, "/menu/View/AsTable", - "label", N_("As _Minicards"), NULL); + "label", _("As _Minicards"), NULL); break; case E_ADDRESSBOOK_VIEW_MINICARD: if (uic) bonobo_ui_component_set_prop (uic, "/menu/View/AsTable", - "label", N_("As _Table"), NULL); + "label", _("As _Table"), NULL); break; default: g_warning ("view_type must be either TABLE or MINICARD\n"); |