mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ParserFunctions
synced 2024-11-15 03:35:52 +00:00
Localisation updates from https://translatewiki.net.
Change-Id: I65f85b68d01c0c1a8f36775848b27929704d5078
This commit is contained in:
parent
de8c14b388
commit
eb812e3922
|
@ -665,7 +665,7 @@ $magicWords['zh-hans'] = array(
|
|||
'iferror' => array( 0, '如果错误' ),
|
||||
'switch' => array( 0, '开关', '转换' ),
|
||||
'default' => array( 0, '#默认' ),
|
||||
'ifexist' => array( 0, '若有', '如果存在' ),
|
||||
'ifexist' => array( 0, '若有', '如有' ),
|
||||
'time' => array( 0, '时间' ),
|
||||
'timel' => array( 0, '时间l' ),
|
||||
'titleparts' => array( 0, '标题部分' ),
|
||||
|
@ -674,6 +674,8 @@ $magicWords['zh-hans'] = array(
|
|||
'sub' => array( 0, 'PF子' ),
|
||||
'count' => array( 0, '计数' ),
|
||||
'replace' => array( 0, '取代' ),
|
||||
'explode' => array( 0, '粉碎' ),
|
||||
'urldecode' => array( 0, 'url解码' ),
|
||||
);
|
||||
|
||||
/** Traditional Chinese (中文(繁體)) */
|
||||
|
|
|
@ -7,28 +7,29 @@
|
|||
"Mark85296341",
|
||||
"Shinjiman",
|
||||
"Simon Shek",
|
||||
"Waihorace"
|
||||
"Waihorace",
|
||||
"Cwlin0416"
|
||||
]
|
||||
},
|
||||
"pfunc_desc": "使用邏輯函數加強解析器",
|
||||
"pfunc_desc": "加強分析器,提供邏輯函數功能",
|
||||
"pfunc_time_error": "錯誤:無效時間。",
|
||||
"pfunc_time_too_long": "錯誤:過多#time呼叫。",
|
||||
"pfunc_time_too_big": "錯誤:#time只支援至9999年。",
|
||||
"pfunc_time_too_small": "錯誤:#time只支援至0。",
|
||||
"pfunc_rel2abs_invalid_depth": "錯誤:無效路徑深度:「$1」(嘗試訪問頂點以上節點)",
|
||||
"pfunc_expr_stack_exhausted": "表達式錯誤:堆疊耗盡",
|
||||
"pfunc_expr_unexpected_number": "表達式錯誤:未預料的數字",
|
||||
"pfunc_expr_preg_match_failure": "表達式錯誤:未預料的 preg_match 失敗",
|
||||
"pfunc_expr_unrecognised_word": "表達式錯誤:無法識別的詞語「$1」",
|
||||
"pfunc_expr_unexpected_operator": "表達式錯誤:未預料的 $1 運算子",
|
||||
"pfunc_expr_missing_operand": "表達式錯誤:缺少 $1 的運算元",
|
||||
"pfunc_expr_unexpected_closing_bracket": "表達式錯誤:未預料的反括號",
|
||||
"pfunc_expr_unrecognised_punctuation": "表達式錯誤:無法識別的標點「$1」",
|
||||
"pfunc_expr_unclosed_bracket": "表達式錯誤:未封閉的括號",
|
||||
"pfunc_expr_division_by_zero": "除以零",
|
||||
"pfunc_expr_invalid_argument": "$1 的無效參量:< -1 或 > 1",
|
||||
"pfunc_expr_invalid_argument_ln": "ln 的無效參量:<= 0",
|
||||
"pfunc_expr_unknown_error": "表達式錯誤:未知錯誤($1)",
|
||||
"pfunc_expr_not_a_number": "在 $1 中:結果不是數字",
|
||||
"pfunc_string_too_long": "錯誤:字符串超過$1字符限制"
|
||||
"pfunc_time_too_long": "錯誤:過多 #time 呼叫。",
|
||||
"pfunc_time_too_big": "錯誤:#time 支援上限為 9999 年。",
|
||||
"pfunc_time_too_small": "錯誤:#time 支援下限為 0 年。",
|
||||
"pfunc_rel2abs_invalid_depth": "錯誤:無效路徑深度:\"$1\" (嘗試存取根節點以上的節點)",
|
||||
"pfunc_expr_stack_exhausted": "表達式錯誤:堆疊用盡。",
|
||||
"pfunc_expr_unexpected_number": "表達式錯誤:預期之外的數字。",
|
||||
"pfunc_expr_preg_match_failure": "表達式錯誤:預期之外的 preg_match 失敗。",
|
||||
"pfunc_expr_unrecognised_word": "表達式錯誤:無法識別的字 \"$1\"。",
|
||||
"pfunc_expr_unexpected_operator": "表達式錯誤:預期之外的 $1 運算子。",
|
||||
"pfunc_expr_missing_operand": "表達式錯誤:缺少 $1 的運算元。",
|
||||
"pfunc_expr_unexpected_closing_bracket": "表達式錯誤:預期之外的反括號。",
|
||||
"pfunc_expr_unrecognised_punctuation": "表達式錯誤:無法識別的標點符號 \"$1\"。",
|
||||
"pfunc_expr_unclosed_bracket": "表達式錯誤:未結束的括號。",
|
||||
"pfunc_expr_division_by_zero": "除數為零。",
|
||||
"pfunc_expr_invalid_argument": "$1 的參數無效:< -1 或 > 1。",
|
||||
"pfunc_expr_invalid_argument_ln": "ln 的參數無效:<= 0。",
|
||||
"pfunc_expr_unknown_error": "表達式錯誤:未知錯誤 ($1)。",
|
||||
"pfunc_expr_not_a_number": "於 $1 中:結果不為數字。",
|
||||
"pfunc_string_too_long": "錯誤:字串超過 $1 字元限制。"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue