mediawiki-extensions-Echo/Echo.alias.php
Translation updater bot afb0a70129 Localisation updates from https://translatewiki.net.
Change-Id: I2f97e36d4d2c7101af5b21301a355d7dea1a2ebd
2014-04-09 19:37:42 +00:00

210 lines
4.8 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
/**
* Aliases for special pages for extension Echo
*
* @file
* @ingroup Extensions
*/
// @codingStandardsIgnoreFile
$specialPageAliases = array();
/** English (English) */
$specialPageAliases['en'] = array(
'Notifications' => array( 'Notifications' ),
);
/** Arabic (العربية) */
$specialPageAliases['ar'] = array(
'Notifications' => array( 'إشعارات' ),
);
/** Egyptian Spoken Arabic (مصرى) */
$specialPageAliases['arz'] = array(
'Notifications' => array( 'اخطارات' ),
);
/** Min Dong Chinese (Mìng-dĕ̤ng-ngṳ̄) */
$specialPageAliases['cdo'] = array(
'Notifications' => array( '提醒' ),
);
/** Chechen (нохчийн) */
$specialPageAliases['ce'] = array(
'Notifications' => array( 'ДӀахаийтар' ),
);
/** German (Deutsch) */
$specialPageAliases['de'] = array(
'Notifications' => array( 'Benachrichtigungen' ),
);
/** Zazaki (Zazaki) */
$specialPageAliases['diq'] = array(
'Notifications' => array( 'Mengeney' ),
);
/** Greek (Ελληνικά) */
$specialPageAliases['el'] = array(
'Notifications' => array( 'Ειδοποιήσεις' ),
);
/** Esperanto (Esperanto) */
$specialPageAliases['eo'] = array(
'Notifications' => array( 'Atentigoj' ),
);
/** Spanish (español) */
$specialPageAliases['es'] = array(
'Notifications' => array( 'Notificaciones' ),
);
/** Estonian (eesti) */
$specialPageAliases['et'] = array(
'Notifications' => array( 'Teavitused' ),
);
/** Persian (فارسی) */
$specialPageAliases['fa'] = array(
'Notifications' => array( 'آگاه‌سازی‌ها' ),
);
/** Finnish (suomi) */
$specialPageAliases['fi'] = array(
'Notifications' => array( 'Ilmoitukset' ),
);
/** Galician (galego) */
$specialPageAliases['gl'] = array(
'Notifications' => array( 'Notificacións' ),
);
/** Hawaiian (Hawai`i) */
$specialPageAliases['haw'] = array(
'Notifications' => array( 'Notikala' ),
);
/** Hebrew (עברית) */
$specialPageAliases['he'] = array(
'Notifications' => array( 'הודעות', 'כל_ההודעות' ),
);
/** Indonesian (Bahasa Indonesia) */
$specialPageAliases['id'] = array(
'Notifications' => array( 'Notifikasi' ),
);
/** Italian (italiano) */
$specialPageAliases['it'] = array(
'Notifications' => array( 'Notifiche' ),
);
/** Japanese (日本語) */
$specialPageAliases['ja'] = array(
'Notifications' => array( '通知' ),
);
/** Korean (한국어) */
$specialPageAliases['ko'] = array(
'Notifications' => array( '알림' ),
);
/** Cornish (kernowek) */
$specialPageAliases['kw'] = array(
'Notifications' => array( 'Argemynow' ),
);
/** Luxembourgish (Lëtzebuergesch) */
$specialPageAliases['lb'] = array(
'Notifications' => array( 'Notifikatiounen' ),
);
/** Macedonian (македонски) */
$specialPageAliases['mk'] = array(
'Notifications' => array( 'Известувања' ),
);
/** Malayalam (മലയാളം) */
$specialPageAliases['ml'] = array(
'Notifications' => array( 'അറിയിപ്പുകൾ' ),
);
/** Maltese (Malti) */
$specialPageAliases['mt'] = array(
'Notifications' => array( 'Notifiki' ),
);
/** Norwegian Bokmål (norsk bokmål) */
$specialPageAliases['nb'] = array(
'Notifications' => array( 'Varsler' ),
);
/** Dutch (Nederlands) */
$specialPageAliases['nl'] = array(
'Notifications' => array( 'Meldingen' ),
);
/** Punjabi (ਪੰਜਾਬੀ) */
$specialPageAliases['pa'] = array(
'Notifications' => array( 'ਇਤਲਾਹਾਂ' ),
);
/** Polish (polski) */
$specialPageAliases['pl'] = array(
'Notifications' => array( 'Powiadomienia' ),
);
/** Portuguese (português) */
$specialPageAliases['pt'] = array(
'Notifications' => array( 'Notificações' ),
);
/** Brazilian Portuguese (português do Brasil) */
$specialPageAliases['pt-br'] = array(
'Notifications' => array( 'Notificações' ),
);
/** Quechua (Runa Simi) */
$specialPageAliases['qu'] = array(
'Notifications' => array( 'Willaykuykuna' ),
);
/** Russian (русский) */
$specialPageAliases['ru'] = array(
'Notifications' => array( 'Уведомления' ),
);
/** Sicilian (sicilianu) */
$specialPageAliases['scn'] = array(
'Notifications' => array( 'Notifiche' ),
);
/** Swedish (svenska) */
$specialPageAliases['sv'] = array(
'Notifications' => array( 'Meddelanden' ),
);
/** Ukrainian (українська) */
$specialPageAliases['uk'] = array(
'Notifications' => array( 'Сповіщення' ),
);
/** vèneto (vèneto) */
$specialPageAliases['vec'] = array(
'Notifications' => array( 'Notifiche' ),
);
/** Vietnamese (Tiếng Việt) */
$specialPageAliases['vi'] = array(
'Notifications' => array( 'Thông_báo' ),
);
/** Simplified Chinese (中文(简体)‎) */
$specialPageAliases['zh-hans'] = array(
'Notifications' => array( '通知' ),
);
/** Traditional Chinese (中文(繁體)‎) */
$specialPageAliases['zh-hant'] = array(
'Notifications' => array( '通知' ),
);