summaryrefslogtreecommitdiff
path: root/languages/messages/MessagesAvk.php
blob: 9daa028c76dd3b9ccb4c5adbce79ba32c50a93e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
<?php
/** Kotava (Kotava)
 *
 * See MessagesQqq.php for message documentation incl. usage of parameters
 * To improve a translation please visit http://translatewiki.net
 *
 * @ingroup Language
 * @file
 *
 * @author Nkosi ya Cabinda
 * @author Sab
 * @author Urhixidur
 * @author Wikimistusik
 * @author Zetud
 */

$namespaceNames = array(
	NS_MEDIA            => 'Mamind',
	NS_SPECIAL          => 'Aptaca',
	NS_TALK             => 'Prilara',
	NS_USER             => 'Favesik',
	NS_USER_TALK        => 'Favesikprilara',
	NS_PROJECT_TALK     => '$1 prilara',
	NS_FILE             => 'Ewava',
	NS_FILE_TALK        => 'Ewavaprilara',
	NS_MEDIAWIKI        => 'MediaWiki',
	NS_MEDIAWIKI_TALK   => 'MediaWiki prilara',
	NS_TEMPLATE         => 'Teza',
	NS_TEMPLATE_TALK    => 'Tezaprilara',
	NS_HELP             => 'Pomara',
	NS_HELP_TALK        => 'Pomaraprilara',
	NS_CATEGORY         => 'Loma',
	NS_CATEGORY_TALK    => 'Lomaprilara',
);

$specialPageAliases = array(
	'DoubleRedirects'           => array( 'JontolafGraskakseem' ),
	'BrokenRedirects'           => array( 'EmpayanGraskakseem' ),
	'Preferences'               => array( 'Lodamaceem' ),
	'Watchlist'                 => array( 'Suzdasiki' ),
	'Recentchanges'             => array( 'NoeltafBetakseem' ),
	'Upload'                    => array( 'Kalvajara' ),
	'Listfiles'                 => array( 'Ewaveem' ),
	'Newimages'                 => array( 'WarzafEwaveem' ),
	'Listusers'                 => array( 'Favesikeem' ),
	'Statistics'                => array( 'Enkopaceem' ),
	'Randompage'                => array( 'Xuyavabu' ),
	'Lonelypages'               => array( 'GluyasikiiskafBueem' ),
	'Uncategorizedpages'        => array( 'LomiskafBueem' ),
	'Uncategorizedcategories'   => array( 'LomiskafLomeem' ),
	'Uncategorizedimages'       => array( 'LomiskafEwaveem' ),
	'Uncategorizedtemplates'    => array( 'LomiskafTezeem' ),
	'Unusedcategories'          => array( 'MefavenLomeem' ),
	'Unusedimages'              => array( 'MefavenEwaveem' ),
	'Wantedpages'               => array( 'ErunBueem', 'EmpayanGluyasikieem' ),
	'Wantedcategories'          => array( 'ErunLomeem' ),
	'Mostlinked'                => array( 'Logluyasikikiraf' ),
	'Mostlinkedcategories'      => array( 'LogluyasikirafLomeem' ),
	'Mostlinkedtemplates'       => array( 'LogluyasikikirafTezeem' ),
	'Mostimages'                => array( 'Lodewavakiraf' ),
	'Mostcategories'            => array( 'Lolomakiraf' ),
	'Mostrevisions'             => array( 'Lobetayan' ),
	'Fewestrevisions'           => array( 'Lebetayan' ),
	'Shortpages'                => array( 'TrelafBueem' ),
	'Longpages'                 => array( 'AbrotcafBueem' ),
	'Newpages'                  => array( 'WarzafBueem' ),
	'Ancientpages'              => array( 'SavsafBueem' ),
	'Deadendpages'              => array( 'AxodafBueem' ),
	'Protectedpages'            => array( 'NendanBueem' ),
	'Protectedtitles'           => array( 'NendanVergumvelteem' ),
	'Allpages'                  => array( 'Bueem' ),
	'Specialpages'              => array( 'AptafBueem' ),
	'Contributions'             => array( 'Webekseem' ),
	'Emailuser'                 => array( 'FavesikEmailMane' ),
	'Confirmemail'              => array( 'EmailManeGruyera' ),
	'Movepage'                  => array( 'BuArrundara' ),
	'Booksources'               => array( 'NevaKliteem' ),
	'Categories'                => array( 'Lomeem' ),
	'Export'                    => array( 'Divburera' ),
	'Version'                   => array( 'Siatos' ),
	'Allmessages'               => array( 'Stakseem' ),
	'Undelete'                  => array( 'Dimsulara' ),
	'Import'                    => array( 'Koburera' ),
	'Userrights'                => array( 'FavesikRokeem' ),
	'MIMEsearch'                => array( 'MIMEAneyara' ),
	'Unwatchedpages'            => array( 'MerupenBueem' ),
	'Listredirects'             => array( 'Graskakseem' ),
	'Revisiondelete'            => array( 'BetaraSulara' ),
	'Unusedtemplates'           => array( 'MefavenTezeem' ),
	'Randomredirect'            => array( 'XuyavafaGraskara' ),
	'Mypage'                    => array( 'JinafuBu' ),
	'Mytalk'                    => array( 'JinafaPrilara' ),
	'Mycontributions'           => array( 'JinafWebekseem' ),
	'Listadmins'                => array( 'Ristusikeem' ),
	'Listbots'                  => array( 'Stiernikeem' ),
	'Popularpages'              => array( 'LorupenBueem' ),
	'Search'                    => array( 'Aneyara' ),
);

$messages = array(
# User preference toggles
'tog-underline'               => 'Levconhani gluyasiki se',
'tog-highlightbroken'         => 'Gluyasiki va mekruldesaca keron',
'tog-justify'                 => 'Emaven kuparkieem',
'tog-hideminor'               => 'Palsera va <i>Noeltaf betakseem</i> mezolonaf',
'tog-extendwatchlist'         => 'Divatcera va suzdasiki ta nedira va kot rorewan betaks',
'tog-usenewrc'                => 'Noeltaf betakseem tulogijayan<br /> (anton abic exulesik)',
'tog-numberheadings'          => 'Mivaskafa vergumveltotukara',
'tog-showtoolbar'             => 'Nedira va tidexekak ke betararude',
'tog-editondblclick'          => 'Ta bubetara tolon vulegal (JavaScript tir adraf)',
'tog-editsection'             => 'Betara va gabot kan "[Betara]" gluyasiki',
'tog-editsectiononrightclick' => 'Betara va gabot talton vulegason<br /> va gabotvergumvelt',
'tog-showtoc'                 => 'Nedira va ugak<br /> (icde teliz dem lo 3 gabot)',
'tog-rememberpassword'        => 'Va jinaf remravlem setiker (cookie)',
'tog-editwidth'               => 'Betaxo mantanhon nediwer',
'tog-watchcreations'          => 'Kosuzdasikira va jinon betayan bueem',
'tog-watchdefault'            => 'Va jinon reduyun ik betayan telizeem suzdá',
'tog-watchmoves'              => 'Kosuzdasikira va jinon arrundayan bueem',
'tog-watchdeletion'           => 'Kosuzdasikira va jinon sulayan bueem',
'tog-minordefault'            => 'Jinaf betakseem omavon mezolonon zo torigid',
'tog-previewontop'            => 'Abdinedira nediwer vamoe sutelaxo',
'tog-previewonfirst'          => 'Nedira va abdinedira bal taneafa betara',
'tog-nocache'                 => 'Gritegirara va bupreyutasiki',
'tog-enotifwatchlistpages'    => 'Moi da betara va jinafi suzdasiki zo staksá !',
'tog-enotifusertalkpages'     => 'Moi da betara va jinafu favesikbu pu jin staksar !',
'tog-enotifminoredits'        => 'Icde bubetamara dere zo staksá !',
'tog-enotifrevealaddr'        => 'Divnedira va jinaf email mane koe staksara',
'tog-shownumberswatching'     => 'Va ota va rupes favesik nedir !',
'tog-fancysig'                => 'Rilaf sugdaks (a mivaskafi gluyasiki)',
'tog-externaleditor'          => 'Favera va divefi betasiki (anton gan aptacik, moe vusiko va yona aptafa vertara olegar)',
'tog-externaldiff'            => 'Omavafa favera va divefa "diff" xeka (anton gan aptacik, moe vusiko va yona aptafa vertara olegar)',
'tog-showjumplinks'           => 'Tutegirara va "grablera" vansarafi gluyasiki',
'tog-uselivepreview'          => 'Favera va abdiwira (JavaScript) (bagalon)',
'tog-forceeditsummary'        => 'Zo walzé viele betaravildeks tir vlardaf !',
'tog-watchlisthideown'        => 'Palsera va jinaf suzdasikif betakseem',
'tog-watchlisthidebots'       => 'Palsera va suzdasikif stiernaf betakseem',
'tog-watchlisthideminor'      => 'Palsera va suzdasikif betamakseem',
'tog-ccmeonemails'            => 'Va ksudaks va e-mail jinon stakseyen pu ar favesik yo pu jin staksel',
'tog-diffonly'                => 'Vleve amidaceem bucek me zo nedir !',
'tog-showhiddencats'          => 'Nedira va palsen lomeem',

'underline-always'  => 'Kotviele',
'underline-never'   => 'Meviele',
'underline-default' => 'Omavafi exulesiki',

# Dates
'sunday'        => 'taneaviel',
'monday'        => 'toleaviel',
'tuesday'       => 'bareaviel',
'wednesday'     => 'balemeaviel',
'thursday'      => 'alubeaviel',
'friday'        => 'teveaviel',
'saturday'      => 'pereaviel',
'sun'           => 'Tan-',
'mon'           => 'Tol-',
'tue'           => 'Bar-',
'wed'           => 'Bal-',
'thu'           => 'Alu-',
'fri'           => 'Tev-',
'sat'           => 'Per-',
'january'       => 'taneaksat',
'february'      => 'toleaksat',
'march'         => 'bareaksat',
'april'         => 'balemeaksat',
'may_long'      => 'alubeaksat',
'june'          => 'teveaksat',
'july'          => 'pereaksat',
'august'        => 'anhusteaksat',
'september'     => 'lerdeaksat',
'october'       => 'saneaksat',
'november'      => 'santaneaksat',
'december'      => 'santoleaksat',
'january-gen'   => 'Taneaksat',
'february-gen'  => 'Toleaksat',
'march-gen'     => 'Bareaksat',
'april-gen'     => 'Balemeaksat',
'may-gen'       => 'Alubeaksat',
'june-gen'      => 'Teveaksat',
'july-gen'      => 'Pereaksat',
'august-gen'    => 'Anhusteaksat',
'september-gen' => 'Lerdeaksat',
'october-gen'   => 'Saneaksat',
'november-gen'  => 'Santaneaksat',
'december-gen'  => 'Santoleaksat',
'jan'           => '1-at',
'feb'           => '2-at',
'mar'           => '3-at',
'apr'           => '4-at',
'may'           => '5-at',
'jun'           => '6-at',
'jul'           => '7-at',
'aug'           => '8-at',
'sep'           => '9-at',
'oct'           => '10-at',
'nov'           => '11-at',
'dec'           => '12-at',

# Categories related messages
'pagecategories'                 => '{{PLURAL:$1|Loma|Loma}}',
'category_header'                => 'Lomolkeem « $1 ».',
'subcategories'                  => 'volveylomeem',
'category-media-header'          => 'Ewavaf iyeltakeem koe "$1" loma',
'category-empty'                 => "''Bata loma va bu ok ewava noelton me ruldar''.",
'hidden-categories'              => '{{PLURAL:$1|Palsena loma|Palsena loma}}',
'hidden-category-category'       => 'Palsen lomeem',
'category-subcat-count'          => '{{PLURAL:$2|Bata loma va bata volveyloma anton digir.|Bata loma va bata volveyloma anton digir {{PLURAL:$1|volveyloma|$1 volveyloma}}, anton digir, ke $2 kotron.}}',
'category-subcat-count-limited'  => 'Bata loma va {{PLURAL:$1|bata volveyloma|$1 batyona volveyloma}} digir.',
'category-article-count'         => '{{PLURAL:$2|Bata loma va batu bu anton digir.|Batu bu {{PLURAL:$1|tir|$1 tid}} koe bata loma, ke $2 varon.}}',
'category-article-count-limited' => 'Batu {{PLURAL:$1|bu tir|$1 bu tid}} koe noeltafa loma.',
'category-file-count'            => '{{PLURAL:$2|Bata loma va bat iyeltak anton ruldar.|Bat iyeltak {{PLURAL:$1|tir|$1 tid}} koe bata loma, ke $2 varon.}}',
'category-file-count-limited'    => 'Bat iyeltak {{PLURAL:$1|tir|$1 tid}} koe noeltafa loma.',
'listingcontinuesabbrev'         => 'loon',

'mainpagetext' => "'''MediaWiki inkeyen talpeyot.'''",

'about'         => 'Icdeuca',
'article'       => 'Teliz',
'newwindow'     => '(ko ar dilk fenkur)',
'cancel'        => 'Tumeara',
'moredotdotdot' => 'Ostik...',
'mypage'        => 'Jinafu bu',
'mytalk'        => 'Jinafo keyaksexo',
'anontalk'      => 'Prilara kan IP mane',
'navigation'    => 'Bugrablera',
'and'           => '&#32;is',

# Cologne Blue skin
'qbfind'         => 'Aneyara',
'qbbrowse'       => 'Farura',
'qbedit'         => 'Betara',
'qbpageoptions'  => 'Ikatcuksbu',
'qbpageinfo'     => 'Givabu',
'qbmyoptions'    => 'Jinaf ikatcukseem',
'qbspecialpages' => 'Aptaf bueem',
'faq'            => 'NEB',
'faqpage'        => 'Project:FAQ',

'errorpagetitle'    => 'Rokla',
'returnto'          => 'Dimgrablera va $1 bu.',
'tagline'           => 'Teliz mal {{SITENAME}}.',
'help'              => 'Pomara',
'search'            => 'Aneyara',
'searchbutton'      => 'Aneyara',
'go'                => 'Rupera',
'searcharticle'     => 'Rupera',
'history'           => 'Buizvot',
'history_short'     => 'Izvot',
'updatedmarker'     => 'nuskeyen mali jinafa ironokafa worara',
'info_short'        => 'Givara',
'printableversion'  => 'Rorubian siatos',
'permalink'         => 'Elubkafi gluyasiki',
'print'             => 'Rubiara',
'edit'              => 'Betara',
'create'            => 'Redura',
'editthispage'      => 'Bubetara',
'create-this-page'  => 'Redura va batu bu',
'delete'            => 'Sulara',
'deletethispage'    => 'Busulara',
'undelete_short'    => 'Dimplekura {{PLURAL:$1|tanoy betaks|$1 betaks}}',
'protect'           => 'Nendara',
'protect_change'    => 'betara',
'protectthispage'   => 'Bunendara',
'unprotect'         => 'Dimnendara',
'unprotectthispage' => 'Dimnendara va batu bu',
'newpage'           => 'Warzafu bu',
'talkpage'          => 'Prilarabu',
'talkpagelinktext'  => 'Keyaksera',
'specialpage'       => 'Aptafu bu',
'personaltools'     => 'Weltafa xeka se',
'postcomment'       => 'Warzaf gabot',
'articlepage'       => 'Telizwira',
'talk'              => 'Keyaksera',
'views'             => 'Wira',
'toolbox'           => 'Xekak',
'userpage'          => 'Favesikbu',
'projectpage'       => 'Rupera va abdumimaks bu',
'imagepage'         => 'Wira va iyeltakbu',
'mediawikipage'     => 'Rupera va staksa bu',
'templatepage'      => 'Rupera va teza bu',
'viewhelppage'      => 'Rupera va pomara bu',
'categorypage'      => 'Rupera va loma bu',
'viewtalkpage'      => 'Prilarabu',
'otherlanguages'    => 'Ara ava se',
'redirectedfrom'    => '(Graskan mal $1)',
'redirectpagesub'   => 'Bugraskara',
'lastmodifiedat'    => 'Ironakafa betara va bu tir ba $2, $1.',
'viewcount'         => 'Batu bu {{PLURAL:$1|1-on|$1 -on}} al zo ruper.',
'protectedpage'     => 'Nendanu bu',
'jumpto'            => 'Grablé kal',
'jumptonavigation'  => 'exulera',
'jumptosearch'      => 'aneyara',

# All link text and link target definitions of links into project namespace that get used by other message strings, with the exception of user group pages (see grouppage) and the disambiguation template definition (see disambiguations).
'aboutsite'            => 'Icde {{SITENAME}}',
'aboutpage'            => 'Project:Icdeuca',
'copyright'            => 'Deraykan cek kare $1.',
'copyrightpage'        => '{{ns:project}}:Digirarokeem',
'currentevents'        => 'Noelaca yo',
'currentevents-url'    => 'Project:Noelaf bif yo',
'disclaimers'          => 'Walzera se',
'disclaimerpage'       => 'Project:Jadifa walzera se',
'edithelp'             => 'Pomara',
'edithelppage'         => 'Help:Tokinde bubetat',
'helppage'             => 'Help:Pomara',
'mainpage'             => 'Emudexo',
'mainpage-description' => 'Emudexo',
'policy-url'           => 'Project:Policy',
'portal'               => 'Doda',
'portal-url'           => 'Project:Dodatuveli',
'privacy'              => 'Xoverteem',
'privacypage'          => 'Project:Privacy policy',

'badaccess'        => 'Noverarokla',
'badaccess-group0' => 'Ta kucilana skura me zo rictal.',
'badaccess-groups' => 'Kucilana skura gan favesik ke {{PLURAL:$2|lospa|tana lospa}} anton zo rictar : $1.',

'versionrequired'     => '$1 adraf siatos ke MediaWiki',
'versionrequiredtext' => '$1 siatos ke MediaWiki tir adraf ta favera va batu bu. Voyez [[Special:Version]]',

'ok'                      => 'Tuenara',
'retrievedfrom'           => 'Dimnarin mal « $1 »',
'youhavenewmessages'      => 'Rin dil va $1 ($2).',
'newmessageslink'         => 'warzafa staksa',
'newmessagesdifflink'     => 'amid- gu ironokaf siatos',
'youhavenewmessagesmulti' => 'Rin dil va warzafa staksa moe $1',
'editsection'             => 'betara',
'editold'                 => 'betara',
'viewsourceold'           => 'Klitawira',
'editlink'                => 'betara',
'viewsourcelink'          => 'Klitawira',
'editsectionhint'         => 'Betara va $1 gabot',
'toc'                     => 'Luzeem',
'showtoc'                 => 'nedira',
'hidetoc'                 => 'palsera',
'thisisdeleted'           => 'Va $1 djunedil oke djudimplekul ?',
'viewdeleted'             => 'Va $1 djudisukel ?',
'restorelink'             => '{{PLURAL:$1|1|$1}} sulayan betaks',
'feedlinks'               => 'Rust',
'feed-invalid'            => 'Meenaf rustord.',
'site-rss-feed'           => '$1 RSS Rust',
'site-atom-feed'          => '$1 Atom Rust',
'page-rss-feed'           => '"$1" RSS Rust',
'page-atom-feed'          => '"$1" Atom Rust',
'red-link-title'          => '$1 (me tisu bu)',

# Short words for each namespace, by default used in the namespace tab in monobook
'nstab-main'      => 'Teliz',
'nstab-user'      => 'Favesikbu',
'nstab-media'     => 'Kanaca',
'nstab-special'   => 'Aptabu',
'nstab-project'   => 'Abdumimaks bu',
'nstab-image'     => 'Ewava',
'nstab-mediawiki' => 'Staksa',
'nstab-template'  => 'Teza',
'nstab-help'      => 'Pomara',
'nstab-category'  => 'Loma',

# Main script and global functions
'nosuchaction'      => 'Megrupena tegira',
'nosuchactiontext'  => 'Ruidanaca koe URL gan wiki me zo kagruper.
URL lanon tir ordajaf ok gluyajan.
Batcoba va zvak koe talpeyot ke {{SITENAME}} dere robazer.',
'nosuchspecialpage' => 'Mekruldesu aptafu bu',
'nospecialpagetext' => 'Rin va aptafu bu mekagrupenu gan wiki al erul.',

# General errors
'error'                => 'Rokla',
'databaseerror'        => 'Origakrokla',
'dberrortext'          => 'Vurarokla pu origak. Ironokafa kucilara suleyena gan origak tiyir :
<blockquote><tt>$1</tt></blockquote>
mal fliok « <tt>$2</tt> ».
MySQL va « <tt>$3: $4</tt> » rokla al katacer.',
'dberrortextcl'        => 'Bibera va origak tir roklakirafa. Ironokafa stakseyena bibera tiyir:
« $1 »
skuyuna gan « $2 » fliok
MySQL va « $3 : $4 » rokla al dimstakser.',
'laggedslavemode'      => 'Obral : bu va ironakaf tuenakseem rotir meruldar',
'readonly'             => 'Beta elekana nuskera va origak',
'enterlockreason'      => 'Va elekaradanda is uldinera va elekaracek bazel',
'readonlytext'         => "Les ajouts et mises à jour sur la base de donnée {{SITENAME}} sont actuellement bloqués, probablement pour permettre la maintenance de la base, après quoi, tout rentrera dans l'ordre. Voici la raison pour laquelle l'administrateur a bloqué la base :
<p>$1",
'missingarticle-rev'   => '(betara#: $1)',
'missingarticle-diff'  => '(Amid-: $1, $2)',
'readonly_lag'         => 'La base de donnée a été automatiquement bloquée pendant que les serveurs secondaires rattrapent leur retard avec le serveur principal',
'internalerror'        => 'Koefa rokla',
'internalerror_info'   => 'Koefa rokla : $1',
'filecopyerror'        => 'Ksudara va « $1 » van « $2 » tir merotisa.',
'filerenameerror'      => 'Tolyoltara va « $1 » ton « $2 » tir merotisa.',
'filedeleteerror'      => 'Sulara va « $1 » tir merotisa.',
'directorycreateerror' => 'Redura va "$1" bonja me tir.',
'filenotfound'         =>  $1 » iyeltak me zo rotrasir.',
'fileexistserror'      => 'Sutera va "$1" iyeltak me tir : iyeltak ixam krulder',
'unexpected'           => 'Volkena voda : « $1 » = « $2 ».',
'formerror'            => 'Rokla : Levplekura va valdig tir merotisa',
'badarticleerror'      => 'Bata tegira mo batu bu tir merotisa.',
'cannotdelete'         => 'Sulara va bazenu bu oku ewava tir merotisa.',
'badtitle'             => 'Rotaf vergumvelt',
'badtitletext'         => 'Vergumvelt ke erunu bu tir volenafu ok vlardafu ike walavafi gluyasiki me tir enafi',
'perfcached'           => 'Vlevef orig yo tid koe palsexo nume me zo ronusked.',
'perfcachedts'         => 'Vlevef orig yo tid koe palsexo, ise ironokafa nuskera tir $1.',
'querypage-no-updates' => 'Nuskera va batu bu me noelon flir. Acum origeem me zo divneditir.',
'wrong_wfQuery_params' => 'Mewadaf dor koe wfQuery() dirgara<br />
Fliok : $1<br />
Erura : $2',
'viewsource'           => 'Wira va klitakrent',
'viewsourcefor'        => 'tori $1',
'actionthrottled'      => 'Tulokaliana tegira',
'actionthrottledtext'  => 'Wetce sabega kev staksavamolavara, rin ta bata skura gemeltamon slikviele zo kimar voxe va bata kimara al kaikayal. Vay artimon lwil !',
'protectedpagetext'    => 'Batu bu betaradjison zo nendar.',
'viewsourcetext'       => 'Va buklita rowil nume roksudal :',
'protectedinterface'   => 'Batu bu va walasikikrent ke talpeyot dafur nume ta djira va favejera zo ixatcar.',
'editinginterface'     => "'''Obral !''' Rin va bu favenu koe talpeyotwalasiki betal. Betara va batu bu va laviuca ke favesikafi walasiki dolge ar favesik vanolatar. Kalavason, va [http://translatewiki.net/wiki/Main_Page?setlang=avk translatewiki.net], va MediaWiki abdumimaks va tulizukara, vay favel.",
'sqlhidden'            => '(SQL kucilara palsena)',
'cascadeprotected'     => 'Batu bu icde betara zo nendar, kire va vlevefu {{PLURAL:$1|bu|bu}} pasur, danu kan tegisa "stoyakorafa" rotisaca zo nendad : $2',
'namespaceprotected'   => "Va bu koe '''$1''' yoltxo me robetal !",
'customcssjsprotected' => 'Va batu bu me robetal kire in va ar favesikaf titickaks ruldar.',
'ns-specialprotected'  => 'Aptafu bu tir merobetanu.',
'titleprotected'       => "Bat vergumvelt gan [[User:$1|$1]] zo reduranendar.
Batdume : ''$2''.",

# Virus scanner
'virus-scanfailed'     => 'rodjeyena drunara ($1 beksa)',
'virus-unknownscanner' => 'megrupena kevkioxeka :',

# Login and logout pages
'logouttext'                 => 'Rin daletoe til solgluyanaf.
Rin va {{SITENAME}} yoltiskon ware rofavel oke, bifoton kan ar yolt, va int toldogluyal.',
'welcomecreation'            => '<h2>Til drumbaf, $1!</h2><p>Rinaf favesikpata su zo redur.
Me vulkul da rupeson va "Lodamaceem" bu va intaf {{SITENAME}} rotuilkal.',
'yourname'                   => 'Rinaf favesikyolt',
'yourpassword'               => 'Rinaf remravlem',
'yourpasswordagain'          => 'Va rinaf remravlem tolon bazel',
'remembermypassword'         => 'Setikera va jinaf remravlem (cookie)',
'yourdomainname'             => 'Rinaf ind',
'externaldberror'            => 'Ont divefa origakrokla va pilkomodara ont va rinafa divefa pata me ronuskel.',
'login'                      => 'Pilkomodá',
'nav-login-createaccount'    => 'Pataredú oke va int dogluyá',
'loginprompt'                => 'Ta dogluyara va {{SITENAME}} va cookie se gotutegiral.',
'userlogin'                  => 'Pataredú oke va int dogluyá',
'logout'                     => 'Dimgluyá',
'userlogout'                 => 'Dimgluyara',
'notloggedin'                => 'Dogluyariskaf',
'nologin'                    => "Kas va pata me digil ? '''$1'''.",
'nologinlink'                => 'Pataredura',
'createaccount'              => 'Warzon pataredú',
'gotaccount'                 => "Kas va pata ixam digil ? '''$1'''.",
'gotaccountlink'             => 'Dogluyara',
'createaccountmail'          => 'kan e-mail',
'badretype'                  => 'Toloy suteyen remravlem tid menuxaf.',
'userexists'                 => 'Favesikyolt rinon suteyen ixam zo faver. 
Va amidaf yolt gokiblal.',
'loginerror'                 => 'Pilkomodajara',
'nocookiesnew'               => "Le compte utilisateur a été créé, mais vous n'êtes pas connecté. {{SITENAME}} utilise des cookies pour la connexion mais vous avez les cookies désactives. Merci de les activer et de vous reconnecter.",
'nocookieslogin'             => '{{SITENAME}} utilise des cookies pour la connexion mais vous avez les cookies désactives. Merci de les activer et de vous reconnecter.',
'noname'                     => 'Va favesikyolt gobazel.',
'loginsuccesstitle'          => 'Pilkomodanhara.',
'loginsuccess'               => 'Rin wetce « $1 » moe {{SITENAME}} til dogluyarakiraf.',
'nosuchuser'                 =>  $1 » favesik me krulder.
Sutera va favesikyolt gotir eltaykoranhafa.
Ageltal va rinaf suteks oke [[Special:UserLogin/signup|pataredura]].',
'nosuchusershort'            => 'Me tir favesik digis va « <nowiki>$1</nowiki> » yolt. Va sutekaks ageltal.',
'nouserspecified'            => 'Va favesikyolt gobazel !',
'wrongpassword'              => 'Remravlem tir volenaf. Tollwil !',
'wrongpasswordempty'         => 'Remravlem bazeyen tir vlardaf.Vay tolon bazel !',
'passwordtooshort'           => 'Rinaf remravlem tir meenaf ok lotrelaf. Va {{PLURAL:$1|1 staa|$1 staa}} leon goruldar ise gotir amidaf gu favesikyolt.',
'mailmypassword'             => 'Warzaf staksaremravlem',
'passwordremindertitle'      => 'Rinaf warzaf remravlem moe {{SITENAME}}',
'passwordremindertext'       => 'Kontan (lanon rin, male $1 IP mane) eruyur da pu rin va warzaf remravlem tori {{SITENAME}} staksev ($4).
Remravlem tori "$2" favesik noelkeon tir "$3".
Va int rodogluyal aze va remravlem robetal.

Ede artan va bata erura al skur oke va rinaf remravlem setikeyel nume mea djubetal, va bata staksa rotafanal nume va rinaf guazaf remravlem wan favel.',
'noemail'                    => 'Meke internetmane icde « $1 » favesik al zo koverter.',
'passwordsent'               => "Un nouveau mot de passe a été envoyé à l'adresse électronique de l'utilisateur « $1 ».
Veuillez vous identifier dès que vous l'aurez reçu.",
'blocked-mailpassword'       => 'Rinafe IP mane icde betara zo elekar nume ta rofaveradjira va fli ta dimplekura va remravlem me rofavel.',
'eauthentsent'               => 'Bazene e-mail mane ta gruyera su zo staksar.
Abdi ara staksara va pata, va bazereem ke e-mail gonaskil nume gogruyel da bata pata en tir rinafa.',
'mailerror'                  => 'Rokla stakseson va e-mail staksa : $1',
'acct_creation_throttle_hit' => 'Worasik va bati wiki dem rinafe IP mane va {{PLURAL:$1|1 pata|$1 pata}} (rictana cugota) bak ironokaf viel ixam al redud.
Acum, worasik dem bate IP mane va lo pata dure mea roredud.',
'emailauthenticated'         => 'Rinafe e-mail mane ba $2 $3 tir tugariayan.',
'emailnotauthenticated'      => "Rinafe 'email' mane men tir pilkomodayane.
Meka 'email' staksa icde vlevefa staava zo staksatar.",
'noemailprefs'               => 'Ta bata kobarastaava se va email mane bazel !',
'emailconfirmlink'           => 'Va rinaf e-mail mane gruyel',
'accountcreated'             => 'Reduyuna pata',
'accountcreatedtext'         => 'Favesikpata ke $1 tir reduyuna.',
'createaccount-title'        => 'Pataredura koe {{SITENAME}}',
'loginlanguagelabel'         => 'Ava : $1',

# Password reset dialog
'resetpass'                 => 'Va patabeksa betal !',
'resetpass_announce'        => "Rin kan ugalorafa 'email' beksa va int pilkomodayal.
Ta da wan zo pilkomodal, va warzaf remravlem batlize gobazel :",
'resetpass_header'          => 'Va remravlem gobetal !',
'oldpassword'               => 'Savsaf remravlem',
'newpassword'               => 'Warzaf remravlem',
'retypenew'                 => 'Va warzaf remravlem gruyel',
'resetpass_submit'          => 'Va beksa bazel nume zo dogluyatal !',
'resetpass_success'         => 'Rinaf remravlem kiewatcon su zo betar ! Nume rinafa dogluyara tir...',
'resetpass_forbidden'       => 'Kona beksa tir merobetana',
'resetpass-submit-loggedin' => 'Betara va remravlem',
'resetpass-temp-password'   => 'Ugaloraf remravlem :',

# Edit page toolbar
'bold_sample'     => 'Bold krent',
'bold_tip'        => 'Bold krent',
'italic_sample'   => 'Italic krent',
'italic_tip'      => 'Italic krent',
'link_sample'     => 'Vergumveltgluyasiki',
'link_tip'        => 'Kofi gluyasiki',
'extlink_sample'  => 'http://www.example.com vergumveltgluyasiki',
'extlink_tip'     => 'Divafi gluyasiki (va http:// me vulkul)',
'headline_sample' => 'Volveyvergumveltaca',
'headline_tip'    => 'Tolvolveyvergumvelt',
'math_sample'     => 'Va rinaf tazukoy batliz cenkal',
'math_tip'        => 'Solokseropaf tazukoy (LaTeX)',
'nowiki_sample'   => 'Breviziskaf krent batliz cenkal',
'nowiki_tip'      => 'Va wiki breviz afaná',
'image_sample'    => 'Tula.jpg',
'image_tip'       => 'Plekuyuna ewava',
'media_sample'    => 'Tula.ogg',
'media_tip'       => 'Gluyasiki va iyeltak',
'sig_tip'         => 'Rinafa evlakirafa sugdara',
'hr_tip'          => 'Zidafi gluyasiki (me faversel)',

# Edit pages
'summary'                          => 'Vildeks:',
'subject'                          => 'Detce/vergumvelt:',
'minoredit'                        => 'Betamaks.',
'watchthis'                        => 'Va bat teliz suzdá',
'savearticle'                      => 'Giwara',
'preview'                          => 'Abdinedira',
'showpreview'                      => 'Abdinedira',
'showlivepreview'                  => 'Nedira va abdinedira',
'showdiff'                         => 'Nedira va betakseem',
'anoneditwarning'                  => "'''Obral !''' Rin til medogluyayas. Rinafe IP mane ko bubetarizvot zo stragatar.",
'missingcommenttext'               => 'Va sebuks vlevon bazel, vay !',
'summary-preview'                  => 'Abdinedira va vildeks:',
'subject-preview'                  => 'Abdinedira va detce ik kroj:',
'blockedtitle'                     => 'Elekan favesik',
'blockedtext'                      => '\'\'\'Rinafa favesikpata oku IP mane tid elekayane.\'\'\'

Elekara skuyuna gan $1. 
Lazava tir \'\'$2\'\'.

* Elekaratoza : $8
* Eleckaratena : $6
* Xialana elekara : $7

Ta keyaksera va $1 ok konar [[{{MediaWiki:Grouppage-sysop}}|ristusik]] rotuzeral.
Va \'"e-mail" staksara pu bat favesik\' me rofavel vaxede "e-mail" mane tir koe rinaf [[Special:Preferences|lodamaceem]] ise vaon faveson me zo elekayal.
Rinaf tise IP mane tir $3 ise ID elekara tir #$5. Va bate ik bane mane ko kota erura vay bazel !',
'blockednoreason'                  => 'Meka bazena lazava',
'blockedoriginalsource'            => "Klita ke '''$1''' vleveon zo nedir :",
'blockededitsource'                => "Krent ke '''rinaf betakseem''' va '''$1''' vleveon zo betar :",
'whitelistedittitle'               => 'Kucilan login ta sutelara',
'whitelistedittext'                => 'Ta bubetara rin gonaskil ta $1',
'confirmedittext'                  => 'Abdi bubetara va rinafe e-mail mane gogruyel. Kan rinaf [[Special:Preferences|favesiklodamaceem]] va rinafe e-mail mane vay plekul ise tuenal !',
'nosuchsectiontitle'               => 'Me man gabot',
'nosuchsectiontext'                => 'Rin yawal da va metis gabot betal.',
'loginreqtitle'                    => 'Kucilan favesikyolt',
'loginreqlink'                     => 'dogluyara',
'loginreqpagetext'                 => '$1 tir adrafa ta da va aru bu rodisukel.',
'accmailtitle'                     => 'Stakseyen remravlem.',
'accmailtext'                      => 'Remravlem ke « $1 » al zo stakser pu $2.',
'newarticle'                       => '(Warzaf)',
'newarticletext'                   => 'Va rinaf teliz batliz geltsutel !',
'anontalkpagetext'                 => "---- ''Vous êtes sur la page de discussion d'un utilisateur anonyme qui n'a pas encore créé un compte ou qui ne l'utilise pas. Pour cette raison, nous devons utiliser l'adresse IP numérique pour l'identifier. Une adresse de ce type peut être partagée entre plusieurs utilisateurs. Si vous êtes un utilisateur anonyme et si vous constatez que des commentaires qui ne vous concernent pas vous ont été adressés, vous pouvez [[Special:UserLogin|créer un compte ou vous connecter]] afin d'éviter toute future confusion.''",
'noarticletext'                    => 'Moe batu bu mek krent dure tir.
Vanmiae yonaru bu [[Special:Search/{{PAGENAME}}|va man buvergumvelt rotaneyal]],
<span class="plainlinks">[{{fullurl:{{#Special:Log}}|page={{FULLPAGENAMEE}}}} va gluyan log robetal],
oke [{{fullurl:{{FULLPAGENAME}}|action=edit}} va batu bu robetal]</span>.',
'userpage-userdoesnotexist'        => '"$1" favesikpata me tir vuesteyena. Vay stujel ede va batu bu roredul ike robetal.',
'clearyourcache'                   => "'''Note :''' Après avoir sauvegardé, vous devez forcer le rechargement de la page pour voir les changements : '''Mozilla / Konqueror / Firefox''' : ''ctrl-shift-r'', '''IE''' : ''ctrl-f5'', '''Safari''' : ''cmd-shift-r''; '''Konqueror''' : ''f5''.",
'usercssyoucanpreview'             => "'''Astuce :''' utilisez le bouton '''Prévisualisation''' pour tester votre nouvelle feuille css/js avant de l'enregistrer.",
'userjsyoucanpreview'              => "'''Astuce :''' utilisez le bouton '''Prévisualisation''' pour tester votre nouvelle feuille css/js avant de l'enregistrer.",
'usercsspreview'                   => "'''Rappelez-vous que vous êtes en train de prévisualiser votre propre feuille css et qu'elle n'a pas encore été enregistrée !'''",
'userjspreview'                    => "'''Rappelez-vous que vous êtes en train de visualiser ou de tester votre code javascript et qu'il n'a pas encore été enregistré !'''",
'updated'                          => '(Nuskeyen)',
'note'                             => "'''Straga :'''",
'previewnote'                      => "'''Obral, bat krent anton tir abdinediks ise men tir giwayan !'''",
'previewconflict'                  => 'Abdinedira nedir va krent ke batu bu inde in giwayanon titir.',
'editing'                          => 'betara va $1',
'editingsection'                   => 'betara va $1 (gabot)',
'editingcomment'                   => 'Betara va $1 (warzaf gabot)',
'editconflict'                     => 'Betarakoboda : $1',
'explainconflict'                  => "<b>Cette page a été sauvegardée après que vous avez commencé à la modifier.
La zone d'édition supérieure contient le texte tel qu'il est enregistré actuellement dans la base de données. Vos modifications apparaissent dans la zone d'édition inférieure. Vous allez devoir apporter vos modifications au texte existant. Seul le texte de la zone supérieure sera sauvegardé.<br />",
'yourtext'                         => 'Rinaf krent',
'storedversion'                    => 'Koverteyen siatos',
'editingold'                       => "'''Obral : rin va savsaf siatos ke batu bu betal. Ede giwal, kot betaks skuyun mali bat siatos di zo deokar.'''",
'yourdiff'                         => 'Amidaceem',
'copyrightwarning'                 => "Wetce webeks sanegan kan kredeem ke $2 nuyafa valdigarasorta, kot webeks va {{SITENAME}} zo krupter (ta lo pimtara va $1 wil). Ede me djumel da rinaf suteks yo zo robetad ise zo rotanamzilid, vaon me staksel !<br />
Dere, kan rinaf suteks ik suteks male sangiskafa nuyafa klita, anton webel !
'''VA COPYRIGHT SUTEKS ARIEKON MERICTANON VOL WEBEL ! (do not submit copyrighted work without permission!)'''",
'copyrightwarning2'                => "Vay stragal da kot webeks va {{SITENAME}} gan ar webesik zo robetar ike zo roataler ike zo rosular. Ede me djumel da rinaf suteks yo zo robetad, vaon batliz me staksel !<br />
Rin dere abdiplekul da va webeks miv suteyel ike mal sangiskafa ok gundafa nuyafa klita ksudal (va $1 loon wil).
'''VA COPYRIGHT SUTEKS ARIEKON MERICTANON VOL WEBEL !'''",
'longpagewarning'                  => "'''WALZERA : batu bu tir kaikasu va $1 ko; konaki exulesiki va bu pokefu ok kaikefu gu 32 ko bak sutelara pofejed. Ton lopinaf gabot yo va bu rotir gosolparsal.'''",
'longpageerror'                    => "'''ROKLA : Atoen krent tir $1 kilobytes. Batcoba tir lodabrotcafa dam $2 kilobytes cuge. In tir merogiwan.'''",
'readonlywarning'                  => "'''OBRAL : batu bu kiewaginon zo abdinendar, acum va betara dure me rogiwatal. Ko iyeltak ta radimifa giwara va krent roksudal.'''",
'protectedpagewarning'             => "'''WALZERA : batu bu zo nendar. Antaf ristus favesik vaon robetar.'''",
'semiprotectedpagewarning'         => "'''Straga :''' Batu bu tir ixatcayanu nume antaf vertokayan favesik robetar.",
'cascadeprotectedwarning'          => "'''Obral !''' Batu bu tir elekayanu enide anton ristus favesik robetar, kire in stoyakoron rupter. {{PLURAL:$1|stoyafu bu|stoyafu bu se}}",
'titleprotectedwarning'            => "'''WALZERA : Batu bu zo ixatcar nume [[Special:ListGroupRights|aptarokeem]] tir adraf gu redura.'''",
'templatesused'                    => 'Teza yo favena koe batu bu',
'templatesusedpreview'             => 'Faven tezeem koe bata abdinedira :',
'templatesusedsection'             => 'Faven tezeem koe bat gabot :',
'template-protected'               => '(nendana)',
'template-semiprotected'           => '(nendamana)',
'hiddencategories'                 => 'Batu bu tir bewafu gu {{PLURAL:$1|1 palsena loma|$1 palsena loma}}:',
'nocreatetitle'                    => 'Irutana buredura',
'nocreatetext'                     => '{{SITENAME}} va roredura va warzafu bu irutar.
Rodimal aze va tisu bu robetal oke [[Special:UserLogin|va int rodogluyal oke ropataredul]].',
'nocreate-loggedin'                => 'Rin va warzafu bu me ronoredul.',
'permissionserrors'                => 'Rictajaks',
'permissionserrorstext'            => 'Ta mana askira me zo rictal, golde {{PLURAL:$1|lazava|lazava se}}:',
'permissionserrorstext-withaction' => 'Rin icde $2 me zo rictal, {{PLURAL:$1|yoke|yoke}} :',
'recreate-moveddeleted-warn'       => "'''Obral: Rin va sulayanu bu djutolredul.'''

Gokrafial ede tolredura va batu bu tir vodanhaf.
Sulara \"log\" va batu bu krafiason batlize zo nedir :",
'moveddeleted-notice'              => 'Sulayanu bu.
"Log" sulara va batu bu vleveon vuesteson zo nedir.',
'edit-conflict'                    => 'Rupera va koboda.',
'edit-already-exists'              => 'Buredura tir merotisa.
Bu ixam krulder.',

# Parser/template warnings
'expensive-parserfunction-category'      => 'Bu dem slika rozara va exulerafli',
'post-expand-template-argument-category' => 'Bu ruldasu va vulkuna tezadusiva',

# "Undo" feature
'undo-success' => 'Betaks tir rodimaskin. Va vlevefa dolunhera vay stujel nume ageltal da batcoba tir rinafa djumaskina aze ta tenukera va dimaskira va betara va vlevef betakseem giwal.',
'undo-failure' => 'Betaks me zo rodimaskir golde kobodas walif betaks yo.',
'undo-norev'   => 'Dimbetara tir merotisa golde metira ok sulara.',
'undo-summary' => 'Dimaskira va $1 betaks ke [[Special:Contributions/$2|$2]] ([[User talk:$2|Prilara]])',

# Account creation failure
'cantcreateaccounttitle' => 'Pataredura me tir',
'cantcreateaccount-text' => "Pataredura male bate IP ('''$1''') mane gan [[User:$3|$3]] zo elekayar.

Bazeyena lazava ke $3 tir ''$2''.",

# History pages
'viewpagelogs'           => 'Wira va "logs" ke batu bu',
'nohistory'              => 'Nedoy izvot va batu bu.',
'currentrev'             => 'Noelaf siatos',
'currentrev-asof'        => 'Noeltaf betaks va $1',
'revisionasof'           => 'Siatos ba $1',
'revision-info'          => 'Dimplekura va $1 gan $2',
'previousrevision'       => '← Abdif siatos',
'nextrevision'           => 'Radimif siatos →',
'currentrevisionlink'    => 'Wira va noelaf siatos',
'cur'                    => 'noel-',
'next'                   => 'radi-',
'last'                   => 'iron-',
'page_first'             => 'tane-',
'page_last'              => 'iron-',
'histlegend'             => 'Pebusiki : (noel-) = amiduca gu noelaf siatos ,
(iron-) = amiduca gu abdif siatos, <b>m</b> = betamaks',
'history-fieldset-title' => 'Izvotexulera',
'histfirst'              => 'Tel losavsaf',
'histlast'               => 'Ironokaf',
'historysize'            => '({{PLURAL:$1|1 byte|$1 bytes}})',
'historyempty'           => '(vlardaf)',

# Revision feed
'history-feed-title'          => 'Betarizvot',
'history-feed-description'    => 'Betarizvot va batu wikibu',
'history-feed-item-nocomment' => '$1 koe $2',
'history-feed-empty'          => 'Erunu bu me tir.
Ont zo sulayar ont zo yoltayar.
Ta ropasusu warzafu bu yo va [[Special:Search|aneyara ko wiki]] yawal.',

# Revision deletion
'rev-deleted-comment'       => '(tiolteyen sebuks)',
'rev-deleted-user'          => '(tiolteyen favesikyolt)',
'rev-deleted-event'         => '(tiolteyen "log" skuks)',
'rev-delundel'              => 'nedira / palsera',
'revisiondelete'            => 'Sulasa ik volsulasa betara',
'revdelete-nooldid-title'   => 'Meenafa xalafa betara',
'revdelete-nooldid-text'    => 'Ta skura va bati fli, ont rin va jalaf betaks me bazeyel, ont yawayal da va noeltaf betaks palsel.',
'revdelete-selected'        => "'''{{PLURAL:$2|Reban betaks|Yon reban betaks}} va [[:$1]]:'''",
'logdelete-selected'        => "'''{{PLURAL:\$1|Reban \"log\" bif|Yon reban \"log\" bif}} :'''",
'revdelete-legend'          => 'Skus irutareem',
'revdelete-hide-text'       => 'Palsera va betaracek',
'revdelete-hide-image'      => 'Palsera va iyeltakcek',
'revdelete-hide-name'       => 'Palsera va tegira is xala',
'revdelete-hide-comment'    => 'Palsera va betarasebusiki',
'revdelete-hide-user'       => 'Palsera va sutes favesikyolt iku IP mane',
'revdelete-hide-restricted' => 'Rewara va bat irutareem pu kot ristusik az elekara va bati walasiki',
'revdelete-suppress'        => 'Origsulara mal ristusik lidam artan',
'revdelete-unsuppress'      => 'Dimirutara va dimplekun betaks yo',
'revdelete-log'             => 'Lazava :',
'revdelete-submit'          => 'Ko reban siatos rewar',
'revdelete-logentry'        => 'Betayana betarafa rowinuca ke [[$1]]',
'logdelete-logentry'        => 'Betayana bifafa rowinuca ke [[$1]]',
'revdelete-success'         => "'''Kiewaskinon plekuyuna betarafa rowinuca.'''",
'logdelete-success'         => "'''Kiewaskinon plekuyuna bifafa rowinuca.'''",
'revdel-restore'            => 'Betara va rowinuca',
'pagehist'                  => 'Buizvot',
'deletedhist'               => 'Sularizvot',
'revdelete-content'         => 'cek',
'revdelete-summary'         => 'betara va vildeks',
'revdelete-uname'           => 'favesikyolt',
'revdelete-restricted'      => 'irutara rewana pu ristusik',
'revdelete-unrestricted'    => 'irutara tiolteyena pu ristusik',
'revdelete-hid'             => '$1 pals-',
'revdelete-unhid'           => '$1 volpals-',
'revdelete-log-message'     => '$1 tori $2 {{PLURAL:$2|betara|betara}}',
'logdelete-log-message'     => '$1 tori $2 {{PLURAL:$2|bif|bif}}',
'revdelete-edit-reasonlist' => 'Betara va sularalazava',

# Suppression log
'suppressionlog' => 'Sulara "log"',

# History merging
'mergehistory'                     => 'Joara va buizvot',
'mergehistory-box'                 => 'Joara va betakseem va toloyu bu :',
'mergehistory-from'                => 'Klitabu :',
'mergehistory-into'                => 'Jalabu :',
'mergehistory-list'                => 'Rojoan betarizvot',
'mergehistory-go'                  => 'Nedira va rojoan betakseem',
'mergehistory-submit'              => 'Joara va betakseem',
'mergehistory-empty'               => 'Mek rojoan betaks.',
'mergehistory-success'             => '$3 betaks va [[:$1]] joanhayan ko [[:$2]].',
'mergehistory-fail'                => 'Skura va jera va izvot tir merotisa, va bu is evladoreem vay tolstujel !',
'mergehistory-no-source'           => '$1 klitabu me tir.',
'mergehistory-no-destination'      => '$1 jalabu me tir.',
'mergehistory-invalid-source'      => 'Klitabu gotir vergumveltanh.',
'mergehistory-invalid-destination' => 'Jalabu gotir enaf vergumvelt.',
'mergehistory-autocomment'         => '[[:$1]] jeayan do [[:$2]]',
'mergehistory-comment'             => '[[:$1]] jeayan do [[:$2]] : $3',
'mergehistory-same-destination'    => 'Buklita is bugraskaxo vol rotid milafo',

# Merge log
'mergelog'           => 'Va "log" joara',
'pagemerge-logentry' => 'joara va [[$1]] ko [[$2]] (betaks yo kali $3)',
'revertmerge'        => 'Voljoara',
'mergelogpagetext'   => 'Vleveon tir vexala dem tel lonoeltafa joara se va buizvot ko ar.',

# Diffs
'history-title'           => 'Va "$1" betarizvot',
'difference'              => '(Siatosamidaceem)',
'lineno'                  => 'Conha $1:',
'compareselectedversions' => 'Dodisukera va reban siatos yo',
'editundo'                => 'dimaskira',
'diff-multi'              => '({{PLURAL:$1|1 walif betaks me zo nedir|$1 walif betaks me zo nedid}}.)',

# Search results
'searchresults'                  => 'Aneyaradanekseem',
'searchresults-title'            => 'Aneyaratrasiks va "$1"',
'searchresulttext'               => 'Ta lo giva icde aneyara ko {{SITENAME}}, va [[{{MediaWiki:Helppage}}|{{int:help}}]] teliz disukel.',
'searchsubtitle'                 => 'Rin va \'\'\'[[:$1]]\'\'\' aneyayal ([[Special:Prefixindex/$1|kotu bu dem "$1" toza]]{{int:pipe-separator}}[[Special:WhatLinksHere/$1|kotu bu gluyasu va "$1"]])',
'searchsubtitleinvalid'          => "Rin va '''$1''' aneyayal",
'toomanymatches'                 => 'Slik trasiks, vay va amidafa aneyara yawal',
'titlematches'                   => 'Vadjesaceem vanmia vergumvelteem',
'notitlematches'                 => 'Mek telizvergumvelt ruldas va erune',
'textmatches'                    => 'Vadjesaceem ko krenteem',
'notextmatches'                  => 'Mek krentvergumvelt ruldas va erune',
'prevn'                          => '{{PLURAL:$1|$1}} abduef',
'nextn'                          => '{{PLURAL:$1|$1}} radimef',
'viewprevnext'                   => 'Va ($1 {{int:pipe-separator}} $2) ik ($3) disukel.',
'searchhelp-url'                 => 'Help:Pomara',
'searchprofile-images'           => 'Iyeltak',
'searchprofile-everything'       => 'Kotcoba',
'searchprofile-articles-tooltip' => 'Aneyara ko $1',
'searchprofile-project-tooltip'  => 'Aneyara ko $1',
'searchprofile-images-tooltip'   => 'Aneyara va iyeltak',
'search-result-size'             => '$1 ({{PLURAL:$2|1 trogarn|$2 trogarn}})',
'search-result-score'            => 'Vadjereka : $1%',
'search-redirect'                => '(graskara va $1)',
'search-section'                 => '($1 gabot)',
'search-suggest'                 => 'Va $1 sugdalayal ?',
'search-interwiki-caption'       => 'Beraf abdumimakseem',
'search-interwiki-default'       => '$1 trasiks :',
'search-interwiki-more'          => '(loon)',
'search-mwsuggest-enabled'       => 'do tiavera',
'search-mwsuggest-disabled'      => 'meka tiavera',
'search-relatedarticle'          => 'Skedaf',
'mwsuggest-disable'              => 'Gritegirara va AJAX tiavera',
'searchrelated'                  => 'skedaf',
'searchall'                      => 'kot',
'showingresults'                 => "Vlevefa nedira va {{PLURAL:$1|'''1''' trasiks|'''$1''' trasiks}} dem #'''$2''' toza.",
'showingresultsnum'              => "Nedira va '''$3''' trasiks male #'''$2'''.",
'nonefound'                      => "'''Straga''': Anton yoltxo omavon zo aneyar.
Kan ''all:'' laganeyal ta varafa exulera (gon keyaksexo is teza ikz-), oke wetce abdueosta va galpeno yoltxo favel.",
'powersearch'                    => 'Aneyara',
'powersearch-legend'             => 'Aneyapara',
'powersearch-ns'                 => 'Aneyara koe yoltxo:',
'powersearch-redir'              => 'Vexalara va graskara',
'powersearch-field'              => 'Aneyara va',
'search-external'                => 'Divafa aneyara',
'searchdisabled'                 => "<p>La fonction de recherche sur l'intégralité du texte a été temporairement désactivée à cause de la grande charge que cela impose au serveur. Nous espérons la rétablir prochainement lorsque nous disposerons d'un serveur plus puissant. En attendant, vous pouvez faire la recherche avec Google:</p>",

# Quickbar
'qbsettings'               => 'Tuweltara va xekobla',
'qbsettings-none'          => 'Mek',
'qbsettings-fixedleft'     => 'Roneon titickanaf',
'qbsettings-fixedright'    => 'Talteon titickanaf',
'qbsettings-floatingleft'  => 'Roneon ezas',
'qbsettings-floatingright' => 'Talteon ezas',

# Preferences page
'preferences'               => 'Lodamaceem',
'mypreferences'             => 'Jinaf lodamaceem',
'prefs-edits'               => 'Ota va betaks :',
'prefsnologin'              => 'Dogluyariskaf',
'prefsnologintext'          => 'Ede va favesiklodamaceem djubetal, gotil <span class="plainlinks">[{{fullurl:{{#Special:UserLogin}}|returnto=$1}} dogluyarakiraf]</span>.',
'changepassword'            => 'Betara va remravlem',
'prefs-skin'                => 'Laviuca',
'skin-preview'              => 'Abdiwira',
'prefs-math'                => 'Rendu des maths',
'datedefault'               => 'Megelukon',
'prefs-datetime'            => 'Evla is bartiv',
'prefs-personal'            => 'Ilkagiveem',
'prefs-rc'                  => 'Noeltaf betakseem',
'prefs-watchlist'           => 'Suzdasiki',
'prefs-watchlist-days'      => 'Cugafa vielota gonedina koe suzdasiki :',
'prefs-watchlist-days-max'  => '(cugon 7 viel)',
'prefs-watchlist-edits'     => 'Betaracugota gonedina koe mantafi suzdasiki :',
'prefs-watchlist-edits-max' => '(cugafa ota : 1000)',
'prefs-misc'                => 'Gedrafa lodamaca yo',
'prefs-resetpass'           => 'Betara va remravlem',
'saveprefs'                 => 'Va lodamaceem tuená',
'resetprefs'                => 'Va lodamceem dimplekú',
'prefs-editing'             => 'Sutelaxo',
'prefs-edit-boxsize'        => 'Lum ke betaradilk.',
'rows'                      => 'Emacekeem',
'columns'                   => 'Brizeem',
'searchresultshead'         => 'Nedira va aneyaratrasikseem',
'resultsperpage'            => 'Fuxebuon trasiksota',
'contextlines'              => 'Fuxetrasikson conhota',
'contextchars'              => 'Fuxeconhon orkastaota',
'recentchangesdays'         => 'Gonedin viel se koe noeltaf betakseem :',
'recentchangesdays-max'     => '(cugon $1 {{PLURAL:$1|viel|viel}})',
'recentchangescount'        => 'Omavon gonedina ota va noeltaf betakseem ik buizvot ik "log" :',
'savedprefs'                => 'Lodamaceem su zo giwar.',
'timezonelegend'            => 'Bartivxo',
'localtime'                 => 'Lizukaf bartiv :',
'timezoneoffset'            => 'Bartivferenuca :',
'servertime'                => 'Bartiv ke zanisiko :',
'guesstimezone'             => 'Favera va voda ke exulesiki',
'allowemail'                => 'Tutegirara va e-mail staksara mal ar favesik',
'prefs-searchoptions'       => 'Aneyarikatcura',
'prefs-namespaces'          => 'Yoltxo',
'defaultns'                 => 'Omavon, aneyara ko bato yoltxo se :',
'default'                   => 'omava',
'prefs-files'               => 'Iyeltak se',
'youremail'                 => 'Jinafe internetmane',
'username'                  => 'Favesikyolt:',
'uid'                       => 'Favesikaf ID :',
'prefs-memberingroups'      => 'Bewik ke {{PLURAL:$1|lospa|lospa}}:',
'yourrealname'              => 'Rinaf ageltaf yolt*',
'yourlanguage'              => 'Walasikiava',
'yournick'                  => 'Sugdara tori prilara se (do <tt><nowiki>~~~</nowiki></tt>)&nbsp;',
'badsig'                    => 'Meenafa rilafa sugdara; va HTML tcala yo stujel !',
'badsiglength'              => 'Sugdara tir abrotcarsafa.
Gotir le $1 {{PLURAL:$1|staa|staa}}.',
'email'                     => '"E-mail"',
'prefs-help-realname'       => '* <strong>Votre nom</strong> (mevrebaf): ede vaon co-bazel, mu gara va rinaf webereem zo faveter.',
'prefs-help-email'          => "* <strong>Adresse électronique</strong> (facultatif): permet de vous contacter depuis le site sans dévoiler votre adresse, et utilisée pour vous envoyer un nouveau mot de passe si vous l'oubliez.",
'prefs-help-email-required' => 'E-mail mane zo kucilar.',

# User rights
'userrights'                  => 'Pofera va favesikrokeem',
'userrights-lookup-user'      => 'Pofera va favesikeem',
'userrights-user-editname'    => 'Va favesikyolt bazel',
'editusergroup'               => 'Betara va favesikeem lospa',
'editinguser'                 => "Betara va rokeem ke '''[[User:$1|$1]]''' favesik ([[User talk:$1|{{int:talkpagelinktext}}]]{{int:pipe-separator}}[[Special:Contributions/$1|{{int:contribslink}}]])",
'userrights-editusergroup'    => 'Betara va favesiklospa',
'saveusergroups'              => 'Giwara va favesiklospa',
'userrights-groupsmember'     => 'Bewik ke',
'userrights-reason'           => 'Elekaradanda :',
'userrights-no-interwiki'     => 'Va favesikroka koe ari wiki me robetal.',
'userrights-nodatabase'       => '$1 origak me krulder oke me tir lizukaf.',
'userrights-nologin'          => 'Ta tentura va favesikroka gotil [[Special:UserLogin|dogluyan]] kan ristusikpata.',
'userrights-notallowed'       => 'Rinafa pata va tentura va favesikroka me rictar.',
'userrights-changeable-col'   => 'Yona rinon robetana lospa',
'userrights-unchangeable-col' => 'Yona rinon merobetana lospa',

# Groups
'group'               => 'Lospa :',
'group-user'          => 'Favesikeem',
'group-autoconfirmed' => 'Miv gruyeyen favesik yo',
'group-bot'           => 'Stiernikeem',
'group-sysop'         => 'Ristusikeem',
'group-bureaucrat'    => 'Stujesikeem',
'group-suppress'      => 'Rokla',
'group-all'           => '(kot)',

'group-user-member'          => 'Favesik',
'group-autoconfirmed-member' => 'Miv gruyeyen favesik',
'group-bot-member'           => 'Stiernik',
'group-sysop-member'         => 'Ristusik',
'group-bureaucrat-member'    => 'Stujesik',
'group-suppress-member'      => 'Rokla',

'grouppage-user'          => '{{ns:project}}:Favesikeem',
'grouppage-autoconfirmed' => '{{ns:project}}:Miv gruyeyen favesik yo',
'grouppage-bot'           => '{{ns:project}}:Stiernikeem',
'grouppage-sysop'         => '{{ns:project}}:Ristusikeem',
'grouppage-bureaucrat'    => '{{ns:project}}:Stujesikeem',
'grouppage-suppress'      => '{{ns:project}}:Rokla',

# Rights
'right-read'                 => 'Bubelira',
'right-edit'                 => 'Bubetara',
'right-createpage'           => 'Buredura (me prilarabu)',
'right-createtalk'           => 'Prilaraburedura',
'right-createaccount'        => 'Pataredura ke warzaf favesik',
'right-minoredit'            => 'Tcalara wetce betamaks',
'right-move'                 => 'Buarrundara',
'right-move-subpages'        => 'Arrundara va bu do volveybu',
'right-move-rootuserpages'   => 'Arrundara va zaefu favesikbu',
'right-movefile'             => 'Arrundara va iyeltak',
'right-suppressredirect'     => 'Buarrundara va graskara male savsaf yolt me redur',
'right-upload'               => 'Iyeltakkalvajara',
'right-reupload'             => 'Selura va kruldes iyeltak',
'right-reupload-own'         => 'Selura va kruldes iyeltak kalvajayan gan mil favesik',
'right-upload_by_url'        => 'Iyeltakkalvajara male URL mane',
'right-autoconfirmed'        => 'Betara va mialon nendanu bu',
'right-bot'                  => 'Skura wetce mivaskafa diotetca',
'right-apihighlimits'        => 'Favera va API kimapa',
'right-writeapi'             => 'Favera va API suterabolk',
'right-delete'               => 'Busulara',
'right-bigdelete'            => 'Sulara va izkotapkirafu bu',
'right-deleterevision'       => 'Sulara va aptaf bubetaks iku dimsulara',
'right-deletedhistory'       => 'Rupera va sulayan izvot voldo dof krent',
'right-browsearchive'        => 'Aneyara va sulayanu bu',
'right-undelete'             => 'Budimsulara',
'right-suppressrevision'     => 'Tolwira va betaks palseyen gan ristusik numu dimsulara',
'right-suppressionlog'       => "Wira va ilaf 'log' eem",
'right-block'                => 'Elekara va betara ke ar favesik',
'right-blockemail'           => "Elekara va favesikafa 'email' staksara",
'right-hideuser'             => 'Elekara va favesikyolt, palseson dolge saneg',
'right-protect'              => 'Betara va nendareka is nendanu bu',
'right-editprotected'        => 'Betara va nendanu bu (a stoyakorafa nendara)',
'right-editinterface'        => 'Betara va favesikafi walasiki',
'right-editusercssjs'        => 'Betara va CSS ik JS iyeltak ke ar favesik',
'right-editusercss'          => 'Betara va CSS iyeltak ke ar favesik',
'right-edituserjs'           => 'Betara va JS iyeltak ke ar favesik',
'right-rollback'             => 'Kaliafa dimsulara va ironokaf favesik betayas va aptafu bu',
'right-import'               => 'Bukoburera mal ari wiki',
'right-importupload'         => 'Bukoburera mal iyeltakkalvajara',
'right-patrol'               => 'Tcalara va fieyen betaks',
'right-patrolmarks'          => 'Rupera va noeltafa fieratcala',
'right-unwatchedpages'       => 'Wira va medisukeyenu bu',
'right-trackback'            => 'Erura va suzdara',
'right-mergehistory'         => 'Jera va buizvot',
'right-userrights'           => 'Betara va favesikrokeem',
'right-userrights-interwiki' => "Betara va favesikrokeem koe aro 'wiki' xo",
'right-siteadmin'            => 'Origakelekara is dimelekara',

# User rights log
'rightslog'     => '"Log" bu va favesikrokeem',
'rightslogtext' => 'Tir "log" va betara va favesikroka.',
'rightsnone'    => '(mek)',

# Associated actions - in the sentence "You do not have permission to X"
'action-read'               => 'Redura va batu bu',
'action-edit'               => 'Betara va batu bu',
'action-createpage'         => 'Buredura',
'action-createtalk'         => 'Keyaksexoredura',
'action-createaccount'      => 'Redura va bata favesikpata',
'action-move'               => 'Arrundara va batu bu',
'action-move-subpages'      => 'Arrundara va batu bu is inaf volveybueem',
'action-move-rootuserpages' => 'Arrundara va zaefu favesikbu',
'action-movefile'           => 'arrundara va bat iyeltak',
'action-upload'             => 'kalvajara va bat iyeltak',
'action-delete'             => 'sulara va batu bu',
'action-deleterevision'     => 'sulara va bat betaks',
'action-browsearchive'      => 'aneyara va sulayanu bu',
'action-siteadmin'          => 'Elekara ok grielekara va origak',

# Recent changes
'nchanges'                          => '$1 {{PLURAL:$1|betaks|betaks}}',
'recentchanges'                     => 'Noeltaf betakseem',
'recentchanges-legend'              => 'Ikatcuks ke noeltaf betaks',
'recentchangestext'                 => 'Moo batu bu va ironokaf betakseem ke {{SITENAME}} suzdal.',
'recentchanges-feed-description'    => 'Sledara va tel lonoeltaf betakseem va wiki koo bat rust.',
'rcnote'                            => "Vleveon {{PLURAL:$1|'''1''' betaks tir|ironokaf '''$1''' betaks tid}} bak ironokaf {{PLURAL:$2|viel|'''$2''' viel}}, wetce $5 ik $4.",
'rcnotefrom'                        => 'Tir skuyun betakseem mali <strong>$2</strong> (<b>$1</b> cugon).',
'rclistfrom'                        => 'Nedira va warzaf betakseem mali $1.',
'rcshowhideminor'                   => '$1 betamakseem',
'rcshowhidebots'                    => '$1 stiernik',
'rcshowhideliu'                     => '$1 vertokayan favesikeem',
'rcshowhideanons'                   => '$1 yoltiskaf favesikeem',
'rcshowhidepatr'                    => '$1 fierabetareem',
'rcshowhidemine'                    => '$1 va jinaf webekseem',
'rclinks'                           => 'Nedira va $1 ironokaf betaks mali $2 ironokaf viel; $3 betamaks.',
'diff'                              => 'amid-',
'hist'                              => 'izvot',
'hide'                              => 'palsera va',
'show'                              => 'nedira va',
'minoreditletter'                   => 'b',
'newpageletter'                     => 'W',
'boteditletter'                     => 's',
'number_of_watching_users_pageview' => '[$1 nedis {{PLURAL:$1|favesik|favesik}}]',
'rc_categories'                     => 'Kimara kare loma yo (solparsana kan "|")',
'rc_categories_any'                 => 'Kon',
'newsectionsummary'                 => '/* $1 */ warzaf gabot',
'rc-enhanced-expand'                => 'Pintanedira (JavaScript tir adraf)',
'rc-enhanced-hide'                  => 'Pintapalsera',

# Recent changes linked
'recentchangeslinked'          => 'Gluyasikisuzdara',
'recentchangeslinked-feed'     => 'Gluyasikisuzdara',
'recentchangeslinked-toolbox'  => 'Gluyasikisuzdara',
'recentchangeslinked-title'    => 'Betakseem skedas va "$1"',
'recentchangeslinked-noresult' => 'Meka betara va gluyasikikirafu bu remi bata rekola.',
'recentchangeslinked-summary'  => "Batu aptafu bu va ironokaf betakseem va gluyasikikirafu bu vexalar.
Bu koe [[Special:Watchlist|rinafi suzdasiki]] tid '''vastaakorafu'''.",
'recentchangeslinked-page'     => 'Buyolt :',
'recentchangeslinked-to'       => 'Nedira va bueem gluyarakirafu gu batu bu ikaon',

# Upload
'upload'                      => 'Iyeltakkalvajara',
'uploadbtn'                   => 'Va iyeltak kalvajá',
'reuploaddesc'                => 'Empara va kalvajara nume dimpira',
'uploadnologin'               => 'Dogluyariskaf',
'uploadnologintext'           => 'Gotil [[Special:UserLogin|dogluyarakiraf]] ta kalvajara va iyeltak mo zanisiko.',
'upload_directory_read_only'  => 'Sutera ko kalvajarabonja ($1) gan web zanisiko zo pour.',
'uploaderror'                 => 'Rokla',
'uploadtext'                  => "Ta iyeltakkalvajara, va vlevefi tazukasiki favel.
Ta wira va kalvajayan iyeltak oku aneyara, ko [[Special:FileList|vexala dem kalvajayan iyeltak]] grablel, kalvajaks is sulaks \"log\" tid koe [[Special:Log/upload|kalvajara \"log\"]].

Ta kobura va iyeltak, koe tazukasiki va gluyasiki favel
'''<nowiki>[[</nowiki>{{ns:file}}<nowiki>:File.jpg]]</nowiki>''',
'''<nowiki>[[</nowiki>{{ns:file}}<nowiki>:File.png|alt text]]</nowiki>''' oke
'''<nowiki>[[</nowiki>{{ns:media}}<nowiki>:File.ogg]]</nowiki>''' ta rontifa gluyara va iyeltak.",
'upload-permitted'            => 'Rictan iyeltakordeem : $1.',
'upload-preferred'            => 'Abdualban iyeltakordeem : $1.',
'upload-prohibited'           => 'Poun iyeltakordeem : $1.',
'uploadlog'                   => "log d'upload",
'uploadlogpage'               => "Log_d'upload",
'uploadlogpagetext'           => 'Tir vexala dem ironokaf kalvajayan iyeltak. Va [[Special:NewFiles|ginsa dem warzaf iyeltak]] wil ta lowiafa wigara.',
'filename'                    => 'Yolt',
'filedesc'                    => 'Pimtara',
'fileuploadsummary'           => 'Vildeks :',
'filestatus'                  => 'Copyright sok:',
'filesource'                  => 'Klita:',
'uploadedfiles'               => 'Ksudayan iyeltak yo',
'ignorewarning'               => 'Va kota walzera menhurnason nume va iyeltak giwason',
'ignorewarnings'              => 'Va kota walzera menhurnason',
'minlength1'                  => 'Iyeltakyolt leon gotir dem tanoy eltay.',
'illegalfilename'             =>  $1 » iyeltakyolt va biuna staa koe buvergumvelt ruldar. Vay, vaon tolyoltal aze tolksudal.',
'badfilename'                 => 'Tolyoltayana ewava « $1 ».',
'filetype-badmime'            => 'Iyeltak ton "$1" MIME ord tir merokalvajan.',
'filetype-unwanted-type'      => "'''\".\$1\"''' tir iyeltakordaj. 
{{PLURAL:\$3|iyeltakord tir|iyeltakord tid}} \$2.",
'filetype-banned-type'        => "'''\".\$1\"''' tir merictan iyeltakord. Rictan iyeltakord {{PLURAL:\$3|tir|tid}} \$2.",
'filetype-missing'            => 'Iyeltak tir oxiaciskaf (tulon ".jpg").',
'large-file'                  => 'Lokiewafa da lum ke man iyeltak tir lepinaf dam $1; bat iyeltak tir $2.',
'largefileserver'             => 'Bat iyeltak tir pwertarsaf gu gotune ke zanisiko.',
'emptyfile'                   => 'Kalvajan iyeltak nuvelar vlardaf. Lanon golde sutejen iyeltakyolt. Vay ageltal ede va bat iyeltak en djukalvajal !',
'fileexists'                  => "Iyeltak dem man bat yolt ixam krulder.
Vay, ageltal va '''<tt>[[:$1]]</tt>'''.
Til lanaf da va bat iyeltak djubetal ? [[$1|thumb]]",
'filepageexists'              => "Pimtarabu ke bat iyeltak ixam al zo redur ko '''<tt>[[:$1]]</tt>''', vexe mek iyeltak dem man yolt ixam tir. Vildeks rinon suten moe pimtarabu me awitir. Ede djumel da in batlize co-awir, nubedon co-gobetal.",
'fileexists-extension'        => "Iyeltak dem nuxaf yolt tir : [[$2|thumb]]
* Yolt ke kalvajayan iyeltak : '''<tt>[[:$1]]</tt>'''
* Yolt ke tis iyeltak : '''<tt>[[:$2]]</tt>'''
Va amidaf yolt vay kiblal !",
'fileexists-thumbnail-yes'    => "Iyeltak nuvelar da tir lumamafa ewava ''(aluk)''. [[$1|thumb]]
Vay va '''<tt>[[:$1]]</tt>''' iyeltak stujel.
Ede stujen iyeltak tir mila lumanhafa ewava, va aptaf aluk me kalvajal !",
'fileexists-forbidden'        => 'Milyoltaf iyeltak ixam krulder nume me zo robetar.
Ede va man iyeltak soe co-djukalvajal, vay dimpil ise va warzaf yolt favel.
[[File:$1|thumb|center|$1]]',
'fileexists-shared-forbidden' => 'Koe pakano iyeltakxo milyoltaf iyeltak ixam tir.
Ede va man iyeltak soe co-djukalvajal, vay dimpil ise va warzaf yolt favel. [[File:$1|thumb|center|$1]]',
'file-exists-duplicate'       => 'Bat iyeltak tir jontolaca ke {{PLURAL:$1|iyeltak|iyeltak}}:',
'successfulupload'            => 'Ksudanhara',
'uploadwarning'               => 'Obral !',
'savefile'                    => 'Giwara va iyeltak',
'uploadedimage'               => '« [[$1]] » ksudayan mo zanisiko',
'overwroteimage'              => 'kalvajayan siatos ke "[[$1]]"',
'uploaddisabled'              => 'Skalev, staksera va iyeltak tir gritegirayan.',
'uploaddisabledtext'          => 'Iyeltakkalvajara tir gritegirayana.',
'uploadscripted'              => 'Bat iyeltak va HTML ok Script beksa rotir narujutuna gan web exulesiki ruldar.',
'uploadvirus'                 => 'Iyeltak va kio ruldar ! Pinta se : $1',
'sourcefilename'              => 'Klitiyeltakyolt:',
'destfilename'                => 'Warzaf iyeltakyolt:',
'upload-maxfilesize'          => 'Cugafo iyeltakaldo : $1',
'watchthisupload'             => 'Suzdara va batu bu',
'upload-wasdeleted'           => "'''Obral: Rin va sulayan iyeltak djukalvajal.'''

Gokrafial ede tolkalvajara va bat iyeltak tir vodanhafa.
Sulara \"log\" va batu bu krafiason batlize zo nedir :",

'upload-proto-error'     => 'Kitsendaj',
'upload-file-error'      => 'Koefa rokla',
'upload-file-error-text' => 'Yawason va ugaloraf iyeltak mo zanisiko, koefa rokla sokir. Va [[Special:ListUsers/sysop|bolkristusik]] vay uzeral !',
'upload-misc-error'      => 'Megrupena kalvajararokla',

# Some likely curl errors. More could be added from <http://curl.haxx.se/libcurl/c/libcurl-errors.html>
'upload-curl-error6'  => 'Va URL me rozomer',
'upload-curl-error28' => 'Kalvajara kaikiana',

'license'            => 'Gelfara :',
'license-header'     => 'Gelfara :',
'nolicense'          => 'Mecoba rebana',
'license-nopreview'  => '(Abdinedira me zo roderaykar)',
'upload_source_url'  => ' (enafe sanegon rovansane URL mane)',
'upload_source_file' => ' (iyeltak koe rinafo vusiko)',

# Special:ListFiles
'listfiles_search_for'  => 'Aneyara va ewavayolt :',
'imgfile'               => 'iyeltak',
'listfiles'             => 'Ewavavexala',
'listfiles_date'        => 'Evla',
'listfiles_name'        => 'Yolt',
'listfiles_user'        => 'Favesik',
'listfiles_size'        => 'Lum',
'listfiles_description' => 'Pimtara',
'listfiles_count'       => 'Siatos',

# File description page
'file-anchor-link'          => 'Ewava',
'filehist'                  => 'Iyeltakizvot',
'filehist-help'             => 'Ta da va iyeltak wil dum in batoulon awir va evla/bartiv vulegal !',
'filehist-deleteall'        => 'Sulara va kotcoba',
'filehist-deleteone'        => 'Sulara',
'filehist-revert'           => 'dimplekura',
'filehist-current'          => 'noeltaf',
'filehist-datetime'         => 'Evla/Bartiv',
'filehist-thumb'            => 'Aluk',
'filehist-thumbtext'        => 'Aluk va siatos ke $1',
'filehist-user'             => 'Favesik',
'filehist-dimensions'       => 'Lumeem',
'filehist-filesize'         => 'Iyeltakaldo',
'filehist-comment'          => 'Sebuks',
'imagelinks'                => 'Yoni iyeltakgluyasiki',
'linkstoimage'              => 'Vlevefi {{PLURAL:$1|bugluyasiki|$1 bugluyasiki}} va bat iyeltak :',
'nolinkstoimage'            => 'Meku bu va bata ewava ruldar.',
'morelinkstoimage'          => 'Rupera va [[Special:WhatLinksHere/$1|lofi skedasiki]] va bat iyeltak.',
'redirectstofile'           => 'Vlevef {{PLURAL:$1|graskan iyeltak|$1 graskan iyeltak}} va bat iyeltak :',
'duplicatesoffile'          => 'Bat {{PLURAL:$1|iyeltak tir|$1 iyeltak tid}} jontolaca ke bat iyeltak ([[Special:FileDuplicateSearch/$2|lo pinta]]) :',
'sharedupload'              => 'Bat iyeltak tir ke $1 ise gan ar abdumimaks zo rofaver.',
'uploadnewversion-linktext' => 'Kalvajara va warzaf siatos ke bat iyeltak',

# File reversion
'filerevert'                => 'Dimplekura va $1',
'filerevert-legend'         => 'Dimplekura va iyeltak',
'filerevert-comment'        => 'Sebuks :',
'filerevert-defaultcomment' => 'Sulan kal siatos ke $2, $1',
'filerevert-submit'         => 'Dimplekura',
'filerevert-success'        => "'''[[Media:$1|$1]]''' dim [$4 siatos ke $3, $2] su zo dimplekur.",

# File deletion
'filedelete'                  => 'Sulara va $1',
'filedelete-legend'           => 'Sulara va iyeltak',
'filedelete-intro'            => "Rin va '''[[Media:$1|$1]]''' iyeltak is varaf izvot fu sulal.",
'filedelete-intro-old'        => "Rin va siatos ke '''[[Media:$1|$1]]''' wetce [$4 $3, $2] sulal.",
'filedelete-comment'          => 'Elekaradanda :',
'filedelete-submit'           => 'Sulara',
'filedelete-success'          => "'''$1''' al zo sular.",
'filedelete-success-old'      => "Siatos ke '''[[Media:$1|$1]]''' iyeltak ba $3 ke $2 zo sulayar.",
'filedelete-nofile'           => "'''$1''' me krulder.",
'filedelete-otherreason'      => 'Ara ik loplekufa lazava :',
'filedelete-reason-otherlist' => 'Ara lazava',
'filedelete-reason-dropdown'  => '*Giltafa sularalazava
** Aksara va sutesikroka
** Jontolaf iyeltak',
'filedelete-edit-reasonlist'  => 'Betara va sularalazava',

# MIME search
'mimesearch' => 'MIME aneyara',
'mimetype'   => 'MIME ord :',
'download'   => 'kalvajara',

# Unwatched pages
'unwatchedpages' => 'Mewiyinu bu se',

# List redirects
'listredirects' => 'Va graskareem vexalar',

# Unused templates
'unusedtemplates'     => 'Mefaven tezeem',
'unusedtemplatestext' => 'Batu bu va kotu bu koe {{ns:template}} yoltxo skedasikiiskafu gu aru bu vexalar.
Abdi sulara, setikel da va ari skedasiki va teza stujel.',
'unusedtemplateswlh'  => 'ari gluyasiki yo',

# Random page
'randompage'         => 'Xuyavon bu',
'randompage-nopages' => 'Nedoyu bu koe "$1" yoltxo.',

# Random redirect
'randomredirect'         => 'Xuyavafa graskara',
'randomredirect-nopages' => 'Nedoy graskaks koe "$1" yoltxo.',

# Statistics
'statistics'               => 'Enkopaca yo',
'statistics-header-pages'  => 'Buenkopaceem',
'statistics-header-edits'  => 'Betarenkopaceem',
'statistics-header-views'  => 'Wirenkopaceem',
'statistics-header-users'  => 'Enkopaca yo va favesik',
'statistics-pages'         => 'Bueem',
'statistics-files'         => 'Kalvajayan iyeltakeem',
'statistics-edits-average' => 'Mialukafa bubetarota',
'statistics-users-active'  => 'Tegiraf pakesikeem',
'statistics-mostpopular'   => 'Tel lorupen bueem',

'disambiguations'     => 'Bu dem milyoltaca yo',
'disambiguationspage' => '{{ns:template}}:Milyoltaca',

'doubleredirects'            => 'Jontolafa graskara',
'doubleredirectstext'        => "<b>Attention:</b> cette liste peut contenir des « faux positifs ». Dans ce cas, c'est probablement la page du premier #REDIRECT contient aussi du texte.<br />Chaque ligne contient les liens à la 1re et 2e page de redirection, ainsi que la première ligne de cette dernière, qui donne normalement la « vraie » destination. Le premier #REDIRECT devrait lier vers cette destination.",
'double-redirect-fixed-move' => 'arrundayan [[$1]], dure graskan kal [[$2]]',

'brokenredirects'        => 'Arlizafa graskaraja yo',
'brokenredirectstext'    => 'Kal metisu bu bata graskara stad :',
'brokenredirects-edit'   => 'betara',
'brokenredirects-delete' => 'sulara',

'withoutinterwiki'         => 'Avagluyasikiiskaf bueem',
'withoutinterwiki-summary' => 'Batu bu se va aravaf siatos me skedad :',
'withoutinterwiki-legend'  => 'Abdueosta',
'withoutinterwiki-submit'  => 'Nedira',

'fewestrevisions' => 'Tel lebetayan bueem',

# Miscellaneous special pages
'nbytes'                  => '$1 {{PLURAL:$1|octet|octet}}',
'ncategories'             => '$1 loma',
'nlinks'                  => '$1 {{PLURAL:$1|gluyasiki|gluyasiki}}',
'nmembers'                => '$1 {{PLURAL:$1|bewik}}',
'nrevisions'              => '$1 betara',
'nviews'                  => '$1 rupera',
'specialpage-empty'       => 'Mek trasiks tori bat munsteks.',
'lonelypages'             => 'Avuwikaf bueem',
'lonelypagestext'         => 'Batu bu tid gluyasikiiskafu male aru bu koe {{SITENAME}}.',
'uncategorizedpages'      => 'Lomiskaf bueem',
'uncategorizedcategories' => 'Lomiskaf lomeem',
'uncategorizedimages'     => 'Lomiskaf iyeltak yo',
'uncategorizedtemplates'  => 'Lomiskaf tezeem',
'unusedcategories'        => 'Mefaven lomeem',
'unusedimages'            => 'Avuwikaf ewaveem',
'popularpages'            => 'Tel lorupen bueem',
'wantedcategories'        => 'Eruna loma',
'wantedpages'             => 'Tel loderun bueem',
'wantedfiles'             => 'Erun iyeltak',
'wantedtemplates'         => 'Eruna teza',
'mostlinked'              => 'Tel buon logluyan teliz yo',
'mostlinkedcategories'    => 'Tel lomon logluyan teliz yo',
'mostlinkedtemplates'     => 'Tel tezon logluyasikikiraf',
'mostcategories'          => 'Tel lolomakiraf teliz yo',
'mostimages'              => 'Tela logluyana ewava se',
'mostrevisions'           => 'Tel lobetayan teliz yo',
'prefixindex'             => 'Bu dem radimeosta',
'shortpages'              => 'Telaf bueem',
'longpages'               => 'Abrotcaf bueem',
'deadendpages'            => 'Axodabueem',
'deadendpagestext'        => 'Batu bu se tid gluyasikiiskafu gu aru bu koe {{SITENAME}}.',
'protectedpages'          => 'Nendan bueem',
'protectedpagestext'      => 'Batu bu se icde arrundara is betara zo nendad',
'protectedpagesempty'     => 'Meku bu nendanu kan bat doreem.',
'protectedtitles'         => 'Nendan vergumvelteem',
'protectedtitlestext'     => 'Radimef vergumvelteem reduron zo nendar',
'protectedtitlesempty'    => 'Nedoy vergumvelt kan bat dor se zo nendar.',
'listusers'               => 'Pakesikeem',
'listusers-editsonly'     => 'Va yon betayas favesik anton nedir',
'usereditcount'           => '$1 {{PLURAL:$1|betara|betara}}',
'newpages'                => 'Warzaf bueem',
'newpages-username'       => 'Favesikyolt :',
'ancientpages'            => 'Losavsaf telizeem',
'move'                    => 'Tolyoltara',
'movethispage'            => 'Butolyoltara',
'unusedimagestext'        => "<p>N'oubliez pas que d'autres sites, comme certains Wikipédias non francophones, peuvent contenir un lien direct vers cette image, et que celle-ci peut être placée dans cette liste alors qu'elle est en réalité utilisée.",
'unusedcategoriestext'    => 'Batu lomabu krulded damo da mekaru bu iku loma vaon faver.',
'notargettitle'           => 'Me jala',
'notargettext'            => 'Va jalafu bu oku favesik bazel.',
'nopagetitle'             => 'Meku manu jalabu',
'nopagetext'              => 'Bazenu jalabu me tir.',
'pager-newer-n'           => '{{PLURAL:$1|lowarzaf 1|lowarzaf $1}}',
'pager-older-n'           => '{{PLURAL:$1|loguazaf 1|loguazaf $1}}',
'suppress'                => 'Rokla',

# Book sources
'booksources'               => 'Vuestes suteks yo',
'booksources-search-legend' => 'Aneyara va nevaklita',
'booksources-go'            => 'Rupera',

# Special:Log
'specialloguserlabel'  => 'Favesik:',
'speciallogtitlelabel' => 'Vergumvelt:',
'log'                  => '"logs"',
'all-logs-page'        => '"log" bueem',
'logempty'             => 'Mek trasiks koe "log" iyeltak.',
'log-title-wildcard'   => 'Aneyara va vergumvelt dem mana toza',

# Special:AllPages
'allpages'          => 'Kotaf bueem',
'alphaindexline'    => 'male $1 kale $2',
'nextpage'          => 'Radimebu ($1)',
'prevpage'          => '($1) abdifu bu',
'allpagesfrom'      => 'Nedira va bu se male',
'allpagesto'        => 'Nedira va bu dem tena male :',
'allarticles'       => 'Telizeem',
'allinnamespace'    => 'Kotu bu ($1 yoltxo)',
'allnotinnamespace' => 'Kotaf bueem (me koe $1 yoltxo)',
'allpagesprev'      => 'Abdifu bu',
'allpagesnext'      => 'Radimifu bu',
'allpagessubmit'    => 'Tuená',
'allpagesprefix'    => 'Nedira va bueem tozakiraf gu :',
'allpages-bad-ns'   => '{{SITENAME}} va "$1" yoltxo me digir.',

# Special:Categories
'categories'                    => 'Bulomeem',
'categoriespagetext'            => 'Radimiasa loma se moe wiki krulded :',
'categoriesfrom'                => 'Nedira va loma tozakirafa gu :',
'special-categories-sort-count' => 'Otafa mubera',
'special-categories-sort-abc'   => 'Abavafa mubera',

# Special:DeletedContributions
'deletedcontributions' => 'Sulayan favesikaf webeks',

# Special:LinkSearch
'linksearch'    => 'Divafi gluyasiki',
'linksearch-ns' => 'Yoltxo :',
'linksearch-ok' => 'Aneyara',

# Special:ListUsers
'listusersfrom'      => 'Fintara va favesikeem male :',
'listusers-submit'   => 'Nedira',
'listusers-noresult' => 'Mek trasiyin favesik.',

# Special:Log/newusers
'newuserlogpage'              => 'Buredura "log"',
'newuserlog-byemail'          => 'remravlem staksayan kan e-mail',
'newuserlog-create-entry'     => 'Warzaf favesik',
'newuserlog-create2-entry'    => 'va $1 warzafa pata reduyur',
'newuserlog-autocreate-entry' => 'Mivaskon reduyuna pata',

# Special:ListGroupRights
'listgrouprights'                 => 'Rokeem ke favesiklospa',
'listgrouprights-group'           => 'Lospa',
'listgrouprights-rights'          => 'Rokeem',
'listgrouprights-helppage'        => 'Help:Losparokeem',
'listgrouprights-members'         => '(bewikeem)',
'listgrouprights-addgroup'        => 'Roloplekur va {{PLURAL:$2|lospa|lospa}}: $1',
'listgrouprights-removegroup'     => 'Rosular va {{PLURAL:$2|lospa|lospa}}: $1',
'listgrouprights-addgroup-all'    => 'Va kota lospa roloplekur',
'listgrouprights-removegroup-all' => 'Va kota lospa rosular',

# E-mail user
'mailnologin'      => 'Meke mane',
'mailnologintext'  => 'Rin gotil [[Special:UserLogin|dogluyarakiraf]]
is bazeyes va wadafe internetmane ko rinaf [[Special:Preferences|lodamaceem]]
ta da pu ar favesik rostaksal.',
'emailuser'        => 'Staksara va bat favesik',
'emailpage'        => 'E-mail staksara va tel favesik',
'emailpagetext'    => "Si cet utilisateur a indiqué une adresse électronique valide dans ses préférences, le formulaire ci-dessous lui enverra un message.
L'adresse électronique que vous avez indiquée dans vos préférences apparaîtra dans le champ « Expéditeur » de votre message afin que le destinataire puisse vous répondre.",
'usermailererror'  => 'E-mail rokla :',
'defemailsubject'  => 'internettwa staksayana mal {{SITENAME}}',
'noemailtitle'     => 'Me internetmane',
'noemailtext'      => "Cet utilisateur n'a pas spécifié d'adresse électronique valide ou a choisi de ne pas recevoir de courrier électronique des autres utilisateurs.",
'nowikiemailtitle' => 'Meke e-mail mane rictane',
'emailfrom'        => 'Male :',
'emailto'          => 'Staksanik:',
'emailsubject'     => 'Detce :',
'emailmessage'     => 'Staksa :',
'emailsend'        => 'Staksara',
'emailccme'        => 'Va ksudaks ke jinafa staksa "e-mail"-on staksal !',
'emailccsubject'   => 'Ksudaks va rinafa staksa van $1 : $2',
'emailsent'        => 'Staksanaca',
'emailsenttext'    => 'Staksanhara.',

# Watchlist
'watchlist'            => 'Suzdasiki',
'mywatchlist'          => 'Jinafi suzdasiki',
'watchlistfor'         => "(tori '''$1''')",
'nowatchlist'          => 'Rinafi suzdasiki va nedoy teliz ruldar.',
'watchlistanontext'    => 'Ta wira ik betara va ra ke rinafi suzdasiki vay $1.',
'watchnologin'         => 'Dogluyariskaf',
'watchnologintext'     => 'Ta betara va suzdasiki gotil [[Special:UserLogin|dogluyarakiraf]].',
'addedwatch'           => 'Loplekuyun ko suzdasiki',
'addedwatchtext'       =>  $1 » bu ko rinafi [[Special:Watchlist|Suzdasiki]] fu zo loplekur.
Va moniyaf betareem va batu bu is dofu prilarabu batlize zo bonjatad, ise ta lokaliafa tcalutera telu '''ton bold''' koe bu dem [[Special:RecentChanges|noeltaf betakseem]] turowinaweter.

Ta sulara va batu bu div rinafi suzdasiki, koe grablexo va « Mea suzdá » vulegal.",
'removedwatch'         => 'Sulayanu div suzdasiki',
'removedwatchtext'     => '« [[:$1]] » bu div rinafi suzdasiki al zo sular.',
'watch'                => 'Suzdá',
'watchthispage'        => 'Va batu bu suzdá',
'unwatch'              => 'Mea suzdá',
'unwatchthispage'      => 'Va batu bu mea suzdá',
'notanarticle'         => 'Nedoy teliz',
'notvisiblerev'        => 'Betaks sulayan',
'watchnochange'        => 'Nedoyu rinafu suzdanu bu al zo betar bak bazena rekola',
'watchlist-details'    => '{{PLURAL:$1|$1 bu|$1 bu}} koe rinafi suzdasiki rade prilarabueem.',
'wlheader-enotif'      => '* Email walzera tir tegisa.',
'wlheader-showupdated' => "* Bu betayanu vielu rin ironokon worayal tir '''sulatcalakorafu'''.",
'watchmethod-recent'   => 'ageltara va noeltaf betakseem va suzdan bueem',
'watchmethod-list'     => 'ageltara va suzdan bueem icde noeltafa betara',
'watchlistcontains'    => 'Rinafi suzdasiki va $1 bu ruldar',
'iteminvalidname'      => 'Zvak icde « $1 » teliz : yolt tir mewadaf...',
'wlnote'               => "Vleveon tid tela '''$1''' ironokafa betara mali '''$2''' ironokaf bartiv.",
'wlshowlast'           => 'Nedira va ironokaf $1 bartiv isu $2 viel isu $3',
'watchlist-options'    => 'Suzdasikiolkeem',

# Displayed when you click the "watch" button and it is in the process of watching
'watching'   => 'Nedis...',
'unwatching' => 'Menedis...',

'enotif_mailer'                => '{{SITENAME}} Kowalzesi Staksasiki',
'enotif_reset'                 => 'Va kotu woranu bu tcalar',
'enotif_newpagetext'           => 'Batcoba tir warzafu bu',
'enotif_impersonal_salutation' => '{{SITENAME}} favesik',
'changed'                      => 'betayan',
'created'                      => 'reduyun',
'enotif_subject'               => '{{SITENAME}} bu $PAGETITLE su zo $CHANGEDORCREATED gan $PAGEEDITOR',
'enotif_lastvisited'           => 'Va $1 disukel ta da va kot betaks mali ironokafa worara wil.',
'enotif_lastdiff'              => 'Ta wira va bat betaks va $1 disukel.',
'enotif_anon_editor'           => '$1 yoltiskaf favesik',
'enotif_body'                  => 'Dear $WATCHINGUSERNAME,


The {{SITENAME}} page $PAGETITLE has been $CHANGEDORCREATED on $PAGEEDITDATE by $PAGEEDITOR, see $PAGETITLE_URL for the current version.

$NEWPAGE

Editor\'s summary: $PAGESUMMARY $PAGEMINOREDIT

Contact the editor:
mail: $PAGEEDITOR_EMAIL
wiki: $PAGEEDITOR_WIKI

There will be no other notifications in case of further changes unless you visit this page.
You could also reset the notification flags for all your watched pages on your watchlist.

             Your friendly {{SITENAME}} notification system

--
To change your watchlist settings, visit
{{fullurl:{{#special:Watchlist}}/edit}}

Feedback and further assistance:
{{fullurl:{{MediaWiki:Helppage}}}}',

# Delete
'deletepage'             => 'Busulara',
'confirm'                => 'Gruyé',
'excontent'              => 'ruldas va « $1 »',
'excontentauthor'        => "cek tiyir : '$1' (is tanaf webesik tiyir '$2')",
'exbeforeblank'          => 'Abdi tuvlardara, batu bu ruldayar va : $1',
'exblank'                => 'vlardafu bu',
'delete-confirm'         => 'Sulara va "$1"',
'delete-legend'          => 'Sulara',
'historywarning'         => 'Obral : Telu bu rinon sulatanu va izvot digir :',
'confirmdeletetext'      => 'Rin va bu is varaf izvot fu sulal.
Vay gruyel da djuskul ise va maletireem vangrupel ise tarkason va [[{{MediaWiki:Policy-url}}|xoverteem]] askil !',
'actioncomplete'         => 'Skuyuna sulara',
'deletedtext'            => '« <nowiki>$1</nowiki> » tir sulayan.
Ta vexala dem noeltaf sulareem va $2 disukel.',
'deletedarticle'         => 'al sular va « $1 »',
'suppressedarticle'      => '"[[$1]]" sulayan',
'dellogpage'             => 'Izvot va sulareem',
'dellogpagetext'         => 'Tir tela vexala dem noeltaf sulareem.
Bazen bartiv tir tel ke zanisiko.',
'deletionlog'            => 'izvot va sulareem',
'reverted'               => 'Dimplekura va tel abdif siatos',
'deletecomment'          => 'Lazava :',
'deleteotherreason'      => 'Ara ik loplekufa lazava :',
'deletereasonotherlist'  => 'Ara lazava',
'deletereason-dropdown'  => '*Giltafa sularalazava
** Erura ke sutesik
** Aksara va sutesikroka
** Apkara',
'delete-edit-reasonlist' => 'Betara va sularalazava',
'delete-toobig'          => 'Batu bu va izvotap (lo $1 {{PLURAL:$1|betara|betara}}) digir. Ta djira va waltafa empara va {{SITENAME}} sulara va manu bu zo irutar.',
'delete-warning-toobig'  => 'Batu bu va izvotap (lo $1 {{PLURAL:$1|betara|betara}}) digir. Sulara va manu bu va skura ke origak ke {{SITENAME}} rotempar, acum obrason diotel !',

# Rollback
'rollback'         => 'nabildara va betareem',
'rollback_short'   => 'Nabildara',
'rollbacklink'     => 'nabildara',
'rollbackfailed'   => 'Rodjeyesa nabildara',
'cantrollback'     => 'Impossible de révoquer : dernier auteur est le seul à avoir modifié cet article',
'alreadyrolled'    => 'Dimplekura va ironokafa betara va "$1" teliz gan [[User:$2|$2]] ([[User talk:$2|Prilara]]) me zo roskur; artan va teliz ixam al betar oke al dimplekur.

Ironokafa betara gan [[User:$3|$3]] ([[User talk:$3|Prilara]]) zo skuyur.',
'editcomment'      => "Betaravildeks tiyir : ''« $1 »''.",
'revertpage'       => 'Dimplekuyun betakseem ke [[Special:Contributions/$2|$2]] ([[User talk:$2|Prilara]]); dim ironokaf siatos ke [[User:$1|$1]]',
'rollback-success' => 'Dimplekun betaks yo gan $1; dimpira ko ironokaf siatos ke $2.',

# Protect
'protectlogpage'              => 'Izvot va nendareem',
'protectlogtext'              => 'Vleveon tir elekan is dimelekayan bueem. Ta vexala dem noelaf skus nendareem, va [[Special:ProtectedPages|nendan bueem]] wil.',
'protectedarticle'            => 'va « $1 » al nendar',
'modifiedarticleprotection'   => 'betayana nendareka va "[[$1]]"',
'unprotectedarticle'          => 'va « $1 » al dimnendar',
'protect-title'               => 'Nendara va « $1 »',
'prot_1movedto2'              => '$1 arbureyen kal $2',
'protect-legend'              => 'Va nendara gruyel',
'protectcomment'              => 'Elekaradanda :',
'protectexpiry'               => 'Edjatena :',
'protect_expiry_invalid'      => 'Edjatena me tir enafa.',
'protect_expiry_old'          => 'Edjatena tir abdiugalafa.',
'protect-text'                => "Rin va nendareka ke '''<nowiki>$1</nowiki>''' bu batlize rowil nume robetal.",
'protect-locked-access'       => "Rinafa pata va betara va nendareka me rictar.
Noeltaf plekukseem ke '''$1''' bu batlize tid :",
'protect-cascadeon'           => 'Batu bu zo nendar kire va {{PLURAL:$1|bu disu|bu yo disu}} va tegisa stoyakorafa nendara pasur. Rin va nendareka va batu bu robetal vexe batcoba va stoyakorafa nendara me vanolatar.',
'protect-default'             => 'Va kot favesik nover',
'protect-fallback'            => 'Kucilara va "$1" rictara',
'protect-level-autoconfirmed' => 'Elekara va warzaf ik patiskaf favesik',
'protect-level-sysop'         => 'Anton ristusik',
'protect-summary-cascade'     => 'stoyakoron',
'protect-expiring'            => 'edjatena ba $1 (UTC)',
'protect-cascade'             => 'Nendan bueem dene batu bu (stoyakorafa nendara)',
'protect-cantedit'            => 'Va nendarekeem va batu bu me robetal kire va betararoka me deraykal.',
'protect-expiry-options'      => '1 bartiv:1 hour,1 viel:1 day,1 perka:1 week,2 perka:2 weeks,1 aksat:1 month,3 aksat:3 months,6 aksat:6 months,1 tanda:1 year,kotabon:infinite',
'restriction-type'            => 'Rictara :',
'restriction-level'           => 'Irutareka :',
'minimum-size'                => 'Volcugaf lum',
'maximum-size'                => 'Cugaf lum:',
'pagesize'                    => '(byte)',

# Restrictions (nouns)
'restriction-edit'   => 'Betara',
'restriction-move'   => 'Arrundara',
'restriction-create' => 'Redura',
'restriction-upload' => 'Kalvajara',

# Restriction levels
'restriction-level-sysop'         => 'ennendan',
'restriction-level-autoconfirmed' => 'nendaman',
'restriction-level-all'           => 'beta eka',

# Undelete
'undelete'                  => 'Dimplekura va sulayanu bu',
'undeletepage'              => 'Disukera va sulayanu bu is dimplekura',
'viewdeletedpage'           => 'Disukera va sulayanu bu se',
'undeletepagetext'          => 'Batu {{PLURAL:$1|bu|$1 bu}} al zo sular tir koe badona nume zo rodimplekur.
Badona rekolon zo gotuvlardar.',
'undeleterevisions'         => '$1 fardudjayana betara',
'undeletehistory'           => "Ede rin va bu co-dimplekul, kota betara ko izvot zo co-dimplekur.

Si une nouvelle page avec le même nom a été créée depuis la suppression, les révisions restaurées apparaîtront dans l'historique antérieur et la version courante ne sera pas automatiquement remplacée.",
'undelete-revision'         => 'Sulayana betara va $1 (ba $4 ke $5) gan $3 :',
'undelete-nodiff'           => 'Mek abdif betaks trasin.',
'undeletebtn'               => 'Skura va dimplekura !',
'undeletelink'              => 'wira ik dimplekura',
'undeletereset'             => 'Tolplekura',
'undeletecomment'           => 'Sebuks :',
'undeletedarticle'          => 'va « [[$1]] » al dimplekur',
'undeletedrevisions'        => '$1 siatos dimplekuyun',
'undeletedrevisions-files'  => '$1 betaks isu $2 iyeltak zo dimplekuyud',
'undeletedfiles'            => '{{PLURAL:$1|1|$1}} dimplekuyun iyeltak',
'cannotundelete'            => 'Volsulara al rodjer ; artan va bu lanon taneon al volsular.',
'undelete-header'           => 'Wira va [[Special:Log/delete|"log" sularamunsteks]] icde noelton sulayanu bu se.',
'undelete-search-box'       => 'Aneyara va sulayanu bu',
'undelete-search-prefix'    => 'Nedira va bueem dem toza :',
'undelete-search-submit'    => 'Aneyara',
'undelete-no-results'       => 'Nedoyu trasiyinu vadjesu bu koe sularak.',
'undelete-cleanup-error'    => 'Rokla sulason va "$1" mefaven kofukayan iyeltak.',
'undelete-error-short'      => 'Rokla dimsulason va $1 iyeltak',
'undelete-error-long'       => 'Rokla se dimsulason va iyeltak :

$1',
'undelete-show-file-submit' => 'En',

# Namespace form on various pages
'namespace'      => 'Yoltxo:',
'invert'         => 'Tukevolara va rebara',
'blanknamespace' => '(Nelkaxo)',

# Contributions
'contributions'       => 'Webereem ke favesik',
'contributions-title' => 'Favesikwebekseem icde $1',
'mycontris'           => 'Jinaf webekseem',
'contribsub2'         => 'Tori $1 ($2)',
'nocontribs'          => 'Meka betara vadjesa va bata luda se al zo trasir.',
'uctop'               => ' (ironokaf)',
'month'               => 'Mali aksat (is logaveon) :',
'year'                => 'Mali ilana (is logaveon) :',

'sp-contributions-newbies'     => 'Anton nedira va warzafavesikaf webekseem',
'sp-contributions-newbies-sub' => 'Tori warzaf favesikeem',
'sp-contributions-blocklog'    => 'Elekara va "log" bu',
'sp-contributions-deleted'     => 'Sulayan favesikaf webeks',
'sp-contributions-talk'        => 'Keyaksera',
'sp-contributions-userrights'  => 'Pofera va favesikrokeem',
'sp-contributions-search'      => 'Aneyara va webeks',
'sp-contributions-username'    => 'IP mane ok favesikyolt :',
'sp-contributions-submit'      => 'Aneyara',

# What links here
'whatlinkshere'            => 'Gluyarakiraf bueem',
'whatlinkshere-title'      => 'Bu gluyasu va "$1"',
'whatlinkshere-page'       => 'Bu :',
'linkshere'                => "Van batu bu vlevef bueem va gluyasiki ruldar : '''[[:$1]]'''",
'nolinkshere'              => "Van batu bu nedoyu bu va gluyasiki ruldar : '''[[:$1]]'''",
'nolinkshere-ns'           => "Koe kiblayano yoltxo meku bu gluyasikikirafu gu '''[[:$1]]'''.",
'isredirect'               => 'graskarabu',
'istemplate'               => 'kodoplekura',
'isimage'                  => 'skedasiki va ewava',
'whatlinkshere-prev'       => '{{PLURAL:$1|abduef|abduef $1}}',
'whatlinkshere-next'       => '{{PLURAL:$1|radimef|radimef $1}}',
'whatlinkshere-links'      => '← gluyasiki se',
'whatlinkshere-hideredirs' => '$1 graskara',
'whatlinkshere-hidetrans'  => '$1 "transclusion"',
'whatlinkshere-hidelinks'  => '$1 gluyasiki',
'whatlinkshere-hideimages' => '$1 skedasiki va ewava',
'whatlinkshere-filters'    => 'Espasiki',

# Block/unblock
'blockip'                  => 'Elekara va IP mane ok favesik',
'blockip-legend'           => 'Elekara va favesik',
'blockiptext'              => 'Ta suterafa elekara va vansara male pilkovafe IP mane ok favesikyolt va vlevefa erurateza favel !
Mana sabegara zo goskur ta weyonara va cidara is dotrakason va [[{{MediaWiki:Policy-url}}|gotarkan vexeem]].
Va lazavanha (tulon ozwason va cidayanu bu se) vlevon bazel !',
'ipaddress'                => 'IP mane ok ikayolt',
'ipadressorusername'       => 'IP mane ok favesikyolt',
'ipbexpiry'                => 'Elekaracek',
'ipbreason'                => 'Elekaradanda :',
'ipbreasonotherlist'       => 'Ardume',
'ipbanononly'              => 'Anton elekara va yoltiskaf favesik',
'ipbcreateaccount'         => 'Djira va pataredura',
'ipbemailban'              => 'Djira va favesik icde "email" staksera',
'ipbsubmit'                => 'Elekara va bate mane',
'ipbother'                 => 'Arviele :',
'ipboptions'               => '2 bartiv:2 hours,1 viel:1 day,3 viel:3 days,1 perka:1 week,2 perka:2 weeks,1 aksat:1 month,3 aksat:3 months,6 aksat:6 months,1 tanda:1 year,kotabon:infinite',
'ipbotheroption'           => 'ar',
'ipbotherreason'           => 'Ardume/lodume :',
'badipaddress'             => 'IP mane tir mewadafe.',
'blockipsuccesssub'        => 'Elekanhara',
'blockipsuccesstext'       => "L'adresse IP « $1 » a été bloquée.<br />Vous pouvez consulter sur cette [[Special:IPBlockList|page]] la liste des adresses IP bloquées.",
'ipb-edit-dropdown'        => 'Betara va elekaralazava',
'ipb-unblock-addr'         => 'Va $1 dimelekara',
'ipb-unblock'              => 'Dimelekara va favesikyolt ok IP mane',
'ipb-blocklist-addr'       => 'Tis elekareem va $1',
'ipb-blocklist'            => 'Wira va tis elekareem',
'ipb-blocklist-contribs'   => 'Webereem ke $1',
'unblockip'                => 'Grielekara va IP mane',
'unblockiptext'            => 'Ta dimplekura va rosutera va vlevef valdig favel
male abdion elekayane IP mane.',
'ipusubmit'                => 'Grielekara va bate mane',
'unblocked'                => '[[User:$1|$1]] su zo dimelekar',
'unblocked-id'             => 'Dimelekara va $1 su zo skur',
'ipblocklist'              => 'Elekayane IP mane isu favesikyolt',
'ipblocklist-legend'       => 'Trasira va elekan favesik',
'ipblocklist-username'     => 'Favesikyolt ok IP mane :',
'ipblocklist-submit'       => 'Aneyara',
'blocklistline'            => '$1 (tenuwer ba $4): $2 va $3 al elekar',
'infiniteblock'            => 'parmaf',
'expiringblock'            => 'tenuwer ba $1 $2',
'anononlyblock'            => 'anton yoltiskik',
'noautoblockblock'         => "gritegirayan 'autoblock'",
'createaccountblock'       => 'pataredura zo elekar',
'emailblock'               => 'e-mail elekan',
'ipblocklist-empty'        => 'Meka elekara.',
'ipblocklist-no-results'   => 'Erune IP mane ok favesikyolt me tid elekayan.',
'blocklink'                => 'elekara',
'unblocklink'              => 'grielekara',
'change-blocklink'         => 'Betara va elekara',
'contribslink'             => 'webekseem',
'autoblocker'              => 'Bloqué automatiquement parce que vous partagez une adresse IP avec « $1 ». Raison : « $2 ».',
'blocklogpage'             => 'Elekara log',
'blocklogentry'            => 'Elekan [[$1]] kali $2 ke $3 evledja',
'blocklogtext'             => 'Ceci est la trace des blocages et déblocages des utilisateurs. Les adresses IP automatiquement bloquées ne sont pas listées. Consultez la [[Special:IPBlockList|liste des utilisateurs bloqués]] pour voir qui est actuellement effectivement bloqué.',
'unblocklogentry'          => 'grielekara va « $1 »',
'block-log-flags-anononly' => 'anton yoltiskaf favesik',
'block-log-flags-nocreate' => 'Pataredura gritegirana',
'block-log-flags-noemail'  => 'e-mail elekan',
'ipb_expiry_invalid'       => "temps d'expiration invalide.",
'ipb_already_blocked'      => '"$1" ixam tir elekan',
'ip_range_invalid'         => 'IP elega mewadafa.',
'blockme'                  => 'Zo eleká !',
'proxyblocker'             => 'Elekasiki va proxy',
'proxyblocker-disabled'    => 'Bati fli tir metegirafi.',
'proxyblockreason'         => "Votre ip a été bloquée car c'est un proxy ouvert. Merci de contacter votre fournisseur d'accès internet ou votre support technique et de l'informer de ce problème de sécurité.",
'proxyblocksuccess'        => 'Tenuweyes.',
'sorbsreason'              => "Rinafe IP mane wetce fenkunafi 'proxy' koe DNSBL faveni gan {{SITENAME}} zo vexalar.",

# Developer tools
'lockdb'              => 'Ixatcara va origak',
'unlockdb'            => 'Dimixatcara va origak',
'lockdbtext'          => "Le verrouillage de la base de données empêchera tous les utilisateurs de modifier des pages, de sauvegarder leurs préférences, de modifier leur liste de suivi et d'effectuer toutes les autres opérations nécessitant des modifications dans la base de données.
Veuillez confirmer que c'est bien là ce que vous voulez faire et que vous débloquerez la base dès que votre opération de maintenance sera terminée.",
'unlockdbtext'        => "Le déverrouillage de la base de données permettra à nouveau à tous les utilisateurs de modifier des pages, de mettre à jour leurs préférences et leur liste de suivi, ainsi que d'effectuer les autres opérations nécessitant des modifications dans la base de données.

Veuillez confirmer que c'est bien là ce que vous voulez faire.",
'lockconfirm'         => 'Oui, je confirme que je souhaite verrouiller la base de données.',
'unlockconfirm'       => 'Oui, je confirme que je souhaite déverrouiller la base de données.',
'lockbtn'             => 'Ixatcara va origak',
'unlockbtn'           => 'Dimixatcara va origak',
'locknoconfirm'       => 'Rin va gruyerakiray me al prakel.',
'lockdbsuccesssub'    => 'Ixatcanhara va origak.',
'unlockdbsuccesssub'  => 'Dimixatcayan origak.',
'lockdbsuccesstext'   => "Origak ke {{SITENAME}} al zo ixatcar.

N'oubliez pas de la déverrouiller lorsque vous aurez terminé votre opération de maintenance.",
'unlockdbsuccesstext' => 'La base de données de {{SITENAME}} est déverrouillée.',
'databasenotlocked'   => 'Origak me zo ixatcar.',

# Move page
'move-page'               => 'Arrundara va $1',
'move-page-legend'        => 'Va teliz tolyoltá',
'movepagetext'            => "Utilisez le formulaire ci-dessous pour renommer un article, en déplaçant toutes ses versions antérieures vers le nouveau nom.

Le titre précédent deviendra une page de redirection vers le nouveau titre. Les liens vers l'ancien titre ne seront pas modifiés et la page discussion, si elle existe, ne sera pas déplacée.

'''ATTENTION!'''
Il peut s'agir d'un changement radical et inattendu pour un article souvent consulté; assurez-vous que vous en comprenez bien les conséquences avant de procéder.",
'movepagetalktext'        => "La page de discussion associée, si présente, sera automatiquement renommée avec '''sauf si:'''
*Vous renommez une page vers un autre espace,
*Une page de discussion existe déjà avec le nouveau nom, ou
*Vous avez désélectionné le bouton ci-dessous.

Dans ce cas, vous devrez renommer ou fusionner la page manuellement si vous le désirez.",
'movearticle'             => 'Tolyoltara va teliz',
'movenologin'             => 'Dogluyariskaf',
'movenologintext'         => 'Ede rin va teliz co-djutolyoltal, wetce koverteyen favesik gotil [[Special:UserLogin|dogluyarakiraf]].',
'movenotallowed'          => 'Rin va bu me ronovarrundal.',
'cant-move-user-page'     => 'Rin va favesikbu (rade volveybu) me ronovarrundal.',
'cant-move-to-user-page'  => 'Rin va bu ika favesikbu (rade favesikafu volveybu) me ronovarrundal.',
'newtitle'                => 'Warzaf vergumvelt',
'move-watch'              => 'Busuzdara',
'movepagebtn'             => 'Tolyoltara va teliz',
'pagemovedsub'            => 'Tolyoltanhara',
'movepage-moved'          => '\'\'\'"$1" zo arrundayar kal "$2"\'\'\'',
'articleexists'           => 'Milvergumveltaf teliz ixam krulder, oke kiblayan vergumvelt tir meenaf. Va ar kiblal !',
'cantmove-titleprotected' => 'Va bu me milinde rotarrundal kire warzaf vergumvelt icde redura zo nendar',
'talkexists'              => "La page elle-même a été déplacée avec succès, mais la page de discussion n'a pas pu être déplacée car il en existait déjà une sous le nouveau nom. S'il vous plait, fusionnez les manuellement.",
'movedto'                 => 'Tolyoltayan ton',
'movetalk'                => "Renommer aussi la page « discussion », s'il y a lieu.",
'move-subpages'           => 'Arrundara va volveybueem',
'move-talk-subpages'      => 'Arrundara va volveybueem ke prilarabu',
'movepage-page-exists'    => '$1 bu ixam tir nume me balkon zo rotolsuter.',
'movepage-page-moved'     => '$1 bu ko $2 su zo arrundar.',
'movepage-page-unmoved'   => '$1 bu ko $2 me al zo rotarrundar.',
'1movedto2'               => '[[$1]] arbureyen kal [[$2]]',
'1movedto2_redir'         => '[[$1]] arbureyen kal [[$2]] (graskara)',
'movelogpage'             => 'Arrundara va "log" bu',
'movelogpagetext'         => 'Vleveon vexala dem arrundayanu bu se.',
'movereason'              => 'Lazava :',
'revertmove'              => 'dimplekura',
'delete_and_move'         => 'Sulara is arplekura',
'delete_and_move_text'    => '==Sulara eruna==
"[[:$1]]" kalefu bu ixam krulder.
Kas ta askira va darka ta arrundara va in djusulal ?',
'delete_and_move_confirm' => 'En, va bu sulal !',
'delete_and_move_reason'  => 'Sulayan ta dark ta arrundara',
'selfmove'                => 'Malef vergumvelt isu kalef tid mil;
bu ika int me zo rotarrundar.',
'imageinvalidfilename'    => 'Jalaf iyeltakyolt tir meenaf',

# Export
'export'            => 'Budivburera',
'exporttext'        => 'Kan XML breviz va krent is izvot ke tanu bu ik bulospa rodivburel; ko ari wiki flisi kan MediaWiki talpey daneks bam rokoburer ike rotartazukar ike ta pilkafa unera rogiwar.',
'exportcuronly'     => 'Anton divburera va izvotiskaf noelaf siatos',
'export-submit'     => 'Divburera',
'export-addcattext' => 'Buloplekura mal loma :',
'export-addcat'     => 'Loplekura',
'export-download'   => 'Iyeltakkorafa giwara',
'export-templates'  => 'Kodoplekura va teza',

# Namespace 8 related
'allmessages'               => 'Vexala dem bolkstakseem',
'allmessagesname'           => 'Yolt',
'allmessagesdefault'        => 'Omavaf krent',
'allmessagescurrent'        => 'Noelaf krent',
'allmessagestext'           => 'Batcoba tir vexala dem bolkstakseem koe MediaWiki yoltxo.

Va [http://www.mediawiki.org/wiki/Localisation MediaWiki Localisation] is [http://translatewiki.net translatewiki.net] vay woral ede va tulizukara va Mediawiki co-rowebel.',
'allmessagesnotsupportedDB' => "Batu bu me zo rofaver kire '''\$wgUseDatabaseMessages''' mea tir tegis.",

# Thumbnails
'thumbnail-more'           => 'Tulogijara',
'filemissing'              => 'Gracaf iyeltak',
'thumbnail_error'          => 'Va $1 aluk redujara',
'djvu_page_error'          => 'DjVu bu dive kima',
'djvu_no_xml'              => 'XML Vexalara va DjVu iyeltak tir merotisa',
'thumbnail_invalid_params' => 'Meenaf alukdor',
'thumbnail_dest_directory' => 'Redura va kalbonja tir merotisa',

# Special:Import
'import'                     => 'Bukoburera',
'importinterwiki'            => 'Transwiki koburera',
'import-interwiki-source'    => 'Wiki ik bu klita :',
'import-interwiki-history'   => 'Ksudara va kot izvotsiatos ke batu bu',
'import-interwiki-submit'    => 'Koburera',
'import-interwiki-namespace' => 'Graskarafo yoltxo :',
'import-upload-filename'     => 'Iyeltakyolt :',
'import-comment'             => 'Sebuks :',
'importtext'                 => 'Exportez un fichier depuis le wiki source en utilisant la fonction Special:Export, sauvez la page sur votre disque puis envoyez là ici.',
'importstart'                => 'Kobures va bu...',
'import-revision-count'      => '$1 {{PLURAL:$1|betaks|betaks}}',
'importnopages'              => 'Nedoyu gokoburenu bu.',
'importfailed'               => 'Koburejera : $1',
'importunknownsource'        => 'Megrupen kobureraf klitord',
'importcantopen'             => 'Merotisa fenkura va koburen iyeltak',
'importbadinterwiki'         => 'Interwiki gluyasikiji',
'importnotext'               => 'Vlardaf ok krentiskaf',
'importsuccess'              => 'Koburenhera !',
'importhistoryconflict'      => "Il y a un conflit dans l'historique des versions (cette page à peut être déjà été importée avant)",
'importnofile'               => 'Mek iyeltak al zo kalvajar.',
'importuploaderrorsize'      => 'Kalvajara va iyeltak al rodjer. Bat iyeltak tir logijaf dam rictan kalvajaralum.',
'importuploaderrorpartial'   => 'Kalvajara va iyeltak al rodjer. Iyeltak anton pakon al zo kalvajar.',
'import-noarticle'           => 'Me gokoburenu bu !',
'xml-error-string'           => '$1 moe $2 conha, $3 briz ($4 byte): $5',

# Import log
'importlogpage'                    => 'Koburera va "log" bu',
'import-logentry-upload'           => 'kobureyen [[$1]] kan iyeltakkalvajara',
'import-logentry-upload-detail'    => '$1 {{PLURAL:$1|betaks|betaks}}',
'import-logentry-interwiki-detail' => '$1 {{PLURAL:$1|betaks|betaks}} male $2',

# Tooltip help for the actions
'tooltip-pt-userpage'             => 'Jinafu favesikbu',
'tooltip-pt-mytalk'               => 'Jinafo keyaksexo',
'tooltip-pt-anontalk'             => 'Keyaksera va betaks male bate IP mane',
'tooltip-pt-preferences'          => 'Jinaf lodamaceem',
'tooltip-pt-watchlist'            => 'Rinon suzdan betan bueem',
'tooltip-pt-mycontris'            => 'Jinaf webekseem',
'tooltip-pt-login'                => 'Pataredura zo koldar voxe me tir vrebafa.',
'tooltip-pt-anonlogin'            => 'Zo bristul da va int kogluyal, wori batcoba me tir vrebafa.',
'tooltip-pt-logout'               => 'Voldogluyara',
'tooltip-ca-talk'                 => 'Keyaksera va telizbu',
'tooltip-ca-edit'                 => 'Va batu bu robetal. Va "Abdinedira" vulegasiki abdi giwara vay favel !',
'tooltip-ca-addsection'           => 'Bokara va warzaf gabot',
'tooltip-ca-viewsource'           => 'Batu bu zo nendar. Rin va klita rowil.',
'tooltip-ca-history'              => 'Abdif siatoseem ke batu bu.',
'tooltip-ca-protect'              => 'Nendara va batu bu',
'tooltip-ca-delete'               => 'Sulara va batu bu',
'tooltip-ca-undelete'             => 'Dimplekura va betakseem va batu bu abdi sulara',
'tooltip-ca-move'                 => 'Arrundara va batu bu',
'tooltip-ca-watch'                => 'Kosuzdasikira va batu bu',
'tooltip-ca-unwatch'              => 'Divsuzdasikira va batu bu',
'tooltip-search'                  => 'Aneyara vanmia bati wiki',
'tooltip-search-go'               => 'Ede bu dem bat tageltaf yolt tir kalon grablé',
'tooltip-search-fulltext'         => 'Aneyara va bu dem bat krent',
'tooltip-p-logo'                  => 'Emudexo',
'tooltip-n-mainpage'              => 'Va emudexo woral !',
'tooltip-n-mainpage-description'  => 'Va emudexo woral !',
'tooltip-n-portal'                => 'Icde abdumimaks, gonaskinaceem ise lize rotrasil',
'tooltip-n-currentevents'         => 'Trasira va icdefa giva icde noeltaf bifeem',
'tooltip-n-recentchanges'         => 'Noeltaf betakseem koe wiki.',
'tooltip-n-randompage'            => 'Vajara va xuyavafu bu',
'tooltip-n-help'                  => 'Trasixo.',
'tooltip-t-whatlinkshere'         => 'Batliz gluyas wikibueem',
'tooltip-t-recentchangeslinked'   => 'Noeltaf betakseem koe bu yo skedasu va batu',
'tooltip-feed-rss'                => 'RSS rust icde batu bu',
'tooltip-feed-atom'               => 'Atom rust icde batu bu',
'tooltip-t-contributions'         => 'Wira va webekseem ke bat favesik',
'tooltip-t-emailuser'             => 'Staksara pu bat favesik',
'tooltip-t-upload'                => 'Kalvajara va iyeltak',
'tooltip-t-specialpages'          => 'Aptabueem',
'tooltip-t-print'                 => 'Rorubian siatos ke batu bu',
'tooltip-t-permalink'             => 'Elubkafi gluyasiki va bat busiatos',
'tooltip-ca-nstab-main'           => 'Rupera va cekbu',
'tooltip-ca-nstab-user'           => 'Wira va favesikbu',
'tooltip-ca-nstab-media'          => 'Wira va kanacabu',
'tooltip-ca-nstab-special'        => 'Batu bu tis aptafu bu vaon me robetal',
'tooltip-ca-nstab-project'        => 'Wira va abdumimaks bu',
'tooltip-ca-nstab-image'          => 'Wira va iyeltakbu',
'tooltip-ca-nstab-mediawiki'      => 'Wira va bolkstaksa',
'tooltip-ca-nstab-template'       => 'Wira va teza',
'tooltip-ca-nstab-help'           => 'Wira va pomarabu',
'tooltip-ca-nstab-category'       => 'Wira va loma bu',
'tooltip-minoredit'               => 'Va bat betamaks tcalá',
'tooltip-save'                    => 'Va jinaf betaks giwá',
'tooltip-preview'                 => 'Va rinaf betakseem abdinedil, abdi da giwal va batcoba vay favel !',
'tooltip-diff'                    => 'Nedira va rinaf krentaf betakseem.',
'tooltip-compareselectedversions' => 'Disukera va amidaceem wal toloy reban siatos ke batu bu.',
'tooltip-watch'                   => 'Ko intafi suzdasiki va batu bu loplekú',
'tooltip-recreate'                => 'Tolredura va bu damo abdifa sulara',
'tooltip-upload'                  => 'Kalvajara',
'tooltip-rollback'                => '"Rollback" kan tanoya vulegara va betaks va batu bu kal ironokaf webesik kuider',
'tooltip-undo'                    => '"Dimbetara"  va bata betara kuider ise va tazukasiki abdiwison fenkur.
Ise va bazera va lazava ko vildeks nover.',

# Metadata
'nodublincore'      => 'Les métadonnées « Dublin Core RDF » sont désactivées sur ce serveur.',
'nocreativecommons' => 'Les données méta « Creative Commons RDF » sont désactivées sur ce serveur.',
'notacceptable'     => 'Ce serveur wiki ne peut pas fournir les données dans un format que votre client est capable de lire.',

# Attribution
'anonymous'        => 'Yoltiskaf {{PLURAL:$1|favesik|favesik}} va {{SITENAME}}',
'siteuser'         => '$1 favesik va {{SITENAME}}',
'lastmodifiedatby' => 'Batu bu ironokon zo betayar ba $2, $1 gan $3.',
'othercontribs'    => 'Omavaf gu kobara ke $1.',
'others'           => 'ar',
'siteusers'        => '{{PLURAL:$2|favesik|favesik}} $1',
'creditspage'      => 'Rostbu',

# Spam protection
'spamprotectiontitle' => 'Filtre de protection anti-polluriels',
'spamprotectiontext'  => 'La création ou sauvegarde de la page a été automatiquement bloquée par le filtre anti-polluriel. Ceci est probablement causé par l’inclusion d’un lien vers un site externe apparaissant sur la liste noire.',
'spamprotectionmatch' => 'Le texte suivant a déclenché le détecteur de spam: $1',
'spambot_username'    => 'Tucuara va MediaWiki "spam"
MediaWiki spam cleanup',
'spam_reverting'      => 'Dimplekura va ironokaf siatos meruldas va gluyasiki do $1',
'spam_blanking'       => 'Kot betaks ruldas va gluyasiki do $1, tuvlardara',

# Info page
'infosubtitle'   => 'Bugiva',
'numedits'       => 'Telizota (teliz) : $1',
'numtalkedits'   => 'Ota dem betaks (prilarabu): $1',
'numwatchers'    => 'Disukerota : $1',
'numauthors'     => 'Ota dem amidaf sutesik (teliz): $1',
'numtalkauthors' => 'Ota va amidaf sutesik (prilarabu) : $1',

# Math options
'mw_math_png'    => 'Toujours produire une image PNG',
'mw_math_simple' => 'HTML si très simple, autrement PNG',
'mw_math_html'   => 'HTML si possible, autrement PNG',
'mw_math_source' => 'Laisser le code TeX original',
'mw_math_modern' => 'Pour les navigateurs modernes',
'mw_math_mathml' => 'MathML',

# Math errors
'math_failure'          => 'Erreur math',
'math_unknown_error'    => 'erreur indéterminée',
'math_unknown_function' => 'megrupen fliok',
'math_lexing_error'     => 'ravlemafa rokla',
'math_syntax_error'     => 'erurafa rokla',
'math_image_error'      => "La conversion en PNG a échouée, vérifiez l'installation de Latex, dvips, gs et convert",
'math_bad_tmpdir'       => 'Redura ik sutera ko ugaloraxo tid merotisa',
'math_bad_output'       => 'Redura ik sutera ko divaxo tid merotisa',
'math_notexvc'          => "L'éxécutable « texvc » est introuvable. Lisez math/README pour le configurer.",

# Patrolling
'markaspatrolleddiff'                 => 'Marquer comme vérifiée',
'markaspatrolledtext'                 => 'Marquer cet article comme vérifié',
'markedaspatrolled'                   => 'Marqué comme vérifié',
'markedaspatrolledtext'               => 'La version sélectionnée a été marquée comme vérifiée.',
'rcpatroldisabled'                    => 'Fiera va Noeltaf Betakseem gritegirana',
'rcpatroldisabledtext'                => "La fonctionnalité de surveillance des modifications récentes n'est pas activée.",
'markedaspatrollederror'              => 'Va fieks me rotcalar',
'markedaspatrollederrortext'          => 'Ta fieyena tcalara va betaks gobazel.',
'markedaspatrollederror-noautopatrol' => 'Va intaf betaks fienon me rotcalal.',

# Patrol log
'patrol-log-page' => '"Log" triosusiki va fiereem',
'patrol-log-line' => 'tcalara va $1 ke $2 : $3 fieyen',
'patrol-log-auto' => '(mivaskon)',

# Image deletion
'deletedrevision'                 => '$1 sulayan guazaf betaks',
'filedeleteerror-short'           => 'Rokla sulason va $1 iyeltak',
'filedeleteerror-long'            => 'Rokla se sokiyisa sulason va iyeltak :

$1',
'filedelete-missing'              => '"$1" iyeltak me rosular kire me krulder.',
'filedelete-old-unregistered'     => '"$1" bazen betaks me tir koe origak.',
'filedelete-current-unregistered' => '"$1" bazen iyeltak me tir koe origak.',

# Browsing diffs
'previousdiff' => '← Abdifa amidaca',
'nextdiff'     => 'Radimifa amidaca →',

# Media information
'thumbsize'            => 'Aluklum :',
'widthheightpage'      => '$1×$2, $3 {{PLURAL:$3|bu|bu}}',
'file-info'            => '(iyeltakaldo : $1, MIME ord : $2)',
'file-info-size'       => '($1 × $2 pixel, iyeltakaldo : $3, MIME ord : $4)',
'file-nohires'         => '<small>Me roderaykan logijaf lum.</small>',
'svg-long-desc'        => '(SVG iyeltak, prekson $1 × $2 pixels, iyeltakaldo : $3)',
'show-big-image'       => 'Geltraf lum',
'show-big-image-thumb' => '<small>Lum ke bata abdinedira : $1 × $2 pixels</small>',

# Special:NewFiles
'newimages'             => 'Warzaf ewaviyeltak yo',
'imagelisttext'         => "Tir vexala dem '''$1''' {{PLURAL:$1|iyeltak|iyeltak}} $2 pulana.",
'newimages-summary'     => 'Batu aptafu bu va ironokaf kalvajayan iyeltakeem nedir.',
'newimages-legend'      => 'Espara',
'newimages-label'       => 'Iyeltak (ok ki) :',
'showhidebots'          => '($1 stiernik)',
'noimages'              => 'Mecoba rowina',
'ilsubmit'              => 'Aneyara',
'bydate'                => 'kan evla',
'sp-newimages-showfrom' => 'Nedira va warzaf iyeltak mali $1 ba $2',

# Bad image list
'bad_image_list' => 'Breviz tir bat :

Anton vexalolk (conha dem * toza) zo krafiar. Teli taneafi gluyasiki moe conha lanon tir van ewavaja.
Kotari milconhafi gluyasiki roklon zo krafiar.',

# Metadata
'metadata'          => 'Veyorigeem',
'metadata-help'     => 'Bat iyeltak va loplekufa giva ruldar. Bata giva male reduso ok tuotukaso wanuyasiko iku ksudasiko lanon zo loplekuyur. Ede iyeltak malion di zo betayar, konaka pinta va betayana ewava rotir me co-tcazenhed.',
'metadata-expand'   => 'Nedira va pintapeem',
'metadata-collapse' => 'Palsera va pintapeem',
'metadata-fields'   => 'Divatceson va veyorigak EXIF veyorigafa rapta se vexalana koe bata staksa zo ko ewavabu zo kodoplekutud. Ara rapta omavon zo palseter.
* make
* model
* datetimeoriginal
* exposuretime
* fnumber
* isospeedratings
* focallength',

# EXIF tags
'exif-imagewidth'                  => 'Mantuca',
'exif-imagelength'                 => 'Ontinuca',
'exif-compression'                 => 'Raxivaracave',
'exif-photometricinterpretation'   => "'Pixel' ponara",
'exif-orientation'                 => 'Woyok',
'exif-samplesperpixel'             => 'Spertota',
'exif-planarconfiguration'         => 'Vuks ke origeem',
'exif-ycbcrpositioning'            => 'Y is C tirka',
'exif-xresolution'                 => "Résolution de l'image en largeur",
'exif-yresolution'                 => "Résolution de l'image en hauteur",
'exif-stripoffsets'                => 'Xo ke ewavorigeem',
'exif-rowsperstrip'                => 'Blayblayon conhota',
'exif-jpeginterchangeformat'       => 'Position du SOI JPEG',
'exif-jpeginterchangeformatlength' => 'Taille en octet des données JPEG',
'exif-transferfunction'            => 'Arburerafli',
'exif-datetime'                    => 'Evla is bartiv va betara va iyeltak',
'exif-imagedescription'            => 'Ewavavergumvelt',
'exif-make'                        => 'Iasik va de',
'exif-model'                       => 'Deteza',
'exif-software'                    => 'Faven talpeyot',
'exif-artist'                      => 'Askisik',
'exif-copyright'                   => 'Digisik va copyright',
'exif-exifversion'                 => 'Version exif',
'exif-colorspace'                  => 'Ksevaxo',
'exif-compressedbitsperpixel'      => 'Ewavaraxivaracave',
'exif-pixelydimension'             => 'Mante ke enafa ewava',
'exif-pixelxdimension'             => 'Ontine ke enafa ewava',
'exif-makernote'                   => 'Notes du fabricant',
'exif-usercomment'                 => 'Favesikaf sebuks',
'exif-relatedsoundfile'            => 'Fichier audio lié',
'exif-datetimeoriginal'            => 'Viel is gemelt ke nasbara va origeem',
'exif-exposuretime'                => 'Wonarugal',
'exif-fnumber'                     => 'F Ota',
'exif-exposureprogram'             => 'Wonaratalpey',
'exif-isospeedratings'             => 'ISO kalieka',
'exif-shutterspeedvalue'           => 'Kaliuca ke budesiki',
'exif-aperturevalue'               => 'Fenkura',
'exif-brightnessvalue'             => 'Afiuca',
'exif-subjectdistance'             => 'Soluma va plek',
'exif-lightsource'                 => 'Afiklita',
'exif-flash'                       => 'Divafira',
'exif-subjectarea'                 => 'Lizuxo ke plek',
'exif-flashenergy'                 => 'Divafirafa',
'exif-subjectlocation'             => 'Xo ke plek',
'exif-exposureindex'               => 'Konedireka',
'exif-sensingmethod'               => 'Siakranuva',
'exif-filesource'                  => 'Iyeltakklita',
'exif-scenetype'                   => 'Nakilord',
'exif-cfapattern'                  => 'CFA fum',
'exif-exposuremode'                => 'Konedirinda',
'exif-whitebalance'                => 'Balance des blancs',
'exif-gaincontrol'                 => 'Stujera va nakila',
'exif-contrast'                    => 'Kevaxanuca',
'exif-saturation'                  => 'Keldelanuca',
'exif-sharpness'                   => 'Gentim',
'exif-imageuniqueid'               => 'Tanewava ID',
'exif-gpslatituderef'              => 'Lentef ok geef laksiwak',
'exif-gpslatitude'                 => 'Laksiwak',
'exif-gpslongituderef'             => 'Ronef ok taltef wak',
'exif-gpslongitude'                => 'Wak',
'exif-gpsaltituderef'              => 'Ontinukeka',
'exif-gpsaltitude'                 => 'Ontinuk',
'exif-gpsmeasuremode'              => 'Sabegaracave',
'exif-gpsdop'                      => 'Sabegarelimuca',
'exif-gpsspeedref'                 => 'Kaliucolk',
'exif-gpstrackref'                 => 'Kallizirafa giva',
'exif-gpstrack'                    => 'Lizirania',
'exif-gpsimgdirectionref'          => 'Ewavaniafa giva',
'exif-gpsimgdirection'             => 'Ewavania',
'exif-gpsdestlatituderef'          => 'Kallaksiwakafa giva',
'exif-gpsdestlatitude'             => 'Kof laksiwak',
'exif-gpsdestlongituderef'         => 'Kalwakafa giva',
'exif-gpsdestlongitude'            => 'Kof wak',
'exif-gpsdestdistanceref'          => 'Kalsolumafa giva',
'exif-gpsdestdistance'             => 'Kofa soluma',
'exif-gpsdatestamp'                => 'GPS evla',

# EXIF attributes
'exif-compression-1' => 'Raxivariskafa',

'exif-unknowndate' => 'Megrupena evla',

'exif-orientation-1' => 'Preksafa',
'exif-orientation-2' => 'Inversée horizontalement',
'exif-orientation-3' => 'Tournée de 180°',
'exif-orientation-4' => 'Inversée verticalement',
'exif-orientation-5' => 'Tournée de 90° à gauche et inversée verticalement',
'exif-orientation-6' => 'Tournée de 90° à droite',
'exif-orientation-7' => 'Tournée de 90° à droite et inversée verticalement',
'exif-orientation-8' => 'Tournée de 90° à gauche',

'exif-componentsconfiguration-0' => "n'existe pas",

'exif-exposureprogram-0' => 'Metentuyun',
'exif-exposureprogram-1' => 'Nubedaf',
'exif-exposureprogram-2' => 'Preksaf talpey',
'exif-exposureprogram-3' => 'Abdukuca ke fenkura',
'exif-exposureprogram-4' => 'Abdukuca ke budesiki',

'exif-subjectdistance-value' => '$1 metrolk',

'exif-meteringmode-0'   => 'Megrupen',
'exif-meteringmode-1'   => 'Mialuk',
'exif-meteringmode-5'   => 'Fum',
'exif-meteringmode-6'   => 'Pakaf',
'exif-meteringmode-255' => 'Ar',

'exif-lightsource-0'   => 'Megrupen',
'exif-lightsource-1'   => 'Afiz',
'exif-lightsource-4'   => 'Divafira',
'exif-lightsource-9'   => 'Sazanh',
'exif-lightsource-10'  => 'Rujodaf saz',
'exif-lightsource-11'  => 'Izga',
'exif-lightsource-17'  => 'A preksayafi afi',
'exif-lightsource-18'  => 'B preksayafi afi',
'exif-lightsource-19'  => 'C preksayafi afi',
'exif-lightsource-255' => 'Ara afiklita',

'exif-focalplaneresolutionunit-2' => "'inch'",

'exif-sensingmethod-1' => 'Metentun',

'exif-customrendered-0' => 'Preksafa abduaxa',
'exif-customrendered-1' => 'Favesikafa abduaxa',

'exif-exposuremode-0' => 'Mivaskafa konedira',
'exif-exposuremode-1' => 'Nubedafa konedira',

'exif-scenecapturetype-0' => 'Preksayon',
'exif-scenecapturetype-1' => 'Patctoykoron',
'exif-scenecapturetype-2' => 'Deltkoron',
'exif-scenecapturetype-3' => 'Mielnakila',

'exif-gaincontrol-0' => 'Mek',
'exif-gaincontrol-1' => 'Lopoamara',
'exif-gaincontrol-2' => 'Lopoapara',
'exif-gaincontrol-3' => 'Lepoamara',
'exif-gaincontrol-4' => 'Lepoapara',

'exif-contrast-0' => 'Prekson',
'exif-contrast-1' => 'Omon',
'exif-contrast-2' => 'Ontinon',

'exif-saturation-0' => 'Prekson',
'exif-saturation-1' => 'Keldelamara',
'exif-saturation-2' => 'Keldelapara',

'exif-sharpness-0' => 'Prekson',
'exif-sharpness-1' => 'Omon',
'exif-sharpness-2' => 'Ontinon',

'exif-subjectdistancerange-0' => 'Megrupenon',
'exif-subjectdistancerange-2' => 'Budera va wira',
'exif-subjectdistancerange-3' => 'Solumawira',

# Pseudotags used for GPSLatitudeRef and GPSDestLatitudeRef
'exif-gpslatitude-n' => 'Lentelaksiwak',
'exif-gpslatitude-s' => 'Gelaksiwak',

# Pseudotags used for GPSLongitudeRef and GPSDestLongitudeRef
'exif-gpslongitude-e' => 'Ronewak',
'exif-gpslongitude-w' => 'Taltewak',

'exif-gpsstatus-a' => 'Dun sabeson',

'exif-gpsmeasuremode-2' => '2-lumafa sabera',
'exif-gpsmeasuremode-3' => '3-lumafa sabera',

# Pseudotags used for GPSSpeedRef
'exif-gpsspeed-k' => 'Bartivon decitmetrolk se',
'exif-gpsspeed-m' => "Bartivon 'mile'",
'exif-gpsspeed-n' => 'Webokeem',

# Pseudotags used for GPSTrackRef, GPSImgDirectionRef and GPSDestBearingRef
'exif-gpsdirection-t' => 'Ageltania',
'exif-gpsdirection-m' => 'Zatnia',

# External editor support
'edit-externally'      => 'Betara va bat iyeltak faveson va divef talpey',
'edit-externally-help' => '(Ta lo giva va [http://www.mediawiki.org/wiki/Manual:External_editors setup instructions] disukel !)',

# 'all' in various places, this might be different for inflected languages
'recentchangesall' => 'kot',
'imagelistall'     => 'kot',
'watchlistall2'    => 'kot',
'namespacesall'    => 'koto',
'monthsall'        => 'kot',

# E-mail address confirmation
'confirmemail'             => 'Va e-mail gruyel',
'confirmemail_noemail'     => 'Bazene "email" mane koe rinaf [[Special:Preferences|favesikaf lodamaceem]] me tir enafe.',
'confirmemail_text'        => "Ce wiki nécessite la vérification de votre adresse email avant de pouvoir utiliser toute fonction de messagerie. Utilisez le bouton ci dessous pour envoyer un email de confirmation à votre adresse. L'email contiendra un lien contenant un code, chargez ce lien dans votre navigateur pour valider votre adresse.",
'confirmemail_send'        => 'Envoyer un code de confirmation',
'confirmemail_sent'        => 'Email de confirmation envoyé',
'confirmemail_oncreate'    => "Gruyerafa beksa pu rinafe 'email' mane su zo staksar.
Ta pilkomodara bata beksa tir mevrebafa vexe ta tutegirara va 'email' fli koe wiki zo godafur.",
'confirmemail_sendfailed'  => '{{SITENAME}} va gruyes e-mail me rostaksel.
Va rinafe e-mail mane vay ageltal !

Rodjeyesi staksasiki : $1',
'confirmemail_invalid'     => 'Code de confirmation incorrect. Le code a peut être expiré',
'confirmemail_needlogin'   => 'Ta gruyera va "email" mane rin va $1 olegal.',
'confirmemail_success'     => 'Votre email est confirmée. Vous pouvez maintenant vous connecter et profiter du wiki.',
'confirmemail_loggedin'    => 'Votre adresse est maintenant confirmée',
'confirmemail_error'       => 'Un problème est survenu en voulant enregistrer votre confirmation',
'confirmemail_subject'     => "Confirmation d'email pour {{SITENAME}}",
'confirmemail_body'        => 'Someone, probably you, from IP address $1,
has registered an account "$2" with this e-mail address on {{SITENAME}}.

To confirm that this account really does belong to you and activate
e-mail features on {{SITENAME}}, open this link in your browser:

$3

If you did *not* register the account, follow this link
to cancel the e-mail address confirmation:

$5

This confirmation code will expire at $4.',
'confirmemail_invalidated' => "Waljoana gruyera va 'e-mail' mane",
'invalidateemail'          => "Kuidera va 'email' gruyera",

# Scary transclusion
'scarytranscludetoolong' => '[URL tir abrotcarsaf]',

# Trackbacks
'trackbackremove'   => '([$1 Sulara])',
'trackbacklink'     => 'Sledasiki',
'trackbackdeleteok' => 'Sledasiki tir sulanhayani.',

# Delete conflict
'deletedwhileediting' => "'''Obral''' : Batu bu zo sulayar vielu toz betayal !",
'recreate'            => 'Tolredura',

# action=purge
'confirm_purge_button' => 'En',
'confirm-purge-top'    => 'Palsexo ke batu bu zo gokarler ?',

# Multipage image navigation
'imgmultipageprev' => '← abduebu',
'imgmultipagenext' => 'radimebu →',
'imgmultigo'       => 'Askí !',
'imgmultigoto'     => 'Grablera kal $1 bu',

# Table pager
'ascending_abbrev'         => 'tid-',
'descending_abbrev'        => 'tit-',
'table_pager_next'         => 'Radimefu bu',
'table_pager_prev'         => 'Abduefu bu',
'table_pager_first'        => 'Taneafu bu',
'table_pager_last'         => 'Ironokafu bu',
'table_pager_limit'        => 'Nedira va buon $1 ra',
'table_pager_limit_submit' => 'Askira',
'table_pager_empty'        => 'Nedoy trasiks',

# Auto-summaries
'autosumm-blank'   => 'Sulas va bucek',
'autosumm-replace' => "Ikaplekura va bu kan '$1'",
'autoredircomment' => 'Graskara va [[$1]]',
'autosumm-new'     => "Warzafu bu kan '$1'",

# Live preview
'livepreview-loading' => 'Vajas…',
'livepreview-ready'   => 'Vajas... Gadion !',
'livepreview-failed'  => 'Geltrafa abdiwira keluyuna ! Va preksafa abdiwira lwil !',
'livepreview-error'   => 'Keluyuna dogluyara va : $1 "$2". Va preksafa abdiwira lwil !',

# Friendlier slave lag warnings
'lag-warn-normal' => 'Betaks skuyun weti le $1 {{PLURAL:$1|verast|verast}} batliz me zo kovexalatar.',

# Watchlist editor
'watchlistedit-numitems'      => 'Rinafi suzdasiki va {{PLURAL:$1|1 vergumvelt|$1 vergumvelt}} ruldar, luke prilarabueem.',
'watchlistedit-noitems'       => 'Rinafi suzdasiki va mek vergumvelt ruldar.',
'watchlistedit-normal-title'  => 'Betara va suzdasiki',
'watchlistedit-normal-legend' => 'Divsuzdasikira va vergumvelt',
'watchlistedit-normal-submit' => 'Tioltera va vergumvelt',
'watchlistedit-normal-done'   => '$1 vergumvelt kou rinafi suzdasiki su zo tiolted :',
'watchlistedit-raw-title'     => 'Betara va rilafi suzdasiki',
'watchlistedit-raw-legend'    => 'Betara va rilafi suzdasiki',
'watchlistedit-raw-titles'    => 'Vergumvelteem :',
'watchlistedit-raw-submit'    => 'Nuskera va suzdasiki',
'watchlistedit-raw-done'      => 'Rinafi suzdasiki su zo nusker.',
'watchlistedit-raw-added'     => '$1 vergumvelt su zo loplekud :',
'watchlistedit-raw-removed'   => '{{PLURAL:$1|1 vergumvelt al zo arrundar |$1 vergumvelt al zo arrundad}} :',

# Watchlist editing tools
'watchlisttools-view' => 'Wira va icdef betakseem',
'watchlisttools-edit' => 'Wira va suzdasiki isu betara',
'watchlisttools-raw'  => 'Betara va suzdasiki',

# Core parser functions
'unknown_extension_tag' => '"$1" megrupena divatcenafa tcala',

# Special:Version
'version'                          => 'Siatos',
'version-extensions'               => 'Inkeyeni divatcesiki se',
'version-specialpages'             => 'Aptaf bueem',
'version-parserhooks'              => 'Exulerademi',
'version-variables'                => 'Remvodeem',
'version-other'                    => 'Ar',
'version-hooks'                    => 'Demi se',
'version-extension-functions'      => 'Divatces fliok se',
'version-parser-extensiontags'     => 'Exulerafa divatcenafa tcala',
'version-parser-function-hooks'    => 'Exuleraflidemi',
'version-skin-extension-functions' => 'Wiatezaf divatces fliok se',
'version-hook-name'                => 'Demiyolt',
'version-hook-subscribedby'        => 'Wimpayan gan',
'version-version'                  => '(Siatos $1)',
'version-license'                  => 'Sorta',
'version-software'                 => 'Inkeyen talpeyot',
'version-software-product'         => 'Warzeks',
'version-software-version'         => 'Siatos',

# Special:FilePath
'filepath'        => 'Iyeltakkelda',
'filepath-page'   => 'Iyeltak :',
'filepath-submit' => 'Kelda',

# Special:FileDuplicateSearch
'fileduplicatesearch'          => 'Aneyara va jontolaf iyeltak',
'fileduplicatesearch-legend'   => 'Aneyara va jontolaca',
'fileduplicatesearch-filename' => 'Iyeltakyolt :',
'fileduplicatesearch-submit'   => 'Aneyara',
'fileduplicatesearch-result-1' => '"$1" iyeltak va miltafa jontoloca me digir.',

# Special:SpecialPages
'specialpages'                 => 'Aptaf bueem',
'specialpages-group-other'     => 'Ar aptabueem',
'specialpages-group-login'     => 'Figara / dimfigara',
'specialpages-group-changes'   => 'Noeltaf betakseem isu "log"',
'specialpages-group-users'     => 'Favesikeem is rokeem',
'specialpages-group-highuse'   => 'Nhofapanu bu',
'specialpages-group-pages'     => 'Buvexala',
'specialpages-group-pagetools' => 'Buxekeem',
'specialpages-group-wiki'      => 'Wiki origeem isu xekeem',
'specialpages-group-redirects' => 'Graskara va aptabu',
'specialpages-group-spam'      => 'Spam xekeem',

# Special:BlankPage
'blankpage' => 'Butuvlardara',

);