2007-06-07 19:02:57 +00:00
< ? php
/**
* Get translated magic words , if available
*
* @ param string $lang Language code
* @ return array
*/
function efParserFunctionsWords ( $lang ) {
$words = array ();
2007-06-09 16:52:06 +00:00
2007-06-07 19:02:57 +00:00
/**
* English
*/
$words [ 'en' ] = array (
'expr' => array ( 0 , 'expr' ),
'if' => array ( 0 , 'if' ),
'ifeq' => array ( 0 , 'ifeq' ),
'ifexpr' => array ( 0 , 'ifexpr' ),
'switch' => array ( 0 , 'switch' ),
'default' => array ( 0 , '#default' ),
'ifexist' => array ( 0 , 'ifexist' ),
'time' => array ( 0 , 'time' ),
2007-08-01 18:00:45 +00:00
'timel' => array ( 0 , 'timel' ),
2007-06-07 19:02:57 +00:00
'rel2abs' => array ( 0 , 'rel2abs' ),
'titleparts' => array ( 0 , 'titleparts' ),
);
2007-06-09 16:52:06 +00:00
2007-06-07 19:02:57 +00:00
/**
* Farsi - Persian
*/
$words [ 'fa' ] = array (
'expr' => array ( 0 , 'حساب' , 'expr' ),
'if' => array ( 0 , 'اگر' , 'if' ),
'ifeq' => array ( 0 , 'اگرمساوی' , 'ifeq' ),
'ifexpr' => array ( 0 , 'اگرحساب' , 'ifexpr' ),
'switch' => array ( 0 , 'گزینه' , 'switch' ),
'default' => array ( 0 , '#پیشفرض' , '#default' ),
'ifexist' => array ( 0 , 'اگرموجود' , 'ifexist' ),
'time' => array ( 0 , 'زمان' , 'time' ),
'rel2abs' => array ( 0 , 'نسبیبهمطلق' , 'rel2abs' ),
);
/**
* Hebrew
*/
2007-06-07 19:04:53 +00:00
$words [ 'he' ] = array (
2007-08-01 18:00:45 +00:00
'expr' => array ( 0 , 'חשב' , 'expr' ),
'if' => array ( 0 , 'תנאי' , 'if' ),
'ifeq' => array ( 0 , 'שווה' , 'ifeq' ),
'ifexpr' => array ( 0 , 'חשב תנאי' , 'ifexpr' ),
'switch' => array ( 0 , 'בחר' , 'switch' ),
'default' => array ( 0 , '#ברירת מחדל' , '#default' ),
'ifexist' => array ( 0 , 'קיים' , 'ifexist' ),
'time' => array ( 0 , 'זמן' , 'time' ),
'timel' => array ( 0 , 'זמןמ' , 'timel' ),
'rel2abs' => array ( 0 , 'יחסי למוחלט' , 'rel2abs' ),
'titleparts' => array ( 0 , 'חלק בכותרת' , 'titleparts' ),
2007-06-09 16:52:06 +00:00
);
/**
* Indonesian
*/
$words [ 'id' ] = array (
'expr' => array ( 0 , 'hitung' , 'expr' ),
'if' => array ( 0 , 'jika' , 'if' ),
'ifeq' => array ( 0 , 'jikasama' , 'ifeq' ),
'ifexpr' => array ( 0 , 'jikahitung' , 'ifexpr' ),
'switch' => array ( 0 , 'pilih' , 'switch' ),
'default' => array ( 0 , '#baku' , '#default' ),
'ifexist' => array ( 0 , 'jikaada' , 'ifexist' ),
'time' => array ( 0 , 'waktu' , 'time' ),
'rel2abs' => array ( 0 , 'rel2abs' ),
'titleparts' => array ( 0 , 'bagianjudul' , 'titleparts' ),
);
2007-06-07 19:02:57 +00:00
# English is used as a fallback, and the English synonyms are
# used if a translation has not been provided for a given word
return ( $lang == 'en' || ! isset ( $words [ $lang ] ) )
? $words [ 'en' ]
: array_merge ( $words [ 'en' ], $words [ $lang ] );
}
2007-08-19 16:59:01 +00:00
/**
* Get extension messages
*
* @ return array
*/
function efParserFunctionsMessages () {
$messages = array (
/* English */
2007-08-19 16:55:22 +00:00
'en' => array (
2007-11-16 08:02:24 +00:00
'pfunc_time_error' => 'Error: invalid time' ,
'pfunc_time_too_long' => 'Error: too many #time calls' ,
'pfunc_rel2abs_invalid_depth' => 'Error: Invalid depth in path: \"$1\" (tried to access a node above the root node)' ,
'pfunc_expr_stack_exhausted' => 'Expression error: Stack exhausted' ,
'pfunc_expr_unexpected_number' => 'Expression error: Unexpected number' ,
'pfunc_expr_preg_match_failure' => 'Expression error: Unexpected preg_match failure' ,
'pfunc_expr_unrecognised_word' => 'Expression error: Unrecognised word "$1"' ,
'pfunc_expr_unexpected_operator' => 'Expression error: Unexpected $1 operator' ,
'pfunc_expr_missing_operand' => 'Expression error: Missing operand for $1' ,
'pfunc_expr_unexpected_closing_bracket' => 'Expression error: Unexpected closing bracket' ,
'pfunc_expr_unrecognised_punctuation' => 'Expression error: Unrecognised punctuation character "$1"' ,
'pfunc_expr_unclosed_bracket' => 'Expression error: Unclosed bracket' ,
'pfunc_expr_division_by_zero' => 'Division by zero' ,
'pfunc_expr_unknown_error' => 'Expression error: Unknown error ($1)' ,
'pfunc_expr_not_a_number' => 'In $1: result is not a number' ,
2007-12-10 06:04:34 +00:00
'pfunc_ifexist_warning' => 'Warning: This article contains too many #ifexist calls. It should have less than $2, there are now $1.' ,
'pfunc_max_ifexist_category' => 'Pages with too many ifexist calls' ,
2007-08-19 16:59:01 +00:00
),
2007-08-19 16:55:22 +00:00
2007-09-30 12:58:32 +00:00
'ar' => array (
Localisation updates from Betawiki.
* Fixes and additions to 40 extensions for gl, hsb, id, is, it, ja, kk-kz, kk-tr, nl, no, oc
* export format in extension Translate and indentation changed in: GiveRollback, ImageMap, Newuserlog, OggHandler, Oversight, ParserFunctions, ProofreadPage, Resign/SpecialResign
2007-11-04 21:21:43 +00:00
'pfunc_time_error' => 'خطأ: زمن غير صحيح' ,
'pfunc_time_too_long' => 'خطأ: too many #time calls' ,
'pfunc_rel2abs_invalid_depth' => 'خطأ: عمق غير صحيح في المسار: \"$1\" (حاول دخول عقدة فوق العقدة الجذرية)' ,
2007-11-17 00:00:50 +00:00
'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' => 'خطأ في التعبير: operand مفقود ل$1' ,
'pfunc_expr_unexpected_closing_bracket' => 'خطأ في التعبير: قوس إغلاق غير متوقع' ,
'pfunc_expr_unrecognised_punctuation' => 'خطأ في التعبير: علامة ترقيم غير متعرف عليها "$1"' ,
'pfunc_expr_unclosed_bracket' => 'خطأ في التعبير: قوس غير مغلق' ,
'pfunc_expr_division_by_zero' => 'القسمة على صفر' ,
'pfunc_expr_unknown_error' => 'خطأ في التعبير: خطأ غير معروف ($1)' ,
'pfunc_expr_not_a_number' => 'في $1: النتيجة ليست رقما' ,
2007-09-30 12:58:32 +00:00
),
2007-12-09 22:48:21 +00:00
'bg' => array (
'pfunc_expr_stack_exhausted' => 'Грешка в записа: Стекът е изчерпан' ,
'pfunc_expr_unexpected_number' => 'Грешка в записа: Неочаквано число' ,
'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_unknown_error' => 'Грешка в записа: Неразпозната грешка ($1)' ,
'pfunc_expr_not_a_number' => 'В $1: резултатът не е число' ,
),
2007-09-18 23:14:32 +00:00
'cs' => array (
Localisation updates from Betawiki.
* Fixes and additions to 40 extensions for gl, hsb, id, is, it, ja, kk-kz, kk-tr, nl, no, oc
* export format in extension Translate and indentation changed in: GiveRollback, ImageMap, Newuserlog, OggHandler, Oversight, ParserFunctions, ProofreadPage, Resign/SpecialResign
2007-11-04 21:21:43 +00:00
'pfunc_time_error' => 'Chyba: neplatný čas' ,
'pfunc_time_too_long' => 'Chyba: příliš mnoho volání #time' ,
'pfunc_rel2abs_invalid_depth' => 'Chyba: Neplatná hloubka v cestě: \"$1\" (pokus o přístup do uzlu vyššího než kořen)' ,
2007-09-18 23:14:32 +00:00
),
2007-08-20 09:47:17 +00:00
/* German */
'de' => array (
2007-11-16 08:02:24 +00:00
'pfunc_time_error' => 'Fehler: ungültige Zeitangabe' ,
'pfunc_time_too_long' => 'Fehler: zu viele #time-Aufrufe' ,
'pfunc_rel2abs_invalid_depth' => 'Fehler: ungültige Tiefe in Pfad: „$1“ (Versuch, auf einen Knotenpunkt oberhalb des Hauptknotenpunktes zuzugreifen)' ,
'pfunc_expr_stack_exhausted' => 'Expression-Fehler: Stacküberlauf' ,
'pfunc_expr_unexpected_number' => 'Expression-Fehler: Unerwartete Zahl' ,
'pfunc_expr_preg_match_failure' => 'Expression-Fehler: Unerwartete „preg_match“-Fehlfunktion' ,
'pfunc_expr_unrecognised_word' => 'Expression-Fehler: Unerkanntes Wort „$1“' ,
'pfunc_expr_unexpected_operator' => 'Expression-Fehler: Unerwarteter Operator: <strong><tt>$1</tt></strong>' ,
'pfunc_expr_missing_operand' => 'Expression-Fehler: Fehlender Operand für <strong><tt>$1</tt></strong>' ,
'pfunc_expr_unexpected_closing_bracket' => 'Expression-Fehler: Unerwartete schließende eckige Klammer' ,
'pfunc_expr_unrecognised_punctuation' => 'Expression-Fehler: Unerkanntes Satzzeichen „$1“' ,
'pfunc_expr_unclosed_bracket' => 'Expression-Fehler: Nicht geschlossene eckige Klammer' ,
'pfunc_expr_division_by_zero' => 'Expression-Fehler: Division durch Null' ,
'pfunc_expr_unknown_error' => 'Expression-Fehler: Unbekannter Fehler ($1)' ,
'pfunc_expr_not_a_number' => 'Expression-Fehler: In $1: Ergebnis ist keine Zahl' ,
2007-12-10 14:46:16 +00:00
'pfunc_ifexist_warning' => 'Warnung: Diese Seite enthält zuviele #ifexist-Aufrufe. Es dürfen maximal $2 Aufrufe sein, es sind aber $1 Aufrufe.' ,
'pfunc_max_ifexist_category' => 'Seiten mit zuvielen ifexist-Aufrufen' ,
2007-08-20 09:47:17 +00:00
),
Localisation updates from Betawiki.
* Fixes and additions to 50 extensions for ar, el, et, fr, hr, hsb, io, ka, la, nap, nl, pt, sk, stq, tet, vo
2007-11-27 09:49:24 +00:00
'el' => array (
'pfunc_time_error' => 'Σφάλμα: άκυρος χρόνος' ,
),
2007-08-19 16:59:01 +00:00
/* French */
2007-08-19 16:55:22 +00:00
'fr' => array (
Localisation updates from Betawiki.
* Fixes and additions to 27 extensions for af, ar, el, fi, fr, frp, gl, hsb, nl, oc, pms, sk
2007-11-17 21:23:56 +00:00
'pfunc_time_error' => 'Erreur : durée invalide' ,
'pfunc_time_too_long' => 'Erreur : parser #time appelé trop de fois' ,
'pfunc_rel2abs_invalid_depth' => 'Erreur: niveau de répertoire invalide dans le chemin : \"$1\" (a essayé d’ accéder à un niveau au-dessus du répertoire racine)' ,
'pfunc_expr_stack_exhausted' => 'Expression erronée : pile épuisée' ,
'pfunc_expr_unexpected_number' => 'Expression erronée : nombre non attendu' ,
'pfunc_expr_preg_match_failure' => 'Expression erronée : echec d\'une expression non comprise' ,
'pfunc_expr_unrecognised_word' => 'Erreur d\'expression : le mot \'\'\'$1\'\'\' n\'est pas reconnu' ,
'pfunc_expr_unexpected_operator' => 'Erreur d\'expression : l\'opérateur \'\'\'$1\'\'\' n\'est pas reconnu' ,
'pfunc_expr_missing_operand' => 'Erreur d\'expression : l\'opérande \'\'\'$1\'\'\' n\'est pas reconnue' ,
'pfunc_expr_unexpected_closing_bracket' => 'Erreur d\'expression : parenthèse fermante non prévue' ,
'pfunc_expr_unrecognised_punctuation' => 'Erreur d\'expresion : caractère de ponctuation « $1 » non reconnu' ,
'pfunc_expr_unclosed_bracket' => 'Erreur d’ expression : parenthèse non fermée' ,
'pfunc_expr_division_by_zero' => 'Division par zéro' ,
'pfunc_expr_unknown_error' => 'Erreur d\'expression : erreur inconnue ($1)' ,
'pfunc_expr_not_a_number' => 'Dans $1 : le résultat n\'est pas un nombre' ,
2007-08-19 16:55:22 +00:00
),
2007-08-19 16:59:01 +00:00
2007-11-05 08:56:09 +00:00
'gl' => array (
2007-11-11 21:27:49 +00:00
'pfunc_time_error' => 'Erro: hora non válida' ,
2007-11-05 08:56:09 +00:00
'pfunc_time_too_long' => 'Erro: demasiadas chamadas a #time' ,
'pfunc_rel2abs_invalid_depth' => 'Erro: Profundidade da ruta non válida: \"$1\" (tentouse acceder a un nodo por riba do nodo raíz)' ,
),
2007-08-19 23:24:24 +00:00
/* Hebrew */
'he' => array (
2007-11-16 10:08:37 +00:00
'pfunc_time_error' => 'שגיאה: זמן שגוי' ,
'pfunc_time_too_long' => 'שגיאה: שימוש ב"#זמן" פעמים רבות מדי' ,
'pfunc_rel2abs_invalid_depth' => 'שגיאה: עומק שגוי בנתיב: "$1" (ניסיון כניסה לצומת מעל צומת השורש)' ,
'pfunc_expr_stack_exhausted' => 'שגיאה בביטוי: המחסנית מלאה' ,
'pfunc_expr_unexpected_number' => 'שגיאה בביטוי: מספר בלתי צפוי' ,
'pfunc_expr_preg_match_failure' => 'שגיאה בביטוי: כישלון בלתי צפוי של התאמת ביטוי רגולרי' ,
'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_unknown_error' => 'שגיאה בביטוי: שגיאה בלתי ידועה ($1)' ,
'pfunc_expr_not_a_number' => 'התוצאה של $1 אינה מספר' ,
2007-12-10 10:19:26 +00:00
'pfunc_ifexist_warning' => 'אזהרה: דף זה כולל יותר מדי קריאות ל"#קיים". הוא צריך לכלול פחות מ־$2, אך כעת יש $1.' ,
2007-12-11 17:39:04 +00:00
'pfunc_max_ifexist_category' => 'דפים עם הוראות קיום רבות מדי' ,
2007-08-19 23:24:24 +00:00
),
2007-09-17 19:47:03 +00:00
'hsb' => array (
Localisation updates from Betawiki.
* Fixes and additions to 40 extensions for gl, hsb, id, is, it, ja, kk-kz, kk-tr, nl, no, oc
* export format in extension Translate and indentation changed in: GiveRollback, ImageMap, Newuserlog, OggHandler, Oversight, ParserFunctions, ProofreadPage, Resign/SpecialResign
2007-11-04 21:21:43 +00:00
'pfunc_time_error' => 'Zmylk: njepłaćiwe časowe podaće' ,
'pfunc_time_too_long' => 'Zmylk: přewjele zawołanjow #time' ,
'pfunc_rel2abs_invalid_depth' => 'Zmylk: Njepłaćiwa hłubokosć w pućiku: \"$1\" (Pospyt, zo by na suk wyše hłowneho suka dohrabnyło)' ,
2007-11-17 00:00:50 +00:00
'pfunc_expr_stack_exhausted' => 'Wurazowy zmylk: Staplowy skład wučerpany' ,
'pfunc_expr_unexpected_number' => 'Wurazowy zmylk: Njewočakowana ličba' ,
'pfunc_expr_preg_match_failure' => 'Wurazowy zmylk: Njewočakowana zmylna funkcija "preg_match"' ,
'pfunc_expr_unrecognised_word' => 'Wurazowy zmylk: Njespóznate słowo "$1"' ,
'pfunc_expr_unexpected_operator' => 'Wurazowy zmylk: Njewočakowany operator $1' ,
'pfunc_expr_missing_operand' => 'Wurazowy zmylk: Falowacy operand za $1' ,
'pfunc_expr_unexpected_closing_bracket' => 'Wurazowy zmylk: Njewočakowana kónčna róžkata spinka' ,
'pfunc_expr_unrecognised_punctuation' => 'Wurazowy zmylk: Njespóznate interpunkciske znamješko "$1"' ,
'pfunc_expr_unclosed_bracket' => 'Wurazowy zmylk: Njewotzamknjena róžkata spinka' ,
'pfunc_expr_division_by_zero' => 'Diwizija přez nulu' ,
'pfunc_expr_unknown_error' => 'Wurazowy zmylk: Njeznaty zmylk ($1)' ,
'pfunc_expr_not_a_number' => 'W $1: Wuslědk ličba njeje' ,
2007-09-17 19:47:03 +00:00
),
2007-08-19 23:24:24 +00:00
2007-09-04 17:28:27 +00:00
/* Kazakh Cyrillic */
'kk-kz' => array (
'pfunc_time_error' => 'Қате: жарамсыз уақыт' ,
'pfunc_time_too_long' => 'Қате: #time әмірін шақыруы тым көп' ,
'pfunc_rel2abs_invalid_depth' => 'Қате: Мына жолдың жарамсыз терендігі "$1" (тамыр түйіннің үстіндегі түйінге қатынау талабы)' ,
),
/* Kazakh Latin */
'kk-tr' => array (
'pfunc_time_error' => 'Qate: jaramsı z waqı t' ,
'pfunc_time_too_long' => 'Qate: #time ämirin şaqı rwı tı m köp' ,
'pfunc_rel2abs_invalid_depth' => 'Qate: Mı na joldı ñ jaramsı z terendigi "$1" (tamı r tüýinniñ üstindegi tüýinge qatı naw talabı )' ,
),
/* Kazakh Arabic */
'kk-cn' => array (
'pfunc_time_error' => 'قاتە: جارامسىز ۋاقىت' ,
'pfunc_time_too_long' => 'قاتە: #time ٵمٸرٸن شاقىرۋى تىم كٶپ' ,
'pfunc_rel2abs_invalid_depth' => 'قاتە: مىنا جولدىڭ جارامسىز تەرەندٸگٸ "$1" (تامىر تٷيٸننٸڭ ٷستٸندەگٸ تٷيٸنگە قاتىناۋ تالابى)' ,
),
2007-09-30 12:58:32 +00:00
'nds' => array (
Localisation updates from Betawiki.
* Fixes and additions to 40 extensions for gl, hsb, id, is, it, ja, kk-kz, kk-tr, nl, no, oc
* export format in extension Translate and indentation changed in: GiveRollback, ImageMap, Newuserlog, OggHandler, Oversight, ParserFunctions, ProofreadPage, Resign/SpecialResign
2007-11-04 21:21:43 +00:00
'pfunc_time_error' => 'Fehler: mit de Tiet stimmt wat nich' ,
'pfunc_time_too_long' => 'Fehler: #time warrt to faken opropen' ,
'pfunc_rel2abs_invalid_depth' => 'Fehler: Mit den Padd „$1“ stimmt wat nich, liggt nich ünner den Wuddelorner' ,
2007-09-30 12:58:32 +00:00
),
2007-08-27 07:48:23 +00:00
'nl' => array (
2007-11-17 00:10:11 +00:00
'pfunc_time_error' => 'Fout: ongeldige tijd' ,
'pfunc_time_too_long' => 'Fout: #time te vaak aangeroepen' ,
'pfunc_rel2abs_invalid_depth' => 'Fout: ongeldige diepte in pad: \"$1\" (probeerde een node boven de stamnode aan te roepen)' ,
2007-11-17 12:37:14 +00:00
'pfunc_expr_stack_exhausted' => 'Fout in uitdrukking: stack uitgeput' ,
'pfunc_expr_unexpected_number' => 'Fout in uitdrukking: onverwacht getal' ,
'pfunc_expr_preg_match_failure' => 'Fout in uitdrukking: onverwacht falen van preg_match' ,
'pfunc_expr_unrecognised_word' => 'Fout in uitdrukking: woord "$1" niet herkend' ,
'pfunc_expr_unexpected_operator' => 'Fout in uitdrukking: niet verwachte operator $1' ,
'pfunc_expr_missing_operand' => 'Fout in uitdrukking: operand voor $1 mist' ,
'pfunc_expr_unexpected_closing_bracket' => 'Fout in uitdrukking: haakje sluiten op onverwachte plaats' ,
'pfunc_expr_unrecognised_punctuation' => 'Fout in uitdrukking: niet herkend leesteken "$1"' ,
'pfunc_expr_unclosed_bracket' => 'Fout in uitdrukking: niet gesloten haakje openen' ,
2007-11-17 00:10:11 +00:00
'pfunc_expr_division_by_zero' => 'Deling door nul' ,
2007-11-17 12:37:14 +00:00
'pfunc_expr_unknown_error' => 'Fout in uitdrukking: onbekende fout ($1)' ,
2007-11-17 00:10:11 +00:00
'pfunc_expr_not_a_number' => 'In $1: resultaat is geen getal' ,
2007-08-27 07:48:23 +00:00
),
Localisation updates from Betawiki.
* Fixes and additions to 52 extensions for ar, cs, es, fi, frp, hsb, hu, la, nl, oc, pl, sk, tet
* change indentation for export of a few extension's messages in Translate/MessageGroups.php
2007-11-10 18:15:02 +00:00
'oc' => array (
'pfunc_time_error' => 'Error: durada invalida' ,
'pfunc_time_too_long' => 'Error: parser #time apelat tròp de còps' ,
'pfunc_rel2abs_invalid_depth' => 'Error: nivèl de repertòri invalid dins lo camin : \"$1\" (a ensajat d’ accedir a un nivèl al-dessús del repertòri raiç)' ,
),
2007-10-06 20:43:13 +00:00
'pl' => array (
Localisation updates from Betawiki.
* Fixes and additions to 40 extensions for gl, hsb, id, is, it, ja, kk-kz, kk-tr, nl, no, oc
* export format in extension Translate and indentation changed in: GiveRollback, ImageMap, Newuserlog, OggHandler, Oversight, ParserFunctions, ProofreadPage, Resign/SpecialResign
2007-11-04 21:21:43 +00:00
'pfunc_time_error' => 'Błąd: niepoprawny czas' ,
'pfunc_time_too_long' => 'Błąd: za dużo wywołań funkcji #time' ,
'pfunc_rel2abs_invalid_depth' => 'Błąd: Nieprawidłowa głębokość w ścieżce: \"$1\" (próba dostępu do węzła powyżej korzenia)' ,
Localisation updates from Betawiki.
* Fixes and additions to 26 extensions for af, an, ar, el, eu, fr, hr, hsb, it, oc, pl, sv
2007-11-19 08:35:48 +00:00
'pfunc_expr_stack_exhausted' => 'Błąd w wyrażeniu: Stos wyczerpany' ,
'pfunc_expr_unexpected_number' => 'Błąd w wyrażeniu: Niespodziewana liczba' ,
'pfunc_expr_preg_match_failure' => 'Błąd w wyrażeniu: Niespodziewany błąd w preg_match' ,
'pfunc_expr_unrecognised_word' => 'Błąd w wyrażeniu: Nierozpoznane słowo "$1"' ,
'pfunc_expr_unexpected_operator' => 'Błąd w wyrażeniu: Nieoczekiwany operator $1' ,
'pfunc_expr_missing_operand' => 'Błąd w wyrażeniu: Brakujący operand dla $1' ,
'pfunc_expr_unexpected_closing_bracket' => 'Błąd w wyrażeniu: Nieoczekiwany nawias zamykający' ,
'pfunc_expr_unrecognised_punctuation' => 'Błąd w wyrażeniu: Nierozpoznany znak interpunkcyjny "$1"' ,
'pfunc_expr_unclosed_bracket' => 'Błąd w wyrażeniu: Niedomknięty nawias' ,
'pfunc_expr_division_by_zero' => 'Dzielenie przez zero' ,
'pfunc_expr_unknown_error' => 'Błąd w wyrażeniu: Nieznany błąd ($1)' ,
'pfunc_expr_not_a_number' => 'W $1: wynik nie jest liczbą' ,
2007-10-06 20:43:13 +00:00
),
Localisation updates from Betawiki.
* Fixes and additions to 54 extensions for ang, ar, fo, gl, hr, hsb, hy, is, ja, kn, la, nl, no, pl, pms, sk
2007-10-28 23:55:11 +00:00
'pms' => array (
Localisation updates from Betawiki.
* Fixes and additions to 40 extensions for gl, hsb, id, is, it, ja, kk-kz, kk-tr, nl, no, oc
* export format in extension Translate and indentation changed in: GiveRollback, ImageMap, Newuserlog, OggHandler, Oversight, ParserFunctions, ProofreadPage, Resign/SpecialResign
2007-11-04 21:21:43 +00:00
'pfunc_time_error' => 'Eror: temp nen bon' ,
'pfunc_time_too_long' => 'Eror: #time a ven ciamà tròpe vire' ,
'pfunc_rel2abs_invalid_depth' => 'Eror: profondità nen bon-a ant ël përcors: \"$1\" (a l\'é provasse a ciamé un grop dzora a la rèis)' ,
Localisation updates from Betawiki.
* Fixes and additions to 54 extensions for ang, ar, fo, gl, hr, hsb, hy, is, ja, kn, la, nl, no, pl, pms, sk
2007-10-28 23:55:11 +00:00
),
2007-09-23 18:38:58 +00:00
'sk' => array (
Localisation updates from Betawiki.
* Fixes and additions to 40 extensions for gl, hsb, id, is, it, ja, kk-kz, kk-tr, nl, no, oc
* export format in extension Translate and indentation changed in: GiveRollback, ImageMap, Newuserlog, OggHandler, Oversight, ParserFunctions, ProofreadPage, Resign/SpecialResign
2007-11-04 21:21:43 +00:00
'pfunc_time_error' => 'Chyba: Neplatný čas' ,
'pfunc_time_too_long' => 'Chyba: príliš veľa volaní #time' ,
'pfunc_rel2abs_invalid_depth' => 'Chyba: Neplatná hĺbka v ceste: „$1“ (pokus o prístup k uzlu nad koreňovým uzlom)' ,
2007-09-23 18:38:58 +00:00
),
2007-09-12 15:34:05 +00:00
/* Swedish */
'sv' => array (
'pfunc_time_error' => 'Fel: ogiltig tid' ,
'pfunc_time_too_long' => 'Fel: för många anrop av #time' ,
'pfunc_rel2abs_invalid_depth' => 'Fel: felaktig djup i sökväg: "$1" (försöker nå en nod ovanför rotnoden)' ,
),
2007-08-30 10:55:14 +00:00
/* Cantonese */
'yue' => array (
'pfunc_time_error' => '錯: 唔啱嘅時間' ,
'pfunc_time_too_long' => '錯: 太多 #time 呼叫' ,
'pfunc_rel2abs_invalid_depth' => '錯: 唔啱路徑嘅深度: \"$1\" (已經試過由頭點落個點度)' ,
),
/* Chinese (Simplified) */
'zh-hans' => array (
'pfunc_time_error' => '错误: 不正确的时间' ,
'pfunc_time_too_long' => '错误: 过多 #time 的呼叫' ,
'pfunc_rel2abs_invalid_depth' => '错误: 不正确的路径深度: \"$1\" (已经尝试在顶点访问该点)' ,
),
/* Chinese (Traditional) */
'zh-hant' => array (
'pfunc_time_error' => '錯誤: 不正確的時間' ,
'pfunc_time_too_long' => '錯誤: 過多 #time 的呼叫' ,
'pfunc_rel2abs_invalid_depth' => '錯誤: 不正確的路徑深度: \"$1\" (已經嘗試在頂點存取該點)' ,
),
2007-08-19 16:59:01 +00:00
);
2007-08-30 10:55:14 +00:00
2007-09-04 17:28:27 +00:00
/* Kazakh default, fallback to kk-kz */
$messages [ 'kk' ] = $messages [ 'kk-kz' ];
2007-08-30 10:55:14 +00:00
/* Chinese defaults, fallback to zh-hans */
$messages [ 'zh' ] = $messages [ 'zh-hans' ];
$messages [ 'zh-cn' ] = $messages [ 'zh-hans' ];
$messages [ 'zh-hk' ] = $messages [ 'zh-hant' ];
$messages [ 'zh-sg' ] = $messages [ 'zh-hans' ];
$messages [ 'zh-tw' ] = $messages [ 'zh-hant' ];
/* Cantonese default, fallback to yue */
$messages [ 'zh-yue' ] = $messages [ 'yue' ];
2007-08-19 16:55:22 +00:00
return $messages ;
2007-08-27 07:48:23 +00:00
}