Merge "Added jobqueue.pickup_root_age metric"
[lhc/web/wiklou.git] / languages / messages / MessagesLv.php
1 <?php
2 /** Latvian (latviešu)
3 *
4 * To improve a translation please visit https://translatewiki.net
5 *
6 * @ingroup Language
7 * @file
8 *
9 * @author Admresdeserv.
10 * @author Dark Eagle
11 * @author Edgars2007
12 * @author FnTmLV
13 * @author Geimeris
14 * @author Geitost
15 * @author Gleb Borisov
16 * @author GreenZeb
17 * @author Kaganer
18 * @author Karlis
19 * @author Kikos
20 * @author Knakts
21 * @author Marozols
22 * @author Papuass
23 * @author Reedy
24 * @author Srolanh
25 * @author Xil
26 * @author Yyy
27 * @author לערי ריינהארט
28 */
29
30 /**
31 * @copyright Copyright © 2006, Niklas Laxström
32 * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
33 */
34
35 $linkTrail = '/^([a-zA-ZĀāČčĒēĢģĪīĶķĻļŅņŠšŪūŽž]+)(.*)$/sDu';
36
37 $namespaceNames = array(
38 NS_MEDIA => 'Media',
39 NS_SPECIAL => 'Special',
40 NS_TALK => 'Diskusija',
41 NS_USER => 'Lietotājs',
42 NS_USER_TALK => 'Lietotāja_diskusija',
43 NS_PROJECT_TALK => '{{grammar:ģenitīvs|$1}}_diskusija',
44 NS_FILE => 'Attēls',
45 NS_FILE_TALK => 'Attēla_diskusija',
46 NS_MEDIAWIKI => 'MediaWiki',
47 NS_MEDIAWIKI_TALK => 'MediaWiki_diskusija',
48 NS_TEMPLATE => 'Veidne',
49 NS_TEMPLATE_TALK => 'Veidnes_diskusija',
50 NS_HELP => 'Palīdzība',
51 NS_HELP_TALK => 'Palīdzības_diskusija',
52 NS_CATEGORY => 'Kategorija',
53 NS_CATEGORY_TALK => 'Kategorijas_diskusija',
54 );
55 $separatorTransformTable = array( ',' => "\xc2\xa0", '.' => ',' );
56
57 /**
58 * A list of date format preference keys, which can be selected in user
59 * preferences. New preference keys can be added, provided they are supported
60 * by the language class's timeanddate(). Only the 5 keys listed below are
61 * supported by the wikitext converter (parser/DateFormatter.php).
62 *
63 * The special key "default" is an alias for either dmy or mdy depending on
64 * $wgAmericanDates
65 */
66 $datePreferences = array(
67 'default',
68 'ydm',
69 'mdy',
70 'dmy',
71 'ymd',
72 'ISO 8601',
73 );
74
75 /**
76 * The date format to use for generated dates in the user interface.
77 * This may be one of the above date preferences, or the special value
78 * "dmy or mdy", which uses mdy if $wgAmericanDates is true, and dmy
79 * if $wgAmericanDates is false.
80 */
81 $defaultDateFormat = 'ydm';
82
83 /**
84 * Associative array mapping old numeric date formats, which may still be
85 * stored in user preferences, to the new string formats.
86 */
87 $datePreferenceMigrationMap = array(
88 'default',
89 'mdy',
90 'dmy',
91 'ymd'
92 );
93
94 /**
95 * These are formats for dates generated by MediaWiki (as opposed to the wikitext
96 * DateFormatter). Documentation for the format string can be found in
97 * Language.php, search for sprintfDate.
98 *
99 * This array is automatically inherited by all subclasses. Individual keys can be
100 * overridden.
101 */
102 $dateFormats = array(
103 'ydm time' => 'H.i',
104 'ydm date' => 'Y". gada" j. F',
105 'ydm monthonly' => 'Y". gada" F',
106 'ydm both' => 'Y". gada" j. F", plkst." H.i',
107 'ydm pretty' => 'j F',
108
109 'mdy time' => 'H:i',
110 'mdy date' => 'F j, Y',
111 'mdy monthonly' => 'F Y',
112 'mdy both' => 'H:i, F j, Y',
113 'mdy pretty' => 'F j',
114
115 'dmy time' => 'H:i',
116 'dmy date' => 'j F Y',
117 'dmy monthonly' => 'F Y',
118 'dmy both' => 'H:i, j F Y',
119 'dmy pretty' => 'j F',
120
121 'ymd time' => 'H:i',
122 'ymd date' => 'Y F j',
123 'ymd monthonly' => 'Y F',
124 'ymd both' => 'H:i, Y F j',
125 'ymd pretty' => 'F j',
126
127 'ISO 8601 time' => 'xnH:xni:xns',
128 'ISO 8601 date' => 'xnY-xnm-xnd',
129 'ISO 8601 monthonly' => 'xnY-xnm',
130 'ISO 8601 both' => 'xnY-xnm-xnd"T"xnH:xni:xns',
131 'ISO 8601 pretty' => 'xnm-xnd'
132 );