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 163698 - string bug
string bug
Status: RESOLVED FIXED
Product: gnome-control-center
Classification: Core
Component: general
git master
Other Linux
: Normal minor
: ---
Assigned To: Control-Center Maintainers
Control-Center Maintainers
Depends on:
Blocks:
 
 
Reported: 2005-01-11 16:52 UTC by Alessio Dessi
Modified: 2006-01-15 16:13 UTC
See Also:
GNOME target: ---
GNOME version: 2.9/2.10



Description Alessio Dessi 2005-01-11 16:52:40 UTC
I'm the italian translator and finishing my translation I've noticed that

#: capplets/font/main.c:507
#, fuzzy, c-format
msgid ""
"The font selected is %d point large, and may make it difficult to "
"effectively use the computer.  It is recommended that you select a
size"
"smaller than %d."
^^^^^^^^^
msgid_plural ""
"The font selected is %d points large, and may make it difficult to "
"effectively use the computer.  It is recommended that you select a
size"
"smaller than %d."
^^^^^^^^^

to me seems that both should be "greater than" instead of "smaller than"

regards
Alessio
Comment 1 Alessio Dessi 2005-01-11 17:01:00 UTC
same problem also for this string

#: capplets/font/main.c:514
Comment 2 Sebastien Bacher 2005-01-11 23:11:15 UTC
the code is :

		if (danger_level > MAX_FONT_POINT_WITHOUT_WARNING) {
			warning_label = g_strdup_printf ("<span weight=\"bold\"
size=\"larger\">%s</span>\n\n%s",
							 _("Font may be too large"),
							 ngettext ("The font selected is %d point large, and may make it
difficult to effectively use the computer.  It is recommended that you select a
size smaller than %d.",


the "smaller" seems to be correct, I'm closing this bug as NOTABUG.
Comment 3 Alessio Dessi 2005-01-12 05:47:37 UTC
it is strange, some were there is a problem  . .. the plural it is ok but the
plural[0] string at lest should be wrong in fact If I haev  font 1 point large 
... how should be am font smaller than 1 point ?

I still think that something wrong is here around
Comment 4 Sebastien Bacher 2005-01-12 11:14:16 UTC
This is a different issue from the original bug.

BTW from the ngettext manpage:
"Plural forms are grammatical variants depending on the a number. Some languages
have two forms, called singular and  plural.  Other languages have three forms,
called singular, dual and plural. There are also languages with four forms."

So the differences are not only singular/plural and this could make sense in
some differents langages. 

Any i18n guy to give his opinion on this ?