Index: trunk/phase3/languages/classes/LanguageUk.php |
— | — | @@ -73,7 +73,7 @@ |
74 | 74 | |
75 | 75 | // If the actual number is not mentioned in the expression, then just two forms are enough: |
76 | 76 | // singular for $count == 1 |
77 | | - // plural for $count != 0 |
| 77 | + // plural for $count != 1 |
78 | 78 | // For example, "This user belongs to {{PLURAL:$1|one group|several groups}}." |
79 | 79 | if ( count( $forms ) === 2 ) return $count == 1 ? $forms[0] : $forms[1]; |
80 | 80 | |
Index: trunk/phase3/languages/classes/LanguageRu.php |
— | — | @@ -72,8 +72,10 @@ |
73 | 73 | * Examples: |
74 | 74 | * message with number |
75 | 75 | * "Сделано $1 {{PLURAL:$1|изменение|изменения|изменений}}" |
| 76 | + * ("$1 change[s] were made) |
76 | 77 | * message without number |
77 | 78 | * "Действие не может быть выполнено по {{PLURAL:$1|следующей причине|следующим причинам}}:" |
| 79 | + * ("The action cannot be performed for the following reason[s]") |
78 | 80 | * @param $count int |
79 | 81 | * @param $forms array |
80 | 82 | * |
— | — | @@ -84,7 +86,7 @@ |
85 | 87 | |
86 | 88 | // If the actual number is not mentioned in the expression, then just two forms are enough: |
87 | 89 | // singular for $count == 1 |
88 | | - // plural for $count != 0 |
| 90 | + // plural for $count != 1 |
89 | 91 | // For example, "This user belongs to {{PLURAL:$1|one group|several groups}}." |
90 | 92 | if ( count( $forms ) === 2 ) return $count == 1 ? $forms[0] : $forms[1]; |
91 | 93 | |
Index: trunk/phase3/languages/classes/LanguageBe_tarask.php |
— | — | @@ -29,7 +29,7 @@ |
30 | 30 | |
31 | 31 | // If the actual number is not mentioned in the expression, then just two forms are enough: |
32 | 32 | // singular for $count == 1 |
33 | | - // plural for $count != 0 |
| 33 | + // plural for $count != 1 |
34 | 34 | // For example, "This user belongs to {{PLURAL:$1|one group|several groups}}." |
35 | 35 | if ( count( $forms ) === 2 ) return $count == 1 ? $forms[0] : $forms[1]; |
36 | 36 | |
Index: trunk/phase3/languages/classes/LanguageSr.php |
— | — | @@ -240,7 +240,7 @@ |
241 | 241 | |
242 | 242 | // If the actual number is not mentioned in the expression, then just two forms are enough: |
243 | 243 | // singular for $count == 1 |
244 | | - // plural for $count != 0 |
| 244 | + // plural for $count != 1 |
245 | 245 | // For example, "This user belongs to {{PLURAL:$1|one group|several groups}}." |
246 | 246 | if ( count( $forms ) === 2 ) { |
247 | 247 | return $count == 1 ? $forms[0] : $forms[1]; |