r67976 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r67975‎ | r67976 | r67977 >
Date:02:15, 14 June 2010
Author:tstarling
Status:deferred
Tags:
Comment:
MFT r67960: Fix plural function for se
Modified paths:
  • /branches/REL1_16/phase3/RELEASE-NOTES (modified) (history)
  • /branches/REL1_16/phase3/languages/classes/LanguageSe.php (modified) (history)

Diff [purge]

Index: branches/REL1_16/phase3/languages/classes/LanguageSe.php
@@ -11,11 +11,11 @@
1212 $forms = $this->preConvertPlural( $forms, 3 );
1313
1414 if ( $count == 1 ) {
 15+ $index = 0;
 16+ } elseif( $count == 2 ) {
1517 $index = 1;
16 - } elseif( $count == 2 ) {
 18+ } else {
1719 $index = 2;
18 - } else {
19 - $index = 3;
2020 }
2121 return $forms[$index];
2222 }
Property changes on: branches/REL1_16/phase3/languages/classes/LanguageSe.php
___________________________________________________________________
Name: svn:mergeinfo
2323 + /trunk/phase3/languages/classes/LanguageSe.php:63545-63546,63549,63643,63764,63897-63901,64876,67960
Index: branches/REL1_16/phase3/RELEASE-NOTES
@@ -53,6 +53,7 @@
5454 * Fixed parser tests broken in 1.16 beta 3.
5555 * For Oracle DB backend: fixed parser tests and table prefix feature.
5656 * (bug 23767) Fixed PHP warning when REQUEST_URI is blank (IIS issue).
 57+* Fixed plural function for Northern Sami (se)
5758
5859 == Changes since 1.16 beta 2 ==
5960

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r67960Array indexes start from zeronikerabbit20:23, 13 June 2010

Status & tagging log