diff options
author | Will Thompson <will@willthompson.co.uk> | 2013-10-08 15:22:33 +0800 |
---|---|---|
committer | Will Thompson <will@willthompson.co.uk> | 2013-12-03 06:44:43 +0800 |
commit | b7f620fff4aa8933eb7a35a2959746f652964767 (patch) | |
tree | 23fc0992d40ccc562d9fca0cbba4660003acde02 | |
parent | 0909d1f884c4542553d98b18e7622664d2a02169 (diff) | |
download | gsoc2013-empathy-b7f620fff4aa8933eb7a35a2959746f652964767.tar gsoc2013-empathy-b7f620fff4aa8933eb7a35a2959746f652964767.tar.gz gsoc2013-empathy-b7f620fff4aa8933eb7a35a2959746f652964767.tar.bz2 gsoc2013-empathy-b7f620fff4aa8933eb7a35a2959746f652964767.tar.lz gsoc2013-empathy-b7f620fff4aa8933eb7a35a2959746f652964767.tar.xz gsoc2013-empathy-b7f620fff4aa8933eb7a35a2959746f652964767.tar.zst gsoc2013-empathy-b7f620fff4aa8933eb7a35a2959746f652964767.zip |
Roster: use the plural for "any contacts"
In the context of “You haven't added any contact yet”, “contact” should
be plural. This patch fixes the LANG=C string; translators can do their
thing.
https://bugzilla.gnome.org/show_bug.cgi?id=709611
-rw-r--r-- | src/empathy-roster-window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/empathy-roster-window.c b/src/empathy-roster-window.c index e06ea9333..831922760 100644 --- a/src/empathy-roster-window.c +++ b/src/empathy-roster-window.c @@ -1726,7 +1726,7 @@ set_notebook_page (EmpathyRosterWindow *self) { if (g_settings_get_boolean (self->priv->gsettings_ui, EMPATHY_PREFS_UI_SHOW_OFFLINE)) - display_page_message (self, _("You haven't added any contact yet"), + display_page_message (self, _("You haven't added any contacts yet"), PAGE_MESSAGE_FLAG_ADD_CONTACT); else display_page_message (self, _("No online contacts"), |