mediawiki-extensions-Echo/Echo.alias.php
Translation updater bot 9561485d2b Localisation updates from https://translatewiki.net.
Change-Id: I7014f628f7dab8d99b02389fce79d83e961a35d2
2014-02-19 20:04:42 +00:00

200 lines
4.5 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' ),
);
/** 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' ),
);
/** 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( '通知' ),
);