* Put $fallback and $rtl at the top, as they are in most files. In some files they were at the bottom or at the middle, which made them hard to find. * Add empty lines consistently next to them. * Add $rtl = true to Arq. It apparently worked without it, but it should be explicit for consistency. Change-Id: I6c74b1501375bcc31db36193da24d4d95a8c3fef
34 lines
940 B
PHP
34 lines
940 B
PHP
<?php
|
|
/** Latgalian (latgaļu)
|
|
*
|
|
* To improve a translation please visit https://translatewiki.net
|
|
*
|
|
* @ingroup Language
|
|
* @file
|
|
*
|
|
* @author Dark Eagle
|
|
* @author Gleb Borisov
|
|
* @author Jureits
|
|
* @author Reedy
|
|
*/
|
|
|
|
$fallback = 'lv';
|
|
|
|
$namespaceNames = [
|
|
NS_MEDIA => 'Medeja',
|
|
NS_SPECIAL => 'Seviškuo',
|
|
NS_TALK => 'Sprīža',
|
|
NS_USER => 'Lītuotuojs',
|
|
NS_USER_TALK => 'Sprīža_ap_lītuotuoju',
|
|
NS_PROJECT_TALK => 'Sprīža_ap_{{GRAMMAR:accusative|$1}}',
|
|
NS_FILE => 'Fails',
|
|
NS_FILE_TALK => 'Sprīža_ap_failu',
|
|
NS_MEDIAWIKI => 'MediaWiki',
|
|
NS_MEDIAWIKI_TALK => 'Sprīža_ap_MediaWiki',
|
|
NS_TEMPLATE => 'Taiss',
|
|
NS_TEMPLATE_TALK => 'Sprīža_ap_taisu',
|
|
NS_HELP => 'Paleigs',
|
|
NS_HELP_TALK => 'Sprīža_ap_paleigu',
|
|
NS_CATEGORY => 'Kategoreja',
|
|
NS_CATEGORY_TALK => 'Sprīža_ap_kategoreju',
|
|
];
|