Index: trunk/extensions/SemanticMediaWiki/languages/SMW_LanguageZh_cn.php |
— | — | @@ -24,66 +24,66 @@ |
25 | 25 | */ |
26 | 26 | class SMWLanguageZh_cn extends SMWLanguage { |
27 | 27 | |
28 | | -protected $m_DatatypeLabels = array( |
29 | | - '_wpg' => '页面', // 'Page', // name of page datatype |
30 | | - '_str' => '字串', // 'String', // name of the string type |
31 | | - '_txt' => '文字', // 'Text', // name of the text type |
32 | | - '_cod' => 'Code', // name of the (source) code type //TODO: translate |
33 | | - '_boo' => '布林', // 'Boolean', // name of the boolean type |
34 | | - '_num' => '数字', // 'Number', // name for the datatype of numbers |
35 | | - '_geo' => '地理学的座标', // 'Geographic coordinate', // name of the geocoord type |
36 | | - '_tem' => '温度', // 'Temperature', // name of the temperature type |
37 | | - '_dat' => '日期', // 'Date', // name of the datetime (calendar) type |
38 | | - '_ema' => 'Email', // 'Email', // name of the email type |
39 | | - '_uri' => 'URL', // 'URL', // name of the URL type |
40 | | - '_anu' => 'URI的注解', // 'Annotation URI' // name of the annotation URI type (OWL annotation property) |
41 | | - '_tel' => 'Telephone number', // name of the telephone (URI) type //TODO: translate |
42 | | - '_rec' => 'Record', // name of record data type //TODO: translate |
43 | | -); |
| 28 | + protected $m_DatatypeLabels = array( |
| 29 | + '_wpg' => '页面', // 'Page', // name of page datatype |
| 30 | + '_str' => '字串', // 'String', // name of the string type |
| 31 | + '_txt' => '文字', // 'Text', // name of the text type |
| 32 | + '_cod' => 'Code', // name of the (source) code type //TODO: translate |
| 33 | + '_boo' => '布林', // 'Boolean', // name of the boolean type |
| 34 | + '_num' => '数字', // 'Number', // name for the datatype of numbers |
| 35 | + '_geo' => '地理学的座标', // 'Geographic coordinate', // name of the geocoord type |
| 36 | + '_tem' => '温度', // 'Temperature', // name of the temperature type |
| 37 | + '_dat' => '日期', // 'Date', // name of the datetime (calendar) type |
| 38 | + '_ema' => 'Email', // 'Email', // name of the email type |
| 39 | + '_uri' => 'URL', // 'URL', // name of the URL type |
| 40 | + '_anu' => 'URI的注解', // 'Annotation URI' // name of the annotation URI type (OWL annotation property) |
| 41 | + '_tel' => 'Telephone number', // name of the telephone (URI) type //TODO: translate |
| 42 | + '_rec' => 'Record', // name of record data type //TODO: translate |
| 43 | + ); |
| 44 | + |
| 45 | + protected $m_DatatypeAliases = array( |
| 46 | + '浮点数' => '_num', // '_num', |
| 47 | + '整数' => '_num' , // '_num', |
| 48 | + '列举' => '_str', // '_str' |
| 49 | + // SMW0.7 compatibility: |
| 50 | + 'Float' => '_num', |
| 51 | + 'Integer' => '_num', |
| 52 | + 'Enumeration' => '_str', |
| 53 | + 'URI' => '_uri', |
| 54 | + ); |
| 55 | + |
| 56 | + protected $m_SpecialProperties = array( |
| 57 | + // always start upper-case |
| 58 | + '_TYPE' => '设有型态', // 'Has type', |
| 59 | + '_URI' => '对应的URI', // 'Equivalent URI', |
| 60 | + '_SUBP' => '所属的子性质', // 'Subproperty of', |
| 61 | + '_SUBC' => 'Subcategory of', // TODO: translate |
| 62 | + '_UNIT' => '显示单位', // Display unit |
| 63 | + '_IMPO' => '输入来源', // Imported from |
| 64 | + '_CONV' => '符合于', // Corresponds to |
| 65 | + '_SERV' => '提供服务', // Provides service |
| 66 | + '_PVAL' => '允许值', // Allows value |
| 67 | + '_MDAT' => 'Modification date', // TODO: translate |
| 68 | + '_ERRP' => 'Has improper value for', // TODO: translate |
| 69 | + '_LIST' => 'Has fields', // TODO: translate |
| 70 | + ); |
| 71 | + |
| 72 | + |
| 73 | + protected $m_SpecialPropertyAliases = array( |
| 74 | + 'Display unit' => '_UNIT' |
| 75 | + ); |
| 76 | + |
| 77 | + protected $m_Namespaces = array( |
| 78 | + SMW_NS_PROPERTY => '性质', // 'Property', |
| 79 | + SMW_NS_PROPERTY_TALK => '性质讨论', // 'Property_talk', |
| 80 | + SMW_NS_TYPE => '型态', // 'Type', |
| 81 | + SMW_NS_TYPE_TALK => '型态讨论', // 'Type_talk' |
| 82 | + SMW_NS_CONCEPT => 'Concept', // TODO: translate |
| 83 | + SMW_NS_CONCEPT_TALK => 'Concept_talk' // TODO: translate |
| 84 | + ); |
| 85 | + |
| 86 | + protected $m_dateformats = array( array( SMW_Y ), array( SMW_MY, SMW_YM ), array( SMW_MDY, SMW_DMY, SMW_YMD, SMW_YDM ) ); |
| 87 | + |
| 88 | + protected $m_months = array( "1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月" ); |
44 | 89 | |
45 | | -protected $m_DatatypeAliases = array( |
46 | | - '浮点数' => '_num', // '_num', |
47 | | - '整数' => '_num' , // '_num', |
48 | | - '列举' => '_str', // '_str' |
49 | | - // SMW0.7 compatibility: |
50 | | - 'Float' => '_num', |
51 | | - 'Integer' => '_num', |
52 | | - 'Enumeration' => '_str', |
53 | | - 'URI' => '_uri', |
54 | | -); |
55 | | - |
56 | | -protected $m_SpecialProperties = array( |
57 | | - // always start upper-case |
58 | | - '_TYPE' => '设有型态', // 'Has type', |
59 | | - '_URI' => '对应的URI', // 'Equivalent URI', |
60 | | - '_SUBP' => '所属的子性质', // 'Subproperty of', |
61 | | - '_SUBC' => 'Subcategory of', // TODO: translate |
62 | | - '_UNIT' => '显示单位', // Display unit |
63 | | - '_IMPO' => '输入来源', // Imported from |
64 | | - '_CONV' => '符合于', // Corresponds to |
65 | | - '_SERV' => '提供服务', // Provides service |
66 | | - '_PVAL' => '允许值', // Allows value |
67 | | - '_MDAT' => 'Modification date', // TODO: translate |
68 | | - '_ERRP' => 'Has improper value for', // TODO: translate |
69 | | - '_LIST' => 'Has fields', // TODO: translate |
70 | | -); |
71 | | - |
72 | | - |
73 | | -protected $m_SpecialPropertyAliases = array( |
74 | | - 'Display unit' => '_UNIT' |
75 | | -); |
76 | | - |
77 | | -protected $m_Namespaces = array( |
78 | | - SMW_NS_PROPERTY => '性质', // 'Property', |
79 | | - SMW_NS_PROPERTY_TALK => '性质讨论', // 'Property_talk', |
80 | | - SMW_NS_TYPE => '型态', // 'Type', |
81 | | - SMW_NS_TYPE_TALK => '型态讨论', // 'Type_talk' |
82 | | - SMW_NS_CONCEPT => 'Concept', // TODO: translate |
83 | | - SMW_NS_CONCEPT_TALK => 'Concept_talk' // TODO: translate |
84 | | -); |
85 | | - |
86 | | -protected $m_dateformats = array( array( SMW_Y ), array( SMW_MY, SMW_YM ), array( SMW_MDY, SMW_DMY, SMW_YMD, SMW_YDM ) ); |
87 | | - |
88 | | -protected $m_months = array( "1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月" ); |
89 | | - |
90 | 90 | } |
Index: trunk/extensions/SemanticMediaWiki/languages/SMW_LanguageAr.php |
— | — | @@ -22,65 +22,65 @@ |
23 | 23 | */ |
24 | 24 | class SMWLanguageAr extends SMWLanguage { |
25 | 25 | |
26 | | -protected $m_DatatypeLabels = array( |
27 | | - '_wpg' => 'الصفحة', // name of page datatype |
28 | | - '_str' => 'سلسلة', // name of the string type |
29 | | - '_txt' => 'نص', // name of the text type |
30 | | - '_cod' => 'كود', // name of the (source) code type |
31 | | - '_boo' => 'منطقي', // name of the boolean type |
32 | | - '_num' => 'عدد', // name for the datatype of numbers |
33 | | - '_geo' => 'الإحداثيات الجغرافية', // name of the geocoord type |
34 | | - '_tem' => 'الحرارة', // name of the temperature type |
35 | | - '_dat' => 'التاريخ', // name of the datetime (calendar) type |
36 | | - '_ema' => 'البريد الإلكتروني', // name of the email type |
37 | | - '_uri' => 'مسار', // name of the URL type |
38 | | - '_anu' => 'التعليق علي معرف الموارد الموحد', // name of the annotation URI type (OWL annotation property) |
39 | | - '_tel' => 'رقم الهاتف', // name of the telephone (URI) type |
40 | | - '_rec' => 'تسجيل', // name of record data type |
41 | | -); |
| 26 | + protected $m_DatatypeLabels = array( |
| 27 | + '_wpg' => 'الصفحة', // name of page datatype |
| 28 | + '_str' => 'سلسلة', // name of the string type |
| 29 | + '_txt' => 'نص', // name of the text type |
| 30 | + '_cod' => 'كود', // name of the (source) code type |
| 31 | + '_boo' => 'منطقي', // name of the boolean type |
| 32 | + '_num' => 'عدد', // name for the datatype of numbers |
| 33 | + '_geo' => 'الإحداثيات الجغرافية', // name of the geocoord type |
| 34 | + '_tem' => 'الحرارة', // name of the temperature type |
| 35 | + '_dat' => 'التاريخ', // name of the datetime (calendar) type |
| 36 | + '_ema' => 'البريد الإلكتروني', // name of the email type |
| 37 | + '_uri' => 'مسار', // name of the URL type |
| 38 | + '_anu' => 'التعليق علي معرف الموارد الموحد', // name of the annotation URI type (OWL annotation property) |
| 39 | + '_tel' => 'رقم الهاتف', // name of the telephone (URI) type |
| 40 | + '_rec' => 'تسجيل', // name of record data type |
| 41 | + ); |
| 42 | + |
| 43 | + protected $m_DatatypeAliases = array( |
| 44 | + 'URI' => '_uri', |
| 45 | + 'Float' => '_num', |
| 46 | + 'Integer' => '_num', |
| 47 | + 'Enumeration' => '_str' |
| 48 | + ); |
| 49 | + |
| 50 | + protected $m_SpecialProperties = array( |
| 51 | + // always start upper-case |
| 52 | + '_TYPE' => 'لديه نوع', |
| 53 | + '_URI' => 'معرف الموارد الموحد معادلة', |
| 54 | + '_SUBP' => 'الخاصية الفرعية ل', |
| 55 | + '_SUBC' => 'تصنيف فرعي من', |
| 56 | + '_UNIT' => 'عرض الوحدات', |
| 57 | + '_IMPO' => 'المستوردة من', |
| 58 | + '_CONV' => 'يقابل', |
| 59 | + '_SERV' => 'يوفر الخدمة', |
| 60 | + '_PVAL' => 'يسمح بالقيمة', |
| 61 | + '_MDAT' => 'تاريخ التعديل', |
| 62 | + '_ERRP' => 'يمتلك قيمة غير صحيحة ل', |
| 63 | + '_LIST' => 'يمتلك حقول', |
| 64 | + ); |
| 65 | + |
| 66 | + protected $m_SpecialPropertyAliases = array( |
| 67 | + 'عرض الوحدة' => '_UNIT' |
| 68 | + ); |
| 69 | + |
| 70 | + protected $m_Namespaces = array( |
| 71 | + SMW_NS_PROPERTY => 'خاصية', |
| 72 | + SMW_NS_PROPERTY_TALK => 'نقاش_الخاصية', |
| 73 | + SMW_NS_TYPE => 'نوع', |
| 74 | + SMW_NS_TYPE_TALK => 'نقاش_النوع', |
| 75 | + SMW_NS_CONCEPT => 'مبدأ', |
| 76 | + SMW_NS_CONCEPT_TALK => 'نقاش_المبدأ' |
| 77 | + ); |
| 78 | + |
| 79 | + protected $m_dateformats = array( array( SMW_Y ), array( SMW_MY, SMW_YM ), array( SMW_MDY, SMW_DMY, SMW_YMD, SMW_YDM ) ); |
| 80 | + |
| 81 | + protected $m_months = array( "يناير", "فبراير", "مارس", "أبريل", "مايو", "يونيو", "يوليو", "أغسطس", "سبتمبر", "أكتوبر", "نوفمبر", "ديسمبر" ); |
| 82 | + |
| 83 | + protected $m_monthsshort = array( "يناير", "فبراير", "مارس", "أبريل", "مايو", "يونيو", "يوليو", "أغسطس", "سبتمبر", "أكتوبر", "نوفمبر", "ديسمبر" ); |
42 | 84 | |
43 | | -protected $m_DatatypeAliases = array( |
44 | | - 'URI' => '_uri', |
45 | | - 'Float' => '_num', |
46 | | - 'Integer' => '_num', |
47 | | - 'Enumeration' => '_str' |
48 | | -); |
49 | | - |
50 | | -protected $m_SpecialProperties = array( |
51 | | - // always start upper-case |
52 | | - '_TYPE' => 'لديه نوع', |
53 | | - '_URI' => 'معرف الموارد الموحد معادلة', |
54 | | - '_SUBP' => 'الخاصية الفرعية ل', |
55 | | - '_SUBC' => 'تصنيف فرعي من', |
56 | | - '_UNIT' => 'عرض الوحدات', |
57 | | - '_IMPO' => 'المستوردة من', |
58 | | - '_CONV' => 'يقابل', |
59 | | - '_SERV' => 'يوفر الخدمة', |
60 | | - '_PVAL' => 'يسمح بالقيمة', |
61 | | - '_MDAT' => 'تاريخ التعديل', |
62 | | - '_ERRP' => 'يمتلك قيمة غير صحيحة ل', |
63 | | - '_LIST' => 'يمتلك حقول', |
64 | | -); |
65 | | - |
66 | | -protected $m_SpecialPropertyAliases = array( |
67 | | - 'عرض الوحدة' => '_UNIT' |
68 | | -); |
69 | | - |
70 | | -protected $m_Namespaces = array( |
71 | | - SMW_NS_PROPERTY => 'خاصية', |
72 | | - SMW_NS_PROPERTY_TALK => 'نقاش_الخاصية', |
73 | | - SMW_NS_TYPE => 'نوع', |
74 | | - SMW_NS_TYPE_TALK => 'نقاش_النوع', |
75 | | - SMW_NS_CONCEPT => 'مبدأ', |
76 | | - SMW_NS_CONCEPT_TALK => 'نقاش_المبدأ' |
77 | | -); |
78 | | - |
79 | | -protected $m_dateformats = array( array( SMW_Y ), array( SMW_MY, SMW_YM ), array( SMW_MDY, SMW_DMY, SMW_YMD, SMW_YDM ) ); |
80 | | - |
81 | | -protected $m_months = array( "يناير", "فبراير", "مارس", "أبريل", "مايو", "يونيو", "يوليو", "أغسطس", "سبتمبر", "أكتوبر", "نوفمبر", "ديسمبر" ); |
82 | | - |
83 | | -protected $m_monthsshort = array( "يناير", "فبراير", "مارس", "أبريل", "مايو", "يونيو", "يوليو", "أغسطس", "سبتمبر", "أكتوبر", "نوفمبر", "ديسمبر" ); |
84 | | - |
85 | 85 | } |
86 | 86 | |
87 | 87 | |
Index: trunk/extensions/SemanticMediaWiki/languages/SMW_LanguageEn.php |
— | — | @@ -23,68 +23,68 @@ |
24 | 24 | */ |
25 | 25 | class SMWLanguageEn extends SMWLanguage { |
26 | 26 | |
27 | | -protected $m_useEnDefaultAliases = false; // not needed for English, obviously |
| 27 | + protected $m_useEnDefaultAliases = false; // not needed for English, obviously |
| 28 | + |
| 29 | + protected $m_DatatypeLabels = array( |
| 30 | + '_wpg' => 'Page', // name of page datatype |
| 31 | + '_str' => 'String', // name of the string type |
| 32 | + '_txt' => 'Text', // name of the text type |
| 33 | + '_cod' => 'Code', // name of the (source) code type |
| 34 | + '_boo' => 'Boolean', // name of the boolean type |
| 35 | + '_num' => 'Number', // name for the datatype of numbers |
| 36 | + '_geo' => 'Geographic coordinate', // name of the geocoord type |
| 37 | + '_tem' => 'Temperature', // name of the temperature type |
| 38 | + '_dat' => 'Date', // name of the datetime (calendar) type |
| 39 | + '_ema' => 'Email', // name of the email type |
| 40 | + '_uri' => 'URL', // name of the URL type |
| 41 | + '_anu' => 'Annotation URI', // name of the annotation URI type (OWL annotation property) |
| 42 | + '_tel' => 'Telephone number', // name of the telephone (URI) type |
| 43 | + '_rec' => 'Record', // name of record data type |
| 44 | + ); |
| 45 | + |
| 46 | + protected $m_DatatypeAliases = array( |
| 47 | + 'URI' => '_uri', |
| 48 | + 'Float' => '_num', |
| 49 | + 'Integer' => '_num', |
| 50 | + 'Enumeration' => '_str', |
| 51 | + 'Phone number' => '_tel', |
| 52 | + ); |
| 53 | + |
| 54 | + protected $m_SpecialProperties = array( |
| 55 | + // always start upper-case |
| 56 | + '_TYPE' => 'Has type', |
| 57 | + '_URI' => 'Equivalent URI', |
| 58 | + '_SUBP' => 'Subproperty of', |
| 59 | + '_SUBC' => 'Subcategory of', |
| 60 | + '_UNIT' => 'Display units', |
| 61 | + '_IMPO' => 'Imported from', |
| 62 | + '_CONV' => 'Corresponds to', |
| 63 | + '_SERV' => 'Provides service', |
| 64 | + '_PVAL' => 'Allows value', |
| 65 | + '_MDAT' => 'Modification date', |
| 66 | + '_ERRP' => 'Has improper value for', |
| 67 | + '_LIST' => 'Has fields', |
| 68 | + ); |
| 69 | + |
| 70 | + protected $m_SpecialPropertyAliases = array( |
| 71 | + 'Display unit' => '_UNIT' |
| 72 | + ); |
| 73 | + |
| 74 | + protected $m_Namespaces = array( |
| 75 | + SMW_NS_PROPERTY => 'Property', |
| 76 | + SMW_NS_PROPERTY_TALK => 'Property_talk', |
| 77 | + SMW_NS_TYPE => 'Type', |
| 78 | + SMW_NS_TYPE_TALK => 'Type_talk', |
| 79 | + SMW_NS_CONCEPT => 'Concept', |
| 80 | + SMW_NS_CONCEPT_TALK => 'Concept_talk' |
| 81 | + ); |
| 82 | + |
| 83 | + protected $m_dateformats = array( array( SMW_Y ), array( SMW_MY, SMW_YM ), array( SMW_MDY, SMW_DMY, SMW_YMD, SMW_YDM ) ); |
| 84 | + |
| 85 | + protected $m_months = array( "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" ); |
| 86 | + |
| 87 | + protected $m_monthsshort = array( "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" ); |
28 | 88 | |
29 | | -protected $m_DatatypeLabels = array( |
30 | | - '_wpg' => 'Page', // name of page datatype |
31 | | - '_str' => 'String', // name of the string type |
32 | | - '_txt' => 'Text', // name of the text type |
33 | | - '_cod' => 'Code', // name of the (source) code type |
34 | | - '_boo' => 'Boolean', // name of the boolean type |
35 | | - '_num' => 'Number', // name for the datatype of numbers |
36 | | - '_geo' => 'Geographic coordinate', // name of the geocoord type |
37 | | - '_tem' => 'Temperature', // name of the temperature type |
38 | | - '_dat' => 'Date', // name of the datetime (calendar) type |
39 | | - '_ema' => 'Email', // name of the email type |
40 | | - '_uri' => 'URL', // name of the URL type |
41 | | - '_anu' => 'Annotation URI', // name of the annotation URI type (OWL annotation property) |
42 | | - '_tel' => 'Telephone number', // name of the telephone (URI) type |
43 | | - '_rec' => 'Record', // name of record data type |
44 | | -); |
45 | | - |
46 | | -protected $m_DatatypeAliases = array( |
47 | | - 'URI' => '_uri', |
48 | | - 'Float' => '_num', |
49 | | - 'Integer' => '_num', |
50 | | - 'Enumeration' => '_str', |
51 | | - 'Phone number' => '_tel', |
52 | | -); |
53 | | - |
54 | | -protected $m_SpecialProperties = array( |
55 | | - // always start upper-case |
56 | | - '_TYPE' => 'Has type', |
57 | | - '_URI' => 'Equivalent URI', |
58 | | - '_SUBP' => 'Subproperty of', |
59 | | - '_SUBC' => 'Subcategory of', |
60 | | - '_UNIT' => 'Display units', |
61 | | - '_IMPO' => 'Imported from', |
62 | | - '_CONV' => 'Corresponds to', |
63 | | - '_SERV' => 'Provides service', |
64 | | - '_PVAL' => 'Allows value', |
65 | | - '_MDAT' => 'Modification date', |
66 | | - '_ERRP' => 'Has improper value for', |
67 | | - '_LIST' => 'Has fields', |
68 | | -); |
69 | | - |
70 | | -protected $m_SpecialPropertyAliases = array( |
71 | | - 'Display unit' => '_UNIT' |
72 | | -); |
73 | | - |
74 | | -protected $m_Namespaces = array( |
75 | | - SMW_NS_PROPERTY => 'Property', |
76 | | - SMW_NS_PROPERTY_TALK => 'Property_talk', |
77 | | - SMW_NS_TYPE => 'Type', |
78 | | - SMW_NS_TYPE_TALK => 'Type_talk', |
79 | | - SMW_NS_CONCEPT => 'Concept', |
80 | | - SMW_NS_CONCEPT_TALK => 'Concept_talk' |
81 | | -); |
82 | | - |
83 | | -protected $m_dateformats = array( array( SMW_Y ), array( SMW_MY, SMW_YM ), array( SMW_MDY, SMW_DMY, SMW_YMD, SMW_YDM ) ); |
84 | | - |
85 | | -protected $m_months = array( "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" ); |
86 | | - |
87 | | -protected $m_monthsshort = array( "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" ); |
88 | | - |
89 | 89 | } |
90 | 90 | |
91 | 91 | |
Index: trunk/extensions/SemanticMediaWiki/languages/SMW_LanguageEs.php |
— | — | @@ -22,65 +22,65 @@ |
23 | 23 | */ |
24 | 24 | class SMWLanguageEs extends SMWLanguage { |
25 | 25 | |
26 | | -protected $m_DatatypeLabels = array( |
27 | | - '_wpg' => 'Page', // name of page datatype //TODO translate |
28 | | - '_str' => 'Cadena de caracteres', // name of the string type |
29 | | - '_txt' => 'Texto', // name of the text type (very long strings) |
30 | | - '_cod' => 'Code', // name of the (source) code type //TODO: translate |
31 | | - '_boo' => 'Booleano', // name of the boolean type |
32 | | - '_num' => 'Número', // name for the datatype of numbers |
33 | | - '_geo' => 'Coordenadas geográficas', // name of the geocoord type |
34 | | - '_tem' => 'Temperatura', // name of the temperature type |
35 | | - '_dat' => 'Fecha', // name of the datetime (calendar) type |
36 | | - '_ema' => 'Dirección electrónica', // name of the email type |
37 | | - '_uri' => 'URL', // name of the URL type |
38 | | - '_anu' => 'Anotación-URI', // name of the annotation URI type (OWL annotation property) |
39 | | - '_tel' => 'Telephone number', // name of the telephone (URI) type //TODO: translate |
40 | | - '_rec' => 'Record', // name of record data type //TODO: translate |
41 | | -); |
| 26 | + protected $m_DatatypeLabels = array( |
| 27 | + '_wpg' => 'Page', // name of page datatype //TODO translate |
| 28 | + '_str' => 'Cadena de caracteres', // name of the string type |
| 29 | + '_txt' => 'Texto', // name of the text type (very long strings) |
| 30 | + '_cod' => 'Code', // name of the (source) code type //TODO: translate |
| 31 | + '_boo' => 'Booleano', // name of the boolean type |
| 32 | + '_num' => 'Número', // name for the datatype of numbers |
| 33 | + '_geo' => 'Coordenadas geográficas', // name of the geocoord type |
| 34 | + '_tem' => 'Temperatura', // name of the temperature type |
| 35 | + '_dat' => 'Fecha', // name of the datetime (calendar) type |
| 36 | + '_ema' => 'Dirección electrónica', // name of the email type |
| 37 | + '_uri' => 'URL', // name of the URL type |
| 38 | + '_anu' => 'Anotación-URI', // name of the annotation URI type (OWL annotation property) |
| 39 | + '_tel' => 'Telephone number', // name of the telephone (URI) type //TODO: translate |
| 40 | + '_rec' => 'Record', // name of record data type //TODO: translate |
| 41 | + ); |
| 42 | + |
| 43 | + protected $m_DatatypeAliases = array( |
| 44 | + 'URI' => '_uri', |
| 45 | + 'Número entero' => '_num', |
| 46 | + 'Número con coma' => '_num', |
| 47 | + 'Enumeración' => '_str', |
| 48 | + ); |
| 49 | + |
| 50 | + protected $m_SpecialProperties = array( |
| 51 | + // always start upper-case |
| 52 | + '_TYPE' => 'Tiene tipo de datos', |
| 53 | + '_URI' => 'URI equivalente', |
| 54 | + '_SUBP' => 'Subproperty of', // TODO: translate |
| 55 | + '_SUBC' => 'Subcategory of', // TODO: translate |
| 56 | + '_UNIT' => 'Unidad de medida', // TODO: should be plural now ("units"), singluar stays alias |
| 57 | + '_IMPO' => 'Importado de', |
| 58 | + '_CONV' => 'Corresponde a', |
| 59 | + '_SERV' => 'Provee servicio', |
| 60 | + '_PVAL' => 'Permite el valor', |
| 61 | + '_MDAT' => 'Modification date', // TODO: translate |
| 62 | + '_ERRP' => 'Has improper value for', // TODO: translate |
| 63 | + '_LIST' => 'Has fields', // TODO: translate |
| 64 | + ); |
| 65 | + |
| 66 | + protected $m_SpecialPropertyAliases = array( |
| 67 | + 'Unidad de medida' => '_UNIT', |
| 68 | + ); |
| 69 | + |
| 70 | + protected $m_Namespaces = array( |
| 71 | + SMW_NS_PROPERTY => "Atributo", |
| 72 | + SMW_NS_PROPERTY_TALK => "Discusión_atributo", |
| 73 | + SMW_NS_TYPE => "Tipos_de_datos", |
| 74 | + SMW_NS_TYPE_TALK => "Discusión_tipos_de_datos", |
| 75 | + SMW_NS_CONCEPT => 'Concept', // TODO: translate |
| 76 | + SMW_NS_CONCEPT_TALK => 'Concept_talk' // TODO: translate |
| 77 | + ); |
| 78 | + |
| 79 | + protected $m_dateformats = array( array( SMW_Y ), array( SMW_MY, SMW_YM ), array( SMW_MDY, SMW_DMY, SMW_YMD, SMW_YDM ) ); |
| 80 | + |
| 81 | + protected $m_months = array( "enero", "febrero", "marzo", "abril", "mayo", "junio", "julio", "agosto", "septiembre", "octubre", "noviembre", "diciembre" ); |
| 82 | + |
| 83 | + protected $m_monthsshort = array( "ene", "feb", "mar", "abr", "may", "jun", "jul", "ago", "sep", "oct", "nov", "dic" ); |
42 | 84 | |
43 | | -protected $m_DatatypeAliases = array( |
44 | | - 'URI' => '_uri', |
45 | | - 'Número entero' => '_num', |
46 | | - 'Número con coma' => '_num', |
47 | | - 'Enumeración' => '_str', |
48 | | -); |
49 | | - |
50 | | -protected $m_SpecialProperties = array( |
51 | | - // always start upper-case |
52 | | - '_TYPE' => 'Tiene tipo de datos', |
53 | | - '_URI' => 'URI equivalente', |
54 | | - '_SUBP' => 'Subproperty of', // TODO: translate |
55 | | - '_SUBC' => 'Subcategory of', // TODO: translate |
56 | | - '_UNIT' => 'Unidad de medida', // TODO: should be plural now ("units"), singluar stays alias |
57 | | - '_IMPO' => 'Importado de', |
58 | | - '_CONV' => 'Corresponde a', |
59 | | - '_SERV' => 'Provee servicio', |
60 | | - '_PVAL' => 'Permite el valor', |
61 | | - '_MDAT' => 'Modification date', // TODO: translate |
62 | | - '_ERRP' => 'Has improper value for', // TODO: translate |
63 | | - '_LIST' => 'Has fields', // TODO: translate |
64 | | -); |
65 | | - |
66 | | -protected $m_SpecialPropertyAliases = array( |
67 | | - 'Unidad de medida' => '_UNIT', |
68 | | -); |
69 | | - |
70 | | -protected $m_Namespaces = array( |
71 | | - SMW_NS_PROPERTY => "Atributo", |
72 | | - SMW_NS_PROPERTY_TALK => "Discusión_atributo", |
73 | | - SMW_NS_TYPE => "Tipos_de_datos", |
74 | | - SMW_NS_TYPE_TALK => "Discusión_tipos_de_datos", |
75 | | - SMW_NS_CONCEPT => 'Concept', // TODO: translate |
76 | | - SMW_NS_CONCEPT_TALK => 'Concept_talk' // TODO: translate |
77 | | -); |
78 | | - |
79 | | -protected $m_dateformats = array( array( SMW_Y ), array( SMW_MY, SMW_YM ), array( SMW_MDY, SMW_DMY, SMW_YMD, SMW_YDM ) ); |
80 | | - |
81 | | -protected $m_months = array( "enero", "febrero", "marzo", "abril", "mayo", "junio", "julio", "agosto", "septiembre", "octubre", "noviembre", "diciembre" ); |
82 | | - |
83 | | -protected $m_monthsshort = array( "ene", "feb", "mar", "abr", "may", "jun", "jul", "ago", "sep", "oct", "nov", "dic" ); |
84 | | - |
85 | 85 | } |
86 | 86 | |
87 | 87 | |
Index: trunk/extensions/SemanticMediaWiki/languages/SMW_LanguageFr.php |
— | — | @@ -22,65 +22,65 @@ |
23 | 23 | */ |
24 | 24 | class SMWLanguageFr extends SMWLanguage { |
25 | 25 | |
26 | | -protected $m_DatatypeLabels = array( |
27 | | - '_wpg' => 'Page', // name of page datatype |
28 | | - '_str' => 'Chaîne de caractères', // name of the string type |
29 | | - '_txt' => 'Texte', // name of the text type (very long strings) |
30 | | - '_cod' => 'Code', // name of the (source) code type |
31 | | - '_boo' => 'Booléen', // name of the boolean type |
32 | | - '_num' => 'Nombre', // name for the datatype of numbers |
33 | | - '_geo' => 'Coordonnées géographiques', // name of the geocoord type |
34 | | - '_tem' => 'Température', // name of the temperature type |
35 | | - '_dat' => 'Date', // name of the datetime (calendar) type |
36 | | - '_ema' => 'Adresse électronique', // name of the email type |
37 | | - '_uri' => 'URL', // name of the URI type |
38 | | - '_anu' => 'Annotation-URI', // name of the annotation URI type (OWL annotation property) |
39 | | - '_tel' => 'Numéro de téléphone', // name of the telephone (URI) type |
40 | | - '_rec' => 'Enregistrement', // name of record data type |
41 | | -); |
| 26 | + protected $m_DatatypeLabels = array( |
| 27 | + '_wpg' => 'Page', // name of page datatype |
| 28 | + '_str' => 'Chaîne de caractères', // name of the string type |
| 29 | + '_txt' => 'Texte', // name of the text type (very long strings) |
| 30 | + '_cod' => 'Code', // name of the (source) code type |
| 31 | + '_boo' => 'Booléen', // name of the boolean type |
| 32 | + '_num' => 'Nombre', // name for the datatype of numbers |
| 33 | + '_geo' => 'Coordonnées géographiques', // name of the geocoord type |
| 34 | + '_tem' => 'Température', // name of the temperature type |
| 35 | + '_dat' => 'Date', // name of the datetime (calendar) type |
| 36 | + '_ema' => 'Adresse électronique', // name of the email type |
| 37 | + '_uri' => 'URL', // name of the URI type |
| 38 | + '_anu' => 'Annotation-URI', // name of the annotation URI type (OWL annotation property) |
| 39 | + '_tel' => 'Numéro de téléphone', // name of the telephone (URI) type |
| 40 | + '_rec' => 'Enregistrement', // name of record data type |
| 41 | + ); |
| 42 | + |
| 43 | + protected $m_DatatypeAliases = array( |
| 44 | + 'URI' => '_uri', |
| 45 | + 'Nombre entier' => '_num', |
| 46 | + 'Nombre décimal' => '_num', |
| 47 | + 'Énumeration' => '_str', |
| 48 | + ); |
| 49 | + |
| 50 | + protected $m_SpecialProperties = array( |
| 51 | + // always start upper-case |
| 52 | + '_TYPE' => 'A le type', |
| 53 | + '_URI' => 'URI équivalente', |
| 54 | + '_SUBP' => 'Sous-propriété de', |
| 55 | + '_SUBC' => 'Sous-catégorie de', |
| 56 | + '_UNIT' => 'Unités de mesure', |
| 57 | + '_IMPO' => 'Importé de', |
| 58 | + '_CONV' => 'Correspond à', |
| 59 | + '_SERV' => 'Fournit le service', |
| 60 | + '_PVAL' => 'Valeur possible', |
| 61 | + '_MDAT' => 'Date de modification', |
| 62 | + '_ERRP' => 'A une valeur incorrecte pour', |
| 63 | + '_LIST' => 'A le champ', |
| 64 | + ); |
| 65 | + |
| 66 | + protected $m_SpecialPropertyAliases = array( |
| 67 | + 'Unité de mesure' => '_UNIT', |
| 68 | + ); |
| 69 | + |
| 70 | + protected $m_Namespaces = array( |
| 71 | + SMW_NS_PROPERTY => "Attribut", |
| 72 | + SMW_NS_PROPERTY_TALK => "Discussion_attribut", |
| 73 | + SMW_NS_TYPE => "Type", |
| 74 | + SMW_NS_TYPE_TALK => "Discussion_type", |
| 75 | + SMW_NS_CONCEPT => 'Concept', |
| 76 | + SMW_NS_CONCEPT_TALK => 'Discussion_concept' |
| 77 | + ); |
| 78 | + |
| 79 | + protected $m_dateformats = array( array( SMW_Y ), array( SMW_MY, SMW_YM ), array( SMW_MDY, SMW_DMY, SMW_YMD, SMW_YDM ) ); |
| 80 | + |
| 81 | + protected $m_months = array( "janvier", "février", "mars", "avril", "mai", "juin", "juillet", "août", "septembre", "octobre", "novembre", "décembre" ); |
| 82 | + |
| 83 | + protected $m_monthsshort = array( "jan", "fév", "mar", "avr", "mai", "jun", "jul", "aoû", "sep", "oct", "nov", "déc" ); |
42 | 84 | |
43 | | -protected $m_DatatypeAliases = array( |
44 | | - 'URI' => '_uri', |
45 | | - 'Nombre entier' => '_num', |
46 | | - 'Nombre décimal' => '_num', |
47 | | - 'Énumeration' => '_str', |
48 | | -); |
49 | | - |
50 | | -protected $m_SpecialProperties = array( |
51 | | - // always start upper-case |
52 | | - '_TYPE' => 'A le type', |
53 | | - '_URI' => 'URI équivalente', |
54 | | - '_SUBP' => 'Sous-propriété de', |
55 | | - '_SUBC' => 'Sous-catégorie de', |
56 | | - '_UNIT' => 'Unités de mesure', |
57 | | - '_IMPO' => 'Importé de', |
58 | | - '_CONV' => 'Correspond à', |
59 | | - '_SERV' => 'Fournit le service', |
60 | | - '_PVAL' => 'Valeur possible', |
61 | | - '_MDAT' => 'Date de modification', |
62 | | - '_ERRP' => 'A une valeur incorrecte pour', |
63 | | - '_LIST' => 'A le champ', |
64 | | -); |
65 | | - |
66 | | -protected $m_SpecialPropertyAliases = array( |
67 | | - 'Unité de mesure' => '_UNIT', |
68 | | -); |
69 | | - |
70 | | -protected $m_Namespaces = array( |
71 | | - SMW_NS_PROPERTY => "Attribut", |
72 | | - SMW_NS_PROPERTY_TALK => "Discussion_attribut", |
73 | | - SMW_NS_TYPE => "Type", |
74 | | - SMW_NS_TYPE_TALK => "Discussion_type", |
75 | | - SMW_NS_CONCEPT => 'Concept', |
76 | | - SMW_NS_CONCEPT_TALK => 'Discussion_concept' |
77 | | -); |
78 | | - |
79 | | -protected $m_dateformats = array( array( SMW_Y ), array( SMW_MY, SMW_YM ), array( SMW_MDY, SMW_DMY, SMW_YMD, SMW_YDM ) ); |
80 | | - |
81 | | -protected $m_months = array( "janvier", "février", "mars", "avril", "mai", "juin", "juillet", "août", "septembre", "octobre", "novembre", "décembre" ); |
82 | | - |
83 | | -protected $m_monthsshort = array( "jan", "fév", "mar", "avr", "mai", "jun", "jul", "aoû", "sep", "oct", "nov", "déc" ); |
84 | | - |
85 | 85 | } |
86 | 86 | |
87 | 87 | |
Index: trunk/extensions/SemanticMediaWiki/languages/SMW_LanguageNl.php |
— | — | @@ -24,62 +24,62 @@ |
25 | 25 | */ |
26 | 26 | class SMWLanguageNl extends SMWLanguage { |
27 | 27 | |
28 | | -protected $m_DatatypeLabels = array( |
29 | | - '_wpg' => 'Pagina', // name of page datatype |
30 | | - '_str' => 'String', // name of the string type |
31 | | - '_txt' => 'Tekst', // name of the text type |
32 | | - '_cod' => 'Code', // name of the (source) code type |
33 | | - '_boo' => 'Booleaans', // name of the boolean type |
34 | | - '_num' => 'Getal', // name for the datatype of numbers |
35 | | - '_geo' => 'Geografische coördinaat', // name of the geocoord type |
36 | | - '_tem' => 'Temperatuur', // name of the temperature type |
37 | | - '_dat' => 'Datum', // name of the datetime (calendar) type |
38 | | - '_ema' => 'E-mail', // name of the email type |
39 | | - '_uri' => 'URL', // name of the URL type |
40 | | - '_anu' => 'Annotatie-URI', // name of the annotation URI type (OWL annotation property) |
41 | | - '_tel' => 'Telefoonnummer', // name of the telephone (URI) type //TODO: translate |
42 | | - '_rec' => 'Record', // name of record data type //TODO: translate |
43 | | -); |
| 28 | + protected $m_DatatypeLabels = array( |
| 29 | + '_wpg' => 'Pagina', // name of page datatype |
| 30 | + '_str' => 'String', // name of the string type |
| 31 | + '_txt' => 'Tekst', // name of the text type |
| 32 | + '_cod' => 'Code', // name of the (source) code type |
| 33 | + '_boo' => 'Booleaans', // name of the boolean type |
| 34 | + '_num' => 'Getal', // name for the datatype of numbers |
| 35 | + '_geo' => 'Geografische coördinaat', // name of the geocoord type |
| 36 | + '_tem' => 'Temperatuur', // name of the temperature type |
| 37 | + '_dat' => 'Datum', // name of the datetime (calendar) type |
| 38 | + '_ema' => 'E-mail', // name of the email type |
| 39 | + '_uri' => 'URL', // name of the URL type |
| 40 | + '_anu' => 'Annotatie-URI', // name of the annotation URI type (OWL annotation property) |
| 41 | + '_tel' => 'Telefoonnummer', // name of the telephone (URI) type //TODO: translate |
| 42 | + '_rec' => 'Record', // name of record data type //TODO: translate |
| 43 | + ); |
| 44 | + |
| 45 | + protected $m_DatatypeAliases = array( |
| 46 | + 'URI' => '_uri', |
| 47 | + 'Drijvende komma' => '_num', |
| 48 | + 'Integer' => '_num', |
| 49 | + 'Opsomming' => '_str', |
| 50 | + 'Telefoonnummer' => '_tel', |
| 51 | + ); |
| 52 | + |
| 53 | + protected $m_SpecialProperties = array( |
| 54 | + // always start upper-case |
| 55 | + '_TYPE' => 'Heeft type', |
| 56 | + '_URI' => 'Equivalent URI', |
| 57 | + '_SUBP' => 'Subeigenschap van', |
| 58 | + '_SUBC' => 'Subcategorie van', |
| 59 | + '_UNIT' => 'Weergaveeenheden', |
| 60 | + '_IMPO' => 'Geïmporteerd uit', |
| 61 | + '_CONV' => 'Komt overeen met', |
| 62 | + '_SERV' => 'Verleent dienst', |
| 63 | + '_PVAL' => 'Geldige waarde', |
| 64 | + '_MDAT' => 'Wijzigingsdatum', |
| 65 | + '_ERRP' => 'Heeft ongeldige waarde voor', |
| 66 | + '_LIST' => 'Heeft velden', |
| 67 | + ); |
| 68 | + |
| 69 | + protected $m_SpecialPropertyAliases = array( |
| 70 | + 'Weergave-eenheid' => '_UNIT' |
| 71 | + ); |
| 72 | + |
| 73 | + protected $m_Namespaces = array( |
| 74 | + SMW_NS_PROPERTY => 'Eigenschap', |
| 75 | + SMW_NS_PROPERTY_TALK => 'Overleg_eigenschap', |
| 76 | + SMW_NS_TYPE => 'Type', |
| 77 | + SMW_NS_TYPE_TALK => 'Overleg_type', |
| 78 | + SMW_NS_CONCEPT => 'Concept', |
| 79 | + SMW_NS_CONCEPT_TALK => 'Overleg_concept' |
| 80 | + ); |
| 81 | + |
| 82 | + protected $m_months = array( 'januari', 'februari', 'maart', 'april', 'mei', 'juni', 'juli', 'augustus', 'september', 'oktober', 'november', 'december' ); |
| 83 | + |
| 84 | + protected $m_monthsshort = array( "jan", "feb", "mar", "apr", "mei", "jun", "jul", "aug", "sep", "okt", "nov", "dec" ); |
44 | 85 | |
45 | | -protected $m_DatatypeAliases = array( |
46 | | - 'URI' => '_uri', |
47 | | - 'Drijvende komma' => '_num', |
48 | | - 'Integer' => '_num', |
49 | | - 'Opsomming' => '_str', |
50 | | - 'Telefoonnummer' => '_tel', |
51 | | -); |
52 | | - |
53 | | -protected $m_SpecialProperties = array( |
54 | | - // always start upper-case |
55 | | - '_TYPE' => 'Heeft type', |
56 | | - '_URI' => 'Equivalent URI', |
57 | | - '_SUBP' => 'Subeigenschap van', |
58 | | - '_SUBC' => 'Subcategorie van', |
59 | | - '_UNIT' => 'Weergaveeenheden', |
60 | | - '_IMPO' => 'Geïmporteerd uit', |
61 | | - '_CONV' => 'Komt overeen met', |
62 | | - '_SERV' => 'Verleent dienst', |
63 | | - '_PVAL' => 'Geldige waarde', |
64 | | - '_MDAT' => 'Wijzigingsdatum', |
65 | | - '_ERRP' => 'Heeft ongeldige waarde voor', |
66 | | - '_LIST' => 'Heeft velden', |
67 | | -); |
68 | | - |
69 | | -protected $m_SpecialPropertyAliases = array( |
70 | | - 'Weergave-eenheid' => '_UNIT' |
71 | | -); |
72 | | - |
73 | | -protected $m_Namespaces = array( |
74 | | - SMW_NS_PROPERTY => 'Eigenschap', |
75 | | - SMW_NS_PROPERTY_TALK => 'Overleg_eigenschap', |
76 | | - SMW_NS_TYPE => 'Type', |
77 | | - SMW_NS_TYPE_TALK => 'Overleg_type', |
78 | | - SMW_NS_CONCEPT => 'Concept', |
79 | | - SMW_NS_CONCEPT_TALK => 'Overleg_concept' |
80 | | -); |
81 | | - |
82 | | -protected $m_months = array( 'januari', 'februari', 'maart', 'april', 'mei', 'juni', 'juli', 'augustus', 'september', 'oktober', 'november', 'december' ); |
83 | | - |
84 | | -protected $m_monthsshort = array( "jan", "feb", "mar", "apr", "mei", "jun", "jul", "aug", "sep", "okt", "nov", "dec" ); |
85 | | - |
86 | 86 | } |
Index: trunk/extensions/SemanticMediaWiki/languages/SMW_LanguagePl.php |
— | — | @@ -41,65 +41,65 @@ |
42 | 42 | */ |
43 | 43 | class SMWLanguagePl extends SMWLanguage { |
44 | 44 | |
45 | | -protected $m_DatatypeLabels = array( |
46 | | - '_wpg' => 'Strona', // name of page datatype |
47 | | - '_str' => 'Łańcuch znaków', // name of the string type |
48 | | - '_txt' => 'Tekst', // name of the text type (very long strings) |
49 | | - '_cod' => 'Kod', // name of the (source) code type |
50 | | - '_boo' => 'Wartość logiczna', // name of the boolean type |
51 | | - '_num' => 'Liczba', // name for the datatype of numbers |
52 | | - '_geo' => 'Współrzędne geograficzne', // name of the geocoord type |
53 | | - '_tem' => 'Temperatura', // name of the temperature type |
54 | | - '_dat' => 'Data', // name of the datetime (calendar) type |
55 | | - '_ema' => 'Email', // name of the email type |
56 | | - '_uri' => 'URL', // name of the URL type |
57 | | - '_anu' => 'URI adnotacji', // name of the annotation URI type (OWL annotation property) |
58 | | - '_tel' => 'Telephone number', // name of the telephone (URI) type //TODO: translate |
59 | | - '_rec' => 'Record', // name of record data type //TODO: translate |
60 | | -); |
| 45 | + protected $m_DatatypeLabels = array( |
| 46 | + '_wpg' => 'Strona', // name of page datatype |
| 47 | + '_str' => 'Łańcuch znaków', // name of the string type |
| 48 | + '_txt' => 'Tekst', // name of the text type (very long strings) |
| 49 | + '_cod' => 'Kod', // name of the (source) code type |
| 50 | + '_boo' => 'Wartość logiczna', // name of the boolean type |
| 51 | + '_num' => 'Liczba', // name for the datatype of numbers |
| 52 | + '_geo' => 'Współrzędne geograficzne', // name of the geocoord type |
| 53 | + '_tem' => 'Temperatura', // name of the temperature type |
| 54 | + '_dat' => 'Data', // name of the datetime (calendar) type |
| 55 | + '_ema' => 'Email', // name of the email type |
| 56 | + '_uri' => 'URL', // name of the URL type |
| 57 | + '_anu' => 'URI adnotacji', // name of the annotation URI type (OWL annotation property) |
| 58 | + '_tel' => 'Telephone number', // name of the telephone (URI) type //TODO: translate |
| 59 | + '_rec' => 'Record', // name of record data type //TODO: translate |
| 60 | + ); |
| 61 | + |
| 62 | + protected $m_DatatypeAliases = array( |
| 63 | + 'URI' => '_uri', |
| 64 | + 'Liczba zmiennoprzecinkowa' => '_num', |
| 65 | + 'Liczba całkowita' => '_num', |
| 66 | + 'Wyliczenie' => '_str', |
| 67 | + ); |
| 68 | + |
| 69 | + protected $m_SpecialProperties = array( |
| 70 | + // always start upper-case |
| 71 | + '_TYPE' => 'Ma typ', |
| 72 | + '_URI' => 'Równoważne URI', |
| 73 | + '_SUBP' => 'Jest podwłasnością', |
| 74 | + '_SUBC' => 'Subcategory of', // TODO: translate |
| 75 | + '_UNIT' => 'Wyświetlane jednostki', |
| 76 | + '_IMPO' => 'Zaimportowane z', |
| 77 | + '_CONV' => 'Odpowiada', |
| 78 | + '_SERV' => 'Zapewnia usługę', |
| 79 | + '_PVAL' => 'Dopuszcza wartość', |
| 80 | + '_MDAT' => 'Modification date', // TODO: translate |
| 81 | + '_ERRP' => 'Has improper value for', // TODO: translate |
| 82 | + '_LIST' => 'Has fields', // TODO: translate |
| 83 | + ); |
| 84 | + |
| 85 | + protected $m_SpecialPropertyAliases = array( |
| 86 | + 'Wyświetlana jednostka' => '_UNIT', |
| 87 | + ); |
| 88 | + |
| 89 | + |
| 90 | + protected $m_Namespaces = array( |
| 91 | + SMW_NS_PROPERTY => 'Atrybut', |
| 92 | + SMW_NS_PROPERTY_TALK => 'Dyskusja_atrybutu', |
| 93 | + SMW_NS_TYPE => 'Typ', |
| 94 | + SMW_NS_TYPE_TALK => 'Dyskusja_typu', |
| 95 | + SMW_NS_CONCEPT => 'Pojęcie', |
| 96 | + SMW_NS_CONCEPT_TALK => 'Dyskusja pojęcia' |
| 97 | + ); |
| 98 | + |
| 99 | + protected $m_dateformats = array( array( SMW_Y ), array( SMW_MY, SMW_YM ), array( SMW_MDY, SMW_DMY, SMW_YMD, SMW_YDM ) ); |
| 100 | + |
| 101 | + protected $m_months = array( "styczeń", "luty", "marsz", "kwiecień", "maj", "czerwiec", "lipiec", "sierpień", "wrzesień", "październik", "listopad", "grudzień" ); |
| 102 | + |
| 103 | + protected $m_monthsshort = array( "sty", "lut", "mar", "kwi", "maj", "cze", "lip", "sie", "wrz", "paź", "lis", "gru" ); |
61 | 104 | |
62 | | -protected $m_DatatypeAliases = array( |
63 | | - 'URI' => '_uri', |
64 | | - 'Liczba zmiennoprzecinkowa' => '_num', |
65 | | - 'Liczba całkowita' => '_num', |
66 | | - 'Wyliczenie' => '_str', |
67 | | -); |
68 | | - |
69 | | -protected $m_SpecialProperties = array( |
70 | | - // always start upper-case |
71 | | - '_TYPE' => 'Ma typ', |
72 | | - '_URI' => 'Równoważne URI', |
73 | | - '_SUBP' => 'Jest podwłasnością', |
74 | | - '_SUBC' => 'Subcategory of', // TODO: translate |
75 | | - '_UNIT' => 'Wyświetlane jednostki', |
76 | | - '_IMPO' => 'Zaimportowane z', |
77 | | - '_CONV' => 'Odpowiada', |
78 | | - '_SERV' => 'Zapewnia usługę', |
79 | | - '_PVAL' => 'Dopuszcza wartość', |
80 | | - '_MDAT' => 'Modification date', // TODO: translate |
81 | | - '_ERRP' => 'Has improper value for', // TODO: translate |
82 | | - '_LIST' => 'Has fields', // TODO: translate |
83 | | -); |
84 | | - |
85 | | -protected $m_SpecialPropertyAliases = array( |
86 | | - 'Wyświetlana jednostka' => '_UNIT', |
87 | | -); |
88 | | - |
89 | | - |
90 | | -protected $m_Namespaces = array( |
91 | | - SMW_NS_PROPERTY => 'Atrybut', |
92 | | - SMW_NS_PROPERTY_TALK => 'Dyskusja_atrybutu', |
93 | | - SMW_NS_TYPE => 'Typ', |
94 | | - SMW_NS_TYPE_TALK => 'Dyskusja_typu', |
95 | | - SMW_NS_CONCEPT => 'Pojęcie', |
96 | | - SMW_NS_CONCEPT_TALK => 'Dyskusja pojęcia' |
97 | | -); |
98 | | - |
99 | | -protected $m_dateformats = array( array( SMW_Y ), array( SMW_MY, SMW_YM ), array( SMW_MDY, SMW_DMY, SMW_YMD, SMW_YDM ) ); |
100 | | - |
101 | | -protected $m_months = array( "styczeń", "luty", "marsz", "kwiecień", "maj", "czerwiec", "lipiec", "sierpień", "wrzesień", "październik", "listopad", "grudzień" ); |
102 | | - |
103 | | -protected $m_monthsshort = array( "sty", "lut", "mar", "kwi", "maj", "cze", "lip", "sie", "wrz", "paź", "lis", "gru" ); |
104 | | - |
105 | 105 | } |
106 | 106 | |
Index: trunk/extensions/SemanticMediaWiki/languages/SMW_LanguageIt.php |
— | — | @@ -22,64 +22,64 @@ |
23 | 23 | * @ingroup Language |
24 | 24 | */ |
25 | 25 | class SMWLanguageIt extends SMWLanguage { |
| 26 | + |
| 27 | + protected $m_DatatypeLabels = array( |
| 28 | + '_wpg' => 'Pagina', // name of page datatypee |
| 29 | + '_str' => 'Stringa', // name of the string type |
| 30 | + '_txt' => 'Testo', // name of the text type |
| 31 | + '_cod' => 'Code', // name of the (source) code type //TODO: translate |
| 32 | + '_boo' => 'Booleano', // name of the boolean type |
| 33 | + '_num' => 'Numero', // name for the datatype of numbers |
| 34 | + '_geo' => 'Coordinate geografiche', // name of the geocoord type |
| 35 | + '_tem' => 'Temperatura', // name of the temperature type |
| 36 | + '_dat' => 'Data', // name of the datetime (calendar) type |
| 37 | + '_ema' => 'Email', // name of the email type |
| 38 | + '_uri' => 'URL', // name of the URL type |
| 39 | + '_anu' => 'Annotazione URI', // name of the annotation URI type (OWL annotation property) |
| 40 | + '_tel' => 'Telephone number', // name of the telephone (URI) type //TODO: translate |
| 41 | + '_rec' => 'Record', // name of record data type //TODO: translate |
| 42 | + ); |
| 43 | + |
| 44 | + protected $m_DatatypeAliases = array( |
| 45 | + 'URI' => '_uri', |
| 46 | + 'Float' => '_num', |
| 47 | + 'Integer' => '_num', |
| 48 | + 'Intero' => '_num', |
| 49 | + 'Enumeration' => '_str', |
| 50 | + 'Enumerazione' => '_str' |
| 51 | + ); |
| 52 | + |
| 53 | + protected $m_SpecialProperties = array( |
| 54 | + // always start upper-case |
| 55 | + '_TYPE' => 'Ha tipo', // 'Has type', |
| 56 | + '_URI' => 'URI equivalente', // 'Equivalent URI', |
| 57 | + '_SUBP' => 'Sottoproprietà di', // 'Subproperty of', |
| 58 | + '_SUBC' => 'Subcategory of', // TODO: translate |
| 59 | + '_UNIT' => 'Visualizza unità', |
| 60 | + '_IMPO' => 'Importato da', // 'Imported from', |
| 61 | + '_CONV' => 'Corrisponde a ', // 'Corresponds to', |
| 62 | + '_SERV' => 'Fornisce servizio', // 'Provides service', |
| 63 | + '_PVAL' => 'Ammette valore', // 'Allows value' |
| 64 | + '_MDAT' => 'Data di modifica', |
| 65 | + '_ERRP' => 'Ha un valore improprio per', |
| 66 | + '_LIST' => 'Has fields', // TODO: translate |
| 67 | + ); |
| 68 | + |
| 69 | + protected $m_SpecialPropertyAliases = array( |
| 70 | + 'Display unit' => '_UNIT', |
| 71 | + ); |
| 72 | + |
| 73 | + protected $m_Namespaces = array( // TODO: translate (English aliases can be kept, see other language files |
| 74 | + SMW_NS_PROPERTY => 'Proprietà', |
| 75 | + SMW_NS_PROPERTY_TALK => 'Discussione proprietà', |
| 76 | + SMW_NS_TYPE => 'Tipo', |
| 77 | + SMW_NS_TYPE_TALK => 'Discussione tipo', |
| 78 | + SMW_NS_CONCEPT => 'Concetto', |
| 79 | + SMW_NS_CONCEPT_TALK => 'Discussione concetto' |
| 80 | + ); |
| 81 | + |
| 82 | + protected $m_months = array( "gennaio", "febbraio", "marzo", "aprile", "maggio", "giugno", "luglio", "agosto", "settembre", "ottobre", "novembre", "dicembre" ); |
| 83 | + |
| 84 | + protected $m_monthsshort = array( "gen", "feb", "mar", "apr", "mag", "giu", "lug", "ago", "set", "ott", "nov", "dic" ); |
26 | 85 | |
27 | | -protected $m_DatatypeLabels = array( |
28 | | - '_wpg' => 'Pagina', // name of page datatypee |
29 | | - '_str' => 'Stringa', // name of the string type |
30 | | - '_txt' => 'Testo', // name of the text type |
31 | | - '_cod' => 'Code', // name of the (source) code type //TODO: translate |
32 | | - '_boo' => 'Booleano', // name of the boolean type |
33 | | - '_num' => 'Numero', // name for the datatype of numbers |
34 | | - '_geo' => 'Coordinate geografiche', // name of the geocoord type |
35 | | - '_tem' => 'Temperatura', // name of the temperature type |
36 | | - '_dat' => 'Data', // name of the datetime (calendar) type |
37 | | - '_ema' => 'Email', // name of the email type |
38 | | - '_uri' => 'URL', // name of the URL type |
39 | | - '_anu' => 'Annotazione URI', // name of the annotation URI type (OWL annotation property) |
40 | | - '_tel' => 'Telephone number', // name of the telephone (URI) type //TODO: translate |
41 | | - '_rec' => 'Record', // name of record data type //TODO: translate |
42 | | -); |
43 | | - |
44 | | -protected $m_DatatypeAliases = array( |
45 | | - 'URI' => '_uri', |
46 | | - 'Float' => '_num', |
47 | | - 'Integer' => '_num', |
48 | | - 'Intero' => '_num', |
49 | | - 'Enumeration' => '_str', |
50 | | - 'Enumerazione' => '_str' |
51 | | -); |
52 | | - |
53 | | -protected $m_SpecialProperties = array( |
54 | | - // always start upper-case |
55 | | - '_TYPE' => 'Ha tipo', // 'Has type', |
56 | | - '_URI' => 'URI equivalente', // 'Equivalent URI', |
57 | | - '_SUBP' => 'Sottoproprietà di', // 'Subproperty of', |
58 | | - '_SUBC' => 'Subcategory of', // TODO: translate |
59 | | - '_UNIT' => 'Visualizza unità', |
60 | | - '_IMPO' => 'Importato da', // 'Imported from', |
61 | | - '_CONV' => 'Corrisponde a ', // 'Corresponds to', |
62 | | - '_SERV' => 'Fornisce servizio', // 'Provides service', |
63 | | - '_PVAL' => 'Ammette valore', // 'Allows value' |
64 | | - '_MDAT' => 'Data di modifica', |
65 | | - '_ERRP' => 'Ha un valore improprio per', |
66 | | - '_LIST' => 'Has fields', // TODO: translate |
67 | | -); |
68 | | - |
69 | | -protected $m_SpecialPropertyAliases = array( |
70 | | - 'Display unit' => '_UNIT', |
71 | | -); |
72 | | - |
73 | | -protected $m_Namespaces = array( // TODO: translate (English aliases can be kept, see other language files |
74 | | - SMW_NS_PROPERTY => 'Proprietà', |
75 | | - SMW_NS_PROPERTY_TALK => 'Discussione proprietà', |
76 | | - SMW_NS_TYPE => 'Tipo', |
77 | | - SMW_NS_TYPE_TALK => 'Discussione tipo', |
78 | | - SMW_NS_CONCEPT => 'Concetto', |
79 | | - SMW_NS_CONCEPT_TALK => 'Discussione concetto' |
80 | | -); |
81 | | - |
82 | | -protected $m_months = array( "gennaio", "febbraio", "marzo", "aprile", "maggio", "giugno", "luglio", "agosto", "settembre", "ottobre", "novembre", "dicembre" ); |
83 | | - |
84 | | -protected $m_monthsshort = array( "gen", "feb", "mar", "apr", "mag", "giu", "lug", "ago", "set", "ott", "nov", "dic" ); |
85 | | - |
86 | 86 | } |
\ No newline at end of file |
Index: trunk/extensions/SemanticMediaWiki/languages/SMW_LanguageNo.php |
— | — | @@ -22,74 +22,74 @@ |
23 | 23 | */ |
24 | 24 | class SMWLanguageNo extends SMWLanguage { |
25 | 25 | |
26 | | -protected $m_DatatypeLabels = array( |
27 | | - '_wpg' => 'Side', // name of page datatype |
28 | | - '_str' => 'Kort tekst', // name of the string type |
29 | | - '_txt' => 'Lang tekst', // name of the text type (very long strings) |
30 | | - '_cod' => 'Kode', // name of the (source) code type |
31 | | - '_boo' => 'Boolsk', // name of the boolean type |
32 | | - '_num' => 'Tall', // name for the datatype of numbers |
33 | | - '_geo' => 'Geografisk koordinat', // name of the geocoord type |
34 | | - '_tem' => 'Temperatur', // name of the temperature type |
35 | | - '_dat' => 'Dato', // name of the datetime (calendar) type |
36 | | - '_ema' => 'E-post', // name of the email type |
37 | | - '_uri' => 'URL', // name of the URL type |
38 | | - '_anu' => 'URI-merknad', // name of the annotation URI type (OWL annotation property) |
39 | | - '_tel' => 'Telephone number', // name of the telephone (URI) type //TODO: translate |
40 | | - '_rec' => 'Record', // name of record data type //TODO: translate |
41 | | -); |
| 26 | + protected $m_DatatypeLabels = array( |
| 27 | + '_wpg' => 'Side', // name of page datatype |
| 28 | + '_str' => 'Kort tekst', // name of the string type |
| 29 | + '_txt' => 'Lang tekst', // name of the text type (very long strings) |
| 30 | + '_cod' => 'Kode', // name of the (source) code type |
| 31 | + '_boo' => 'Boolsk', // name of the boolean type |
| 32 | + '_num' => 'Tall', // name for the datatype of numbers |
| 33 | + '_geo' => 'Geografisk koordinat', // name of the geocoord type |
| 34 | + '_tem' => 'Temperatur', // name of the temperature type |
| 35 | + '_dat' => 'Dato', // name of the datetime (calendar) type |
| 36 | + '_ema' => 'E-post', // name of the email type |
| 37 | + '_uri' => 'URL', // name of the URL type |
| 38 | + '_anu' => 'URI-merknad', // name of the annotation URI type (OWL annotation property) |
| 39 | + '_tel' => 'Telephone number', // name of the telephone (URI) type //TODO: translate |
| 40 | + '_rec' => 'Record', // name of record data type //TODO: translate |
| 41 | + ); |
| 42 | + |
| 43 | + protected $m_DatatypeAliases = array( |
| 44 | + 'Streng' => '_str', |
| 45 | + 'Linje' => '_str', |
| 46 | + 'Tekst' => '_txt', |
| 47 | + 'Hellall' => '_num', |
| 48 | + 'Desimaltall' => '_num', |
| 49 | + 'Liste' => '_str', |
| 50 | + 'Kildekode' => '_cod', |
| 51 | + 'Koordinat' => '_geo', |
| 52 | + 'Epost' => '_ema', |
| 53 | + 'URI' => '_uri', |
| 54 | + 'Nettadresse' => '_uri' |
| 55 | + ); |
| 56 | + |
| 57 | + protected $m_SpecialProperties = array( |
| 58 | + // always start upper-case |
| 59 | + '_TYPE' => 'Har type', |
| 60 | + '_URI' => 'Ekvivalent URI', |
| 61 | + '_SUBP' => 'Underkategori av', |
| 62 | + '_SUBC' => 'Subcategory of', // TODO: translate |
| 63 | + '_UNIT' => 'Visningsenhet', |
| 64 | + '_IMPO' => 'Importert fra', |
| 65 | + '_CONV' => 'Svarer til', |
| 66 | + '_SERV' => 'Tilbyr tjeneste', |
| 67 | + '_PVAL' => 'Tillater verdi', |
| 68 | + '_MDAT' => 'Endringsdato', |
| 69 | + '_ERRP' => 'Feilaktig verdi for', |
| 70 | + '_LIST' => 'Has fields', // TODO: translate |
| 71 | + ); |
| 72 | + |
| 73 | + protected $m_SpecialPropertyAliases = array( |
| 74 | + 'Type' => '_TYPE', |
| 75 | + 'Enhet' => '_UNIT', |
| 76 | + 'Synonym URI' => '_URI', |
| 77 | + 'Synonym adresse' => '_URI' |
| 78 | + ); |
| 79 | + |
| 80 | + |
| 81 | + protected $m_Namespaces = array( |
| 82 | + SMW_NS_PROPERTY => 'Egenskap', |
| 83 | + SMW_NS_PROPERTY_TALK => 'Egenskap-diskusjon', |
| 84 | + SMW_NS_TYPE => 'Type', |
| 85 | + SMW_NS_TYPE_TALK => 'Type-diskusjon', |
| 86 | + SMW_NS_CONCEPT => 'Konsept', |
| 87 | + SMW_NS_CONCEPT_TALK => 'Konsept-diskusjon' |
| 88 | + ); |
| 89 | + |
| 90 | + protected $m_dateformats = array( array( SMW_Y ), array( SMW_MY, SMW_YM ), array( SMW_DMY, SMW_MDY, SMW_YMD, SMW_YDM ) ); |
| 91 | + |
| 92 | + protected $m_months = array( "januar", "februar", "mars", "april", "mai", "juni", "juli", "august", "september", "oktober", "november", "desember" ); |
| 93 | + |
| 94 | + protected $m_monthsshort = array( "jan.", "feb.", "mars", "april", "mai", "juni", "juli", "aug.", "sep.", "okt.", "nov.", "des." ); |
42 | 95 | |
43 | | -protected $m_DatatypeAliases = array( |
44 | | - 'Streng' => '_str', |
45 | | - 'Linje' => '_str', |
46 | | - 'Tekst' => '_txt', |
47 | | - 'Hellall' => '_num', |
48 | | - 'Desimaltall' => '_num', |
49 | | - 'Liste' => '_str', |
50 | | - 'Kildekode' => '_cod', |
51 | | - 'Koordinat' => '_geo', |
52 | | - 'Epost' => '_ema', |
53 | | - 'URI' => '_uri', |
54 | | - 'Nettadresse' => '_uri' |
55 | | -); |
56 | | - |
57 | | -protected $m_SpecialProperties = array( |
58 | | - // always start upper-case |
59 | | - '_TYPE' => 'Har type', |
60 | | - '_URI' => 'Ekvivalent URI', |
61 | | - '_SUBP' => 'Underkategori av', |
62 | | - '_SUBC' => 'Subcategory of', // TODO: translate |
63 | | - '_UNIT' => 'Visningsenhet', |
64 | | - '_IMPO' => 'Importert fra', |
65 | | - '_CONV' => 'Svarer til', |
66 | | - '_SERV' => 'Tilbyr tjeneste', |
67 | | - '_PVAL' => 'Tillater verdi', |
68 | | - '_MDAT' => 'Endringsdato', |
69 | | - '_ERRP' => 'Feilaktig verdi for', |
70 | | - '_LIST' => 'Has fields', // TODO: translate |
71 | | -); |
72 | | - |
73 | | -protected $m_SpecialPropertyAliases = array( |
74 | | - 'Type' => '_TYPE', |
75 | | - 'Enhet' => '_UNIT', |
76 | | - 'Synonym URI' => '_URI', |
77 | | - 'Synonym adresse' => '_URI' |
78 | | -); |
79 | | - |
80 | | - |
81 | | -protected $m_Namespaces = array( |
82 | | - SMW_NS_PROPERTY => 'Egenskap', |
83 | | - SMW_NS_PROPERTY_TALK => 'Egenskap-diskusjon', |
84 | | - SMW_NS_TYPE => 'Type', |
85 | | - SMW_NS_TYPE_TALK => 'Type-diskusjon', |
86 | | - SMW_NS_CONCEPT => 'Konsept', |
87 | | - SMW_NS_CONCEPT_TALK => 'Konsept-diskusjon' |
88 | | -); |
89 | | - |
90 | | -protected $m_dateformats = array( array( SMW_Y ), array( SMW_MY, SMW_YM ), array( SMW_DMY, SMW_MDY, SMW_YMD, SMW_YDM ) ); |
91 | | - |
92 | | -protected $m_months = array( "januar", "februar", "mars", "april", "mai", "juni", "juli", "august", "september", "oktober", "november", "desember" ); |
93 | | - |
94 | | -protected $m_monthsshort = array( "jan.", "feb.", "mars", "april", "mai", "juni", "juli", "aug.", "sep.", "okt.", "nov.", "des." ); |
95 | | - |
96 | 96 | } |
Index: trunk/extensions/SemanticMediaWiki/languages/SMW_LanguageSk.php |
— | — | @@ -22,58 +22,58 @@ |
23 | 23 | */ |
24 | 24 | class SMWLanguageSk extends SMWLanguage { |
25 | 25 | |
26 | | -protected $m_DatatypeLabels = array( |
27 | | - '_wpg' => 'Page', // name of page datatype //TODO translate |
28 | | - '_str' => 'Reťazec', // name of the string type |
29 | | - '_txt' => 'Text', // name of the text type (very long strings) //TODO: translate |
30 | | - '_cod' => 'Code', // name of the (source) code type //TODO: translate |
31 | | - '_boo' => 'Boolean', // name of the boolean type // TODO: translate |
32 | | - '_num' => 'Číslo', // name for the datatype of numbers // TODO: check translation (done by pattern matching; mak) |
33 | | - '_geo' => 'Zemepisné súradnice', // name of the geocoord type |
34 | | - '_tem' => 'Teplota', // name of the temperature type |
35 | | - '_dat' => 'Dátum', // name of the datetime (calendar) type |
36 | | - '_ema' => 'Email', // name of the email type |
37 | | - '_uri' => 'URL', // name of the URL type |
38 | | - '_anu' => 'URI anotácie', // name of the annotation URI type (OWL annotation property) |
39 | | - '_tel' => 'Telephone number', // name of the telephone (URI) type //TODO: translate |
40 | | - '_rec' => 'Record', // name of record data type //TODO: translate |
41 | | -); |
| 26 | + protected $m_DatatypeLabels = array( |
| 27 | + '_wpg' => 'Page', // name of page datatype //TODO translate |
| 28 | + '_str' => 'Reťazec', // name of the string type |
| 29 | + '_txt' => 'Text', // name of the text type (very long strings) //TODO: translate |
| 30 | + '_cod' => 'Code', // name of the (source) code type //TODO: translate |
| 31 | + '_boo' => 'Boolean', // name of the boolean type // TODO: translate |
| 32 | + '_num' => 'Číslo', // name for the datatype of numbers // TODO: check translation (done by pattern matching; mak) |
| 33 | + '_geo' => 'Zemepisné súradnice', // name of the geocoord type |
| 34 | + '_tem' => 'Teplota', // name of the temperature type |
| 35 | + '_dat' => 'Dátum', // name of the datetime (calendar) type |
| 36 | + '_ema' => 'Email', // name of the email type |
| 37 | + '_uri' => 'URL', // name of the URL type |
| 38 | + '_anu' => 'URI anotácie', // name of the annotation URI type (OWL annotation property) |
| 39 | + '_tel' => 'Telephone number', // name of the telephone (URI) type //TODO: translate |
| 40 | + '_rec' => 'Record', // name of record data type //TODO: translate |
| 41 | + ); |
| 42 | + |
| 43 | + protected $m_DatatypeAliases = array( |
| 44 | + 'URI' => '_uri', |
| 45 | + 'Celé číslo' => '_num', |
| 46 | + 'Desatinné číslo' => '_num' |
| 47 | + ); |
| 48 | + |
| 49 | + protected $m_SpecialProperties = array( |
| 50 | + // always start upper-case |
| 51 | + '_TYPE' => 'Má typ', |
| 52 | + '_URI' => 'Ekvivalent URI', |
| 53 | + '_SUBP' => 'Subproperty of', // TODO: translate |
| 54 | + '_SUBC' => 'Subcategory of', // TODO: translate |
| 55 | + '_UNIT' => 'Zobrazovacia jednotka', // TODO: should be plural now ("units"), singluar stays alias |
| 56 | + '_IMPO' => 'Importovaný z', |
| 57 | + '_CONV' => 'Zodpovedá', |
| 58 | + '_SERV' => 'Poskytuje službu', |
| 59 | + '_PVAL' => 'Allowed value', // TODO translate |
| 60 | + '_MDAT' => 'Modification date', // TODO: translate |
| 61 | + '_ERRP' => 'Has improper value for', // TODO: translate |
| 62 | + '_LIST' => 'Has fields', // TODO: translate |
| 63 | + ); |
| 64 | + |
| 65 | + protected $m_SpecialPropertyAliases = array( |
| 66 | + 'Zobrazovacia jednotka' => '_UNIT' |
| 67 | + ); |
| 68 | + |
| 69 | + protected $m_Namespaces = array( |
| 70 | + SMW_NS_PROPERTY => 'Atribút', |
| 71 | + SMW_NS_PROPERTY_TALK => 'Diskusia o atribúte', |
| 72 | + SMW_NS_TYPE => 'Typ', |
| 73 | + SMW_NS_TYPE_TALK => 'Diskusia o type', |
| 74 | + SMW_NS_CONCEPT => 'Concept', // TODO: translate |
| 75 | + SMW_NS_CONCEPT_TALK => 'Concept_talk' // TODO: translate |
| 76 | + ); |
42 | 77 | |
43 | | -protected $m_DatatypeAliases = array( |
44 | | - 'URI' => '_uri', |
45 | | - 'Celé číslo' => '_num', |
46 | | - 'Desatinné číslo' => '_num' |
47 | | -); |
48 | | - |
49 | | -protected $m_SpecialProperties = array( |
50 | | - // always start upper-case |
51 | | - '_TYPE' => 'Má typ', |
52 | | - '_URI' => 'Ekvivalent URI', |
53 | | - '_SUBP' => 'Subproperty of', // TODO: translate |
54 | | - '_SUBC' => 'Subcategory of', // TODO: translate |
55 | | - '_UNIT' => 'Zobrazovacia jednotka', // TODO: should be plural now ("units"), singluar stays alias |
56 | | - '_IMPO' => 'Importovaný z', |
57 | | - '_CONV' => 'Zodpovedá', |
58 | | - '_SERV' => 'Poskytuje službu', |
59 | | - '_PVAL' => 'Allowed value', // TODO translate |
60 | | - '_MDAT' => 'Modification date', // TODO: translate |
61 | | - '_ERRP' => 'Has improper value for', // TODO: translate |
62 | | - '_LIST' => 'Has fields', // TODO: translate |
63 | | -); |
64 | | - |
65 | | -protected $m_SpecialPropertyAliases = array( |
66 | | - 'Zobrazovacia jednotka' => '_UNIT' |
67 | | -); |
68 | | - |
69 | | -protected $m_Namespaces = array( |
70 | | - SMW_NS_PROPERTY => 'Atribút', |
71 | | - SMW_NS_PROPERTY_TALK => 'Diskusia o atribúte', |
72 | | - SMW_NS_TYPE => 'Typ', |
73 | | - SMW_NS_TYPE_TALK => 'Diskusia o type', |
74 | | - SMW_NS_CONCEPT => 'Concept', // TODO: translate |
75 | | - SMW_NS_CONCEPT_TALK => 'Concept_talk' // TODO: translate |
76 | | -); |
77 | | - |
78 | 78 | } |
79 | 79 | |
80 | 80 | |
Index: trunk/extensions/SemanticMediaWiki/languages/SMW_LanguagePt.php |
— | — | @@ -22,65 +22,65 @@ |
23 | 23 | */ |
24 | 24 | class SMWLanguagePt extends SMWLanguage { |
25 | 25 | |
26 | | -protected $m_DatatypeLabels = array( |
27 | | - '_wpg' => 'Página', // name of page datatype |
28 | | - '_str' => 'Cadeia', // name of the string type |
29 | | - '_txt' => 'Texto', // name of the text type (very long strings) |
30 | | - '_cod' => 'Código', // name of the (source) code type //TODO: translate |
31 | | - '_boo' => 'Variável Booléen', // name of the boolean type |
32 | | - '_num' => 'Número', // name for the datatype of numbers |
33 | | - '_geo' => 'Coordenadas geográficas', // name of the geocoord type |
34 | | - '_tem' => 'Temperatura', // name of the temperature type |
35 | | - '_dat' => 'Data', // name of the datetime (calendar) type |
36 | | - '_ema' => 'Email', // name of the email type (Portuguese does not have another word for this) |
37 | | - '_uri' => 'URL', // name of the URI type |
38 | | - '_anu' => 'Anotação-URI', // name of the annotation URI type (OWL annotation property) |
39 | | - '_tel' => 'Telephone number', // name of the telephone (URI) type //TODO: translate |
40 | | - '_rec' => 'Record', // name of record data type //TODO: translate |
41 | | -); |
| 26 | + protected $m_DatatypeLabels = array( |
| 27 | + '_wpg' => 'Página', // name of page datatype |
| 28 | + '_str' => 'Cadeia', // name of the string type |
| 29 | + '_txt' => 'Texto', // name of the text type (very long strings) |
| 30 | + '_cod' => 'Código', // name of the (source) code type //TODO: translate |
| 31 | + '_boo' => 'Variável Booléen', // name of the boolean type |
| 32 | + '_num' => 'Número', // name for the datatype of numbers |
| 33 | + '_geo' => 'Coordenadas geográficas', // name of the geocoord type |
| 34 | + '_tem' => 'Temperatura', // name of the temperature type |
| 35 | + '_dat' => 'Data', // name of the datetime (calendar) type |
| 36 | + '_ema' => 'Email', // name of the email type (Portuguese does not have another word for this) |
| 37 | + '_uri' => 'URL', // name of the URI type |
| 38 | + '_anu' => 'Anotação-URI', // name of the annotation URI type (OWL annotation property) |
| 39 | + '_tel' => 'Telephone number', // name of the telephone (URI) type //TODO: translate |
| 40 | + '_rec' => 'Record', // name of record data type //TODO: translate |
| 41 | + ); |
| 42 | + |
| 43 | + protected $m_DatatypeAliases = array( |
| 44 | + 'URI' => '_uri', |
| 45 | + 'Número inteiro' => '_num', |
| 46 | + 'Folga' => '_num', |
| 47 | + 'Enumeração' => '_str', |
| 48 | + ); |
| 49 | + |
| 50 | + protected $m_SpecialProperties = array( |
| 51 | + // always start upper-case |
| 52 | + '_TYPE' => 'Tem o tipo', |
| 53 | + '_URI' => 'URI equivalente', |
| 54 | + '_SUBP' => 'Sub-propriedade de', |
| 55 | + '_SUBC' => 'Subcategory of', // TODO: translate |
| 56 | + '_UNIT' => 'Unidades de amostra', |
| 57 | + '_IMPO' => 'Importado de', |
| 58 | + '_CONV' => 'Corresponde a', |
| 59 | + '_SERV' => 'Fornece o serviço', |
| 60 | + '_PVAL' => 'Permite valor', |
| 61 | + '_MDAT' => 'Modification date', // TODO: translate |
| 62 | + '_ERRP' => 'Has improper value for', // TODO: translate |
| 63 | + '_LIST' => 'Has fields', // TODO: translate |
| 64 | + ); |
| 65 | + |
| 66 | + protected $m_SpecialPropertyAliases = array( |
| 67 | + 'Unidade de amostra' => '_UNIT' |
| 68 | + ); |
| 69 | + |
| 70 | + protected $m_Namespaces = array( |
| 71 | + SMW_NS_PROPERTY => "Propriedade", |
| 72 | + SMW_NS_PROPERTY_TALK => "Discussão_propriedade", |
| 73 | + SMW_NS_TYPE => "Tipo", |
| 74 | + SMW_NS_TYPE_TALK => "Discussão_tipo", |
| 75 | + SMW_NS_CONCEPT => 'Conceito', |
| 76 | + SMW_NS_CONCEPT_TALK => 'Discussão_conceito' |
| 77 | + ); |
| 78 | + |
| 79 | + protected $m_dateformats = array( array( SMW_Y ), array( SMW_MY, SMW_YM ), array( SMW_MDY, SMW_DMY, SMW_YMD, SMW_YDM ) ); |
| 80 | + |
| 81 | + protected $m_months = array( "Janeiro", "Fevereiro", "Março", "Abril", "Maio", "Junho", "Julho", "Agosto", "Setembro", "Outubro", "Novembro", "Dezembro" ); |
| 82 | + |
| 83 | + protected $m_monthsshort = array( "Jan", "Fev", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Out", "Nov", "Dez" ); |
42 | 84 | |
43 | | -protected $m_DatatypeAliases = array( |
44 | | - 'URI' => '_uri', |
45 | | - 'Número inteiro' => '_num', |
46 | | - 'Folga' => '_num', |
47 | | - 'Enumeração' => '_str', |
48 | | -); |
49 | | - |
50 | | -protected $m_SpecialProperties = array( |
51 | | - // always start upper-case |
52 | | - '_TYPE' => 'Tem o tipo', |
53 | | - '_URI' => 'URI equivalente', |
54 | | - '_SUBP' => 'Sub-propriedade de', |
55 | | - '_SUBC' => 'Subcategory of', // TODO: translate |
56 | | - '_UNIT' => 'Unidades de amostra', |
57 | | - '_IMPO' => 'Importado de', |
58 | | - '_CONV' => 'Corresponde a', |
59 | | - '_SERV' => 'Fornece o serviço', |
60 | | - '_PVAL' => 'Permite valor', |
61 | | - '_MDAT' => 'Modification date', // TODO: translate |
62 | | - '_ERRP' => 'Has improper value for', // TODO: translate |
63 | | - '_LIST' => 'Has fields', // TODO: translate |
64 | | -); |
65 | | - |
66 | | -protected $m_SpecialPropertyAliases = array( |
67 | | - 'Unidade de amostra' => '_UNIT' |
68 | | -); |
69 | | - |
70 | | -protected $m_Namespaces = array( |
71 | | - SMW_NS_PROPERTY => "Propriedade", |
72 | | - SMW_NS_PROPERTY_TALK => "Discussão_propriedade", |
73 | | - SMW_NS_TYPE => "Tipo", |
74 | | - SMW_NS_TYPE_TALK => "Discussão_tipo", |
75 | | - SMW_NS_CONCEPT => 'Conceito', |
76 | | - SMW_NS_CONCEPT_TALK => 'Discussão_conceito' |
77 | | -); |
78 | | - |
79 | | -protected $m_dateformats = array( array( SMW_Y ), array( SMW_MY, SMW_YM ), array( SMW_MDY, SMW_DMY, SMW_YMD, SMW_YDM ) ); |
80 | | - |
81 | | -protected $m_months = array( "Janeiro", "Fevereiro", "Março", "Abril", "Maio", "Junho", "Julho", "Agosto", "Setembro", "Outubro", "Novembro", "Dezembro" ); |
82 | | - |
83 | | -protected $m_monthsshort = array( "Jan", "Fev", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Out", "Nov", "Dez" ); |
84 | | - |
85 | 85 | } |
86 | 86 | |
87 | 87 | |
Index: trunk/extensions/SemanticMediaWiki/languages/SMW_LanguageRu.php |
— | — | @@ -22,66 +22,66 @@ |
23 | 23 | */ |
24 | 24 | class SMWLanguageRu extends SMWLanguage { |
25 | 25 | |
26 | | -protected $m_DatatypeLabels = array( |
27 | | - '_wpg' => 'Страница', // name of page datatype |
28 | | - '_str' => 'Строка', // name of the string type |
29 | | - '_txt' => 'Текст', // name of the text type (very long strings) |
30 | | - '_cod' => 'Код', // name of the (source) code type |
31 | | - '_boo' => 'Булево', // name of the boolean type |
32 | | - '_num' => 'Число', // name for the datatype of numbers |
33 | | - '_geo' => 'Географическая координата', // name of the geocoord type |
34 | | - '_tem' => 'Температура', // name of the temperature type |
35 | | - '_dat' => 'Дата', // name of the datetime (calendar) type |
36 | | - '_ema' => 'Почта', // name of the email type |
37 | | - '_uri' => 'URL', // name of the URL type |
38 | | - '_anu' => 'URI аннотации', // name of the annotation URI type (OWL annotation property) |
39 | | - '_tel' => 'Telephone number', // name of the telephone (URI) type //TODO: translate |
40 | | - '_rec' => 'Record', // name of record data type //TODO: translate |
41 | | -); |
| 26 | + protected $m_DatatypeLabels = array( |
| 27 | + '_wpg' => 'Страница', // name of page datatype |
| 28 | + '_str' => 'Строка', // name of the string type |
| 29 | + '_txt' => 'Текст', // name of the text type (very long strings) |
| 30 | + '_cod' => 'Код', // name of the (source) code type |
| 31 | + '_boo' => 'Булево', // name of the boolean type |
| 32 | + '_num' => 'Число', // name for the datatype of numbers |
| 33 | + '_geo' => 'Географическая координата', // name of the geocoord type |
| 34 | + '_tem' => 'Температура', // name of the temperature type |
| 35 | + '_dat' => 'Дата', // name of the datetime (calendar) type |
| 36 | + '_ema' => 'Почта', // name of the email type |
| 37 | + '_uri' => 'URL', // name of the URL type |
| 38 | + '_anu' => 'URI аннотации', // name of the annotation URI type (OWL annotation property) |
| 39 | + '_tel' => 'Telephone number', // name of the telephone (URI) type //TODO: translate |
| 40 | + '_rec' => 'Record', // name of record data type //TODO: translate |
| 41 | + ); |
| 42 | + |
| 43 | + protected $m_DatatypeAliases = array( |
| 44 | + 'URI' => '_uri', |
| 45 | + 'Целое' => '_num', |
| 46 | + 'Десятичное' => '_num', |
| 47 | + 'Плавающее' => '_num', |
| 48 | + 'Перечисление' => '_str' |
| 49 | + ); |
| 50 | + |
| 51 | + protected $m_SpecialProperties = array( |
| 52 | + // always start upper-case |
| 53 | + '_TYPE' => 'Имеет тип', |
| 54 | + '_URI' => 'Эквивалентный URI', |
| 55 | + '_SUBP' => 'Подчиненное свойству', |
| 56 | + '_SUBC' => 'Subcategory of', // TODO: translate |
| 57 | + '_UNIT' => 'Отображаемые единицы', |
| 58 | + '_IMPO' => 'Импортировано из', |
| 59 | + '_CONV' => 'Относится к', |
| 60 | + '_SERV' => 'Предоставляет сервис', |
| 61 | + '_PVAL' => 'Допустимое значение', |
| 62 | + '_MDAT' => 'Modification date', // TODO: translate |
| 63 | + '_ERRP' => 'Has improper value for', // TODO: translate |
| 64 | + '_LIST' => 'Has fields', // TODO: translate |
| 65 | + ); |
| 66 | + |
| 67 | + protected $m_SpecialPropertyAliases = array( |
| 68 | + 'Тип данных' => '_TYPE', |
| 69 | + 'Отображаемая единица' => '_UNIT' |
| 70 | + ); |
| 71 | + |
| 72 | + |
| 73 | + protected $m_Namespaces = array( |
| 74 | + SMW_NS_PROPERTY => 'Свойство', |
| 75 | + SMW_NS_PROPERTY_TALK => 'Обсуждение_свойства', |
| 76 | + SMW_NS_TYPE => 'Тип', |
| 77 | + SMW_NS_TYPE_TALK => 'Обсуждение_типа', |
| 78 | + SMW_NS_CONCEPT => 'Концепция', |
| 79 | + SMW_NS_CONCEPT_TALK => 'Обсуждение_концепции' |
| 80 | + ); |
| 81 | + |
| 82 | + protected $m_dateformats = array( array( SMW_Y ), array( SMW_MY, SMW_YM ), array( SMW_DMY, SMW_MDY, SMW_YMD, SMW_YDM ) ); |
| 83 | + |
| 84 | + protected $m_months = array( "января", "февраля", "марта", "апреля", "мая", "июня", "июля", "августа", "сентрября", "октября", "ноября", "декабря" ); |
| 85 | + |
| 86 | + protected $m_monthsshort = array( "янв", "фев", "мар", "апр", "мая", "июн", "июл", "авг", "сен", "окт", "ноя", "дек" ); |
42 | 87 | |
43 | | -protected $m_DatatypeAliases = array( |
44 | | - 'URI' => '_uri', |
45 | | - 'Целое' => '_num', |
46 | | - 'Десятичное' => '_num', |
47 | | - 'Плавающее' => '_num', |
48 | | - 'Перечисление' => '_str' |
49 | | -); |
50 | | - |
51 | | -protected $m_SpecialProperties = array( |
52 | | - // always start upper-case |
53 | | - '_TYPE' => 'Имеет тип', |
54 | | - '_URI' => 'Эквивалентный URI', |
55 | | - '_SUBP' => 'Подчиненное свойству', |
56 | | - '_SUBC' => 'Subcategory of', // TODO: translate |
57 | | - '_UNIT' => 'Отображаемые единицы', |
58 | | - '_IMPO' => 'Импортировано из', |
59 | | - '_CONV' => 'Относится к', |
60 | | - '_SERV' => 'Предоставляет сервис', |
61 | | - '_PVAL' => 'Допустимое значение', |
62 | | - '_MDAT' => 'Modification date', // TODO: translate |
63 | | - '_ERRP' => 'Has improper value for', // TODO: translate |
64 | | - '_LIST' => 'Has fields', // TODO: translate |
65 | | -); |
66 | | - |
67 | | -protected $m_SpecialPropertyAliases = array( |
68 | | - 'Тип данных' => '_TYPE', |
69 | | - 'Отображаемая единица' => '_UNIT' |
70 | | -); |
71 | | - |
72 | | - |
73 | | -protected $m_Namespaces = array( |
74 | | - SMW_NS_PROPERTY => 'Свойство', |
75 | | - SMW_NS_PROPERTY_TALK => 'Обсуждение_свойства', |
76 | | - SMW_NS_TYPE => 'Тип', |
77 | | - SMW_NS_TYPE_TALK => 'Обсуждение_типа', |
78 | | - SMW_NS_CONCEPT => 'Концепция', |
79 | | - SMW_NS_CONCEPT_TALK => 'Обсуждение_концепции' |
80 | | -); |
81 | | - |
82 | | -protected $m_dateformats = array( array( SMW_Y ), array( SMW_MY, SMW_YM ), array( SMW_DMY, SMW_MDY, SMW_YMD, SMW_YDM ) ); |
83 | | - |
84 | | -protected $m_months = array( "января", "февраля", "марта", "апреля", "мая", "июня", "июля", "августа", "сентрября", "октября", "ноября", "декабря" ); |
85 | | - |
86 | | -protected $m_monthsshort = array( "янв", "фев", "мар", "апр", "мая", "июн", "июл", "авг", "сен", "окт", "ноя", "дек" ); |
87 | | - |
88 | 88 | } |
Index: trunk/extensions/SemanticMediaWiki/languages/SMW_LanguageDe_formal.php |
— | — | @@ -21,5 +21,4 @@ |
22 | 22 | * @ingroup SMWLanguage |
23 | 23 | * @ingroup Language |
24 | 24 | */ |
25 | | -class SMWLanguageDe_formal extends SMWLanguageDe { |
26 | | -} |
| 25 | +class SMWLanguageDe_formal extends SMWLanguageDe {} |
Index: trunk/extensions/SemanticMediaWiki/languages/SMW_LanguageDe.php |
— | — | @@ -29,65 +29,65 @@ |
30 | 30 | * @ingroup Language |
31 | 31 | */ |
32 | 32 | class SMWLanguageDe extends SMWLanguage { |
| 33 | + |
| 34 | + protected $m_DatatypeLabels = array( |
| 35 | + '_wpg' => 'Seite', // name of page datatype |
| 36 | + '_str' => 'Zeichenkette', // name of the string type |
| 37 | + '_txt' => 'Text', // name of the text type |
| 38 | + '_cod' => 'Quellcode', // name of the (source) code type |
| 39 | + '_boo' => 'Wahrheitswert', // name of the boolean type |
| 40 | + '_num' => 'Zahl', // name for the datatype of numbers |
| 41 | + '_geo' => 'Geografische Koordinaten', // name of the geocoord type |
| 42 | + '_tem' => 'Temperatur', // name of the temperature type |
| 43 | + '_dat' => 'Datum', // name of the datetime (calendar) type |
| 44 | + '_ema' => 'Email', // name of the email type |
| 45 | + '_uri' => 'URL', // name of the URL type |
| 46 | + '_anu' => 'URI-Annotation', // name of the annotation URI type (OWL annotation property) |
| 47 | + '_tel' => 'Telefonnummer', // name of the telephone number URI datatype |
| 48 | + '_rec' => 'Verbund', // name of record data type |
| 49 | + ); |
| 50 | + |
| 51 | + protected $m_DatatypeAliases = array( |
| 52 | + 'URI' => '_uri', |
| 53 | + 'Ganze Zahl' => '_num', |
| 54 | + 'Dezimalzahl' => '_num', |
| 55 | + 'Aufzählung' => '_str', |
| 56 | + ); |
| 57 | + |
| 58 | + protected $m_SpecialProperties = array( |
| 59 | + // always start upper-case |
| 60 | + '_TYPE' => 'Datentyp', |
| 61 | + '_URI' => 'Gleichwertige URI', |
| 62 | + '_SUBP' => 'Unterattribut von', |
| 63 | + '_SUBC' => 'Unterkategorie von', |
| 64 | + '_UNIT' => 'Einheiten', |
| 65 | + '_IMPO' => 'Importiert aus', |
| 66 | + '_CONV' => 'Entspricht', |
| 67 | + '_SERV' => 'Bietet Service', |
| 68 | + '_PVAL' => 'Erlaubt Wert', |
| 69 | + '_MDAT' => 'Zuletzt geändert', |
| 70 | + '_ERRP' => 'Hat unpassenden Wert für', |
| 71 | + '_LIST' => 'Hat Komponenten', |
| 72 | + ); |
| 73 | + |
| 74 | + protected $m_SpecialPropertyAliases = array( |
| 75 | + 'Hat Datentyp' => '_TYPE', |
| 76 | + 'Ausgabeeinheit' => '_UNIT' |
| 77 | + ); |
| 78 | + |
| 79 | + protected $m_Namespaces = array( |
| 80 | + SMW_NS_PROPERTY => "Attribut", |
| 81 | + SMW_NS_PROPERTY_TALK => "Attribut_Diskussion", |
| 82 | + SMW_NS_TYPE => "Datentyp", |
| 83 | + SMW_NS_TYPE_TALK => "Datentyp_Diskussion", |
| 84 | + SMW_NS_CONCEPT => 'Konzept', |
| 85 | + SMW_NS_CONCEPT_TALK => 'Konzept_Diskussion' |
| 86 | + ); |
| 87 | + |
| 88 | + protected $m_dateformats = array( array( SMW_Y ), array( SMW_MY, SMW_YM ), array( SMW_DMY, SMW_MDY, SMW_YMD, SMW_YDM ) ); |
| 89 | + |
| 90 | + protected $m_months = array( "Januar", "Februar", "März", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Dezember" ); |
| 91 | + |
| 92 | + protected $m_monthsshort = array( "Jan", "Feb", "Mär", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dez" ); |
33 | 93 | |
34 | | -protected $m_DatatypeLabels = array( |
35 | | - '_wpg' => 'Seite', // name of page datatype |
36 | | - '_str' => 'Zeichenkette', // name of the string type |
37 | | - '_txt' => 'Text', // name of the text type |
38 | | - '_cod' => 'Quellcode', // name of the (source) code type |
39 | | - '_boo' => 'Wahrheitswert', // name of the boolean type |
40 | | - '_num' => 'Zahl', // name for the datatype of numbers |
41 | | - '_geo' => 'Geografische Koordinaten', // name of the geocoord type |
42 | | - '_tem' => 'Temperatur', // name of the temperature type |
43 | | - '_dat' => 'Datum', // name of the datetime (calendar) type |
44 | | - '_ema' => 'Email', // name of the email type |
45 | | - '_uri' => 'URL', // name of the URL type |
46 | | - '_anu' => 'URI-Annotation', // name of the annotation URI type (OWL annotation property) |
47 | | - '_tel' => 'Telefonnummer', // name of the telephone number URI datatype |
48 | | - '_rec' => 'Verbund', // name of record data type |
49 | | -); |
50 | | - |
51 | | -protected $m_DatatypeAliases = array( |
52 | | - 'URI' => '_uri', |
53 | | - 'Ganze Zahl' => '_num', |
54 | | - 'Dezimalzahl' => '_num', |
55 | | - 'Aufzählung' => '_str', |
56 | | -); |
57 | | - |
58 | | -protected $m_SpecialProperties = array( |
59 | | - // always start upper-case |
60 | | - '_TYPE' => 'Datentyp', |
61 | | - '_URI' => 'Gleichwertige URI', |
62 | | - '_SUBP' => 'Unterattribut von', |
63 | | - '_SUBC' => 'Unterkategorie von', |
64 | | - '_UNIT' => 'Einheiten', |
65 | | - '_IMPO' => 'Importiert aus', |
66 | | - '_CONV' => 'Entspricht', |
67 | | - '_SERV' => 'Bietet Service', |
68 | | - '_PVAL' => 'Erlaubt Wert', |
69 | | - '_MDAT' => 'Zuletzt geändert', |
70 | | - '_ERRP' => 'Hat unpassenden Wert für', |
71 | | - '_LIST' => 'Hat Komponenten', |
72 | | -); |
73 | | - |
74 | | -protected $m_SpecialPropertyAliases = array( |
75 | | - 'Hat Datentyp' => '_TYPE', |
76 | | - 'Ausgabeeinheit' => '_UNIT' |
77 | | -); |
78 | | - |
79 | | -protected $m_Namespaces = array( |
80 | | - SMW_NS_PROPERTY => "Attribut", |
81 | | - SMW_NS_PROPERTY_TALK => "Attribut_Diskussion", |
82 | | - SMW_NS_TYPE => "Datentyp", |
83 | | - SMW_NS_TYPE_TALK => "Datentyp_Diskussion", |
84 | | - SMW_NS_CONCEPT => 'Konzept', |
85 | | - SMW_NS_CONCEPT_TALK => 'Konzept_Diskussion' |
86 | | -); |
87 | | - |
88 | | -protected $m_dateformats = array( array( SMW_Y ), array( SMW_MY, SMW_YM ), array( SMW_DMY, SMW_MDY, SMW_YMD, SMW_YDM ) ); |
89 | | - |
90 | | -protected $m_months = array( "Januar", "Februar", "März", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Dezember" ); |
91 | | - |
92 | | -protected $m_monthsshort = array( "Jan", "Feb", "Mär", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dez" ); |
93 | | - |
94 | 94 | } |
Index: trunk/extensions/SemanticMediaWiki/languages/SMW_LanguageZh_tw.php |
— | — | @@ -22,68 +22,68 @@ |
23 | 23 | */ |
24 | 24 | class SMWLanguageZh_tw extends SMWLanguage { |
25 | 25 | |
26 | | -protected $m_DatatypeLabels = array( |
27 | | - '_wpg' => '頁面', // 'Page', // name of page datatype |
28 | | - '_str' => '字串', // 'String', // name of the string type |
29 | | - '_txt' => '文字', // 'Text', // name of the text type |
30 | | - '_cod' => 'Code', // name of the (source) code type //TODO: translate |
31 | | - '_boo' => '布林', // 'Boolean', // name of the boolean type |
32 | | - '_num' => '數字', // 'Number', // name for the datatype of numbers |
33 | | - '_geo' => '地理學的座標', // 'Geographic coordinate', // name of the geocoord type |
34 | | - '_tem' => '溫度', // 'Temperature', // name of the temperature type |
35 | | - '_dat' => '日期', // 'Date', // name of the datetime (calendar) type |
36 | | - '_ema' => 'Email', // 'Email', // name of the email type |
37 | | - '_uri' => 'URL', // 'URL', // name of the URL type |
38 | | - '_anu' => 'URI的註解', // 'Annotation URI' // name of the annotation URI type (OWL annotation property) |
39 | | - '_tel' => 'Telephone number', // name of the telephone (URI) type //TODO: translate |
40 | | - '_rec' => 'Record', // name of record data type //TODO: translate |
41 | | -); |
| 26 | + protected $m_DatatypeLabels = array( |
| 27 | + '_wpg' => '頁面', // 'Page', // name of page datatype |
| 28 | + '_str' => '字串', // 'String', // name of the string type |
| 29 | + '_txt' => '文字', // 'Text', // name of the text type |
| 30 | + '_cod' => 'Code', // name of the (source) code type //TODO: translate |
| 31 | + '_boo' => '布林', // 'Boolean', // name of the boolean type |
| 32 | + '_num' => '數字', // 'Number', // name for the datatype of numbers |
| 33 | + '_geo' => '地理學的座標', // 'Geographic coordinate', // name of the geocoord type |
| 34 | + '_tem' => '溫度', // 'Temperature', // name of the temperature type |
| 35 | + '_dat' => '日期', // 'Date', // name of the datetime (calendar) type |
| 36 | + '_ema' => 'Email', // 'Email', // name of the email type |
| 37 | + '_uri' => 'URL', // 'URL', // name of the URL type |
| 38 | + '_anu' => 'URI的註解', // 'Annotation URI' // name of the annotation URI type (OWL annotation property) |
| 39 | + '_tel' => 'Telephone number', // name of the telephone (URI) type //TODO: translate |
| 40 | + '_rec' => 'Record', // name of record data type //TODO: translate |
| 41 | + ); |
| 42 | + |
| 43 | + protected $m_DatatypeAliases = array( |
| 44 | + '浮點數' => '_num', // '_num', |
| 45 | + '整數' => '_num' , // '_num', |
| 46 | + '列舉' => '_str', // '_str' |
| 47 | + // SMW0.7 compatibility: |
| 48 | + 'Float' => '_num', |
| 49 | + 'Integer' => '_num', |
| 50 | + 'Enumeration' => '_str', |
| 51 | + 'URI' => '_uri', |
| 52 | + ); |
| 53 | + |
| 54 | + protected $m_SpecialProperties = array( |
| 55 | + // always start upper-case |
| 56 | + '_TYPE' => '設有型態', // 'Has type', |
| 57 | + '_URI' => '對應的URI', // 'Equivalent URI', |
| 58 | + '_SUBP' => '所屬的子性質', // 'Subproperty of', |
| 59 | + '_SUBC' => 'Subcategory of', // TODO: translate |
| 60 | + '_UNIT' => '顯示單位', // Display unit |
| 61 | + '_IMPO' => '輸入來源', // Imported from |
| 62 | + '_CONV' => '符合於', // Corresponds to |
| 63 | + '_SERV' => '提供服務', // Provides service |
| 64 | + '_PVAL' => '允許值', // Allows value |
| 65 | + '_MDAT' => 'Modification date', // TODO: translate |
| 66 | + '_ERRP' => 'Has improper value for', // TODO: translate |
| 67 | + '_LIST' => 'Has fields', // TODO: translate |
| 68 | + ); |
| 69 | + |
| 70 | + |
| 71 | + protected $m_SpecialPropertyAliases = array( |
| 72 | + 'Display unit' => '_UNIT' |
| 73 | + ); |
| 74 | + |
| 75 | + protected $m_Namespaces = array( |
| 76 | + SMW_NS_PROPERTY => '性質', // 'Property', |
| 77 | + SMW_NS_PROPERTY_TALK => '性質討論', // 'Property_talk', |
| 78 | + SMW_NS_TYPE => '型態', // 'Type', |
| 79 | + SMW_NS_TYPE_TALK => '型態討論', // 'Type_talk' |
| 80 | + SMW_NS_CONCEPT => '概念', // 'Concept' |
| 81 | + SMW_NS_CONCEPT_TALK => '概念討論', // 'Concept_talk' |
| 82 | + ); |
| 83 | + |
| 84 | + protected $m_dateformats = array( array( SMW_Y ), array( SMW_MY, SMW_YM ), array( SMW_MDY, SMW_DMY, SMW_YMD, SMW_YDM ) ); |
| 85 | + |
| 86 | + protected $m_months = array( "1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月" ); |
42 | 87 | |
43 | | -protected $m_DatatypeAliases = array( |
44 | | - '浮點數' => '_num', // '_num', |
45 | | - '整數' => '_num' , // '_num', |
46 | | - '列舉' => '_str', // '_str' |
47 | | - // SMW0.7 compatibility: |
48 | | - 'Float' => '_num', |
49 | | - 'Integer' => '_num', |
50 | | - 'Enumeration' => '_str', |
51 | | - 'URI' => '_uri', |
52 | | -); |
53 | | - |
54 | | -protected $m_SpecialProperties = array( |
55 | | - // always start upper-case |
56 | | - '_TYPE' => '設有型態', // 'Has type', |
57 | | - '_URI' => '對應的URI', // 'Equivalent URI', |
58 | | - '_SUBP' => '所屬的子性質', // 'Subproperty of', |
59 | | - '_SUBC' => 'Subcategory of', // TODO: translate |
60 | | - '_UNIT' => '顯示單位', // Display unit |
61 | | - '_IMPO' => '輸入來源', // Imported from |
62 | | - '_CONV' => '符合於', // Corresponds to |
63 | | - '_SERV' => '提供服務', // Provides service |
64 | | - '_PVAL' => '允許值', // Allows value |
65 | | - '_MDAT' => 'Modification date', // TODO: translate |
66 | | - '_ERRP' => 'Has improper value for', // TODO: translate |
67 | | - '_LIST' => 'Has fields', // TODO: translate |
68 | | -); |
69 | | - |
70 | | - |
71 | | -protected $m_SpecialPropertyAliases = array( |
72 | | - 'Display unit' => '_UNIT' |
73 | | -); |
74 | | - |
75 | | -protected $m_Namespaces = array( |
76 | | - SMW_NS_PROPERTY => '性質', // 'Property', |
77 | | - SMW_NS_PROPERTY_TALK => '性質討論', // 'Property_talk', |
78 | | - SMW_NS_TYPE => '型態', // 'Type', |
79 | | - SMW_NS_TYPE_TALK => '型態討論', // 'Type_talk' |
80 | | - SMW_NS_CONCEPT => '概念', // 'Concept' |
81 | | - SMW_NS_CONCEPT_TALK => '概念討論', // 'Concept_talk' |
82 | | -); |
83 | | - |
84 | | -protected $m_dateformats = array( array( SMW_Y ), array( SMW_MY, SMW_YM ), array( SMW_MDY, SMW_DMY, SMW_YMD, SMW_YDM ) ); |
85 | | - |
86 | | -protected $m_months = array( "1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月" ); |
87 | | - |
88 | 88 | } |
89 | 89 | |
90 | 90 | |
Index: trunk/extensions/SemanticMediaWiki/languages/SMW_LanguageHe.php |
— | — | @@ -22,68 +22,68 @@ |
23 | 23 | */ |
24 | 24 | class SMWLanguageHe extends SMWLanguage { |
25 | 25 | |
26 | | -protected $m_DatatypeLabels = array( |
27 | | - '_wpg' => 'עמוד', // name of page datatype |
28 | | - '_str' => 'מחרוזת', // name of the string type |
29 | | - '_txt' => 'טקסט', // name of the text type (very long strings) |
30 | | - '_cod' => 'קוד', // name of the (source) code type |
31 | | - '_boo' => 'נכוןלאנכון', // name of the boolean type |
32 | | - '_num' => 'מספר', // name for the datatype of numbers |
33 | | - '_geo' => 'קורדינטות גיאוגרפיות', // name of the geocoord type |
34 | | - '_tem' => 'טמפרטורה', // name of the temperature type |
35 | | - '_dat' => 'תאריך', // name of the datetime (calendar) type |
36 | | - '_ema' => 'דואל', // name of the email (URI) type |
37 | | - '_uri' => 'כתובת כללית', // name of the URL type |
38 | | - '_anu' => 'מזהה יחודי לפירוש', // name of the annotation URI type (OWL annotation property) |
39 | | - '_tel' => 'Telephone number', // name of the telephone (URI) type //TODO: translate |
40 | | - '_rec' => 'Record', // name of record data type //TODO: translate |
41 | | -); |
| 26 | + protected $m_DatatypeLabels = array( |
| 27 | + '_wpg' => 'עמוד', // name of page datatype |
| 28 | + '_str' => 'מחרוזת', // name of the string type |
| 29 | + '_txt' => 'טקסט', // name of the text type (very long strings) |
| 30 | + '_cod' => 'קוד', // name of the (source) code type |
| 31 | + '_boo' => 'נכוןלאנכון', // name of the boolean type |
| 32 | + '_num' => 'מספר', // name for the datatype of numbers |
| 33 | + '_geo' => 'קורדינטות גיאוגרפיות', // name of the geocoord type |
| 34 | + '_tem' => 'טמפרטורה', // name of the temperature type |
| 35 | + '_dat' => 'תאריך', // name of the datetime (calendar) type |
| 36 | + '_ema' => 'דואל', // name of the email (URI) type |
| 37 | + '_uri' => 'כתובת כללית', // name of the URL type |
| 38 | + '_anu' => 'מזהה יחודי לפירוש', // name of the annotation URI type (OWL annotation property) |
| 39 | + '_tel' => 'Telephone number', // name of the telephone (URI) type //TODO: translate |
| 40 | + '_rec' => 'Record', // name of record data type //TODO: translate |
| 41 | + ); |
| 42 | + |
| 43 | + protected $m_DatatypeAliases = array( |
| 44 | + 'מזהה יחודי' |
| 45 | + => '_uri', |
| 46 | + 'שלם' |
| 47 | + => '_num', |
| 48 | + 'נקודהצפה' |
| 49 | + => '_num', |
| 50 | + ); |
| 51 | + |
| 52 | + protected $m_SpecialProperties = array( |
| 53 | + // always start upper-case |
| 54 | + '_TYPE' => 'מטיפוס', |
| 55 | + '_URI' => 'מזהה יחודי תואם', |
| 56 | + '_SUBP' => 'רכוש כפוף ל', |
| 57 | + '_SUBC' => 'Subcategory of', // TODO: translate |
| 58 | + '_UNIT' => 'יחידות מידה', |
| 59 | + '_IMPO' => 'יובא מ', |
| 60 | + '_CONV' => 'מתורגם ל', |
| 61 | + '_SERV' => 'מספק שירות', |
| 62 | + '_PVAL' => 'ערך אפשרי', |
| 63 | + '_MDAT' => 'תאריך לשינוי', |
| 64 | + '_ERRP' => 'יש ערך תקין בשביל', |
| 65 | + '_LIST' => 'Has fields', // TODO: translate |
| 66 | + ); |
| 67 | + |
| 68 | + protected $m_SpecialPropertyAliases = array( |
| 69 | + 'יחידת הצגה' |
| 70 | + => '_UNIT', |
| 71 | + ); |
| 72 | + |
| 73 | + |
| 74 | + protected $m_Namespaces = array( |
| 75 | + SMW_NS_PROPERTY => 'תכונה', |
| 76 | + SMW_NS_PROPERTY_TALK => 'שיחת_תכונה', |
| 77 | + SMW_NS_TYPE => 'טיפוס', |
| 78 | + SMW_NS_TYPE_TALK => 'שיחת_טיפוס', |
| 79 | + SMW_NS_CONCEPT => 'רעיון', |
| 80 | + SMW_NS_CONCEPT_TALK => 'שיחת_רעיון' |
| 81 | + ); |
| 82 | + |
| 83 | + |
| 84 | + protected $m_dateformats = array( array( SMW_Y ), array( SMW_MY, SMW_YM ), array( SMW_MDY, SMW_DMY, SMW_YMD, SMW_YDM ) ); |
| 85 | + |
| 86 | + protected $m_months = array( "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" ); |
| 87 | + |
| 88 | + protected $m_monthsshort = array( "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" ); |
42 | 89 | |
43 | | -protected $m_DatatypeAliases = array( |
44 | | - 'מזהה יחודי' |
45 | | - => '_uri', |
46 | | - 'שלם' |
47 | | - => '_num', |
48 | | - 'נקודהצפה' |
49 | | - => '_num', |
50 | | -); |
51 | | - |
52 | | -protected $m_SpecialProperties = array( |
53 | | - // always start upper-case |
54 | | - '_TYPE' => 'מטיפוס', |
55 | | - '_URI' => 'מזהה יחודי תואם', |
56 | | - '_SUBP' => 'רכוש כפוף ל', |
57 | | - '_SUBC' => 'Subcategory of', // TODO: translate |
58 | | - '_UNIT' => 'יחידות מידה', |
59 | | - '_IMPO' => 'יובא מ', |
60 | | - '_CONV' => 'מתורגם ל', |
61 | | - '_SERV' => 'מספק שירות', |
62 | | - '_PVAL' => 'ערך אפשרי', |
63 | | - '_MDAT' => 'תאריך לשינוי', |
64 | | - '_ERRP' => 'יש ערך תקין בשביל', |
65 | | - '_LIST' => 'Has fields', // TODO: translate |
66 | | -); |
67 | | - |
68 | | -protected $m_SpecialPropertyAliases = array( |
69 | | - 'יחידת הצגה' |
70 | | - => '_UNIT', |
71 | | -); |
72 | | - |
73 | | - |
74 | | -protected $m_Namespaces = array( |
75 | | - SMW_NS_PROPERTY => 'תכונה', |
76 | | - SMW_NS_PROPERTY_TALK => 'שיחת_תכונה', |
77 | | - SMW_NS_TYPE => 'טיפוס', |
78 | | - SMW_NS_TYPE_TALK => 'שיחת_טיפוס', |
79 | | - SMW_NS_CONCEPT => 'רעיון', |
80 | | - SMW_NS_CONCEPT_TALK => 'שיחת_רעיון' |
81 | | -); |
82 | | - |
83 | | - |
84 | | -protected $m_dateformats = array( array( SMW_Y ), array( SMW_MY, SMW_YM ), array( SMW_MDY, SMW_DMY, SMW_YMD, SMW_YDM ) ); |
85 | | - |
86 | | -protected $m_months = array( "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" ); |
87 | | - |
88 | | -protected $m_monthsshort = array( "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" ); |
89 | | - |
90 | 90 | } |
Index: trunk/extensions/SemanticMediaWiki/languages/SMW_LanguageArz.php |
— | — | @@ -22,65 +22,65 @@ |
23 | 23 | */ |
24 | 24 | class SMWLanguageArz extends SMWLanguage { |
25 | 25 | |
26 | | -protected $m_DatatypeLabels = array( |
27 | | - '_wpg' => 'الصفحة', // name of page datatype |
28 | | - '_str' => 'سلسلة', // name of the string type |
29 | | - '_txt' => 'نص', // name of the text type |
30 | | - '_cod' => 'كود', // name of the (source) code type |
31 | | - '_boo' => 'منطقى', // name of the boolean type |
32 | | - '_num' => 'عدد', // name for the datatype of numbers |
33 | | - '_geo' => 'الإحداثيات الجغرافية', // name of the geocoord type |
34 | | - '_tem' => 'الحرارة', // name of the temperature type |
35 | | - '_dat' => 'التاريخ', // name of the datetime (calendar) type |
36 | | - '_ema' => 'البريد الإلكترونى', // name of the email type |
37 | | - '_uri' => 'مسار', // name of the URL type |
38 | | - '_anu' => 'التعليق علي معرف الموارد الموحد', // name of the annotation URI type (OWL annotation property) |
39 | | - '_tel' => 'Telephone number', // name of the telephone (URI) type //TODO: translate |
40 | | - '_rec' => 'Record', // name of record data type //TODO: translate |
41 | | -); |
| 26 | + protected $m_DatatypeLabels = array( |
| 27 | + '_wpg' => 'الصفحة', // name of page datatype |
| 28 | + '_str' => 'سلسلة', // name of the string type |
| 29 | + '_txt' => 'نص', // name of the text type |
| 30 | + '_cod' => 'كود', // name of the (source) code type |
| 31 | + '_boo' => 'منطقى', // name of the boolean type |
| 32 | + '_num' => 'عدد', // name for the datatype of numbers |
| 33 | + '_geo' => 'الإحداثيات الجغرافية', // name of the geocoord type |
| 34 | + '_tem' => 'الحرارة', // name of the temperature type |
| 35 | + '_dat' => 'التاريخ', // name of the datetime (calendar) type |
| 36 | + '_ema' => 'البريد الإلكترونى', // name of the email type |
| 37 | + '_uri' => 'مسار', // name of the URL type |
| 38 | + '_anu' => 'التعليق علي معرف الموارد الموحد', // name of the annotation URI type (OWL annotation property) |
| 39 | + '_tel' => 'Telephone number', // name of the telephone (URI) type //TODO: translate |
| 40 | + '_rec' => 'Record', // name of record data type //TODO: translate |
| 41 | + ); |
| 42 | + |
| 43 | + protected $m_DatatypeAliases = array( |
| 44 | + 'URI' => '_uri', |
| 45 | + 'Float' => '_num', |
| 46 | + 'Integer' => '_num', |
| 47 | + 'Enumeration' => '_str' |
| 48 | + ); |
| 49 | + |
| 50 | + protected $m_SpecialProperties = array( |
| 51 | + // always start upper-case |
| 52 | + '_TYPE' => 'لديه نوع', |
| 53 | + '_URI' => 'معرف الموارد الموحد معادلة', |
| 54 | + '_SUBP' => 'الخاصية الفرعية ل', |
| 55 | + '_SUBC' => 'Subcategory of', // TODO: translate |
| 56 | + '_UNIT' => 'عرض الوحدات', |
| 57 | + '_IMPO' => 'المستوردة من', |
| 58 | + '_CONV' => 'يقابل', |
| 59 | + '_SERV' => 'يوفر الخدمة', |
| 60 | + '_PVAL' => 'يسمح بالقيمة', |
| 61 | + '_MDAT' => 'Modification date', // TODO: translate |
| 62 | + '_ERRP' => 'Has improper value for', // TODO: translate |
| 63 | + '_LIST' => 'Has fields', // TODO: translate |
| 64 | + ); |
| 65 | + |
| 66 | + protected $m_SpecialPropertyAliases = array( |
| 67 | + 'عرض الوحدة' => '_UNIT' |
| 68 | + ); |
| 69 | + |
| 70 | + protected $m_Namespaces = array( |
| 71 | + SMW_NS_PROPERTY => 'خاصية', |
| 72 | + SMW_NS_PROPERTY_TALK => 'نقاش_الخاصية', |
| 73 | + SMW_NS_TYPE => 'نوع', |
| 74 | + SMW_NS_TYPE_TALK => 'نقاش_النوع', |
| 75 | + SMW_NS_CONCEPT => 'مبدأ', |
| 76 | + SMW_NS_CONCEPT_TALK => 'نقاش_المبدأ' |
| 77 | + ); |
| 78 | + |
| 79 | + protected $m_dateformats = array( array( SMW_Y ), array( SMW_MY, SMW_YM ), array( SMW_MDY, SMW_DMY, SMW_YMD, SMW_YDM ) ); |
| 80 | + |
| 81 | + protected $m_months = array( "يناير", "فبراير", "مارس", "أبريل", "مايو", "يونيو", "يوليو", "أغسطس", "سبتمبر", "أكتوبر", "نوفمبر", "ديسمبر" ); |
| 82 | + |
| 83 | + protected $m_monthsshort = array( "يناير", "فبراير", "مارس", "أبريل", "مايو", "يونيو", "يوليو", "أغسطس", "سبتمبر", "أكتوبر", "نوفمبر", "ديسمبر" ); |
42 | 84 | |
43 | | -protected $m_DatatypeAliases = array( |
44 | | - 'URI' => '_uri', |
45 | | - 'Float' => '_num', |
46 | | - 'Integer' => '_num', |
47 | | - 'Enumeration' => '_str' |
48 | | -); |
49 | | - |
50 | | -protected $m_SpecialProperties = array( |
51 | | - // always start upper-case |
52 | | - '_TYPE' => 'لديه نوع', |
53 | | - '_URI' => 'معرف الموارد الموحد معادلة', |
54 | | - '_SUBP' => 'الخاصية الفرعية ل', |
55 | | - '_SUBC' => 'Subcategory of', // TODO: translate |
56 | | - '_UNIT' => 'عرض الوحدات', |
57 | | - '_IMPO' => 'المستوردة من', |
58 | | - '_CONV' => 'يقابل', |
59 | | - '_SERV' => 'يوفر الخدمة', |
60 | | - '_PVAL' => 'يسمح بالقيمة', |
61 | | - '_MDAT' => 'Modification date', // TODO: translate |
62 | | - '_ERRP' => 'Has improper value for', // TODO: translate |
63 | | - '_LIST' => 'Has fields', // TODO: translate |
64 | | -); |
65 | | - |
66 | | -protected $m_SpecialPropertyAliases = array( |
67 | | - 'عرض الوحدة' => '_UNIT' |
68 | | -); |
69 | | - |
70 | | -protected $m_Namespaces = array( |
71 | | - SMW_NS_PROPERTY => 'خاصية', |
72 | | - SMW_NS_PROPERTY_TALK => 'نقاش_الخاصية', |
73 | | - SMW_NS_TYPE => 'نوع', |
74 | | - SMW_NS_TYPE_TALK => 'نقاش_النوع', |
75 | | - SMW_NS_CONCEPT => 'مبدأ', |
76 | | - SMW_NS_CONCEPT_TALK => 'نقاش_المبدأ' |
77 | | -); |
78 | | - |
79 | | -protected $m_dateformats = array( array( SMW_Y ), array( SMW_MY, SMW_YM ), array( SMW_MDY, SMW_DMY, SMW_YMD, SMW_YDM ) ); |
80 | | - |
81 | | -protected $m_months = array( "يناير", "فبراير", "مارس", "أبريل", "مايو", "يونيو", "يوليو", "أغسطس", "سبتمبر", "أكتوبر", "نوفمبر", "ديسمبر" ); |
82 | | - |
83 | | -protected $m_monthsshort = array( "يناير", "فبراير", "مارس", "أبريل", "مايو", "يونيو", "يوليو", "أغسطس", "سبتمبر", "أكتوبر", "نوفمبر", "ديسمبر" ); |
84 | | - |
85 | 85 | } |
86 | 86 | |
87 | 87 | |