r97493 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r97492‎ | r97493 | r97494 >
Date:13:55, 19 September 2011
Author:mkroetzsch
Status:deferred
Tags:
Comment:
fixed bug 30990 (also in comments); may need further care in some languages
Modified paths:
  • /trunk/extensions/SemanticMediaWiki/languages/SMW_Language.php (modified) (history)
  • /trunk/extensions/SemanticMediaWiki/languages/SMW_LanguageEn.php (modified) (history)
  • /trunk/extensions/SemanticMediaWiki/languages/SMW_LanguageZh_cn.php (modified) (history)
  • /trunk/extensions/SemanticMediaWiki/languages/SMW_LanguageZh_tw.php (modified) (history)

Diff [purge]

Index: trunk/extensions/SemanticMediaWiki/languages/SMW_LanguageZh_cn.php
@@ -31,7 +31,7 @@
3232 '_cod' => 'Code', // name of the (source) code type //TODO: translate
3333 '_boo' => '布林', // 'Boolean', // name of the boolean type
3434 '_num' => '数字', // 'Number', // name for the datatype of numbers
35 - '_geo' => '地理学的座标', // 'Geographic coordinate', // name of the geocoord type
 35+ '_geo' => '地理学的座标', // 'Geographic coordinates', // name of the geocoord type
3636 '_tem' => '温度', // 'Temperature', // name of the temperature type
3737 '_dat' => '日期', // 'Date', // name of the datetime (calendar) type
3838 '_ema' => 'Email', // 'Email', // name of the email type
Index: trunk/extensions/SemanticMediaWiki/languages/SMW_LanguageEn.php
@@ -32,7 +32,7 @@
3333 '_cod' => 'Code', // name of the (source) code type
3434 '_boo' => 'Boolean', // name of the boolean type
3535 '_num' => 'Number', // name for the datatype of numbers
36 - '_geo' => 'Geographic coordinate', // name of the geocoord type
 36+ '_geo' => 'Geographic coordinates', // name of the geocoord type
3737 '_tem' => 'Temperature', // name of the temperature type
3838 '_dat' => 'Date', // name of the datetime (calendar) type
3939 '_ema' => 'Email', // name of the email type
@@ -49,6 +49,7 @@
5050 'Integer' => '_num',
5151 'Enumeration' => '_str',
5252 'Phone number' => '_tel',
 53+ 'Geographic coordinate' => '_geo'
5354 );
5455
5556 protected $m_SpecialProperties = array(
Index: trunk/extensions/SemanticMediaWiki/languages/SMW_Language.php
@@ -56,7 +56,8 @@
5757 'Code' => '_cod',
5858 'Boolean' => '_boo',
5959 'Number' => '_num',
60 - 'Geographic coordinate' => '_geo',
 60+ 'Geographic coordinates'=> '_geo',
 61+ 'Geographic coordinate' => '_geo', // deprecated, see Bug 30990
6162 'Temperature' => '_tem',
6263 'Quantity' => '_qty',
6364 'Date' => '_dat',
Index: trunk/extensions/SemanticMediaWiki/languages/SMW_LanguageZh_tw.php
@@ -29,7 +29,7 @@
3030 '_cod' => 'Code', // name of the (source) code type //TODO: translate
3131 '_boo' => '布林', // 'Boolean', // name of the boolean type
3232 '_num' => '數字', // 'Number', // name for the datatype of numbers
33 - '_geo' => '地理學的座標', // 'Geographic coordinate', // name of the geocoord type
 33+ '_geo' => '地理學的座標', // 'Geographic coordinates', // name of the geocoord type
3434 '_tem' => '溫度', // 'Temperature', // name of the temperature type
3535 '_dat' => '日期', // 'Date', // name of the datetime (calendar) type
3636 '_ema' => 'Email', // 'Email', // name of the email type

Follow-up revisions

RevisionCommit summaryAuthorDate
r97497Follow up to r97493;jeroendedauw14:38, 19 September 2011