r17977 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r17976‎ | r17977 | r17978 >
Date:16:58, 28 November 2006
Author:nikerabbit
Status:old
Tags:
Comment:
* (bug 6910) Dates in Vietnamese localization broken
Modified paths:
  • /trunk/phase3/RELEASE-NOTES (modified) (history)
  • /trunk/phase3/languages/messages/MessagesVi.php (modified) (history)

Diff [purge]

Index: trunk/phase3/RELEASE-NOTES
@@ -246,6 +246,7 @@
247247 * Slovak (sk)
248248 * Swedish (sv)
249249 * Upper Sorbian (hsb)
 250+* Vietnamese (vi)
250251
251252 == Compatibility ==
252253
Index: trunk/phase3/languages/messages/MessagesVi.php
@@ -88,15 +88,43 @@
8989 'revisionid' => array( 1, 'REVISIONID' , 'SỐBẢN' ),
9090 );
9191
 92+$datePreferences = array(
 93+ 'default',
 94+ 'vi normal',
 95+ 'vi longmonth',
 96+ 'vi shortcolon',
 97+ 'vi short',
 98+ 'ISO 8601',
 99+);
 100+
 101+$defaultDateFormat = 'vi normal';
 102+
92103 $dateFormats = array(
93 - MW_DATE_DEFAULT => 'Không lựa chọn',
94 - 1 => '16:12, tháng 1 ngày 15 năm 2001',
95 - 2 => '16:12, ngày 15 tháng 1 năm 2001',
96 - 3 => '16:12, năm 2001 tháng 1 ngày 15',
97 - 4 => '',
98 - MW_DATE_ISO => '2001-01-15 16:12:34'
 104+ 'vi normal time' => 'H:i',
 105+ 'vi normal date' => '"ngày" j M "năm" Y',
 106+ 'vi normal both' => 'H:i, "ngày" j M "năm" Y',
 107+
 108+ 'vi longmonth time' => 'H:i',
 109+ 'vi longmonth date' => '"ngày" j F "năm" Y',
 110+ 'vi longmonth both' => 'H:i, "ngày" j F "năm" Y',
 111+
 112+ 'vi shortcolon time' => 'H:i',
 113+ 'vi shortcolon date' => 'j/n/Y',
 114+ 'vi shortcolon both' => 'H:i, j/n/Y',
 115+
 116+ 'vi short time' => 'H"h"i',
 117+ 'vi short date' => 'j/n/Y',
 118+ 'vi short both' => 'H"h"i, j/n/Y',
99119 );
100120
 121+$datePreferenceMigrationMap = array(
 122+ 'default',
 123+ 'vi normal',
 124+ 'vi normal',
 125+ 'vi normal',
 126+);
 127+
 128+
101129 $linkTrail = "/^([a-zàâçéèêîôûäëïöüùÇÉÂÊÎÔÛÄËÏÖÜÀÈÙ]+)(.*)$/sDu";
102130 $separatorTransformTable = array(',' => '.', '.' => ',' );
103131
@@ -143,18 +171,18 @@
144172 'thursday' => 'thứ năm',
145173 'friday' => 'thứ sáu',
146174 'saturday' => 'thứ bảy',
147 -'january' => 'tháng 1',
148 -'february' => 'tháng 2',
149 -'march' => 'tháng 3',
150 -'april' => 'tháng 4',
151 -'may_long' => 'tháng 5',
152 -'june' => 'tháng 6',
153 -'july' => 'tháng 7',
154 -'august' => 'tháng 8',
155 -'september' => 'tháng 9',
156 -'october' => 'tháng 10',
157 -'november' => 'tháng 11',
158 -'december' => 'tháng 12',
 175+'january' => 'tháng Một',
 176+'february' => 'tháng Hai',
 177+'march' => 'tháng Ba',
 178+'april' => 'tháng Tư',
 179+'may_long' => 'tháng Năm',
 180+'june' => 'tháng Sáu',
 181+'july' => 'tháng Bảy',
 182+'august' => 'tháng Tám',
 183+'september' => 'tháng Chín',
 184+'october' => 'tháng Mười',
 185+'november' => 'tháng Mười một',
 186+'december' => 'tháng Mười hai',
159187 'jan' => 'tháng 1',
160188 'feb' => 'tháng 2',
161189 'mar' => 'tháng 3',

Follow-up revisions

RevisionCommit summaryAuthorDate
r21315* (bug 6910) Correct date/time formats in Vietnamese (vi)...raymond05:52, 17 April 2007
r21326* (bug 6910) minor correction in Vietnamese (vi)...raymond15:17, 17 April 2007