After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 253528 - Broken plural handling in e-addressbook-model.c
Broken plural handling in e-addressbook-model.c
Status: RESOLVED DUPLICATE of bug 253464
Product: evolution
Classification: Applications
Component: Contacts
unspecified
Other All
: Normal minor
: ---
Assigned To: evolution-addressbook-maintainers
Evolution QA team
Depends on:
Blocks:
 
 
Reported: 2004-01-29 09:19 UTC by Åsmund Skjæveland
Modified: 2013-09-10 13:49 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Åsmund Skjæveland 2004-01-29 09:19:17 UTC
From CVS HEAD.
From addressbook/gui/widgets/e-addressbook-model.c lines 154 onwards:

static void
update_folder_bar_message (EABModel *model)
{
[...]
        switch (count) {
        case 0:
                message = g_strdup (_("No contacts"));
                break;
        case 1:
                message = g_strdup (_("1 contact"));
                break;
        default:
                message = g_strdup_printf (_("%d contacts"), count);
                break;
        }
[...]
}

This way of handling plurals is broken. Not all languages have only two
plural forms. In those languages, this is untranslatable. Please use
gettext's plural capability instead.

I don't think gettext plural handles case 0, but keeping that case separate
shpuldn't be a problem. But you should use gettext plural for all other
cases (1, 2, 3, ...).
Comment 1 Rodney Dawes 2004-02-06 23:25:09 UTC
Adding i18n keyword.
Comment 2 JP Rosevear 2004-03-17 16:57:08 UTC

*** This bug has been marked as a duplicate of 253464 ***