mediawiki-extensions-Echo/Echo.alias.php
Translation updater bot 3ad2fba7f8 Localisation updates from https://translatewiki.net.
Change-Id: Ic2ad92144ed7dbc6d1fe9bf7cf4576abd04d03b3
2013-12-03 20:48:50 +00:00

185 lines
4.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
/**
* 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( 'إشعارات' ),
);
/** 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( 'Tebliği' ),
);
/** 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' ),
);
/** 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' ),
);
/** 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( '通知' ),
);