mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Editcount
synced 2024-11-24 00:07:16 +00:00
0610a6b474
* Change function name on SpecialEditcount and HideRevision to comply with maintenance/language/checkExtensioni18n.php (CMIIW)
134 lines
3.2 KiB
PHP
134 lines
3.2 KiB
PHP
<?php
|
||
|
||
/**
|
||
* Internationalisation file for CountEdits extension
|
||
*
|
||
* @addtogroup Extensions
|
||
* @author Bertrand GRONDIN <bertrand.grondinr@tiscali.fr>
|
||
*/
|
||
|
||
function efSpecialEditcountMessages() {
|
||
$messages = array(
|
||
// English Version by Rob Church
|
||
'en' => array(
|
||
'editcount' => 'Edit count',
|
||
'editcount_username' => 'User: ',
|
||
'editcount_submit' => 'Submit',
|
||
'editcount_total' => 'Total',
|
||
),
|
||
|
||
// German by Leon Weber
|
||
'de' => array(
|
||
'editcount' => 'Anzahl der Seitenbearbeitungen',
|
||
'editcount_username' => 'Benutzer: ',
|
||
'editcount_submit' => 'Absenden',
|
||
'editcount_total' => 'Gesamt',
|
||
),
|
||
|
||
// French Version by Bertrand Grondin
|
||
'fr' => array(
|
||
'editcount' => 'Compteur d’éditions individuel',
|
||
'editcount_username' => 'Utilisateur : ',
|
||
'editcount_submit' => 'Soumettre',
|
||
'editcount_total' => 'Total',
|
||
),
|
||
|
||
// Indonesian Version by Ivan Lanin
|
||
'id' => array(
|
||
'editcount' => 'Jumlah suntingan',
|
||
'editcount_username' => 'Pengguna: ',
|
||
'editcount_submit' => 'Kirim',
|
||
'editcount_total' => 'Total',
|
||
),
|
||
|
||
// Italian Version by BrokenArrow
|
||
'it' => array(
|
||
'editcount' => 'Conteggio delle modifiche',
|
||
'editcount_username' => 'Utente: ',
|
||
'editcount_submit' => 'Invia',
|
||
'editcount_total' => 'Totale',
|
||
),
|
||
|
||
// nld / Dutch version by Siebrand Mazeland
|
||
'nl' => array(
|
||
'editcount' => 'Bewerkingsteller',
|
||
'editcount_username' => 'Gebruiker: ',
|
||
'editcount_submit' => 'OK',
|
||
'editcount_total' => 'Totaal',
|
||
),
|
||
|
||
// Slovak version by helix84
|
||
'sk' => array(
|
||
'editcount' => 'Počet príspevkov',
|
||
'editcount_username' => 'Používateľ: ',
|
||
'editcount_submit' => 'Odoslať',
|
||
'editcount_total' => 'Celkom',
|
||
),
|
||
|
||
// Serbian default version by Sasa Stefanovic
|
||
'sr' => array(
|
||
'editcount' => 'Бројач измена',
|
||
'editcount_username' => 'Корисник: ',
|
||
'editcount_submit' => 'Унеси',
|
||
'editcount_total' => 'Укупно',
|
||
),
|
||
|
||
// Serbian cyrillic version by Sasa Stefanovic
|
||
'sr-ec' => array(
|
||
'editcount' => 'Бројач измена',
|
||
'editcount_username' => 'Корисник: ',
|
||
'editcount_submit' => 'Унеси',
|
||
'editcount_total' => 'Укупно',
|
||
),
|
||
|
||
// Serbian latin version by Sasa Stefanovic
|
||
'sr-el' => array(
|
||
'editcount' => 'Brojač izmena',
|
||
'editcount_username' => 'Korisnik: ',
|
||
'editcount_submit' => 'Unesi',
|
||
'editcount_total' => 'Ukupno',
|
||
),
|
||
|
||
// Chinese (China) Version by Shinjiman
|
||
'zh-cn' => array(
|
||
'editcount' => '编辑次数',
|
||
'editcount_username' => '用户: ',
|
||
'editcount_submit' => '提交',
|
||
'editcount_total' => '总数',
|
||
),
|
||
|
||
// Chinese (Hong Kong) Version by Shinjiman
|
||
'zh-hk' => array(
|
||
'editcount' => '編輯次數',
|
||
'editcount_username' => '用戶: ',
|
||
'editcount_submit' => '遞交',
|
||
'editcount_total' => '總數',
|
||
),
|
||
|
||
// Chinese (Singapore) Version by Shinjiman
|
||
'zh-sg' => array(
|
||
'editcount' => '编辑次数',
|
||
'editcount_username' => '用户: ',
|
||
'editcount_submit' => '提交',
|
||
'editcount_total' => '总数',
|
||
),
|
||
|
||
// Chinese (Taiwan) Version by Shinjiman
|
||
'zh-tw' => array(
|
||
'editcount' => '編輯次數',
|
||
'editcount_username' => '用戶: ',
|
||
'editcount_submit' => '遞交',
|
||
'editcount_total' => '總數',
|
||
),
|
||
|
||
// Cantonese Version by Shinjiman
|
||
'zh-yue' => array(
|
||
'editcount' => '編輯次數',
|
||
'editcount_username' => '用戶: ',
|
||
'editcount_submit' => '遞交',
|
||
'editcount_total' => '總數',
|
||
),
|
||
);
|
||
return $messages;
|
||
}
|