mediawiki-extensions-Editcount/SpecialEditcount.i18n.php
Ivan Lanin 0610a6b474 * Add other extensions to i18n.db and explicitly specify the array or function name for each extensions
* Change function name on SpecialEditcount and HideRevision to comply with maintenance/language/checkExtensioni18n.php (CMIIW)
2007-04-02 14:23:15 +00:00

134 lines
3.2 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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;
}