ngettext

(PHP 4 >= 4.2.0, PHP 5)

ngettext — Версия gettext для множественного числа

Описание

string ngettext ( string $msgid1 , string $msgid2 , int $n )

Возвращает сообщение в соответствующей числу форме. В английском языке есть только два варианта - msgid1 и msgid2 : первый только когда n =1. В русском языке множественых форм три (1, 21, 31, ...; 2, 3, 4, ...; 5, 6, 8, ...), следовательно в каталоге сообщений будет три строчки.

Пример #1 Пример

<?php

setlocale
(LC_ALL'ru_RU');
printf(ngettext("%d window""%d windows"21), 21); // 21 окно
printf(ngettext("%d window""%d windows"22), 22); // 22 окна
printf(ngettext("%d window""%d windows"25), 25); // 25 окон

?>

Коментарии

Section 10.2.5 in the GNU gettext manual explains the ngettext function:

http://www.gnu.org/software/gettext/manual/

(Sorry, but the Add Note function prevents me from including a long URL which points right to that section of the manual.)
2004-11-03 14:53:41
http://php5.kiev.ua/manual/ru/function.ngettext.html
According to GNU gettext manual third argument is unsigned long integer. It must be positive number. If n is negative, it might be evaluated incorrectly in some languages.
2006-12-10 05:56:39
http://php5.kiev.ua/manual/ru/function.ngettext.html
It's useful to know how the .po-file has to look like when using ngettext:

msgid "item"
msgid_plural "items"
msgstr[0] "Produkt"
msgstr[1] "Produkte"

In php:

echo ngettext('item', 'items', $number);
2007-05-25 05:47:13
http://php5.kiev.ua/manual/ru/function.ngettext.html
Example for russian lang:
file.po:
    ...
    "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
    ...
    msgid "File"
    msgid_plural "Files"
    msgstr[0] "Файл"
    msgstr[1] "Файла"
    msgstr[2] "Файлов"
    ...

file.php
    ...
    echo ngettext("File", "Files", $number);
    ...
2008-12-14 13:26:05
http://php5.kiev.ua/manual/ru/function.ngettext.html
Beware of one difference between the GNU gettext API and the PHP binding of it, which is that the GNU gettext functions that accept a $count parameter all expect (indeed, being compiled C, require) that $count be unsigned, while the PHP binding does not.

Thus, the PHP gettext functions will happily accept negative numbers. The one potentially irritating consequence of this is that -1 is treated as plural, which sits well with some people and not so well with others.  (As a picky native speaker of English, my personal opinion is that both "the temperature is minus one degree Fahrenheit" and "four apples minus five apples leaves minus one apple" but others may feel that "four apples minus five apples leaves minus one apples" sounds better.)

The upshot: You may want to abs($count) before passing numbers to gettext.

Bonus points: If your application includes user preferences, you might offer a "treat -1 as singular" option to your users, then choose $count or abs($count) to pass to gettext based on each user's preference.
2009-08-19 14:07:44
http://php5.kiev.ua/manual/ru/function.ngettext.html
Автор:
Even though "hek at theeks dot net"'s answer is valid, I would not recommend using the abs() hack recommended. Even though it is by far the most common, not all languages treat (n != 1) as plural. Other languages are much more complex, for example, here is how you determine plurals in Macedonian.

n==1 || n%10==1 ? 0 : 1

In Arabic there are actually 5 different types of plurals:

n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5

If you are using only specific languages that use the (n != 1) format AND -1 is singular, by all means, use abs(), but be careful and don't forget that you have done this when adding a new language to your project 3 years down the road.
2013-06-17 23:40:28
http://php5.kiev.ua/manual/ru/function.ngettext.html

    Поддержать сайт на родительском проекте КГБ