mediawiki-extensions-Gadgets/Gadgets.namespaces.php
mjbmr 6ad53ef396 Add Persian translations
Follow-up to Ia88c774cc0decc252a4a4277d14822048db95801

Bug: T109234
Change-Id: Ib05342d19f99c301f9f1a21c016ef1d86cb2175e
2015-08-16 23:14:41 +03:00

33 lines
907 B
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
$namespaceNames = array();
// For wikis without Gadgets installed.
if ( !defined( 'NS_GADGET' ) ) {
define( 'NS_GADGET', 2300 );
define( 'NS_GADGET_TALK', 2301 );
define( 'NS_GADGET_DEFINITION', 2302 );
define( 'NS_GADGET_DEFINITION_TALK', 2303 );
}
$namespaceNames['en'] = array(
NS_GADGET => 'Gadget',
NS_GADGET_TALK => 'Gadget_talk',
NS_GADGET_DEFINITION => 'Gadget_definition',
NS_GADGET_DEFINITION_TALK => 'Gadget_definition_talk',
);
$namespaceNames['fa'] = array(
NS_GADGET => 'ابزار',
NS_GADGET_TALK => 'بحث_ابزار',
NS_GADGET_DEFINITION => 'توضیحات_ابزار',
NS_GADGET_DEFINITION_TALK => 'بحث_توضیحات_ابزار',
);
$namespaceNames['he'] = array(
NS_GADGET => 'גאדג\'ט',
NS_GADGET_TALK => יחת_גאדג\'ט',
NS_GADGET_DEFINITION => 'הגדרת_גאדג\'ט',
NS_GADGET_DEFINITION_TALK => יחת_הגדרת_גאדג\'ט',
);