mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Editcount
synced 2024-11-28 10:11:11 +00:00
44 lines
1 KiB
PHP
44 lines
1 KiB
PHP
<?php
|
||
|
||
/**
|
||
* Internationalisation file for CountEdits extension
|
||
*
|
||
* @package MediaWiki
|
||
* @subpackage Extensions
|
||
* @author Bertrand GRONDIN <bertrand.grondinr@tiscali.fr>
|
||
*/
|
||
|
||
function efEditCountMessages() {
|
||
$messages = array(
|
||
// English Version by Rob Church
|
||
'en' => array(
|
||
'editcount' => 'Edit count',
|
||
'editcount_username' => 'User: ',
|
||
'editcount_submit' => 'Submit',
|
||
'editcount_total' => 'Total',
|
||
),
|
||
// French Version by Bertrand Grondin
|
||
'fr' => array(
|
||
'editcount' => 'Compteur d’éditions individuel',
|
||
'editcount_username' => 'Utilisateur : ',
|
||
'editcount_submit' => 'Soumettre',
|
||
'editcount_total' => 'Total',
|
||
),
|
||
// German by Leon Weber
|
||
'de' => array(
|
||
'editcount' => 'Anzahl der Seitenbearbeitungen',
|
||
'editcount_username' => 'Benutzer: ',
|
||
'editcount_submit' => 'Absenden',
|
||
'editcount_total' => 'Gesamt',
|
||
),
|
||
// Indonesian Version by Ivan Lanin
|
||
'id' => array(
|
||
'editcount' => 'Jumlah suntingan',
|
||
'editcount_username' => 'Pengguna: ',
|
||
'editcount_submit' => 'Kirim',
|
||
'editcount_total' => 'Total',
|
||
),
|
||
);
|
||
return $messages;
|
||
}
|