| 1 |
<?php |
| 2 |
|
| 3 |
/** |
| 4 |
* Internationalisation file for the ashighlight extension |
| 5 |
* |
| 6 |
* @addtogroup Extensions |
| 7 |
*/ |
| 8 |
|
| 9 |
function efashighlightMessages() { |
| 10 |
return array( |
| 11 |
|
| 12 |
/* English (Brion Vibber) */ |
| 13 |
'en' => array( |
| 14 |
'ashighlight-specify' => 'You need to specify a language like this:', |
| 15 |
'ashighlight-supported' => 'Supported languages for syntax highlighting:', |
| 16 |
'ashighlight-err-loading' => '(error loading support language list)', |
| 17 |
'ashighlight-err-language' => 'Invalid language.', |
| 18 |
), |
| 19 |
|
| 20 |
/* German (Raymond) */ |
| 21 |
'de' => array( |
| 22 |
'ashighlight-specify' => 'Die gewünschte Sprache muss wie folgt definiert werden:', |
| 23 |
'ashighlight-supported' => 'Unterstützte Sprachen für die Syntax-Hervorhebung:', |
| 24 |
'ashighlight-err-loading' => '(Fehler beim Laden der Sprachenliste)', |
| 25 |
'ashighlight-err-language' => 'Ungültige Sprache.', |
| 26 |
), |
| 27 |
|
| 28 |
/* French */ |
| 29 |
'fr' => array( |
| 30 |
'ashighlight-specify' => 'Vous devez spécifier un langage comme ceci :', |
| 31 |
'ashighlight-supported' => 'Langages supportés pour la coloration syntaxique :', |
| 32 |
'ashighlight-err-loading' => '(erreur en chargeant la liste des langages supportés)', |
| 33 |
), |
| 34 |
|
| 35 |
/* Indonesian (Ivan Lanin) */ |
| 36 |
'id' => array( |
| 37 |
'ashighlight-specify' => 'Anda harus menentukan suatu bahasa seperti ini:', |
| 38 |
'ashighlight-supported' => 'Bahasa-bahasa yang didukung oleh pewarnaan sintaks:', |
| 39 |
'ashighlight-err-loading' => '(kesalahan pemuatan daftar bahasa yang didukung)', |
| 40 |
'ashighlight-err-language' => 'Bahasa tak sah.', |
| 41 |
), |
| 42 |
|
| 43 |
/* Italian (BrokenArrow) */ |
| 44 |
'it' => array( |
| 45 |
'ashighlight-specify' => 'È necessario specificare un linguaggio in questo modo:', |
| 46 |
'ashighlight-supported' => 'Linguaggi di cui è possibile evidenziare la sintassi in colore:', |
| 47 |
'ashighlight-err-loading' => '(errore nel caricamento dell\'elenco dei linguaggi supportati)', |
| 48 |
), |
| 49 |
|
| 50 |
/* nld / Dutch (Siebrand Mazeland) */ |
| 51 |
'nl' => array( |
| 52 |
'ashighlight-specify' => 'Geef een taal op zoals:', |
| 53 |
'ashighlight-supported' => 'Ondersteunde talen voor syntaxismarkering:', |
| 54 |
'ashighlight-err-loading' => '(fout bij het laden van de lijst met ondersteunde talen)', |
| 55 |
), |
| 56 |
|
| 57 |
/* Chinese (China) (Shinjiman) */ |
| 58 |
'zh-cn' => array( |
| 59 |
'ashighlight-specify' => '您需要指定一种语言,像这样:', |
| 60 |
'ashighlight-supported' => '语法高亮所支持的语言:', |
| 61 |
'ashighlight-err-loading' => '(支持语言列表载入错误)', |
| 62 |
), |
| 63 |
|
| 64 |
/* Chinese (Hong Kong) (Shinjiman) */ |
| 65 |
'zh-hk' => array( |
| 66 |
'ashighlight-specify' => '您需要指定一種語言,像這樣:', |
| 67 |
'ashighlight-supported' => '語法醒目標示所支援的語言:', |
| 68 |
'ashighlight-err-loading' => '(支援語言清單載入錯誤)', |
| 69 |
), |
| 70 |
|
| 71 |
/* Chinese (Singapore) (Shinjiman) */ |
| 72 |
'zh-sg' => array( |
| 73 |
'ashighlight-specify' => '您需要指定一种语言,像这样:', |
| 74 |
'ashighlight-supported' => '语法高亮所支持的语言:', |
| 75 |
'ashighlight-err-loading' => '(支持语言列表载入错误)', |
| 76 |
), |
| 77 |
|
| 78 |
/* Chinese (Taiwan) (Shinjiman) */ |
| 79 |
'zh-tw' => array( |
| 80 |
'ashighlight-specify' => '您需要指定一種語言,像這樣:', |
| 81 |
'ashighlight-supported' => '語法醒目標示所支援的語言:', |
| 82 |
'ashighlight-err-loading' => '(支援語言清單載入錯誤)', |
| 83 |
), |
| 84 |
|
| 85 |
/* Cantonese (Shinjiman) */ |
| 86 |
'zh-yue' => array( |
| 87 |
'ashighlight-specify' => '你需要指定一種語言,好似咁:', |
| 88 |
'ashighlight-supported' => '語法醒目標示所支援嘅語言:', |
| 89 |
'ashighlight-err-loading' => '(支援語言清單載入錯誤)', |
| 90 |
), |
| 91 |
|
| 92 |
); |
| 93 |
} |
| 94 |
|
| 95 |
?> |