summaryrefslogtreecommitdiff
path: root/languages/messages/MessagesAvk.php
blob: 0afbfafb6a2da7b834d8ae41dabc9e6228d0f452 (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
<?php
/** Kotava (Kotava)
 *
 * @addtogroup Language
 *
 * @author Wikimistusik
 * @author Sab
 * @author Siebrand
 * @author SPQRobin
 * @author Nike
 * @author Nkosi ya Cabinda
 */



$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 jinon rupenu bu pu jin staksar !',
'tog-enotifusertalkpages'     => 'Moi da betara va jinafu favesikbu pu jin staksar !',
'tog-enotifminoredits'        => 'Icde bubetamara dere zo staksá !',
'tog-shownumberswatching'     => 'Va ota va rupes favesik nedir !',
'tog-fancysig'                => 'Rilaf sugdaks (a mivaskafi gluyasiki)',
'tog-externaleditor'          => 'Omavafa favera va divefi betasiki',
'tog-externaldiff'            => 'Omavafa favera va divefa "diff" xeka',
'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 !',

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

'skinpreview' => '(Abdinedira)',

# 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',

# Bits of text used by many pages
'categories'            => 'Bulomeem',
'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''.",

'mainpagetext' => '{{SITENAME}} inkeyen talpeyot.',

'about'          => 'Icdeuca',
'article'        => 'Teliz',
'newwindow'      => '(ko ar dilk fenkur)',
'cancel'         => 'Tumeara',
'qbfind'         => 'Aneyara',
'qbbrowse'       => 'Farura',
'qbedit'         => 'Betara',
'qbpageoptions'  => 'Ikatcuksbu',
'qbpageinfo'     => 'Givabu',
'qbmyoptions'    => 'Jinaf ikatcukseem',
'qbspecialpages' => 'Aptaf bueem',
'moredotdotdot'  => 'Ostik...',
'mypage'         => 'Jinafu bu',
'mytalk'         => 'Jinafo prilaxo',
'anontalk'       => 'Prilara kan IP mane',
'navigation'     => 'Bugrablera',
'and'            => 'is',

# Metadata in edit box
'metadata_help' => 'Metadata:',

'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',
'editthispage'      => 'Bubetara',
'delete'            => 'Sulara',
'deletethispage'    => 'Busulara',
'undelete_short'    => 'Dimplekura {{PLURAL:$1|tanoy betaks|$1 betaks}}',
'protect'           => 'Nendara',
'protect_change'    => 'betara va nendara',
'protectthispage'   => 'Bunendara',
'unprotect'         => 'Dimnendara',
'unprotectthispage' => 'Dimnendara va batu bu',
'newpage'           => 'Warzafu bu',
'talkpage'          => 'Prilarabu',
'talkpagelinktext'  => 'Keyaksera',
'specialpage'       => 'Aptafu bu',
'personaltools'     => 'Weltafa xeka se',
'postcomment'       => 'Loplekura va sebuks',
'articlepage'       => 'Telizwira',
'talk'              => 'Prilara',
'views'             => 'Wira',
'toolbox'           => 'Xekak',
'userpage'          => 'Favesikbu',
'projectpage'       => 'Rupera va abdumimaks bu',
'imagepage'         => 'Ewavabu',
'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.', # $1 date, $2 time
'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'         => '{{ns:4}}:Icdeuca',
'bugreports'        => 'Roklamunsteks',
'bugreportspage'    => '{{ns:4}}:Roklamunsteks',
'copyright'         => 'Deraykan cek kare $1.',
'copyrightpagename' => 'sorta {{SITENAME}}',
'copyrightpage'     => '{{ns:4}}:Copyright',
'currentevents'     => 'Noelaca yo',
'currentevents-url' => 'Noelaf bif yo',
'disclaimers'       => 'Walzera se',
'disclaimerpage'    => '{{ns:4}}:Jadifa walzera se',
'edithelp'          => 'Pomara',
'edithelppage'      => '{{ns:help}}:Tokinde bubetat',
'faq'               => 'NEB',
'faqpage'           => '{{ns:4}}:FAQ',
'helppage'          => '{{ns:help}}:Pomara',
'mainpage'          => 'Emudexo',
'policy-url'        => 'Project:Policy',
'portal'            => 'Doda',
'portal-url'        => '{{ns:4}}:Emudexo',
'privacy'           => 'Xoverteem',
'privacypage'       => 'Project:Privacy policy',
'sitesupport'       => 'Zobera',
'sitesupport-url'   => 'Project:Zobera',

'badaccess'        => 'Noverarokla',
'badaccess-group0' => 'Ta kucilana skura me zo rictal.',
'badaccess-group1' => 'Kucilana skura gan favesik ke $1 lospa anton zo rictar.',
'badaccess-group2' => 'Kucilana skura gan favesik ke tana $1 lospa anton zo rictar.',
'badaccess-groups' => 'Kucilana skura gan favesik ke tana $1 lospa anton zo rictar.',

'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',
'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',

# 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'   => 'Aptaca',
'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.',
'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.',
'noconnect'            => 'Skalev! Golde brubezvak, dogluyara va origak tir noelton merotisa. <br />
$1',
'nodb'                 => 'Merotisa rebara va $1 origak',
'cachederror'          => 'Batcoba tir ksudaks va erunu bu nume me zo ronusker',
'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'       => "La base de données n'a pas pu trouver le texte d'une page existante, dont le titre est « $1 ».
Ce n'est pas une erreur de la base de données, mais plus probablement un bogue du wiki.
Veuillez rapporter cette erreur à un administrateur, en lui indiquant l'adresse de la page fautive.",
'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',
'perfdisabled'         => 'Skalev! Bata fliaca ugaloron zo gritegirar
kire va origak tuloviar maneke metan va wiki rofaver.',
'perfcached'           => 'Vlevef orig yo tid koe palsexo nume me zo ronusked.',
'perfcachedts'         => 'Vlevef orig yo tid koe palsexo, ise ironokafa nuskera tir $1.',
'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 Betawiki], 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'  => 'Bu koe {{ns:special}} yoltxo tir merobetanu.',
'titleprotected'       => 'Bat vergumvelt gan [[User:$1|$1]] zo reduranendar. Batdume : <i>$2</i>.',

# Login and logout pages
'logouttitle'                => 'Solgluyara',
'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.',
'loginpagetitle'             => 'Rinafi pilkomodasiki',
'yourname'                   => 'Rinaf favesikyolt',
'yourpassword'               => 'Rinaf remravlem',
'yourpasswordagain'          => 'Va rinaf remravlem tolon bazel',
'remembermypassword'         => 'Setikera va jinaf remravlem (cookie)',
'yourdomainname'             => 'Rinaf ind',
'loginproblem'               => '<b>Pilkomodajara.</b><br />Tollwil !',
'login'                      => 'Pilkomodá',
'loginprompt'                => 'Ta dogluyara va {{SITENAME}} va cookie se gotutegiral.',
'userlogin'                  => 'Pataredú oke va int dogluyá',
'logout'                     => 'Dimgluyá',
'userlogout'                 => 'Dimgluyara',
'notloggedin'                => 'Dogluyariskaf',
'nologin'                    => '$1, kas va pata me digil ?',
'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 ar gokiblal.',
'youremail'                  => 'Jinafe internetmane',
'username'                   => 'Favesikyolt:',
'uid'                        => 'Favesikaf ID :',
'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'               => '"Nickname" yolt tir abrotcarsaf; gotir le $1 staa.',
'email'                      => '"E-mail"',
'prefs-help-realname'        => '* <strong>Votre nom</strong> (mevrebaf): ede vaon co-bazel, mu gara va rinaf webereem zo faveter.',
'loginerror'                 => 'Pilkomodajara',
'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.',
'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.
Ageltal da va yolt al sutekanhal, oke ta redura va warzafa favesikpata va vlevef valdig favel.',
'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 $1 staa leon goruldar ise gotir amidaf gu favesikyolt.',
'mailmypassword'             => 'Va warzaf remravlem pu jin staksec !',
'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' => 'Désolé, vous avez déjà créé $1 comptes. Vous ne pouvez pas en créer de nouveaux.',
'emailauthenticated'         => 'Rinaf e-mail mane moe $1 tir tugariayan.',
'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 tolbazel !',
'resetpass_header'    => 'Va beksa tolbazel !',
'resetpass_submit'    => 'Va beksa bazel nume zo dogluyatal !',
'resetpass_success'   => 'Rinaf remravlem kiewatcon su zo betar ! Nume rinafa dogluyara tir...',
'resetpass_forbidden' => 'Beksa koe {{SITENAME}} me zo robetar',

# 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.tula.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 kanacaf iyeltak',
'sig_tip'         => 'Rinafa evlakirafa sugdara',
'hr_tip'          => 'Zidafi gluyasiki (me faversel)',

# Edit pages
'summary'                   => 'Vildeks&nbsp;',
'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'               => '<big>\'\'\'Rinafa favesikpata oku IP mane tid elekayane.\'\'\'</big>

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',
'whitelistreadtitle'        => 'Kucilan login ta rupera',
'whitelistreadtext'         => 'Ta rupera va teliz gotil [[Special:Userlogin|dogluyarakiraf]]',
'whitelistacctitle'         => 'Ta pataredura rin me zo rictal',
'whitelistacctext'          => 'Ta da mo bati wiki ropataredul va int [[Special:Userlogin|godogluyal]] ise gotil drutckanhayan',
'confirmedittitle'          => 'Gruyera va e-mail eruyuna ta robetara',
'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. Oye da $1 gabot me tir, giwaxo me tir.',
'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 kon teliz men tir)',
'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''.",
'usercssjsyoucanpreview'    => "'''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'                      => '<strong>Straga :</strong>',
'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',
'editinguser'               => "Betara va rokeem ke '''[[User:$1|$1]]''' favesik ([[User talk:$1|{{int:talkpagelinktext}}]] | [[Special:Contributions/$1|{{int:contribslink}}]])",
'editingsection'            => 'betara va $1 (gabot)',
'editingcomment'            => 'betara va $1 (sebuks)',
'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'                => '<strong>Obral : rin va savsaf siatos ke batu bu betal. Ede giwal, kot betaks skuyun mali bat siatos di zo deokar.</strong>',
'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 !
<strong>VA COPYRIGHT SUTEKS ARIEKON MERICTANON VOL WEBEL ! (do not submit copyrighted work without permission!)</strong>',
'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). 
<strong>VA COPYRIGHT SUTEKS ARIEKON MERICTANON VOL WEBEL !</strong>',
'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'             => '<strong>ROKLA : Atoen krent tir $1 kilobytes. Batcoba tir lodabrotcafa dam $2 kilobytes cuge. In tir merogiwan.</strong>',
'readonlywarning'           => "'''AVERTISSEMENT : cette page est protégée pour maintenance,
vous ne pourrez donc pas sauvegarder vos modifications maintenant. Vous pouvez copier le texte dans un fichier et le sauver pour plus tard.'''",
'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'     => '<strong>WALZERA : Batu bu zo ixatcar nume anton abic favesik vaon roredud.</strong>',
'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)',
'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'         => 'Ko {{SITENAME}} ta redura va warzafu bu rin me zo rictal.',
'permissionserrors'         => 'Rictajaks',
'permissionserrorstext'     => 'Ta mana askira me zo rictal, golde {{PLURAL:$1|lazava|lazava se}}:',
'recreate-deleted-warn'     => "'''Obral: Rin va sulayanu bu djutolredul.'''

Gokrafial ede tolredura va batu bu tir vodanhaf.
Sulara \"log\" va batu bu krafiason batlize zo nedir :",

# "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-summary' => 'Dimaskira va $1 betaks gan [[Special:Contributions/$2|$2]] ([[User talk:$2|Prilara]])',

# Account creation failure
'cantcreateaccounttitle' => 'Pataredura me tir',
'cantcreateaccount-text' => "Pataredura male bate IP (<b>$1</b>) 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.',
'revnotfound'         => 'Merotrasin siatos',
'revnotfoundtext'     => 'Abdif siatos ke batu bu me zo rodimtrasir. Ta vansara va batu bu va faveyene URL mane ageltal.',
'loadhist'            => 'Vajawera ke buizvot',
'currentrev'          => 'Noelaf siatos',
'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-',
'orig'                => 'xant-',
'page_first'          => 'tane-',
'page_last'           => 'iron-',
'histlegend'          => 'Pebusiki : (noel-) = amiduca gu noelaf siatos ,
(iron-) = amiduca gu abdif siatos, <b>m</b> = betamaks',
'deletedrev'          => '[sulayan]',
'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', # user at time
'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 geltsuteks)',
'rev-delundel'              => 'nedira / palsera',
'revisiondelete'            => 'Sulasa ik volsulasa betara',
'revdelete-nooldid-title'   => 'Me xalafa betara',
'revdelete-selected'        => "{{PLURAL:$2|Reban betaks|Reban betakseem}} va '''$1:'''",
'logdelete-selected'        => '{{PLURAL:$2|Reban "log" bif|Reban "log" bif}} icde \'\'\'$1:\'\'\'',
'revdelete-legend'          => 'Skus irutareem :',
'revdelete-hide-text'       => 'Palsera va betaracek',
'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 isu artan',
'revdelete-hide-image'      => 'Palsera va iyeltakcek',
'revdelete-log'             => '"Log" sebusiki :',
'revdelete-submit'          => 'Ko reban siatos rewar',

# 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-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.',

# Merge log
'mergelog'         => 'Va "log" joara',
'revertmerge'      => 'Voljoara',
'mergelogpagetext' => 'Vleveon tir vexala dem tel lonoeltafa joara se va buizvot ko ar.',

# Diffs
'history-title'           => 'Va "$1" betarizvot',
'difference'              => '(Siatosamiduceem)',
'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',
'searchresulttext'      => 'Ta lo giva icde aneyara ko {{SITENAME}}, va [[{{MediaWiki:Helppage}}|{{int:help}}]] teliz disukel.',
'searchsubtitle'        => "Rin va '''[[:$1]]''' aneyayal",
'searchsubtitleinvalid' => "Rin va '''$1''' aneyayal",
'noexactmatch'          => "'''Manu \"\$1\" bu me tir.''' Va [[:\$1|batu bu]] roredul.",
'noexactmatch-nocreate' => "'''Me tir bu dem \"\$1\" vergumvelt.'''",
'titlematches'          => 'Vadjesaceem vanmia vergumvelteem',
'notitlematches'        => 'Mek telizvergumvelt ruldas va erune',
'textmatches'           => 'Vadjesaceem ko krenteem',
'notextmatches'         => 'Mek krentvergumvelt ruldas va erune',
'prevn'                 => '$1 abduef',
'nextn'                 => '$1 radimef',
'viewprevnext'          => 'Va ($1) ik ($2) ik ($3) disukel.',
'showingresults'        => "Vlevefa nedira va {{PLURAL:$1|'''1''' trasiks|'''$1''' trasiks}} dem #'''$2''' toza.",
'showingresultsnum'     => 'Nedira va <b>$3</b> trasiks male #<b>$2</b>.',
'nonefound'             => "<strong>Note</strong>: l'absence de résultat est souvent due à l'emploi de termes de recherche trop courants, comme « à » ou « de »,
qui ne sont pas indexés, ou à l'emploi de plusieurs termes de recherche (seules les pages
contenant tous les termes apparaissent dans les résultats).",
'powersearch'           => 'Aneyara',
'powersearchtext'       => 'Aneyara ko yoltxo se :<br /> $1<br /> $2 Kodoplekuson va graskarabueem &nbsp; Aneyara va $3 $9',
'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>",

# Preferences page
'preferences'              => 'Lodamaceem',
'mypreferences'            => 'Jinaf lodamaceem',
'prefs-edits'              => 'Ota va betaks :',
'prefsnologin'             => 'Dogluyariskaf',
'prefsnologintext'         => 'Ta da va favesiklodamaceem robetal gotil [[Special:Userlogin|dogluyarakiraf]].',
'prefsreset'               => 'Les préférences ont été rétablies à partir de la version enregistrée.',
'qbsettings'               => 'Tuweltara va xekobla',
'qbsettings-none'          => 'Mek',
'qbsettings-fixedleft'     => 'Roneon titickanaf',
'qbsettings-fixedright'    => 'Talteon titickanaf',
'qbsettings-floatingleft'  => 'Roneon ezas',
'qbsettings-floatingright' => 'Talteon ezas',
'changepassword'           => 'Betara va remravlem',
'skin'                     => 'Laviuca',
'math'                     => 'Rendu des maths',
'dateformat'               => 'Evlabreviz',
'datedefault'              => 'Megelukon',
'datetime'                 => 'Evla is bartiv',
'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.",
'prefs-personal'           => 'Ilkagiveem',
'prefs-rc'                 => 'Noeltaf betakseem',
'prefs-watchlist'          => 'Suzdasiki',
'prefs-watchlist-days'     => 'Cugafa vielota gonedina koe suzdasiki :',
'prefs-watchlist-edits'    => 'Betaracugota gonedina koe mantafi suzdasiki :',
'prefs-misc'               => 'Gedrafa lodamaca yo',
'saveprefs'                => 'Va lodamaceem tuená',
'resetprefs'               => 'Va lodamceem dimplekú',
'oldpassword'              => 'Savsaf remravlem',
'newpassword'              => 'Warzaf remravlem',
'retypenew'                => 'Va warzaf remravlem gruyel',
'textboxsize'              => 'Sutelaxo',
'rows'                     => 'Emacekeem',
'columns'                  => 'Brizeem',
'searchresultshead'        => 'Nedira va aneyaratrasikseem',
'resultsperpage'           => 'Fuxebuon trasiksota',
'contextlines'             => 'Fuxetrasikson conhota',
'contextchars'             => 'Fuxeconhon orkastaota',
'recentchangesdays'        => 'Gonedin viel se koe noeltaf betakseem :',
'recentchangescount'       => 'Vergumveltota vanmiae noeltaf betakseem',
'savedprefs'               => 'Lodamaceem su zo giwar.',
'timezonelegend'           => 'Bartivxo',
'timezonetext'             => "Si vous ne précisez pas de décalage horaire, c'est l'heure de l'Europe de l'ouest qui sera utilisée.",
'localtime'                => 'Lizukaf bartiv',
'timezoneoffset'           => 'Bartivferenuca',
'servertime'               => 'Bartiv ke zanisiko',
'guesstimezone'            => 'Favera va voda ke exulesiki',
'allowemail'               => 'Tutegirara va e-mail staksara mal ar favesik',
'defaultns'                => 'Omavon, aneyara ko bato yoltxo se :',
'default'                  => 'omava',
'files'                    => 'Iyeltak se',

# User rights
'userrights-lookup-user'           => 'Pofera va favesikeem',
'userrights-user-editname'         => 'Va favesikyolt bazel',
'editusergroup'                    => 'Betara va favesikeem lospa',
'userrights-editusergroup'         => 'Betara va favesiklospa',
'saveusergroups'                   => 'Giwara va favesiklospa',
'userrights-groupsmember'          => 'Bewik ke',
'userrights-groupsremovable'       => 'Rotiolten lospeem :',
'userrights-groupsavailable'       => 'Roderaykan lospeem :',
'userrights-reason'                => 'Betaralazava :',
'userrights-available-none'        => 'Va bewafa lospa me gobetal.',
'userrights-available-add'         => 'Va favesik roloplekul ben {{PLURAL:$2|bata lospa|bata lospa se}} : $1.',
'userrights-available-remove'      => 'Va favesik rotioltel sol {{PLURAL:$2|bata lospa|bata lospa se}} : $1.',
'userrights-available-add-self'    => 'Rin va int loplekul ko {{PLURAL:$2|bata loma|bata loma se}} : $1.',
'userrights-available-remove-self' => 'Rin va int rosulal bas {{PLURAL:$2|bata lospa|bata lospa se}}: $1.',
'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.',

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

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

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

# User rights log
'rightslog'  => '"Log" bu va favesikrokeem',
'rightsnone' => '(mek)',

# Recent changes
'nchanges'                          => '$1 {{PLURAL:$1|betaks|betaks}}',
'recentchanges'                     => 'Noeltaf betakseem',
'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 $3.",
'rcnotefrom'                        => 'Tir skuyun betakseem mali <strong>$2</strong> (<b>$1</b> cugon).',
'rclistfrom'                        => 'Nedira va warzaf betakseem mali $1.',
'rcshowhideminor'                   => '$1 betamakseem',
'rcshowhidebots'                    => '$1 stiernikeem',
'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',

# Recent changes linked
'recentchangeslinked'          => '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 rinafi suzdasiki tir '''vastaakoraf'''.",

# Upload
'upload'                      => 'Iyeltakkalvajara',
'uploadbtn'                   => 'Va iyeltak kalvajá',
'reupload'                    => 'Tolon kalvajá',
'reuploaddesc'                => 'Ko valdig dimpí.',
'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'                  => "'''STOP !''' Avant de copier votre fichier sur le serveur,
prenez connaissance des [[Project:règles d'utilisation des images|règles d'utilisation des images]] de {{SITENAME}} et assurez-vous que vous les respectez.<br />
N'oubliez pas de remplir la [[Project:Page de description d'une image|page de description de l'image]] quand celle-ci sera sur le serveur.

Pour voir les images déjà placées sur le serveur ou pour effectuer une recherche parmi celles-ci,
allez à la [[Special:Imagelist|liste des images]].
Les uploads et les suppressions sont listés dans le [[Project:Journal_des_uploads|journal des uploads]].

Utilisez le formulaire ci-dessous pour copier sur le serveur de nouvelles images destinées à illustrer vos articles.
Sur la plupart des navigateurs, vous verrez un bouton \"Browse...\" qui ouvre la fenêtre de dialogue standard de votre système d'exploitation pour l'ouverture des fichiers.
Sélectionnez un fichier, son nom apparaîtra dans le champ situé à côté du bouton.
Vous devez également confirmer, en cochant la case prévue à cet effet, que la copie de ce fichier ne viole aucun copyright.
Cliquez sur le bouton \"Envoyer\" pour terminer.
Si votre connexion est lente, l'opération peut prendre un certain temps.

Les formats recommandés sont JPEG pour les photos, PNG
pour les dessins et les autres images, et OGG pour les fichiers sonores.
Donnez à vos fichiers des noms descriptifs clairs, afin d'éviter toute confusion.
Pour incorporer l'image dans un article, placez dans celui-ci un lien rédigé comme suit:
'''<nowiki>[[image:nom_du_fichier.jpg]]</nowiki>''' ou
'''<nowiki>[[image:nom_du_fichier.png|autre texte]]</nowiki>''' ou
'''<nowiki>[[media:nom_du_fichier.ogg]]</nowiki>''' pour les sons.

N'oubliez pas que, comme toutes les pages de {{SITENAME}}, les fichiers que vous copiez peuvent être modifiés ou supprimés par les autres utilisateurs s'ils estiment que cela est dans l'intérêt du site. Sachez aussi que votre accès au serveur peut être bloqué si vous faites un mauvais usage du système.",
'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 iyeltak yo kalvajayan mo zanisiko. Bazen bartiv tir tel (UTC) ke zanisiko. <ul> </ul>',
'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-unwanted-type'      => "'''\".\$1\"''' tir iyeltakordaj. Ordanh yo tid : \$2.",
'filetype-banned-type'        => "'''\".\$1\"''' tir merictan iyeltakord. Rictan iyeltakord yo 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 $1. Til lanaf da va bat iyeltak djubetal ?',
'fileexists-extension'        => 'Iyeltak dem nuxaf yolt tir :<br />
Yolt ke kalvajayan iyeltak : <strong><tt>$1</tt></strong><br />
Yolt ke tis iyeltak : <strong><tt>$2</tt></strong><br />
Va amidaf yolt vay kiblal !',
'fileexists-thumb'            => "<center>'''Kruldes iyeltak'''</center>",
'fileexists-forbidden'        => 'Milyoltaf iyeltak ixam krulder; vay dimpil aze va memilyoltaf bat iyeltak kalvajal. [[Image:$1|thumb|center|$1]]',
'fileexists-shared-forbidden' => 'Koe pakana bonja milyoltaf iyeltak ixam tir; vay dimpil aze kan ar yolt va bat iyeltak kalvajal. [[Image:$1|thumb|center|$1]]',
'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 ko {{SITENAME}} tir gritegirayana.',
'uploadcorrupt'               => 'Bat iyeltak tir avonanaf ok lumiskaf oke va mewadaf yolt digir.
Va iyeltak gonageltal.',
'uploadvirus'                 => 'Iyeltak va kio ruldar ! Pinta se : $1',
'sourcefilename'              => 'Klitiyeltakyolt',
'destfilename'                => 'Warzaf iyeltakyolt',
'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 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',
'nolicense'          => 'Mecoba rebana',
'license-nopreview'  => '(Abdinedira me zo roderaykar)',
'upload_source_file' => ' (iyeltak koe rinafo vusiko)',

# Image list
'imagelist'                 => 'Ewavavexala',
'imagelisttext'             => "Tir vexala dem '''$1''' {{PLURAL:$1|iyeltak|iyeltak}} $2 pulana.",
'getimagelist'              => 'Dimnarira va ewavavexala',
'ilsubmit'                  => 'Aneyara',
'showlast'                  => 'Nedira va $1 ironokafa ewava $2 pulana.',
'byname'                    => 'kan yolt',
'bydate'                    => 'kan evla',
'bysize'                    => 'kan lum',
'imgdelete'                 => 'sul-',
'imgdesc'                   => 'pimt-',
'imgfile'                   => 'iyeltak',
'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 va batcoba',
'filehist-revert'           => 'dimplekura',
'filehist-current'          => 'noeltaf',
'filehist-datetime'         => 'Evla/Bartiv',
'filehist-user'             => 'Favesik',
'filehist-dimensions'       => 'Lumeem',
'filehist-filesize'         => 'Iyeltakaldo',
'filehist-comment'          => 'Sebuks',
'imagelinks'                => 'Gluyasiki se va ewava',
'linkstoimage'              => 'Vlevef bueem va bata ewava ruldar :',
'nolinkstoimage'            => 'Meku bu va bata ewava ruldar.',
'sharedupload'              => 'Bat iyeltak tir dof nume gan ar abdumimaks zo rofaver.',
'shareduploadwiki'          => 'Ta lo giva va $1 vay disukel !',
'shareduploadwiki-linktext' => 'Iyeltakpimtarabu',
'noimage'                   => 'Mek iyeltak dem bat yolt, rin rotil va $1.',
'noimage-linktext'          => 'kalvajara',
'uploadnewversion-linktext' => 'Kalvajara va warzaf siatos ke bat iyeltak',
'imagelist_date'            => 'Evla',
'imagelist_name'            => 'Yolt',
'imagelist_user'            => 'Favesik',
'imagelist_size'            => 'Lum',
'imagelist_description'     => 'Pimtara',
'imagelist_search_for'      => 'Aneyara va ewavayolt :',

# 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',

# File deletion
'filedelete'                  => 'Sulara va $1',
'filedelete-legend'           => 'Sulara va iyeltak',
'filedelete-intro'            => "Rin va '''[[Media:$1|$1]]''' sulal.",
'filedelete-comment'          => 'Sebuks :',
'filedelete-submit'           => 'Sulara',
'filedelete-success'          => "'''$1''' al zo sular.",
'filedelete-nofile'           => "'''$1''' me krulder koe {{SITENAME}}.",
'filedelete-iscurrent'        => 'Rin yawal da va tel lonoeltaf siatos ke bat iyeltak sulal. Kal losavsaf siatos taneon vay dimplekul.',
'filedelete-otherreason'      => 'Ara ik loplekufa lazava :',
'filedelete-reason-otherlist' => 'Ara lazava',

# 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',
'unusedtemplateswlh' => 'ari gluyasiki yo',

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

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

# Statistics
'statistics'             => 'Enkopaca yo',
'sitestats'              => 'Enkopaca yo va xo',
'userstats'              => 'Enkopaca yo va favesik',
'sitestatstext'          => 'Origak va <b>$1</b> bu noelon ruldar. Bata ota va se "prilarabu" is bu icde {{SITENAME}} is yupbu is graskarabu is aru metelizkorafu bu ruldar. Divlapuson va batu bu se, <b>$2</b> lanon telizkorafu bu zavzad. <br />

\'\'\'$8\'\'\' iyeltak tid kalvajayan. <br />

<b>$3</b> bu zo rupeyed ise <b>$4</b> zo betayad. Va mialuk va <b>$5</b> betara fuxe bu is <b>$6</b> rupera fuxe betara batcoba tadler. <br />

Abrotcuca ke [http://meta.wikimedia.org/wiki/Help:Job_queue "job queue"] tir \'\'\'$7\'\'\'.',
'userstatstext'          => "{{PLURAL:$1|Tir '''1''' vertokayan [[Special:Listusers|favesik]]|Tid '''$1''' vertokayan [[Special:Listusers|favesik]]}}. Vanmiaeon '''$2''' (ok '''$4%''') va $5 roka {{PLURAL:$2|digir|digid}}.",
'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.",

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

'withoutinterwiki'        => 'Avagluyasikiiskaf bueem',
'withoutinterwiki-header' => 'Batu bu se va aravaf siatos me skedad :',
'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 se 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',
'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',
'allpages'                => 'Kotaf bueem',
'prefixindex'             => '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',
'specialpages'            => 'Aptaf bueem',
'spheading'               => 'Aptaf bueem',
'restrictedpheading'      => 'Irutan aptabueem',
'newpages'                => 'Warzaf bueem',
'newpages-username'       => 'Favesikyolt :',
'ancientpages'            => 'Losavsaf telizeem',
'intl'                    => 'Walavaf gluyasikieem',
'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.",
'notargettitle'           => 'Me jala',
'notargettext'            => 'Va jalafu bu oku favesik bazel.',
'pager-newer-n'           => '{{PLURAL:$1|lowarzaf 1|lowarzaf $1}}',
'pager-older-n'           => '{{PLURAL:$1|loguazaf 1|loguazaf $1}}',

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

'categoriespagetext' => 'Radimiasa loma se moe wiki krulded :',
'data'               => 'Origeem',
'userrights'         => 'Pofera va favesikrokeem',
'groups'             => 'Favesiklospeem',
'alphaindexline'     => 'male $1 kale $2',
'version'            => 'Siatos',

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

# Special:Allpages
'nextpage'          => 'Radimebu ($1)',
'prevpage'          => '($1) abdifu bu',
'allpagesfrom'      => 'Nedira va bu se 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:Listusers
'listusersfrom'      => 'Fintara va favesikeem male :',
'listusers-submit'   => 'Nedira',
'listusers-noresult' => 'Mek trasiyin favesik.',

# 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.",
'emailfrom'       => 'Staksasik',
'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.',
'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'     => '« <nowiki>$1</nowiki> » 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',
'watchnochange'        => 'Nedoyu rinafu suzdanu bu al zo betar bak bazena rekola',
'watchlist-details'    => '{{PLURAL:$1|$1 nedisu bu|$1 nedisu bu}} 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 <b>$2</b> ironokaf bartiv.',
'wlshowlast'           => 'Nedira va ironokaf $1 bartiv isu $2 viel isu $3',
'watchlist-show-bots'  => 'Nedira va stiernaf betakseem',
'watchlist-hide-bots'  => 'Palsera va stiernaf betakseem',
'watchlist-show-own'   => 'Nedira va jinaf webekseem',
'watchlist-hide-own'   => 'Palsera va jinaf betamakseem',
'watchlist-show-minor' => 'Nedira va betamakseem',
'watchlist-hide-minor' => 'Palsera va betamakseem',

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

'enotif_reset'                 => 'Va kotu woranu bu tcalar',
'enotif_newpagetext'           => 'Batcoba tir warzafu bu',
'enotif_impersonal_salutation' => '{{SITENAME}} favesik',
'changed'                      => 'betayan',
'created'                      => 'reduyun',
'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',

# Delete/protect/revert
'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 »',
'dellogpage'                  => 'Izvot va sulareem',
'dellogpagetext'              => 'Tir tela vexala dem noeltaf sulareem.
Bazen bartiv tir tel ke (UTC) zanisiko.',
'deletionlog'                 => 'izvot va sulareem',
'reverted'                    => 'Dimplekura va tel abdif siatos',
'deletecomment'               => 'Sularadanda',
'deleteotherreason'           => 'Ara ik loplekufa lazava :',
'deletereasonotherlist'       => 'Ara lazava',
'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; ar kontan va teliz ixam al betar oke al dimplekur.

Ironokafa betara gan [[User:$3|$3]] ([[User talk:$3|Prilara]]) zo skuyur.',
'editcomment'                 => 'Vildeks va betara tiyir : <i>« $1 »</i>.', # only shown if there is an edit comment
'revertpage'                  => 'Dimplekuyun betakseem ke [[Special:Contributions/$2|$2]] ([[User talk:$2|Prilara]]); dim ironokaf siatos gan [[User:$1|$1]]', # Additional available: $3: revid of the revision reverted to, $4: timestamp of the revision reverted to, $5: revid of the revision reverted from, $6: timestamp of the revision reverted from
'rollback-success'            => 'Dimplekun betaks yo gan $1; dimpira ko ironokaf siatos ke $2.',
'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',
'protectsub'                  => '(Nendara va « $1 »)',
'confirmprotect'              => 'Va nendara gruyel',
'protectcomment'              => 'Nendaradanda',
'protectexpiry'               => 'Edjatena :',
'protect_expiry_invalid'      => 'Edjatena me tir enafa.',
'protect_expiry_old'          => 'Edjatena tir abdiugalafa.',
'unprotectsub'                => '(Dimnendara va « $1 »)',
'protect-unchain'             => 'Volelekara va arrundararictara',
'protect-text'                => 'Rin va nendareka ke <strong><nowiki>$1</nowiki></strong> bu batlize rowil nume robetal.',
'protect-locked-access'       => 'Rinafa pata va betara va nendareka me rictar.
Noeltaf plekukseem ke <strong>$1</strong> 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'             => '(kabeaca)',
'protect-fallback'            => 'Kucilara va "$1" rictara',
'protect-level-autoconfirmed' => 'Elekara va 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.',
'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 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'         => 'Bat bueem al zo sular nume tir koe badona, nume ware tir koe origak nume zo rodimplekur.
Badona rekolon zo rotuvlardar.',
'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 (ik $2) gan $3 :',
'undelete-nodiff'          => 'Mek abdif betaks trasin.',
'undeletebtn'              => 'Skura va dimplekura !',
'undeletelink'             => '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',
'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',

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

# Contributions
'contributions' => 'Webereem',
'mycontris'     => 'Jinaf webekseem',
'contribsub2'   => 'Tori $1 ($2)',
'nocontribs'    => 'Meka betara vadjesa va bata luda se al zo trasir.',
'ucnote'        => 'Tid <b>$1</b> ironokafa betara ke bat favesik bak <b>$2</b> ironokaf viel.',
'uclinks'       => 'Nedira va $1 ironokaf betaks; nedira va $2 ironokaf viel.',
'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-search'      => 'Aneyara va webeks',
'sp-contributions-username'    => 'IP mane ok favesikyolt :',
'sp-contributions-submit'      => 'Aneyara',

'sp-newimages-showfrom' => 'Nedira va warzaf iyeltak dem toza male $1',

# What links here
'whatlinkshere'       => 'Gluyarakiraf bueem',
'whatlinkshere-title' => 'Bueem dem gluyasiki va $1',
'whatlinkshere-page'  => 'Bu :',
'linklistsub'         => '(Gluyasikiak)',
'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',
'whatlinkshere-prev'  => '{{PLURAL:$1|abdif|abdif $1}}',
'whatlinkshere-next'  => '{{PLURAL:$1|radimef|radimef $1}}',
'whatlinkshere-links' => '← gluyasiki se',

# Block/unblock
'blockip'                  => 'Elekara va IP mane ok 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', # display1:time1,display2:time2,...
'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'       => 'Wira va tis elekareem va $1',
'ipb-blocklist'            => 'Wira va tis elekareem',
'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'              => 'Elekareem',
'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',
'expiringblock'            => 'tenuwer ba $1',
'createaccountblock'       => 'pataredura zo elekar',
'emailblock'               => 'e-mail elekan',
'ipblocklist-empty'        => 'Meka elekara.',
'blocklink'                => 'elekara',
'unblocklink'              => 'grielekara',
'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-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.',

# 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
'movepage'                => '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 me zo rictal da ko {{SITENAME}} va bu rotarrundal.',
'newtitle'                => 'Warzaf vergumvelt',
'move-watch'              => 'Busuzdara',
'movepagebtn'             => 'Tolyoltara va teliz',
'pagemovedsub'            => 'Tolyoltanhara',
'movepage-moved'          => '<big>\'\'\'"$1" bu kal "$2"\'\'\' tir arrundanafu</big>', # The two titles are passed in plain text as $3 and $4 to allow additional goodies in the message.
'articleexists'           => 'Milvergumveltaf teliz ixam krulder, oke kiblayan vergumvelt tir meenaf. Va ar kiblal !',
'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.",
'talkpagemoved'           => 'La page discussion correspondante a également été déplacée.',
'talkpagenotmoved'        => "La page discussion correspondante n'a <strong>pas</strong> été déplacée.",
'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 va arplekura',
'revertmove'              => 'dimplekura',
'delete_and_move'         => 'Sulara is arplekura',
'delete_and_move_confirm' => 'En, va bu sulal !',

# 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 ke bolkstakseem koe Mediawiki xo',
'allmessagesnotsupportedDB' => "Special:AllMessages n'est pas disponible parce que wgUseDatabaseMessages est désactivé.",
'allmessagesfilter'         => 'Staksesparayolt :',
'allmessagesmodified'       => 'Anton nedira va betakseem',

# Thumbnails
'thumbnail-more'           => 'Tulogijara',
'filemissing'              => 'Gracaf iyeltak',
'thumbnail_error'          => 'Va $1 aluk redujara',
'thumbnail_dest_directory' => 'Redura va kalbonja tir merotisa',

# Special:Import
'import'                     => 'Bukoburera',
'importinterwiki'            => 'Transwiki koburera',
'import-interwiki-history'   => 'Ksudara va kot izvotsiatos ke batu bu',
'import-interwiki-submit'    => 'Koburera',
'import-interwiki-namespace' => 'Buremburera ko yoltxo :',
'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 !',

# Import log
'importlogpage'                    => 'Koburera va "log" bu',
'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'               => 'Jinafu prilarabu',
'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-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'           => 'Loplekura va sebuks ben bata prilara.',
'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-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-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-n-sitesupport'           => 'Va cin zobel !',
'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-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á [alt-i]',
'tooltip-save'                    => 'Va jinaf betaks giwá [alt-s]',
'tooltip-preview'                 => 'Va rinaf betakseem abdinedil, abdi da giwal va batcoba vay favel !',
'tooltip-diff'                    => 'Nedira va rinaf krentaf betakseem.',
'tooltip-compareselectedversions' => 'Va amidaceem wal toloy reban siatos ke batu bu disuké. [alt-v]',
'tooltip-watch'                   => 'Ko rinafi suzdasiki va batu bu loplekul [alt-w]',
'tooltip-upload'                  => 'Kalvajara',

# 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 favesik va {{SITENAME}}',
'siteuser'         => '$1 favesik va {{SITENAME}}',
'lastmodifiedatby' => 'Batu bu ironokon zo betayar ba $2, $1 gan $3.', # $1 date, $2 time, $3 user
'othercontribs'    => 'Omavaf gu kobara ke $1.',
'others'           => 'ar',
'siteusers'        => '$1 favesik',
'creditspage'      => 'Rostbu',

# Spam protection
'spamprotectiontitle'    => 'Page automatiquement protégée pour cause de spam',
'spamprotectiontext'     => 'Page automatiquement protégée pour cause de spam',
'spamprotectionmatch'    => 'Le texte suivant a déclenché le détecteur de spam: $1',
'subcategorycount'       => 'Bata loma va {{PLURAL:$1|1 volveyloma|$1 volveyloma}} digir.',
'categoryarticlecount'   => '{{PLURAL:$1|1 bu tir|$1 bu tid}} koe bata loma.',
'category-media-count'   => '{{PLURAL:$1|tir 1|tid $1}} iyeltak koe bata loma.',
'listingcontinuesabbrev' => 'loon',

# 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',

# 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.',
'rcpatroldisabledtext'   => "La fonctionnalité de surveillance des modifications récentes n'est pas activée.",
'markedaspatrollederror' => 'Va fieks me rotcalar',

# Patrol log
'patrol-log-auto' => '(mivaskon)',

# Image deletion
'deletedrevision'                 => '$1 sulayan guazaf betaks',
'filedeleteerror-short'           => 'Rokla sulason va $1 iyeltak',
'filedelete-current-unregistered' => '"$1" bazen iyeltak me tir koe origak.',

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

# Media information
'widthheightpage'      => '$1×$2, $3 bu',
'file-info-size'       => '($1 × $2 pixel, iyeltakaldo : $3, MIME ord : $4)',
'file-nohires'         => '<small>Me deraykan 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:Newimages
'newimages'    => 'Warzaf ewaviyeltak yo',
'showhidebots' => '($1 stiernik)',
'noimages'     => 'Mecoba rowina',

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

Anton vexalolk (conha dem * toza) zo krafiar. Tel taneafi gluyasiki moe conha lanon tir van ewavaja.
Koti ari 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
* focallength', # Do not translate list items

# EXIF tags
'exif-imagewidth'                  => 'Mantuca',
'exif-imagelength'                 => 'Ontinuca',
'exif-compression'                 => 'Raxivaracave',
'exif-orientation'                 => 'Woyok',
'exif-samplesperpixel'             => 'Spertota',
'exif-xresolution'                 => "Résolution de l'image en largeur",
'exif-yresolution'                 => "Résolution de l'image en hauteur",
'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-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-fnumber'                     => 'F Ota',
'exif-brightnessvalue'             => 'Afiuca',
'exif-lightsource'                 => 'Afiklita',
'exif-flash'                       => 'Divafira',
'exif-flashenergy'                 => 'Divafirafa',
'exif-exposureindex'               => 'Konedireka',
'exif-filesource'                  => 'Iyeltakklita',
'exif-scenetype'                   => 'Nakilord',
'exif-exposuremode'                => 'Konedirinda',
'exif-whitebalance'                => 'Balance des blancs',
'exif-contrast'                    => 'Kevaxanuca',
'exif-saturation'                  => 'Keldelanuca',
'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-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', # 0th row: top; 0th column: left
'exif-orientation-2' => 'Inversée horizontalement', # 0th row: top; 0th column: right
'exif-orientation-3' => 'Tournée de 180°', # 0th row: bottom; 0th column: right
'exif-orientation-4' => 'Inversée verticalement', # 0th row: bottom; 0th column: left
'exif-orientation-5' => 'Tournée de 90° à gauche et inversée verticalement', # 0th row: left; 0th column: top
'exif-orientation-6' => 'Tournée de 90° à droite', # 0th row: right; 0th column: top
'exif-orientation-7' => 'Tournée de 90° à droite et inversée verticalement', # 0th row: right; 0th column: bottom
'exif-orientation-8' => 'Tournée de 90° à gauche', # 0th row: left; 0th column: bottom

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

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

'exif-lightsource-4' => 'Divafira',

'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-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',

# 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',

# Pseudotags used for GPSSpeedRef and GPSDestDistanceRef
'exif-gpsspeed-k' => 'Bartivon decitmetrolk se',

# 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://meta.wikimedia.org/wiki/Help: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_sendfailed' => 'Staksara va gruyes e-mail tir merotisa. Va rinafe mane 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'       => "Quelqu'un, probablement vous avec l'adresse email $1, a enregistré un compte « $2 » avec cette email sur le site {{SITENAME}}.

Pour confirmer que ce compte vous appartient vraiment et activer les fonctions de messagerie sur {{SITENAME}}, veuillez suivre le lien ci dessous dans votre navigateur :

$3

Si il ne s'agit pas de vous, n'ouvrez pas le lien. Ce code de confirmation expirera le $4.",

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

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

# Delete conflict
'deletedwhileediting' => 'Obral : batu bu al zo sulayar mali da rin toz betayar !',
'recreate'            => 'Tolredura',

# HTML dump
'redirectingto' => 'Graskas kal [[$1]]...',

# action=purge
'confirm_purge'        => 'Palsexo ke batu bu zo gokarler ?

$1',
'confirm_purge_button' => 'En',

# AJAX search
'searchcontaining' => "Aneyara va teliz yo dem ''$1''.",
'searchnamed'      => "Aneyara va teliz yo yoltkiraf gu ''$1''.",
'articletitles'    => "Teliz yo tozakiraf gu ''$1''",
'hideresults'      => 'Palsera va trasiks',
'useajaxsearch'    => 'Favera va AJAX aneyara',

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

# Table pager
'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 varaf bucek',
'autosumm-replace' => "Ikaplekura va bu kan '$1'",
'autoredircomment' => 'Graskara va [[$1]]',
'autosumm-new'     => 'Warzafu bu : $1',

# Live preview
'livepreview-loading' => 'Vajas…',
'livepreview-ready'   => 'Vajas... Gadion !',

# Friendlier slave lag warnings
'lag-warn-normal' => 'Betaks skuyun weti le $1 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',

# Special:Version
'version-extensions'               => 'Inkeyeni divatcesiki se',
'version-specialpages'             => 'Aptaf bueem',
'version-variables'                => 'Remvodeem',
'version-other'                    => 'Ar',
'version-hooks'                    => 'Demi se',
'version-extension-functions'      => 'Divatces fliok se',
'version-skin-extension-functions' => 'Wiatezaf divatces fliok se',
'version-hook-name'                => 'Demiyolt',
'version-hook-subscribedby'        => 'Wimpayan gan',
'version-version'                  => 'Siatos',
'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',

);