summaryrefslogtreecommitdiff
path: root/languages/messages/MessagesKab.php
blob: 4c9c877024f984a7b3914881cb2d120beb934b01 (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
<?php
/** Kabyle (Taqbaylit)
 *
 * @addtogroup Language
 */


$namespaceNames = array(
	NS_MEDIA            => 'Media',
	NS_SPECIAL          => 'Uslig',
	NS_MAIN             => '',
	NS_TALK             => 'Mmeslay',
	NS_USER             => 'Amseqdac',
	NS_USER_TALK        => 'Amyannan_umsqedac',
	# NS_PROJECT set by $wgMetaNamespace
	NS_PROJECT_TALK     => 'Amyannan_n_$1',
	NS_IMAGE            => 'Tugna',
	NS_IMAGE_TALK       => 'Amyannan_n_tugna',
	NS_MEDIAWIKI        => 'MediaWiki',
	NS_MEDIAWIKI_TALK   => 'Amyannan_n_MediaWiki',
	NS_TEMPLATE         => 'Talγa',
	NS_TEMPLATE_TALK    => 'Amyannan_n_talγa',
	NS_HELP             => 'Tallat',
	NS_HELP_TALK        => 'Amyannan_n_tallat',
	NS_CATEGORY         => 'Taggayt',
	NS_CATEGORY_TALK    => 'Amyannan_n_taggayt'
);

$messages = array(
# User preference toggles
'tog-underline'               => 'Derrer izdayen:',
'tog-highlightbroken'         => 'Mel izdayen imerẓa <a href="" class="new">akkagi</a> (neγ: akkagi<a href="" class="internal">?</a>).',
'tog-justify'                 => 'Err tehri ger awalen kif-kif',
'tog-hideminor'               => 'Ffer ibeddlen ifessasen deg yibeddlen imaynuten',
'tog-extendwatchlist'         => 'Ssemγer amuγ uεessi iwakken ad muqleγ akk n wayen zemreγ ad beddleγ',
'tog-usenewrc'                => 'Sselhu ibeddlen ifessasen (JavaScript)',
'tog-numberheadings'          => 'Izwal γur-sen imḍanen mebla ma serseγ-iten',
'tog-showtoolbar'             => 'Mel tanuga n dduzan n ubeddel (JavaScript)',
'tog-editondblclick'          => 'Beddel isebtaren asmi wekkiγ snat tikwal (JavaScript)',
'tog-editsection'             => 'Eğğ abeddel n umur s yizdayen [beddel]',
'tog-editsectiononrightclick' => 'Eğğ abeddel n amur asmi wekkiγ ayeffus<br /> γef yizwal n umur (JavaScript)',
'tog-showtoc'                 => 'Mel agbur (i isebtaren i yesεan kter n 3 izwalen)',
'tog-rememberpassword'        => 'Cfu γef yisem n umseqdac inu di uselkim-agi',
'tog-editwidth'               => 'Tankult ubeddel tesεa tehri ettmam',
'tog-watchcreations'          => 'Rnu isebtaren i xelqeγ di umuruγ n uεessi inu',
'tog-watchdefault'            => 'Rnu isebtaren i beddleγ di umuruγ n uεessi inu',
'tog-watchmoves'              => 'Rnu isebtaren i smimḍeγ di umuruγ n uεessi inu',
'tog-watchdeletion'           => 'Rnu isebtaren i mḥiγ di umuγ n uεessi inu',
'tog-minordefault'            => 'Rcem akk ibeddlen am ibeddlen ifessasen d ameslugen',
'tog-previewontop'            => 'Mel pre-timeẓriwt uqbel tankult ubeddel',
'tog-previewonfirst'          => 'Mel pre-timeẓriwt akk d ubeddel amezwaru',
'tog-nocache'                 => 'Kkes lkac n usebtar',
'tog-enotifwatchlistpages'    => 'Azen-iyi-d e-mail asmi yettubeddel asebtar i ttεassaγ',
'tog-enotifusertalkpages'     => 'Azen-iyi e-mail asmi sεiγ izen amaynut',
'tog-enotifminoredits'        => 'Azen-iyi-d e-mail i ibeddlen ifessasen',
'tog-enotifrevealaddr'        => 'Mel e-mail inu asmi yettwazen email n talγut',
'tog-shownumberswatching'     => 'Mel geddac yellan n yimseqdac iεessasen',
'tog-fancysig'                => 'Eğğ azmul am yettili (mebla azday otomatik)',
'tog-externaleditor'          => 'Sseqdec ambeddl n berra d ameslugen',
'tog-externaldiff'            => 'Seqdec ambeddel n berra iwakken ad ẓreγ imgerraden',
'tog-showjumplinks'           => 'Eğğ izdayen "neggez ar"',
'tog-uselivepreview'          => 'Sseqdec pre-timeẓriwt tağiḥbuṭ (JavaScript) (Experimental)',
'tog-forceeditsummary'        => 'Ini-iyi-d asmi sskecmeγ agzul amecluc',
'tog-watchlisthideown'        => 'Ffer ibeddlen inu seg umuruγ n uεessi inu',
'tog-watchlisthidebots'       => 'Ffer ibeddlen n iboṭiyen seg umuruγ n uεessi inu',
'tog-watchlisthideminor'      => 'Ffer ibeddlen ifessasen seg umuruγ n uεessi inu',
'tog-nolangconversion'        => 'Kkes abeddel n yimeskilen',
'tog-ccmeonemails'            => 'Azen-iyi email n wayen uzneγ i iseqdacen wiyaḍ',
'tog-diffonly'                => 'Ur temliḍ-iyi-d ara ayen yellan seddaw imgerraden',

'underline-always'  => 'Daymen',
'underline-never'   => 'Abaden',
'underline-default' => 'Browser/Explorateur ameslugen',

'skinpreview' => '(Pre-timeẓriwt)',

# Dates
'sunday'        => 'Lḥedd',
'monday'        => 'Letnayen',
'tuesday'       => 'Ttlata',
'wednesday'     => 'Larebεa',
'thursday'      => 'Lexmis',
'friday'        => 'Lğemεa',
'saturday'      => 'Ssebt',
'sun'           => 'Lḥedd',
'mon'           => 'Letnayen',
'tue'           => 'Ttlata',
'wed'           => 'Larebεa',
'thu'           => 'Lexmis',
'fri'           => 'Lğemεa',
'sat'           => 'Ssebt',
'january'       => 'Yennayer',
'february'      => 'Furar',
'march'         => 'Meγres',
'april'         => 'Ibrir',
'may_long'      => 'Mayu',
'june'          => 'Yunyu',
'july'          => 'Yulyu',
'august'        => 'Γuct',
'september'     => 'Ctember',
'october'       => 'Tuber',
'november'      => 'Wamber',
'december'      => 'Jember',
'january-gen'   => 'Yennayer',
'february-gen'  => 'Furar',
'march-gen'     => 'Meγres',
'april-gen'     => 'Ibrir',
'may-gen'       => 'Mayu',
'june-gen'      => 'Yunyu',
'july-gen'      => 'Yulyu',
'august-gen'    => 'Γuct',
'september-gen' => 'Ctember',
'october-gen'   => 'Tuber',
'november-gen'  => 'Wamber',
'december-gen'  => 'Jember',
'jan'           => 'Yennayer',
'feb'           => 'Ibrir',
'mar'           => 'Meγres',
'apr'           => 'Ibrir',
'may'           => 'Mayu',
'jun'           => 'Yunyu',
'jul'           => 'Yulyu',
'aug'           => 'Γuct',
'sep'           => 'Ctember',
'oct'           => 'Tuber',
'nov'           => 'Wamber',
'dec'           => 'Jember',

# Bits of text used by many pages
'categories'            => 'Taggayin',
'pagecategories'        => '{{PLURAL:$1|Taggayt|Taggayin}}',
'category_header'       => 'Imagraden deg taggayt "$1"',
'subcategories'         => 'Taggayin tizellumin',
'category-media-header' => 'Media deg taggayt "$1"',

'about'          => 'Awal γef...',
'article'        => 'Ayen yella deg usebtar',
'newwindow'      => '(teldi deg ttaq amaynut)',
'cancel'         => 'Eğğ-it am yella',
'qbfind'         => 'Af',
'qbbrowse'       => 'Ẓer isebtaren',
'qbedit'         => 'Beddel',
'qbpageoptions'  => 'Asebtar-agi',
'qbpageinfo'     => 'Asatal',
'qbmyoptions'    => 'Isebtaren inu',
'qbspecialpages' => 'Isebtaren usligen',
'moredotdotdot'  => 'Ugar...',
'mypage'         => 'Asebtar inu',
'mytalk'         => 'Amyannan inu',
'anontalk'       => 'Amyannan n IP-yagi',
'navigation'     => 'Ẓer isebtaren',

'errorpagetitle'    => 'Agul',
'returnto'          => 'Uγal ar $1.',
'tagline'           => 'Seg {{SITENAME}}',
'help'              => 'Tallat',
'search'            => 'Nadi',
'searchbutton'      => 'Nadi',
'go'                => 'Ruḥ',
'searcharticle'     => 'Ruḥ',
'history'           => 'Amezruy n usebtar',
'history_short'     => 'Amezruy',
'updatedmarker'     => 'yettubeddel segmi tarzeft taneggarut inu',
'info_short'        => 'Talγut',
'printableversion'  => 'Tasiwelt iwakken timprimiḍ',
'permalink'         => 'Azday ur yettbeddil ara',
'print'             => 'Imprimi',
'edit'              => 'Beddel',
'editthispage'      => 'Beddel asebtar-agi',
'delete'            => 'Mḥu',
'deletethispage'    => 'Mḥu asebtar-agi',
'undelete_short'    => 'Fakk amḥay n {{PLURAL:$1|yiwen ubeddel|$1 yibeddlen}}',
'protect'           => 'Ḥrez',
'protect_change'    => 'beddel tiḥḥerzi',
'protectthispage'   => 'Ḥrez asebtar-agi',
'unprotect'         => 'fakk tiḥḥerzi',
'unprotectthispage' => 'Fakk tiḥḥerzi n usebtar-agi',
'newpage'           => 'Asebtar amaynut',
'talkpage'          => 'Mmeslay γef usebtar-agi',
'talkpagelinktext'  => 'Mmeslay',
'specialpage'       => 'Asebtar uslig',
'personaltools'     => 'Dduzan inu',
'postcomment'       => 'Azen awennit',
'articlepage'       => 'Ẓer ayen yellan deg usebtar',
'talk'              => 'Amyannan',
'views'             => 'Tuẓrin',
'toolbox'           => 'Dduzan',
'userpage'          => 'Ẓer asebtar n umseqdac',
'projectpage'       => 'Ẓer asebtar n usenfar',
'imagepage'         => 'Ẓer asebtar n tugna',
'mediawikipage'     => 'Ẓer asebtar n izen',
'templatepage'      => 'Ẓer asebtar n talγa',
'viewhelppage'      => 'Ẓer asebtar n tallat',
'categorypage'      => 'Ẓer asebtar n taggayin',
'viewtalkpage'      => 'Ẓer amyannan',
'otherlanguages'    => 'S tutlayin tiyaḍ',
'redirectedfrom'    => '(Yettusmimeḍ seg $1)',
'redirectpagesub'   => 'Asebtar usemmimeḍ',
'lastmodifiedat'    => 'Tikelt taneggarut i yettubeddel asebtar-agi $2, $1.', # $1 date, $2 time
'viewcount'         => 'Asebtar-agi yettwakcem {{plural:$1|yiwet tikelt|$1 tikwal}}.',
'protectedpage'     => 'Asebtar yettwaḥerzen',
'jumpto'            => 'Neggez ar:',
'jumptonavigation'  => 'ẓer isebtaren',
'jumptosearch'      => 'anadi',

# 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'         => 'Awal γef {{SITENAME}}',
'aboutpage'         => '{{ns:project}}:Awal γef...',
'bugreports'        => "In'aγ ibugiyen (bug)",
'bugreportspage'    => "{{ns:project}}:In'aγ ibugiyen",
'copyright'         => 'Tzemreḍ ad twaliḍ ayen yella deg $1.',
'copyrightpagename' => 'Copyright n {{SITENAME}}',
'copyrightpage'     => 'Asenfar:Copyrights',
'currentevents'     => 'Isallen',
'currentevents-url' => 'Isallen',
'disclaimers'       => 'Iγtalen',
'disclaimerpage'    => '{{ns:project}}:Iγtalen',
'edithelp'          => 'Tallat deg ubeddel',
'edithelppage'      => '{{ns:help}}:Abeddel',
'faq'               => 'Isteqsiyen',
'faqpage'           => '{{ns:project}}:Isteqsiyen',
'helppage'          => '{{ns:help}}:Agbur',
'mainpage'          => 'Asebtar amenzawi',
'policy-url'        => 'Project:Policy',
'portal'            => 'Awwur n timetti',
'portal-url'        => '{{ns:project}}:Awwur n timetti',
'privacy'           => 'Tudert tusligt',
'privacypage'       => '{{ns:project}}:Tudert tusligt',
'sitesupport'       => 'Efk-aγ idrimen',
'sitesupport-url'   => '{{ns:project}}:Efk-aγ idrimen',

'badaccess'        => 'Agul n turagt',
'badaccess-group0' => 'Ur tettalaseḍ ara ad texedmeḍ tigawt i tseqsiḍ.',
'badaccess-group1' => 'Tigawt i steqsiḍ, llan ala imseqdacen n adrum n $1 i zemren a t-xedmen.',
'badaccess-group2' => 'Tigawt i steqsiḍ, llan ala imseqdacen seg yiwen n yiderman n $1 i zemren a t-xedmen.',
'badaccess-groups' => 'Tigawt i steqsiḍ, llan ala imseqdacen seg yiwen n yiderman n $1 i zemren a t-xedmen.',

'versionrequired'     => 'Yessefk tesεiḍ tasiwelt $1 n MediaWiki',
'versionrequiredtext' => 'Yessefk tesεiḍ tasiwelt $1 n MediaWiki iwekken tesseqdceḍ asebtar-agi. Ẓer [[Special:Version|tasiwelt usebtar]].',

'retrievedfrom'       => 'Yettwaddem seg "$1"',
'youhavenewmessages'  => 'Γur-k $1 ($2).',
'newmessageslink'     => 'Izen amaynut',
'newmessagesdifflink' => 'Abeddel aneggaru',
'editsection'         => 'beddel',
'editold'             => 'beddel',
'editsectionhint'     => 'Beddel amur: $1',
'toc'                 => 'Agbur',
'showtoc'             => 'Mel',
'hidetoc'             => 'Ffer',
'thisisdeleted'       => 'Ẓer neγ err $1?',
'viewdeleted'         => 'Ẓer $1?',
'restorelink'         => '{{PLURAL:$1|Yiwen abeddel yettumḥan|$1 Ibeddlen yettumḥan}}',
'feedlinks'           => 'Asuddem:',
'feed-invalid'        => 'Anaw n usuddem mačči ṣaḥiḥ.',

# Short words for each namespace, by default used in the 'article' tab in monobook
'nstab-main'      => 'Amagrad',
'nstab-user'      => 'Asebtar n umseqdac',
'nstab-media'     => 'Asebtar n media',
'nstab-special'   => 'Uslig',
'nstab-project'   => 'Awal γef...',
'nstab-image'     => 'Afaylu',
'nstab-mediawiki' => 'Izen',
'nstab-template'  => 'Talγa',
'nstab-help'      => 'Tallat',
'nstab-category'  => 'Taggayt',

# Main script and global functions
'nosuchaction'      => 'Tigawt ulac-itt',
'nosuchactiontext'  => 'Wiki ur teεqil ara tigawt-nni n URL',
'nosuchspecialpage' => 'Asebtar uslig am wagi ulac-it.',
'nospecialpagetext' => 'Tseqdsiḍ γef asebtar uslig ulac-it, yella umuγ n yisebtaren usligen dagi [[Special:Specialpages|umuγ n yisebtaren usligen]].',

# General errors
'error'                => 'Agul',
'databaseerror'        => 'Agul n database',
'dberrortext'          => 'Yella ugul n tseddast deg database.
Waqila yella bug deg software.
Query n database taneggarut hatt::
<blockquote><tt>$1</tt></blockquote>
seg tawuri  "<tt>$2</tt>".
MySQL yerra-d agul "<tt>$3: $4</tt>".',
'dberrortextcl'        => 'Yella ugul n tseddast deg database.
Query n database taneggarut hatt:
"$1"
seg tawuri "$2".
MySQL yerra-d agul "$3: $4"',
'noconnect'            => 'Suref-aγ! Wiki-yagi tesεa igna, ur tezmir ara temmeslay akk d database. <br />
$1',
'nodb'                 => 'Ur yezmir ara ad yextar database $1',
'cachederror'          => 'Wagi d alsaru n lkac n usebtar, waqila ur yesεa ara akk ibeddlen imaynuten.',
'laggedslavemode'      => 'Aγtal: Ahat asebtar ur yesεi akk ibeddlen imaynuten.',
'readonly'             => 'Database d tamsekkert',
'enterlockreason'      => 'Ini ayγer tsekkreḍ database, ini daγen melmi ara ifukk asekker',
'readonlytext'         => 'Database d tamsekkert, ahat tettuseggem, qrib ad tuγal-d.

Win (anedbal) isekker-itt yenna-d: $1',
'missingarticle'       => 'Database ur tufi ara aḍris n usebtar i yessefk ad taf, isem-is "$1".

S umata, wagi yeḍran asmi yettumḥa azady n umezruy/umgerrad ar asebtar.

Lukan mačči akka, waqila yella bug deg software.
G leεnayek, ini-yas-t-id i unedbal, ur tettuḍ ara ad tefkiḍ tansa n URL.',
'readonly_lag'         => 'Database d tamsekkert (weḥdes) axaṭer kra n serveur εeṭṭlen',
'internalerror'        => 'Agul zdaxel',
'filecopyerror'        => 'Ur yezmir ara yexdem alsaru n ufaylu "$1" ar "$2".',
'filerenameerror'      => 'Ur yezmir ara ad ibeddel isem ufaylu "$1" ar "$2".',
'filedeleteerror'      => 'Ur yezmir ara ad yemḥu afaylu "$1".',
'filenotfound'         => 'Ur yezmir ara ad yaf afaylu "$1".',
'unexpected'           => 'Agul: "$1"="$2".',
'formerror'            => 'Agul: ur yezmir ara ad yazen talγa',
'badarticleerror'      => 'Ur yezmir ara yexdem tigawt-agi deg usebtar-agi.',
'cannotdelete'         => 'Ur yezmir ara ad yemḥu asebtar nepq afaylu i tebγiḍ. (Ahat amdan wayeḍ yemḥu-t.)',
'badtitle'             => 'Azwel ur yelhi',
'badtitletext'         => 'Asebtar i testeqsiḍ fell-as mačči ṣaḥiḥ, d ilem, neγ yella agul deg uzday seg wikipedia s tutlayt tayeḍ neγ deg uzday n wiki nniḍen. Ahat tesεa asekkil ur yezmir ara ad yettuseqdac deg uzwel.',
'perfdisabled'         => 'Suref-aγ! aḍaγar-agi ur yettuseqdac ara tura axaṭer iεeṭṭel aṭas database.',
'perfdisabledsub'      => 'Hatt alsaru seg $1:', # obsolete?
'perfcached'           => 'Talγut-agi seg lkac u waqila mačči d tasiwelt taneggarut.',
'perfcachedts'         => 'Talγut-adi seg lkac, tasiwelt taneggarut n wass $1.',
'querypage-no-updates' => 'Ibeddlen n usebtar-agi ur banen ara tura. Tilγa ines qrib ad banen-d.',
'wrong_wfQuery_params' => 'Imsektayen mačči ṣaḥiḥ deg wfQuery()<br />
Tawuri: $1<br />
Query: $2',
'viewsource'           => 'Ẓer aγbalu',
'viewsourcefor'        => 'n $1',
'protectedpagetext'    => 'Asebtar-agi d amsekker.',
'viewsourcetext'       => 'Tzemreḍ ad twaliḍ u txedmeḍ alsaru n uγbalu n usebtar-agi:',
'protectedinterface'   => 'Asebtar-agi d amsekker axaṭer yettuseqdac i weḍris n software.',
'editinginterface'     => "'''Aγtal:''' Aqla-k tettbeddileḍ asebtar i yettuseqdac i weḍris n software. Tagmett n software i ẓren yimseqdacen wiyaḍ ad tbeddel akk d ibeddlen inek.",
'sqlhidden'            => '(Query n SQL tettwaffer)',
'cascadeprotected'     => 'Asebtar-agi yettwaḥrez seg ubeddil, axaṭer yettusekcem deg isebtaren i ttwaḥerzen ula d nutni (acercur), ahaten:',

# Login and logout pages
'logouttitle'                => 'Tuffγa',
'logouttext'                 => '<strong>Tura teffγeḍ.</strong><br />
Tzemreḍ ad tesseqdceḍ {{SITENAME}} d udrig, neγ tzemreḍ ad tkecmeḍ daγen s yisem umseqdac inek (neγ nniḍen). Kra n yisebtaren zemren ad mlen belli mazal-ik s yisem umseqdac inek armi temḥuḍ lkac.',
'welcomecreation'            => '== Ansuf yis-k, $1! ==

Isem n umseqdac inek yettwaxleq. Ur tettuḍ ara ad tbeddleḍ Isemyifiyen n {{SITENAME}} inek.',
'loginpagetitle'             => 'Takcemt',
'yourname'                   => 'Isem n umseqdac',
'yourpassword'               => 'Awal n tbaḍnit',
'yourpasswordagain'          => 'Σiwed ssekcem awal n tbaḍnit',
'remembermypassword'         => 'Cfu γef wawal n tbaḍnit inu di uselkim-agi.',
'yourdomainname'             => 'Taγult inek',
'externaldberror'            => 'Yella ugul aberrani n database neγ ur tettalaseḍ ara ad tbeddleḍ isem an umseqdac aberrani inek.',
'loginproblem'               => '<b>Yella ugur akk d ukcam inek.</b><br />Σreḍ daγen!',
'alreadyloggedin'            => '<strong>A(y) $1, tkecmeḍ yagi!</strong><br />',
'login'                      => 'Kcem',
'loginprompt'                => 'Yessefk teğğiḍ ikukiyen (cookies) iwakken ad tkecmeḍ ar {{SITENAME}}.',
'userlogin'                  => 'Kcem / xleq isem n umseqdac',
'logout'                     => 'Ffeγ',
'userlogout'                 => 'Ffeγ',
'notloggedin'                => 'Ur tekcimeḍ ara',
'nologin'                    => 'Ur tesεiḍ ara isem n umseqdac? $1.',
'nologinlink'                => 'Xleq isem n umseqdac',
'createaccount'              => 'Xleq isem n umseqdac',
'gotaccount'                 => 'Tesεiḍ yagi isem n umseqdac? $1.',
'gotaccountlink'             => 'Kcem',
'createaccountmail'          => 's e-mail',
'badretype'                  => 'Awal n tbaḍnit amezwaru d wis sin mačči d kif-kif.',
'userexists'                 => 'Isem umseqdac yeddem-as amdan wayeḍ. Fren yiwen nniḍen.',
'username'                   => 'Isem n umseqdac:',
'uid'                        => 'Amseqdac ID:',
'yourrealname'               => 'Isem n ṣṣeḥ *:',
'yourlanguage'               => 'Tutlayt:',
'yourvariant'                => 'Ameskil',
'yournick'                   => 'Isem wis sin (mačči d amenṣib):',
'badsig'                     => 'Azmul mačči d ṣaḥiḥ; Ssenqed tags n HTML.',
'prefs-help-email-enotif'    => 'Tansa-agi tettuseqdac daγen iwakken a nazen-ak email n talγut (xtar-it di iḍaγaren).',
'prefs-help-realname'        => '* Isem n ṣṣeḥ (am tebγiḍ): ma textareḍ ad t-tefkeḍ, ad yettuseqdac iwakken medden ad snen anwa yura tikkin inek.',
'loginerror'                 => 'Agul n ukcam',
'prefs-help-email'           => '* E-mail (am tebγiḍ): Teğği imseqdacen wiyaḍ a k-aznen email mebla ma ẓren tansa email inek.',
'nocookiesnew'               => 'Isem umseqdac-agi yettwaxleq, meεna ur tekcimeḍ ara. {{SITENAME}} yesseqdac ikukiyen (cookies) iwakken ad tkecmeḍ. Tekseḍ ikukiyen-nni. Eğğ-aten, umbeεd kecm s yisem umseqdac akk d awal n tbaḍnit inek.',
'nocookieslogin'             => '{{SITENAME}} yesseqdac ikukiyen (cookies) iwakken tkecmeḍ. Tekseḍ ikukiyen-nni. Eğğ-aten iwakken ad tkecmeḍ.',
'noname'                     => 'Ur tefkiḍ ara isem n umseqdac ṣaḥiḥ.',
'loginsuccesstitle'          => 'Tkecmeḍ!',
'loginsuccess'               => "'''Tkecmeḍ ar {{SITENAME}} s yisem umseqdac \"\$1\".'''",
'nosuchuser'                 => 'Ulac isem umseqdac s yisem "$1". Ssenqed tira n yisem-nni, neγ xelq isem umseqdac amaynut.',
'nosuchusershort'            => 'Ulac isem umseqdac s yisem "$1". Ssenqed tira n yisem-nni.',
'nouserspecified'            => 'Yessefk ad tefkeḍ isem n umseqdac.',
'wrongpassword'              => 'Awal n tbaḍnit γaleṭ. Σreḍ daγen.',
'wrongpasswordempty'         => 'Awal n tbaḍnit ulac-it. Σreḍ daγen.',
'mailmypassword'             => 'Awal n tbaḍnit n e-mail',
'passwordremindertitle'      => 'Asmekti n wawal n tbaḍnit seg {{SITENAME}}',
'passwordremindertext'       => 'Amdan (waqila d kečč, seg tansa IP $1)
yesteqsa iwakken a nazen awal n tbaḍnit amaynut i {{SITENAME}} ($4).
Awal n tbaḍnit iumseqdac "$2" yuγal-d tura "$3".
Mliḥ lukan tkecmeḍ u tbeddleḍ awal n tbaḍnit tura.

Lukan mačči d kečč i yesteqsatn neγ tecfiḍ γef awal n tbaḍnit, tzemreḍ ad tkemmleḍ mebla ma tbeddleḍ awal n tbaḍnit.',
'noemail'                    => '"$1" ur yesεa ara email.',
'passwordsent'               => 'Awal n tbaḍnit amaynut yettwazen i emal inek, aylaw n "$1".
G leεnaya-k, kcem tikelt nniḍen yis-s.',
'blocked-mailpassword'       => 'Tansa n IP inek tεekkel, ur tezmireḍ ara ad txedmeḍ abeddel,
ur tezmireḍ ara ad tesεuḍ awal n tbaḍnit i tettuḍ.',
'eauthentsent'               => 'Yiwen e-mail yettwazen-ak iwakken tsenteḍ.
Qbel kulci, ḍfer ayen yenn-ak deg e-mail,
iwakken tbeyyneḍ belli tansa email inek.',
'throttled-mailpassword'     => 'Asmekti n wawal n tbaḍnit yettwazen yagi deg $1 sswayeε i iεeddan. Asmekti n wawal n tbaḍnit yettwazen tikelt kan mkul $1 swayeε.',
'mailerror'                  => 'Agul asmi yettwazen e-mail: $1',
'acct_creation_throttle_hit' => 'Surf-aγ, txelqeḍ aṭas n ysimawen umseqdac ($1). Ur tettalaseḍ ara txelqeḍ kter.',
'emailauthenticated'         => 'Tansa e-mail inek tettuεqel deg $1.',
'emailnotauthenticated'      => 'Tansa e-mail inek mazal ur tettuεqel. Ḥedd e-mail ur ttwazen i ulaḥedd n iḍaγaren-agi.',
'noemailprefs'               => 'Efk tansa e-mail iwakken ad leḥḥun iḍaγaren-nni.',
'emailconfirmlink'           => 'Sentem tansa e-mail inek',
'invalidemailaddress'        => 'Tansa e-mail-agi ur telhi, ur tesεi ara taseddast n lεali. Ssekcem tansa e-mail s taseddast n lεali neγ ur tefkiḍ acemma.',
'accountcreated'             => 'Isem umseqdac yettwaxleq',
'accountcreatedtext'         => 'Isem umseqdac i $1 yettwaxleq.',

# Password reset dialog
'resetpass'               => 'Iεawed awal n tbaḍnit',
'resetpass_announce'      => 'Tkecmeḍ s ungal yettwazen-ak s e-mail (ungal-nni qrib yemmut). Iwekken tkemmleḍ, yessefk ad textareḍ awal n tbaḍnit amaynut dagi:',
'resetpass_text'          => '<!-- Rnu aḍris dagi -->',
'resetpass_header'        => 'Σiwed awal n tbaḍnit',
'resetpass_submit'        => 'Eg awal n tbaḍnit u kcem',
'resetpass_success'       => 'Awal n tbaḍnit yettubeddel! Qrib ad tkecmeḍ...',
'resetpass_bad_temporary' => 'Ungal mačči d ṣaḥiḥ. Ahat tbeddleḍ awal n tbaḍnit inek neγ tetseqsiḍ γef awal n tbaḍnit amaynut.',
'resetpass_forbidden'     => 'Ur tezmireḍ ara ad tbeddleḍ awal n tbaḍnit deg wiki-yagi',
'resetpass_missing'       => 'Ulac talγut.',

# Edit page toolbar
'bold_sample'     => 'Aḍris aberbuz',
'bold_tip'        => 'Aḍris aberbuz',
'italic_sample'   => 'Aḍris aṭalyani',
'italic_tip'      => 'Aḍris aṭalyani',
'link_sample'     => 'Azwel n uzday',
'link_tip'        => 'Azday zdaxel',
'extlink_sample'  => 'http://www.amedya.com azwel n uzday',
'extlink_tip'     => 'Azday aberrani (cfu belli yessefk at tebduḍ s http://)',
'headline_sample' => 'Aḍris n uzwel azellum',
'headline_tip'    => 'Aswir 2 n uzwel azellum',
'math_sample'     => 'Ssekcem tasemselt dagi',
'math_tip'        => 'Tasemselt tusnakt (LaTeX)',
'nowiki_sample'   => 'Ssekcem aḍris mebla taseddast n wiki dagi',
'nowiki_tip'      => 'Ttu taseddast n wiki',
'image_sample'    => 'Amedya.jpg',
'image_tip'       => 'Tugna yettussekcmen',
'media_sample'    => 'Amedya.ogg',
'media_tip'       => 'Azday n ufaylu media',
'sig_tip'         => 'Azmul inek s uzemz',
'hr_tip'          => 'Ajerriḍ aglawan (ur teččerεiḍ ara)',

# Edit pages
'summary'                   => 'Agzul',
'subject'                   => 'Asentel/Azwel azellum',
'minoredit'                 => 'Wagi abeddel afessas',
'watchthis'                 => 'Σass asebtar-agi',
'savearticle'               => 'Beddel asebtar',
'preview'                   => 'Pre-Ẓer',
'showpreview'               => 'Mel pre-timeẓriwt',
'showlivepreview'           => 'Pre-timeẓriwt tağiḥbuṭ',
'showdiff'                  => 'Mel ibeddlen',
'anoneditwarning'           => "'''Aγtal:''' Ur tkecmiḍ ara. Tansa IP inek ad tettusmekti deg amezruy n usebtar-agi.",
'missingsummary'            => "'''Ur tettuḍ ara:''' Ur tefkiḍ ara azwel i ubeddel inek. Lukan twekkiḍ ''Smekti'' tikelt nniḍen, abeddel inek ad yettusmekti mebla azwel.",
'missingcommenttext'        => 'Ssekcem awennit deg ukessar.',
'missingcommentheader'      => "'''Ur tettuḍ ara:''' Ur tefkiḍ ara azwel-azellum i ubeddel inek. Lukan twekkiḍ ''Smekti'' tikelt nniḍen, abeddel inek ad yettusmekti mebla azwel-azellum.",
'summary-preview'           => 'Pre-timeẓriwt n ugzul',
'subject-preview'           => 'Pre-timeẓriwt asentel/azwel azellum',
'blockedtitle'              => 'Amseqdac iεekkel',
'blockedtext'               => "<big>'''Isem umseqdac neγ tansa n IP inek εekkelen.'''</big>

$1 iεekkel-it u yenna-d ''$2''.

Tzemreḍ ad tmeslayeḍ akk d $1 neγ [[{{MediaWiki:grouppage-sysop}}|anedbal]] nniḍen iwakken ad tsmelayem γef uεekkil-nni.
Lukan ur tefkiḍ ara email saḥih deg [[Special:Preferences|isemyifiyen umseqdac]], ur tezmireḍ ara ad tazneḍ email. Tansa n IP inek n tura d $3, ID n upεekkil d #$5. Smekti-ten u fka-ten i unedbal-nni.",
'blockedoriginalsource'     => "Aγablu n '''$1''' hat deg ukessar:",
'blockededitsource'         => "Aḍris n '''ubeddel inek''' i '''$1''' hat deg ukessar:",
'whitelistedittitle'        => 'Yessefk ad tkecmeḍ iwakken ad tbeddleḍ',
'whitelistedittext'         => 'Yessefk ad $1 iwakken ad tbeddleḍ isebtaren.',
'whitelistreadtitle'        => 'Yessefk ad tkecmeḍ iwakken ad teqqareḍ',
'whitelistreadtext'         => 'Yessefk ad [[Special:Userlogin|tkecmeḍ]] iwakken ad teqqareḍ isebtaren.',
'whitelistacctitle'         => 'Ur tettalaseḍ ara txelqeḍ isem n umseqdac',
'whitelistacctext'          => 'Iwakken txelqeḍ isem umseqdac deg wiki-yagi yessefk ad [[Special:Userlogin|tkecmeḍ]] u tesεa izerfan usligen.',
'confirmedittitle'          => 'Yessef ad tsentmeḍ e-mail inek iwakken ad tbeddleḍ',
'confirmedittext'           => 'Yessefl ad tsentmeḍ tansa e-mail inek uqbel abeddel. Xtar tansa e-mail di [[Special:Preferences|isemyifiyen umseqdac]].',
'nosuchsectiontitle'        => 'Amur ulac-it',
'nosuchsectiontext'         => 'Tεerḍeḍ ad tbeddleḍ amur ulac-it. Ulac amur am akka deg usebtar $1.',
'loginreqtitle'             => 'Yessefk ad tkecmeḍ',
'loginreqlink'              => 'Kcem',
'loginreqpagetext'          => 'Yessefk $1 iwakken ad teẓriḍ isebtaren wiyaḍ.',
'accmailtitle'              => 'Awal n tbaḍnit yettwazen.',
'accmailtext'               => 'Awal n tbaḍnit n "$1" yettwazen ar $2.',
'newarticle'                => '(Amaynut)',
'newarticletext'            => 'Tḍefreḍ azday γer usebtar mazal ma yettwaxleq.
Akken txelqeḍ asebtar-nni, aru deg tankult i tella deg ukessar
(ẓer [[{{MediaWiki:helppage}}|asebtar n tallat]] akken tessneḍ kter).
Mi tεelṭeḍ, wekki kan γef tqeffalt "Back/Précédent" n browser/explorateur inek.',
'anontalkpagetext'          => "----''Wagi d asebtar n umyennan n umseqdac adrig. Ihi, yessef a nefk-as ID, nesseqdac tansa n IP ines akken a t-neεqel. Tansa n IP nni ahat tettuseqdac sγur aṭṭas n yimdanen. Lukan ula d kečč aqla-k amseqdac adrig u ur tebγiḍ ara ad tettwabcreḍ izen am wigini, ihi [[Special:Userlogin|xleq isem umseqdac neγ kcem]].''",
'noarticletext'             => 'Ulac aḍris deg usebtar-agi, tzemreḍ ad [[Special:Search/{{PAGENAME}}|tnadiḍ γef uzwel n usebtar-agi]] deg isebtaren wiyaḍ neγ [{{fullurl:{{FULLPAGENAME}}|action=edit}} tettbeddileḍ asebtar-agi].',
'clearyourcache'            => "'''Tamawt:''' Beεd asmekti, ahat yessefk ad temḥuḍ lkac n browser/explorateur inek akken teẓriḍ ibeddlen. '''Mozilla / Firefox / Safari:''' qqim twekkiḍ ''Shift'' u wekki γef ''Reload/Recharger'', neγ wekki γef ''Ctrl-Shift-R'' (''Cmd-Shift-R'' deg Apple Mac); '''IE:''' qqim twekkiḍ γef ''Ctrl'' u wekki γef ''Refresh/Actualiser'', neγ wekki γef ''Ctrl-F5''; '''Konqueror:''': wekki kan γef taqeffalt ''Reload'', neγ wekki γef ''F5''; '''Opera''' yessefk ad tesseqdceḍ ''Tools→Preferences/Outils→Préférences'' akken ad temḥud akk lkac.",
'usercssjsyoucanpreview'    => "<strong>Tixidest:</strong> Sseqdec taqeffalt 'Mel pre-timeẓriwt' iwakken tεerḍeḍ CSS/JS amynut inek uqbel ma tesmektiḍ.",
'usercsspreview'            => "'''Smekti belli aql-ak twaliḍ CSS inek kan, mazal ur yettusmekti ara!'''",
'userjspreview'             => "'''Smekti belli aql-ak tεerḍeḍ JavaScript inek kan, mazal ur yettusmekti ara!'''",
'userinvalidcssjstitle'     => '\'\'\'Aγtal:\'\'\' Aglim "$1" ulac-it. Ur tettuḍ ara belli isebtaren ".css" d ".js" i txedmeḍ sseqdacen azwel i yesεan isekkilen imecṭuḥen, s umedya: {{ns:user}}:Foo/monobook.css akk d {{ns:user}}:Foo/Monobook.css.',
'updated'                   => '(Yettubeddel)',
'note'                      => '<strong>Tamawt:</strong>',
'previewnote'               => '<strong>Tagi pre-timeẓriwt kan, ibeddlen mazal ur ttusmektin ara!</strong>',
'previewconflict'           => 'Pre-timeẓriwt-agi tmel aḍris i yellan deg d assawen ma tebγiḍ a tt-tesmektiḍ.',
'session_fail_preview'      => '<strong>Suref-aγ! ur nezmir ara a nesmekti abeddil inek axaṭer yella ugur.
G leεnayek εreḍ tikelt nniḍen. Lukan mazal yella ugur, ffeγ umbeεd kcem.</strong>',
'session_fail_preview_html' => "<strong>Suref-aγ! ur nezmir ara a nesmekti abeddel inek axaṭer yella ugur.</strong>

''Awaṭer wiki-yagi teğğa HTML, teffer pre-timeẓriwt akken teğğanez antag n JavaScript.''

<strong>Lukan abeddel agi d aḥeqqani, g leεnayek εreḍ tikelt nniḍen.. Lukan mazal yella ugur, ffeγ umbeεd kcem.</strong>",
'importing'                 => 'Asekcam n $1',
'editing'                   => 'Abeddel n $1',
'editinguser'               => 'Abeddel n umseqdac <b>$1</b>',
'editingsection'            => 'Abeddel n $1 (amur)',
'editingcomment'            => 'Abeddel n $1 (awennit)',
'editconflict'              => 'Amennuγ deg ubeddel: $1',
'explainconflict'           => 'Amdan nniḍen ibeddel asebtar-agi asmi telliḍ tettbeddileḍ.
Aḍris n d asawen yesεa asebtar am yewğed tura.
Ibeddlen inek ahaten deg ukessar.
Yesfek ad txelṭeḍ ibeddlen inek akk usebtar i yellan.
<b>Ala</b> aḍris n d asawen i yettusmekta asmi twekkiḍ "Smekti asebtar".<br />',
'yourtext'                  => 'Aḍris inek',
'storedversion'             => 'Tasiwelt yettusmketen',
'nonunicodebrowser'         => '<strong>AΓTAL: Browser/Explorateur inek ur yebil ara unicode. Nexdem akken ad tzemreḍ ad tbeddleḍ mebla amihi: isekkilin i mačči ASCII ttbanen deg tankult ubeddel s ungilen hexadecimal.</strong>',
'editingold'                => '<strong>AΓTAL: Aqlak tettbeddileḍ tasiwelt taqdimt n usebtar-agi.
Ma ara t-tesmektiḍ, akk ibeddlen i yexdmen seg tasiwelt-agi ruḥen.</strong>',
'yourdiff'                  => 'Imgerraden',
'copyrightwarning'          => 'Ssen belli akk tikkin deg {{SITENAME}} hatent ttwaznen seddaw $2 (Ẓer $1 akken ad tessneḍ kter). Lukan ur tebγiḍ ara aru inek yettubeddel neγ yettwazen u yettwaru deg imkanen nniḍen, ihi ur t-tazneḍ ara dagi.<br />
Aqlak teggaleḍ belli tureḍ wagi d kečč, neγ teddmiḍ-t seg taγult azayez neγ iγbula tilelliyin.
<strong>UR TEFKIḌ ARA AXDAM S COPYRIGHT MEBLA TURAGT!</strong>',
'copyrightwarning2'         => 'Ssen belli akk tikkin deg {{SITENAME}} zemren ad ttubeddlen neγ ttumḥan sγur imdanen wiyaḍ. Lukan ur tebγiḍ ara aru inek yettubeddel neγ yettwazen u yettwaru deg imkanen nniḍen, ihi ur t-tazneḍ ara dagi.<br />
Aqlak teggaleḍ belli tureḍ wagi d kečč, neγ teddmiḍ-t seg taγult azayez neγ iγbula tilelliyin (ẓer $1 akken ad tessneḍ kter).
<strong>UR TEFKIḌ ARA AXDAM S COPYRIGHT MEBLA TURAGT!</strong>',
'longpagewarning'           => '<strong>AΓTAL: Asebtar-agi yesεa $1 kilobytes/kilooctets; kra n browsers/explorateur ur zemren ara ad beddlen isebtaren i yesεan 32kB/ko neγ kter.
G leεnayek frec asebtar-nni.</strong>',
'longpageerror'             => '<strong>AGUL: Aḍris i tefkiḍ yesεa $1 kB/ko, tiddi-yagi kter n $2 kB/ko, ur yezmir ara ad yesmekti.</strong>',
'readonlywarning'           => '<strong>AΓTAL: Database d tamsekker akken ad teddwaxdem,
ihi ur tezmireḍ ara ad tesmektiḍ ibeddlen inek tura. Smekti aḍris inek
deg afaylu nniḍen akken tesseqdceḍ-it umbeεd.</strong>',
'protectedpagewarning'      => '<strong>AΓTAL:  Asebtar-agi yettwaḥrez, ala inedbalen i zemren a t-beddlen</strong>',
'semiprotectedpagewarning'  => "'''Tamawt:''' Asebtar-agi yettwaḥrez, ala imseqdacen i yesεan isem umseqdac i zemren a t-beddlen.",
'cascadeprotectedwarning'   => "'''Aγtal:''' Asebtar-agi iεekkel akken ad zemren ala sysop i t-beddlen, axaṭer yettwassekcem deg isebtaren i yettwaḥerzen agi (acercur):",
'templatesused'             => 'Talγiwin ttuseqdacen deg usebtar-agi:',
'templatesusedpreview'      => 'Talγiwin ttuseqdacen deg pre-timeẓriwt-agi:',
'templatesusedsection'      => 'Talγiwin ttuseqdacen deg amur-agi:',
'template-protected'        => '(yettwaḥrez)',
'template-semiprotected'    => '(nnefṣ-yettwaḥrez)',
'edittools'                 => '<!-- Aḍris yettbanen-d seddaw talγa n ubeddil d uzen. -->',
'nocreatetitle'             => 'Axleq n yisebtaren meḥdud',
'nocreatetext'              => 'Adeg in internet agi iḥedd axleq n yisebtaren imaynuten.
Tzemreḍ ad d-uγaleḍ u tbeddleḍ asebtar i yellan, neγ ad [[Special:Userlogin|tkecmeḍ neγ ad txelqeḍ isem umseqdac]].',

# "Undo" feature
'undo-success' => 'Tzemreḍ ad tessefsuḍ abeddil. Ssenqed asidmer akken ad tessneḍ ayen tebγiḍ ad txdmeḍ d ṣṣeḥ, umbeεd smekti ibeddlen u tkemmleḍ ad tessefsuḍ abeddil.',
'undo-failure' => 'Ur yezmir ara yessefu abeddel axaṭer yella amennuγ abusari deg ubeddel.',
'undo-summary' => 'Ssefsu tasiwelt $1 sγur [[Special:Contributions/$2|$2]] ([[User talk:$2|Meslay]])',

# Account creation failure
'cantcreateaccounttitle' => 'Ur yezmir ara yexleq isem umseqdac',
'cantcreateaccounttext'  => 'Yeεkel axleq n isem umseqdac n tansa n IP agi : (<b>$1</b>). 
Ahat llan aṭas n yimidanen icerrεen seg lakul inek neγ provider inek.',

# History pages
'revhistory'          => 'Amezruy n tsiwelt',
'viewpagelogs'        => 'Ẓer aγmis n usebtar-agi',
'nohistory'           => 'Ulac amezruy n yibeddlen i usebtar-agi.',
'revnotfound'         => 'Ur yezmir ara ad yaf tasiwelt',
'revnotfoundtext'     => 'Tasiwelt taqdimt n usebtar-agi i testeqsiḍ ulac-it.
Ssenqed URL i tesseqdac.',
'loadhist'            => 'Assisi n umezruy n usebtar',
'currentrev'          => 'Tasiwelt n tura',
'revisionasof'        => 'Tasiwelt n wass $1',
'revision-info'       => 'Tasiwelt n wass $1 sγur $2',
'previousrevision'    => '←Tasiwelt taqdimt',
'nextrevision'        => 'Tasiwelt tamaynut→',
'currentrevisionlink' => 'Tasiwelt n tura',
'cur'                 => 'tura',
'next'                => 'ameḍfir',
'last'                => 'amgerrad',
'orig'                => 'ameẓwer',
'page_first'          => 'amezwaru',
'page_last'           => 'aneggaru',
'histlegend'          => 'Axtiri n umgerrad: rcem tankulin akken ad teẓreḍ imgerraden ger tisiwal u wekki γef enter/entrée neγ γef taqeffalt deg ukessar.<br />
Tabadut: (tura) = amgerrad akk d tasiwelt n tura,
(amgerrad) = amgerrad akk d tasiwelt ssabeq, M = abeddel afessas.',
'deletedrev'          => '[yettumḥa]',
'histfirst'           => 'Tikkin timezwura',
'histlast'            => 'Tikkin tineggura',
'historysize'         => '($1 bytes/octets)',
'historyempty'        => '(amecluc)',

# Revision feed
'history-feed-title'          => 'Amezruy n tsiwelt',
'history-feed-description'    => 'Amezruy n tsiwelt n usebtar-agi deg wiki',
'history-feed-item-nocomment' => '$1 deg $2', # user at time
'history-feed-empty'          => 'Asebtar i tebγiḍ ulac-it.
Waqila yettumḥa neγ yettbeddel isem-is.
Σreḍ [[Special:Search|ad tnadiḍ deg wiki]] γef isebtaren imaynuten.',

# Revision deletion
'rev-deleted-comment'         => '(awennit yettwakes)',
'rev-deleted-user'            => '(isem umseqdac yettwakes)',
'rev-deleted-event'           => '(asekcem yettwakkes)',
'rev-deleted-text-permission' => '<div class="mw-warning plainlinks">
Tasiwelt-agi n tettwakkes seg weγbar azayez.
Waqila yella kter n talγut deg [{{fullurl:Special:Log/delete|page={{FULLPAGENAMEE}}}} aγmis n umḥay].
</div>',
'rev-deleted-text-view'       => '<div class="mw-warning plainlinks">
Tasiwelt-agi n tettwakkes seg weγbar azayez.
Kečč d anedbal, tzemreḍ a t-twaliḍ
Waqila yella kter n talγut [{{fullurl:Special:Log/delete|page={{FULLPAGENAMEE}}}} aγmis n umḥay].
</div>',
'rev-delundel'                => 'mel/ffer',
'revisiondelete'              => 'Mḥu/kkes amḥay tisiwal',
'revdelete-nooldid-title'     => 'Ulac nnican i tasiwelt',
'revdelete-nooldid-text'      => 'Ur textareḍ ara tasiwelt nnican akken ad txedmeḍ tawuri fell-as.',
'revdelete-selected'          => "{{PLURAL:$2|Tasiwelt tettwafren|Tisiwal ttwafernen}} n '''$1:'''",
'logdelete-selected'          => "{{PLURAL:$2|Tamirt n uγmis tettwafren|Isallen n uγmis ttwafernen}} n '''$1:'''",
'revdelete-text'              => 'Tisiwal i yettumḥan ad baben deg umezruy n usebtar d weγmis,
meεna imuren seg-sen zemren imdanen a ten-ẓren.

Inedbalen wiyaḍ deg wiki-yagi zemren ad ẓren imuren i yettwafren u zemren a ten-mḥan, ḥaca ma llan icekkilen.',
'revdelete-legend'            => 'Eg icekkilen:',
'revdelete-hide-text'         => 'Ffer aḍris n tsiwelt',
'revdelete-hide-name'         => 'Ffer tigawt d nnican',
'revdelete-hide-comment'      => 'Ffer abeddel n uwennit',
'revdelete-hide-user'         => 'Ffer Isem-umseqdac/IP n umeskar',
'revdelete-hide-restricted'   => 'Eg icekkilen i inedbalen d yimdanen wiyaḍ',
'revdelete-suppress'          => 'Kkes talγut seg inedbalen d yimdanen wiyaḍ',
'revdelete-hide-image'        => 'Ffer ayen yellan deg ufaylu',
'revdelete-unsuppress'        => 'Kkes icekkilen γef tisiwal i yuγalen-d',
'revdelete-log'               => 'Awennit n uγmis:',
'revdelete-submit'            => 'Eg-it i tasiwelt tettwafren',
'revdelete-logentry'          => 'asekkud n tasiwelt tettubeddel i  [[$1]]',
'logdelete-logentry'          => 'asekkud n tamirt tettubeddel i [[$1]]',
'revdelete-logaction'         => '$1 {{plural:$1|tasiwelt tettuxdem|tisiwal ttuxedment}} i anaw $2',
'logdelete-logaction'         => '$1 {{plural:$1|tamirt|isallen}} n [[$3]] {{plural:$1|tettuxdem|ttuxedmen}} i anaw $2',
'revdelete-success'           => 'Asekkud n tasiwelt yettuxdem.',
'logdelete-success'           => 'Asekkud n tamirt yettuxdem.',

# Oversight log
'oversightlog'    => 'Aγmis n oversight',
'overlogpagetext' => 'Deg ukessar, d amuγ n umḥay d uεekkil ineggura n wayen yettwaffren seg inedbalen. Ẓer [[Special:Ipblocklist|amuγ n uεekkil n IP]].',

# Diffs
'difference'                => '(Imgerraden seg tisiwal)',
'loadingrev'                => 'Assisi tasiwelt n yimgerraden',
'lineno'                    => 'Ajerriḍ $1:',
'editcurrent'               => 'Beddel tasiwelt n tura n usebtar-agi',
'selectnewerversionfordiff' => 'Xtar tasiwelt tamaynut iwakken ad twaliḍ imgerraden',
'selectolderversionfordiff' => 'Xtar tasiwelt taqdimt iwakken ad twaliḍ imgerraden',
'compareselectedversions'   => 'Ẓer imgerraden ger tisiwal i textareḍ',
'editundo'                  => 'ssefsu',
'diff-multi'                => '({{plural:$1|Yiwen tasiwelt tabusarit|$1 n tisiwal tibusarin}} ur ttumlalent ara.)',

# Search results
'searchresults'         => 'Igmad n unadi',
'searchresulttext'      => 'Akken ad tessneḍ amek ara tnadiḍ deg {{SITENAME}}, ẓer [[{{MediaWiki:helppage}}|{{int:help}}]].',
'searchsubtitle'        => "Tnadiḍ γef '''[[:$1]]'''",
'searchsubtitleinvalid' => "Tnadiḍ γef '''$1'''",
'badquery'              => 'Anadi ur yelhi',
'badquerytext'          => 'Ur nezmir ara ad naf ayen tebγiḍ.
Axaṭer balak tnadiḍ γef awal yesεan qell n 3 isekkilen,
Neγ ur turiḍ ara mliḥ γef wayen tnadiḍ,
s umedya : "izem d d wuccen".
Σreḍ d wawal nniḍen.',
'matchtotals'           => 'Ayen tnadiḍ : "$1" yecban $2 n yizwal n usebtar
d updris n $3 n yisebtaren.',
'noexactmatch'          => "'''Asebtar s yisem \"\$1\" ulac-it.''' Tzemreḍ ad [[:\$1|txelqeḍ asebtar-agi]].",
'titlematches'          => 'Ayen yecban azwel n umegrad',
'notitlematches'        => 'Ulac ayen yecban azwel n umegrad',
'textmatches'           => 'Ayen yecban azwel n usebtar',
'notextmatches'         => 'ulac ayen yecban azwel n usebtar',
'prevn'                 => '$1 ssabeq',
'nextn'                 => '$1 ameḍfir',
'viewprevnext'          => 'Ẓer ($1) ($2) ($3).',
'showingresults'        => "Tamuli n {{PLURAL:$1|'''Yiwen''' wegmud|'''$1''' n yigmad}} seg  #'''$2'''.",
'showingresultsnum'     => "Tamuli n {{PLURAL:$3|'''Yiwen''' wegmud|'''$3''' n yigmad}} seg  #'''$2'''.",
'nonefound'             => "'''Tamawt''': S umata, asmi ur tufiḍ acemma
d ilmen awalen am \"ala\" and \"seg\",
awalen-agi mačči deg tasmult, neγ tefkiḍ kter n yiwen n wawal (ala isebtaren
i yesεan akk awalen i banen-d).",
'powersearch'           => 'Nadi',
'powersearchtext'       => 'Nadi deg yismawen n taγult:<br />$1<br />$2 Amuγ n yisemmimḍen<br />Nadi γef $3 $9',
'searchdisabled'        => 'Anadi deg {{SITENAME}} yettwakkes. Tzemreḍ ad tnadiḍ s Google. Meεna ur tettuḍ ara, tasmult n google taqdimt.',
'blanknamespace'        => '(Amenzawi)',

# Preferences page
'preferences'              => 'Isemyifiyen',
'mypreferences'            => 'Isemyifiyen inu',
'prefsnologin'             => 'Ur tekcimeḍ ara',
'prefsnologintext'         => 'Yessefk ad [[Special:Userlogin|tkecmeḍ]] iwakken textareḍ isemyifiyen inek.',
'prefsreset'               => 'Iεawed ad yexdem isemyifiyen inek.',
'qbsettings'               => 'Tanuga tağiḥbuṭ',
'qbsettings-none'          => 'Ulaḥedd',
'qbsettings-fixedleft'     => 'Aẓelmaḍ',
'qbsettings-fixedright'    => 'Ayeffus',
'qbsettings-floatingleft'  => 'Tufeg aẓelmaḍ',
'qbsettings-floatingright' => 'Tufeg ayeffus',
'changepassword'           => 'Beddel awal n tbaḍnit',
'skin'                     => 'Aglim',
'math'                     => 'Tusnakt',
'dateformat'               => 'talγa n uzemz',
'datedefault'              => 'Ur sεiq ara asemyifi',
'datetime'                 => 'Azemz d ukud',
'math_failure'             => 'Agul n tusnakt',
'math_unknown_error'       => 'Agul mačči d aḍahri',
'math_unknown_function'    => 'Tawuri mačči d taḍahrit',
'math_lexing_error'        => 'Agul n tmawalt',
'math_syntax_error'        => 'Agul n tseddast',
'math_image_error'         => 'Abeddil γer PNG yexser; ssenqed installation n latex, dvips, gs, umbeεd eg abeddil',
'math_bad_tmpdir'          => 'Ur yezmir ara ad yaru γef/γer tusnakt n temp directory/dossier',
'math_bad_output'          => 'Ur yezmir ara ad yaru γef/γer tusnakt n tuffγa directory/dossier',
'math_notexvc'             => 'texvc executable/executable texvc ulac-it; ẓer math/README akken a textareḍ isemyifiyen.',
'prefs-personal'           => 'Profile n umseqdac',
'prefs-rc'                 => 'Ibeddlen imaynuten',
'prefs-watchlist'          => 'Amuγ uεessi',
'prefs-watchlist-days'     => 'Geddac n wussan yessefk ad imel deg umuγ uεessi:',
'prefs-watchlist-edits'    => 'Geddac n yibeddlen yessefk ad imel deg umuγ uεessi ameqqran:',
'prefs-misc'               => 'Isemyifiyen wiyaḍ',
'saveprefs'                => 'Smekti',
'resetprefs'               => 'Reset/réinitialiser isemyifiyen',
'oldpassword'              => 'Awal n tbaḍnit aqdim:',
'newpassword'              => 'Awal n tbaḍnit amaynut:',
'retypenew'                => 'Σiwed ssekcem n tbaḍnit amaynut:',
'textboxsize'              => 'Abedddil',
'rows'                     => 'Ijerriḍen:',
'columns'                  => 'Tigejda:',
'searchresultshead'        => 'Anadi',
'resultsperpage'           => 'Geddac n tiririyin i mkul usebtar:',
'contextlines'             => 'Geddac n ijerriḍen i mkul tiririt:',
'contextchars'             => 'Geddac n isekkilen n usatal i mkul ajjeriḍ:',
'stubthreshold'            => 'Tiddi taddayt i imagraden imecṭuḥen:',
'recentchangescount'       => 'Geddac n izwal deg ibeddilen imaynuten:',
'savedprefs'               => 'Isemyifiyen inek yettusmektan.',
'timezonelegend'           => 'Iẓḍi n ukud',
'timezonetext'             => 'Amgerrad ger akud inek d akud n server (UTC) [s swayeε].',
'localtime'                => 'Akud inek',
'timezoneoffset'           => 'Amgerrad n ukud',
'servertime'               => 'Akud n server',
'guesstimezone'            => 'Sseqdec azal n browser/explorateur',
'allowemail'               => 'Eğğ imseqdacen wiyaḍ ad azen-ik email',
'defaultns'                => 'Nadi deg yismawen n taγult s umeslugen:',
'default'                  => 'ameslugen',
'files'                    => 'Ifayluwen',

# User rights
'userrights-lookup-user'     => 'Laεej iderman n yimseqdacen',
'userrights-user-editname'   => 'Ssekcem isem n umseqdac:',
'editusergroup'              => 'Beddel iderman n yimseqdacen',
'userrights-editusergroup'   => 'Beddel iderman n umseqdac',
'saveusergroups'             => 'Smekti iderman n yimseqdacen',
'userrights-groupsmember'    => 'Amaslad deg:',
'userrights-groupsavailable' => 'Iderman i yellan:',
'userrights-groupshelp'      => 'Xtar anda amseqdac yettwakkes/yettnerni seg/deg iderman.
Iderman ayen ur textareḍ ara ur ttbeddlen ara. Tzemreḍ ad tekkseḍ adrum s CTRL + Click aẓelmaḍ',

# Groups
'group'       => 'Adrum:',
'group-sysop' => 'Inedbalen',
'group-all'   => '(akk)',

'group-sysop-member' => 'Anedbal',

'grouppage-sysop' => '{{ns:project}}:Inedbalen',

# User rights log
'rightslog'      => 'Aγmis n yizerfan n umseqdac',
'rightslogtext'  => 'Wagi d aγmis n yibeddlen n yizerfan n umseqdac',
'rightslogentry' => 'Yettubeddel izerfan n umseqdac $1 seg $2 ar $3',
'rightsnone'     => '(ulaḥedd)',

# Recent changes
'nchanges'                          => '$1 {{PLURAL:$1|Abeddel|Ibeddlen}}',
'recentchanges'                     => 'Ibeddlen imaynuten',
'recentchangestext'                 => 'Ḍfer ibeddilen imaynuten n {{SITENAME}}.',
'recentchanges-feed-description'    => 'Ḍfer ibeddilen imaynuten n wiki-yagi deg usuddem-agi.',
'rcnote'                            => "Deg ukessar {{PLURAL:$1|yella '''yiwen''' ubeddel aneggaru|llan '''$1''' n yibeddlen ineggura}} deg {{PLURAL:$2|wass aneggaru|'''$2''' ussan ineggura}}, deg azemz $3.",
'rcnotefrom'                        => 'Deg ukessar llan ibeddlen seg wasmi <b>$2</b> (ar <b>$1</b>).',
'rclistfrom'                        => 'Mel ibeddlen imaynuten seg $1',
'rcshowhideminor'                   => '$1 ibeddlen ifessasen',
'rcshowhideliu'                     => '$1 n yimseqdacen i ikecmen',
'rcshowhideanons'                   => '$1 n yimseqdacen udrigen',
'rcshowhidepatr'                    => '$1 n yibeddlen yettwassenqden',
'rcshowhidemine'                    => '$1 ibeddlen inu',
'rclinks'                           => 'Mel $1 n yibeddlen ineggura di $2 ussan ineggura<br />$3',
'diff'                              => 'amgerrad',
'hist'                              => 'Amezruy',
'hide'                              => 'Ffer',
'show'                              => 'Mel',
'number_of_watching_users_pageview' => '[$1 aεessas/iεessasen]',
'rc_categories'                     => 'Ḥedded i taggayin (ferreq s "|")',
'rc_categories_any'                 => 'Ulayγer',

# Recent changes linked
'recentchangeslinked'          => 'Ibeddlen imaynuten n yisebtaren myezdin',
'recentchangeslinked-noresult' => 'Ulac abeddel deg isebtaren myezdin deg tawala i textareḍ.',

# Upload
'upload'                      => 'Azen afaylu',
'uploadbtn'                   => 'Azen afaylu',
'reupload'                    => 'Σiwed azen',
'reuploaddesc'                => 'Uγal-d ar talγa n tuznin.',
'uploadnologin'               => 'Ur tekcimeḍ ara',
'uploadnologintext'           => 'Yessefk [[Special:Userlogin|ad tkecmeḍ]]
iwakken ad tazneḍ afaylu.',
'upload_directory_read_only'  => 'Weserver/serveur Web ur yezmir ara ad yaru deg ($1).',
'uploaderror'                 => 'Agul deg usekcam',
'uploadtext'                  => "Sseqdec talγa deg ukessar akken ad tazeneḍ tugnawin, akken ad teẓred neγ ad tnadiḍ tugnawin yettwaznen, ruḥ γer [[Special:Imagelist|amuγ n usekcam n tugnawin]], Amezruy n usekcam d umḥay hatent daγen deg [[Special:Log/upload|amezruy n usekcam]].

Akken ad tessekcmeḍ tugna deg usebtar, seqdec azay am wagi
'''<nowiki>[[</nowiki>{{ns:image}}<nowiki>:Afaylu.jpg]]</nowiki>''',
'''<nowiki>[[</nowiki>{{ns:image}}<nowiki>:Afaylu.png|aḍris]]</nowiki>''' neγ
'''<nowiki>[[</nowiki>{{ns:media}}<nowiki>:Afaylu.ogg]]</nowiki>''' akken ad iruḥ wezday qbala ar ufaylu.",
'uploadlog'                   => 'amezruy n usekcam',
'uploadlogpage'               => 'Amezruy n usekcam',
'uploadlogpagetext'           => 'Deg ukessar, d amuγ n n usekcam n ufayluwen imaynuten.',
'filename'                    => 'Isem n ufaylu',
'filedesc'                    => 'Agzul',
'fileuploadsummary'           => 'Agzul:',
'filestatus'                  => 'Aẓayer n copyright',
'filesource'                  => 'Seg way yekka',
'uploadedfiles'               => 'Ifayluwen yettwaznen',
'ignorewarning'               => 'Ttu aγtal u smekti afaylu',
'ignorewarnings'              => 'Ttu iγtalen',
'minlength'                   => 'Isem n ufaylu yessefk ad yesεu 3 isekkilen neγ kter.',
'illegalfilename'             => 'Isem n ufaylu "$1" yesεa isekkilen i ur tettalaseḍ ara tesseqdceḍ deg yizwal n yisebtaren. G leεnayek beddel isem n ufaylu u azen-it tikelt nniḍen.',
'badfilename'                 => 'Isem ufaylu yettubeddel ar "$1".',
'filetype-badmime'            => 'Ur tettalaseḍ ara tazneḍ ufayluwen n anaw n MIME "$1".',
'filetype-badtype'            => "Ur neqbil ara ufayluwen n anwan am '''\".\$1\"'''
: Amuγ n inawen i neqbel: \$2",
'filetype-missing'            => 'Afaylu ur yesεi ara taseggiwit (am ".jpg").',
'large-file'                  => 'Ilaq tiddi n ufayluwen ur tettili kter n $1; tiddi n ufaylu-agi $2.',
'largefileserver'             => 'Afaylu meqqer aṭṭas, server ur t-yebil ara.',
'emptyfile'                   => 'Afaylu i tazneḍ d ilem. Waqila tγelṭeḍ deg isem-is. G leεnayek ssenqed-it.',
'fileexists'                  => 'Afaylu s yisem-agi yewğed yagi, ssenqed <strong><tt>$1</tt></strong> ma telliḍ mačči meḍmun akken a t-tbeddleḍ.',
'fileexists-extension'        => 'Afaylu s yisem-agi yewğed:<br />
Isem n ufaylu i tazneḍ: <strong><tt>$1</tt></strong><br />
Isem n ufaylu i yewğed: <strong><tt>$2</tt></strong><br />
Amgerrad i yella kan deg isekkilen imecṭuḥen/imeqqranen deg taseggiwit (am ".jpg"/".jPg"). G leεnayek ssenqed-it.',
'fileexists-thumb'            => "'''<center>Tugna i tewğed</center>'''",
'fileexists-thumbnail-yes'    => 'Iban-d belli tugna-nni d tugna tamecṭuht n tugna nniḍen <i>(thumbnail)</i>. G leεnayek ssenqed tugna-agi <strong><tt>$1</tt></strong>.<br />
Ma llant kif-kif ur tt-taznepd ara.',
'file-thumbnail-no'           => 'Isem n tugna yebda s <strong><tt>$1</tt></strong>. Waqila tugna-nni d tugna tamecṭuht n tugna nniḍen <i>(thumbnail)</i>.
Ma tesεiḍ tugna-nni s resolution tameqqrant, azen-it, ma ulac beddel isem-is.',
'fileexists-forbidden'        => 'Tugna s yisem kif-kif tewğed yagi; g leεnayek uγal u beddel isem-is. [[Image:$1|thumb|center|$1]]',
'fileexists-shared-forbidden' => 'Tugna s yisem kif-kif tewğed yagi; g leεnayek uγal u beddel isem-is. [[Image:$1|thumb|center|$1]]',
'successfulupload'            => 'Azen yekfa',
'fileuploaded'                => 'Afaylu $1 yettwazen.
Ḍfer azday-agi: $2 γer usebtar n uglam u ččar talγa γef ufaylu,
S umedya, n wansi-t, melmi texleq, anwa ixelq-it u taγawsa nniḍen.
Lukan afaylu d tugna, tzemreḍ a tt-tkecmiḍ am akka: <tt><nowiki>[[</nowiki>{{ns:image}}<nowiki>:$1|thumb|Description]]</nowiki></tt>',
'uploadwarning'               => 'Aγtal deg wazan n ufayluwen',
'savefile'                    => 'Smekti afaylu',
'uploadedimage'               => '"[[$1]]" yettwazen',
'uploaddisabled'              => 'Suref-aγ, azen n ufayluwen yettwakkes',
'uploaddisabledtext'          => 'Azen n ufayluwen yettwakkes deg wiki-yagi',
'uploadscripted'              => 'Afaylu-agi yesεa angal n HTML/script i yexdem agula deg browser/explorateur.',
'uploadcorrupt'               => 'Afaylu-yagi yexser neγ yesεa taseggiwit (am ".jpg") mačči ṣaḥiḥ. G leεnayek ssenqed-it.',
'uploadvirus'                 => 'Afaylu-nni yesεa anfafad asenselkim (virus)! Ẓer kter: $1',
'sourcefilename'              => 'And yella afyalu',
'destfilename'                => 'Anda iruḥ afaylu',
'watchthisupload'             => 'Σass usebtar-agi',
'filewasdeleted'              => 'Afaylu s yisem-agi yettwazen umbeεd yettumḥa. Ssenqed $1 qbel ma tazniḍ tikelt nniḍen.',

'upload-proto-error'      => 'Agul deg protokol',
'upload-proto-error-text' => 'Assekcam yenṭerr URL i yebdan s <code>http://</code> neγ <code>ftp://</code>.',
'upload-file-error'       => 'Agul zdaxel',
'upload-file-error-text'  => 'Agul n daxel yeḍran asmi yeεreḍ ad yexleq afaylu temporaire deg server.  G leεnayek, meslay akk d unedbal n system.',
'upload-misc-error'       => 'Agul mačči mechur asmi yettwazen ufaylu',
'upload-misc-error-text'  => 'Agul mačči mechur asmi yettwazen afaylu.  G leεnayek sseqed belli URL d ṣaḥiḥ u εreḍ tikelt nniḍen.  Ma yella daγen wagul, meslay akk d unedbal n system.',

# Some likely curl errors. More could be added from <http://curl.haxx.se/libcurl/c/libcurl-errors.html>
'upload-curl-error6'       => 'Ur yezmir ara ad yessglu URL',
'upload-curl-error6-text'  => 'Ur yezmir ara ad yessglu URL.  Ssenqed URL-nni.',
'upload-curl-error28'      => 'Yekfa wakud n wazen n ufaylu',
'upload-curl-error28-text' => 'Adeg n internet-agi iεetṭel aṭas. G leεnayek ssenqed adeg-nni, ggun cwiṭ umbeεd εreḍ tikelt nniḍen.',

'license'            => 'Turagt',
'nolicense'          => 'Ur textareḍ acemma',
'upload_source_url'  => ' (URL saḥiḥ)',
'upload_source_file' => ' (afaylu deg uselkim inek)',

# Image list
'imagelist'                 => 'Amuγ n tugniwin',
'imagelisttext'             => "Deg ukessar yella umuγ n '''$1''' {{plural:$1|ufaylu|yifayluwen}} $2.",
'imagelistforuser'          => 'Wagi yemli tugniwin i yazen $1 kan.',
'getimagelist'              => 'Yeddem amuγ n tugniwin',
'ilsubmit'                  => 'Nadi',
'showlast'                  => 'Mel $1 n yifayluwen ineggura $2.',
'byname'                    => 's yisem',
'bydate'                    => 's uzemz',
'bysize'                    => 's tiddi',
'imgdelete'                 => 'mḥu',
'imgdesc'                   => 'aglam',
'imgfile'                   => 'afaylu',
'imglegend'                 => 'Tabadut: (desc) = mel/beddel aglam n ufaylu.',
'imghistory'                => 'amezruy n ufaylu',
'revertimg'                 => 'ssuγal',
'deleteimg'                 => 'mḥu',
'deleteimgcompletely'       => 'Mḥu akk tisiwal n ufaylu-yagi',
'imghistlegend'             => 'Tabdut: (tura) = afaylu n tura, (mḥu) = mḥu tasiwelt taqdimt,
(ssuγal) = ssuγal γer tasiwlt taqdimt-agi.
<br /><i>Wekki γef uzemz akken ad teẓriḍ afaylu deg wass-nni</i>.',
'imagelinks'                => 'Izdayen',
'linkstoimage'              => 'Isebtaren-agi sεan azday ar afaylu-agi',
'nolinkstoimage'            => 'Ulaḥedd seg yisebtaren sεan azday ar afaylu-agi.',
'sharedupload'              => 'Afaylu-yagi yettuseqdac sγur wiki tiyaḍ.',
'shareduploadwiki'          => 'Ẓer $1 iwakken ad tessneḍ kter.',
'shareduploadwiki-linktext' => 'Asebtar n uglam n ufaylu',
'noimage'                   => 'Afaylu s yisem-agi ulac-it, tzemreḍ ad $1.',
'noimage-linktext'          => 't-tazneḍ',
'uploadnewversion-linktext' => 'tazneḍ tasiwelt tamaynut n ufaylu-yagi',
'imagelist_date'            => 'Azemz',
'imagelist_name'            => 'Isem',
'imagelist_user'            => 'Amseqdac',
'imagelist_size'            => 'Tiddi (bytes/octets)',
'imagelist_description'     => 'Aglam',
'imagelist_search_for'      => 'Nadi γef yisem n tugna:',

# MIME search
'mimesearch'         => 'Anadi n MIME',
'mimesearch-summary' => 'Asebtar-agi yeğğa astay n ifayluwen n unaw n MIME ines. Asekcem: ayen yella/anaw azellum, e.g. <tt>tugna/jpeg</tt>.',
'mimetype'           => 'Anaw n MIME:',
'download'           => 'Ddem-it γer uselkim inek',

# Unwatched pages
'unwatchedpages' => 'Isebtaren mebla iεessasen',

# List redirects
'listredirects' => 'Amuγ isemmimḍen',

# Unused templates
'unusedtemplates'     => 'Talγiwin mebla aseqdac',
'unusedtemplatestext' => 'Asebtar-agi yesεa amuγ n akk isebtaren n isem n taγult s yisem "talγa" iwumi ulca-iten deg ḥedd asebtar. Ur tettuḍ ara ad tessenqdeḍ isebtaren n talγa wiyaḍ qbel ma temḥuḍ.',
'unusedtemplateswlh'  => 'izdayen wiyaḍ',

# Random redirect
'randomredirect' => 'Asemmimeḍ menwala',

# Statistics
'statistics'             => 'Tisnaddanin',
'sitestats'              => 'Tisnaddanin n {{SITENAME}}',
'userstats'              => 'Tisnaddanin n umseqdac',
'sitestatstext'          => "{{PLURAL:\$1|Yella '''yiwen''' usebtar|Llan '''\$1''' n yisebtaren}} deg database.
Azwil-agi yesεa daγen akk isebtaren \"amyannan\", d yisebtaren γef {{SITENAME}}, d yisebtaren \"imecṭuḥen\", isebtaren ismimḍen, d wiyaḍ.
Asmi yettwakkes wigini, {{PLURAL:\$2|yella '''yiwen''' asebtar|llan '''\$2''' n yisebtaren}} d {{PLURAL:\$2|asebtar amliḥ|isebtaren imliḥen}} . 

'''\$8''' {{PLURAL:\$8|afaylu|ifayluwen}} ttwaznen.

{{PLURAL:\$3|tella|llant}} '''\$3''' n {{PLURAL:\$3|timeẓriwt|timeẓriwin}}, '''\$4''' n {{PLURAL:\$4|ubeddel|yibeddlen}} n usebtar segwasmi {{SITENAME}} yettwaxleq.
Ihi, {{PLURAL:\$5|yella|llan}} '''\$5''' n {{PLURAL:\$5|ubeddel|yibeddlen}} i mkul asebtar, d '''\$6''' timeẓriwin i mkul abeddel.

Ṭul n [http://meta.wikimedia.org/wiki/Help:Job_queue umuti n wexdam] '''\$7'''.",
'userstatstext'          => "{{PLURAL:$1|Yella '''yiwen''' umseqdac|Llan '''$1''' n yimseqdacen}}, seg-sen
'''$2''' (neγ '''$4%''') {{PLURAL:$2|yesεa|sεan}} $5 n yizerfan.",
'statistics-mostpopular' => 'Isebtaren mmeẓren aṭṭas',

'disambiguations'      => 'Isebtaren n usefham',
'disambiguationspage'  => 'Talγa:asefham',
'disambiguations-text' => "Isebtaren-agi sεan azday γer '''usebtar n usefham'''. Yessfak ad yesεun azday γer uzwel ṣaḥiḥ mačči γer usebtar n usefham.",

'doubleredirects'     => 'Asemmimeḍ yeḍra snat tikwal',
'doubleredirectstext' => 'Mkull ajerriḍ yesεa azday γer asmimeḍ amezwaru d wis sin, ajerriḍ amezwaru n uḍris n usebtar wis sin
daγen, iwumi yefkan asmimeḍ ṣaḥiḥ i yessefk ad sεan isebtaren azday γur-s.',

'brokenredirects'        => 'Isemmimḍen imerẓa',
'brokenredirectstext'    => 'Isemmimḍen-agi sεan izdayen ar isebtaren ulac-iten:',
'brokenredirects-edit'   => '(beddel)',
'brokenredirects-delete' => '(mḥu)',

'withoutinterwiki'        => 'Isebtaren mebla izdayen ar isebtaren n wikipedia s tutlayin tiyaḍ',
'withoutinterwiki-header' => 'Isebtaren-agi ur sεan ara izdayen ar isebtaren n wikipedia s tutlayin tiyaḍ:',

# Miscellaneous special pages
'nbytes'                  => '$1 {{PLURAL:$1|byte/octet|bytes/octets}}',
'ncategories'             => '$1 {{PLURAL:$1|Taggayt|Taggayin}}',
'nlinks'                  => '$1 {{PLURAL:$1|azday|izdayen}}',
'nmembers'                => '$1 {{PLURAL:$1|amaslad|imasladen}}',
'nrevisions'              => '$1 {{PLURAL:$1|tasiwelt|tisiwal}}',
'nviews'                  => '$1 {{PLURAL:$1|timeẓriwt|tuẓrin}}',
'specialpage-empty'       => 'Asebtar-agi d ilem.',
'lonelypages'             => 'Isebtaren igujilen',
'lonelypagestext'         => 'Isebtaren-agi ur myezdin ara seg isebtaren wiyaḍ deg wiki-yagi.',
'uncategorizedpages'      => 'Isebtaren mebla taggayt',
'uncategorizedcategories' => 'Taggayin mebla taggayt',
'uncategorizedimages'     => 'Tugna mebla taggayt',
'unusedcategories'        => 'Taggayin ur nettwaseqdac ara',
'unusedimages'            => 'Ifayluwin ur nettwaseqdac ara',
'popularpages'            => 'Isebtaren iγerfanen',
'wantedcategories'        => 'Taggayin mmebγant',
'wantedpages'             => 'Isebtaren mmebγan',
'mostlinked'              => 'Isebtaren myezdin aṭas',
'mostlinkedcategories'    => 'Taggayin myezdint aṭas',
'mostcategories'          => 'Isebtaren i yesεan aṭṭas taggayin',
'mostimages'              => 'Tugniwin myezdin aṭas',
'mostrevisions'           => 'Isebtaren i yettubedlen aṭas',
'allpages'                => 'Akk isebtaren',
'prefixindex'             => 'Akk isebtaren s yisekkilen imezwura',
'randompage'              => 'Asebtar menwala',
'shortpages'              => 'Isebtaren imecṭuḥen',
'longpages'               => 'Isebtaren imeqqranen',
'deadendpages'            => 'isebtaren mebla izdayen',
'deadendpagestext'        => 'Isebtaren-agi ur sεan ara azday γer isebtaren wiyaḍ deg wiki-yagi.',
'protectedpages'          => 'Isebtaren yettwaḥerzen',
'protectedpagestext'      => 'Isebtaren-agi yettwaḥerzen seg ubeddel neγ asemmimeḍ',
'protectedpagesempty'     => 'Isebtaren-agi ttwaḥerzen s imsektayen -agi.',
'listusers'               => 'Amuγ n yimseqdacen',
'specialpages'            => 'Isebtaren usligen',
'spheading'               => 'Isebtaren usligen i akk iseqdacen',
'restrictedpheading'      => 'Isebtaren usligen gedlen',
'rclsub'                  => '(ar isebtaren myezdin seg "$1")',
'newpages'                => 'Isebtaren imaynuten',
'newpages-username'       => 'Isem n umseqdac:',
'ancientpages'            => 'Isebtaren iqdimen',
'intl'                    => 'Izdayen ar tutlayin nniḍen zdaxel wikipedia',
'move'                    => 'Smimeḍ',
'movethispage'            => 'Smimeḍ asebtar-agit',
'unusedimagestext'        => '<p>Ssen belli ideggen n internet sεan izadeyen γer tugna-agi s URL n qbala, γas akken tugna-nni hatt da.</p>',
'unusedcategoriestext'    => 'Taggayin-agi weğden meεna ulac isebtaren neγ taggayin i sseqdacen-iten.',

# Book sources
'booksources'               => 'Iγbula n yidlisen',
'booksources-search-legend' => 'Nadi γef iγbula n yidlisen',
'booksources-go'            => 'Ruḥ',
'booksources-text'          => 'Deg ukessar, amuγ n yizdayen iberraniyen izzenzen idlisen (imaynuten akk d uqdimen), yernu ahat sεan kter talγut γef idlisen i tettnadiḍ fell-asen:',

'categoriespagetext' => 'Llant taggayin-agi deg wiki-yagi.',
'data'               => 'Talγut',
'userrights'         => 'Laεej iserfan n umseqdac',
'groups'             => 'Iderman n yimseqdacen',
'alphaindexline'     => '$1 ar $2',
'version'            => 'Tasiwelt',

# Special:Log
'specialloguserlabel'  => 'Amseqdac:',
'speciallogtitlelabel' => 'Azwel:',
'log'                  => 'Aγmis',
'log-search-legend'    => 'Nadi γef yiγmisen',
'log-search-submit'    => 'Ruḥ',
'alllogstext'          => 'Mel akk iγmisen n {{SITENAME}}.
Tzemreḍ ad textareḍ cwiṭ seg-sen ma tebγiḍ.',
'logempty'             => 'Ur yufi ara deg uγmis.',
'log-title-wildcard'   => 'Nadi γef izwal i yebdan s uḍris-agi',

# Special:Allpages
'nextpage'          => 'Asebtar ameḍfir ($1)',
'prevpage'          => 'Asebtar ssabeq ($1)',
'allpagesfrom'      => 'Mel isebtaren seg:',
'allarticles'       => 'Akk imagraden',
'allinnamespace'    => 'Akk isebtaren ($1 isem n taγult)',
'allnotinnamespace' => 'Akk isebtaren (mačči deg $1 isem n taγult)',
'allpagesprev'      => 'Ssabeq',
'allpagesnext'      => 'Ameḍfir',
'allpagessubmit'    => 'Ruḥ',
'allpagesprefix'    => 'Mel isebtaren s uzwir:',
'allpagesbadtitle'  => 'Azwel n usebtar mačči ṣaḥiḥ neγ yesεa azwir inter-wiki. Waqila yesεa isekkilen ur ttuseqdacen ara deg izwal.',

# Special:Listusers
'listusersfrom'      => 'Mel imseqdacen seg:',
'listusers-submit'   => 'Mel',
'listusers-noresult' => 'Ur yufi ḥedd (amseqdac).',

# E-mail user
'mailnologin'     => 'Ur yufi ḥedd (tansa)',
'mailnologintext' => 'Yessefk ad [[Special:Userlogin|tkecmeḍ]] u tesεiḍ tansa e-mail ṭaṣhiḥt deg [[Special:Preferences|isemyifiyen]] inek
iwakken ad tazneḍ email i imseqdacen wiyaḍ.',
'emailuser'       => 'Azen e-mail i umseqdac-agi',
'emailpage'       => 'Azen e-mail i umseqdac',
'emailpagetext'   => 'Lukan amseqdac-agi yefka-d tansa n email ṣaḥiḥ
deg imsifiyen ines, talγa deg ukessar ad t-tazen izen.
Tansa n email i tefkiḍ deg imisifyen inek ad tban-d
deg « Expéditeur» n izen inek iwakken amseqdac-nni yezmer a k-yerr.',
'usermailererror' => 'Yella ugul deg uzwel n email:',
'defemailsubject' => 'e-mail n {{SITENAME}}',
'noemailtitle'    => 'E-mail ulac-it',
'noemailtext'     => 'Amseqdac-agi ur yefki ara e-mail ṣaḥiḥ, neγ ur yebγi ara e-mailiyen seg medden.',
'emailfrom'       => 'Seg',
'emailto'         => 'i',
'emailsubject'    => 'Asentel',
'emailmessage'    => 'Izen',
'emailsend'       => 'Azen',
'emailccme'       => 'Azen-iyi-d e-mail n ulsaru n izen inu.',
'emailccsubject'  => 'Alsaru n izen inek i $1: $2',
'emailsent'       => 'E-mail yettwazen',
'emailsenttext'   => 'Izen n e-mail inek yettwazen.',

# Watchlist
'watchlist'            => 'Amuγ uεessi inu',
'mywatchlist'            => 'Amuγ uεessi inu',
'watchlistfor'         => "(n '''$1''')",
'nowatchlist'          => 'Amuγ uεessi inek d ilem.',
'watchlistanontext'    => 'G leεnaya-k $1 iwakken ad twalaḍ neγ tbeddleḍ iferdas deg umuγ uεessi inek.',
'watchlistcount'       => "'''Γur-k {{PLURAL:$1|$1 aferdis|$1 iferdas}} deg umuγ uεessi inek (s yisebtaren umyannan).'''",
'clearwatchlist'       => 'Mḥu amuγ uεessi',
'watchlistcleartext'   => 'Ṣeḥ tebγiḍ a ten-tekkseḍ?',
'watchlistclearbutton' => 'Mḥu amuγur uεessi',
'watchlistcleardone'   => 'Amuγ uεessi inek yettumḥa. {{PLURAL:$1|$1 aferdis yettwakes|$1 iferdas ttwaksen}}.',
'watchnologin'         => 'Ur tekcimeḍ ara',
'watchnologintext'     => 'Yessefk ad [[Special:Userlogin|tkecmeḍ]] iwekken ad tbeddleḍ amuγ uεessi inek.',
'addedwatch'           => 'Yerna ar amuγ uεessi',
'addedwatchtext'       => "Asebtar \"[[:\$1]]\" yettwarnu deg [[Special:Watchlist|umuγ uεessi]] inek.
Ma llan ibeddlen deg usebtar-nni neγ deg usbtar umyennan ines, ad banen dagi,
Deg [[Special:Recentchanges|umuγ n yibeddlen imaynuten]] ad banen s '''yisekkilen ibberbuzen''' (akken ad teẓriḍ).

Ma tebγiḍ ad tekkseḍ asebtar seg umuγ uεessi inek, wekki γef \"Fakk aεessi\".",
'removedwatch'         => 'Yettwakkes seg umuγ uεessi',
'removedwatchtext'     => 'Asebtar "[[:$1]]" yettwakkes seg umuγ uεessi inek.',
'watch'                => 'Σass',
'watchthispage'        => 'Σass asebtar-agi',
'unwatch'              => 'Fakk aεassi',
'unwatchthispage'      => 'Fakk aεassi',
'notanarticle'         => 'Mačči d amagrad',
'watchnochange'        => 'Ulaḥedd n yiferdas n umuγ n uεessi inek ma yettubeddel deg tawala i textareḍ.',
'watchdetails'         => '* ttεassaγ {{PLURAL:$1|$1 usebtar|$1 n yisebtaren}} mebla isebtaren "amyannan"
* [[Special:Watchlist/edit|Mel u beddel amuγ uεesi]]
* [[Special:Watchlist/clear|Kkes akk isebtaren]]',
'wlheader-enotif'      => '* Yeğğa Email n talγut.',
'wlheader-showupdated' => "* Isebtaren ttubeddlen segwasmi tkecmeḍ tikelt taneggarut ttbanen-d s '''uḍris aberbuz'''",
'watchmethod-recent'   => 'yessenqed ibeddlen imaynuten n isebtaren i ttεasseγ',
'watchmethod-list'     => 'yessenqed isebtaren i ttεassaγ i ibeddlen imaynuten',
'removechecked'        => 'Kkes iferdas i textareḍ seg umuγ uεessi',
'watchlistcontains'    => 'Amuγ uεessi inek yesεa $1 n {{PLURAL:$1|usebtar|yisebtaren}}.',
'watcheditlist'        => "Wagi d amuγ uεessi (s ugemmay) n isebtaren i tettεweḍ.
Xtar tankulin n yisebtaren i tebγiḍ ad tekseḍ seg umuγ uεessi inek umbeεd wekki γef taqeffalt 'kkes ayen xtareγ deg ukessar (wagi ad yemḥu daγen isebtaren 'amyannan' nsen d vice versa).",
'removingchecked'      => 'Ttwakksen iferdas i textareḍ seg umuγ uεessi...',
'couldntremove'        => "Ur yezmir ara ad yemḥu '$1'...",
'iteminvalidname'      => "Agnu akk d uferdis '$1', isem mačči ṣaḥiḥ...",
'wlnote'               => "Deg ukessar {{PLURAL:$1|yella yiwen ubeddel aneggaru|llan '''$1''' n yibeddlen ineggura}} deg {{PLURAL:$2|saεa taneggarut|'''$2''' swayeε tineggura}}.",
'wlshowlast'           => 'Mel $1 n swayeε $2 n wussan neγ $3 ineggura',
'wlsaved'              => 'Tagi d tasiwelt tettusmekta n umuγ uεessi inek.',
'watchlist-show-bots'  => 'Mel ibeddlen n yiboṭiyen (bots)',
'watchlist-hide-bots'  => 'Ffer ibeddlen n yiboṭiyen (bots)',
'watchlist-show-own'   => 'Mel ibeddlen inu',
'watchlist-hide-own'   => 'Ffer ibeddlen inu',
'watchlist-show-minor' => 'Mel ibeddlen ifessasen',
'watchlist-hide-minor' => 'Ffer ibeddlen ifessasen',
'wldone'               => 'D ayen.',

# Displayed when you click the "watch" button and it's in the process of watching
'watching'   => 'Ad iεass...',
'unwatching' => 'Ad ifakk aεessi...',

'enotif_mailer'      => 'Email n talγut n {{SITENAME}}',
'enotif_reset'       => 'Rcem akk isebtaren mmeẓren',
'enotif_newpagetext' => 'Wagi d asebtar amaynut.',
'changed'            => 'yettubeddel',
'created'            => 'yettwaxleq',
'enotif_subject'     => 'Asebtar $PAGETITLE n {{SITENAME}} $CHANGEDORCREATED sγur $PAGEEDITOR',
'enotif_lastvisited' => 'Ẓer $1 i akk ibeddlen segwasmi tkecmeḍ tikelt taneggarut.',
'enotif_body'        => 'Ay $WATCHINGUSERNAME,

Asebtar n {{SITENAME}} $PAGETITLE $CHANGEDORCREATED deg wass $PAGEEDITDATE sγur $PAGEEDITOR, ẓer $PAGETITLE_URL i tasiwelt n tura.

$NEWPAGE

Abeddel n wegzul: $PAGESUMMARY $PAGEMINOREDIT

Meslay akk d ambeddel:
email: $PAGEEDITOR_EMAIL
wiki: $PAGEEDITOR_WIKI

Ur yelli ara email n talγut asmi llan ibeddlen deg usebtar ala lukan teẓreḍ asebtar-nni. Tzemreḍ ad terreḍ i zero email n talγut i akk isebraen i tettεasseḍ.

             email n talγut n {{SITENAME}}

--
Akken ad tbeddleḍ n umuγ uεessi inek settings, ruḥ γer
{{fullurl:{{ns:special}}:Watchlist/edit}}

Tadhelt:
{{fullurl:{{MediaWiki:helppage}}}}',

# Delete/protect/revert
'deletepage'              => 'Mḥu asebtar',
'confirm'                 => 'Sentem',
'excontent'               => "Ayen yella: '$1'",
'excontentauthor'         => "Ayen yella: '$1' ('[[Special:Contributions/$2|$2]]' kan i yekken deg-s)",
'exbeforeblank'           => "Ayen yella uqbal ma yettumḥa: '$1'",
'exblank'                 => 'asebtar yella d ilem',
'confirmdelete'           => 'Validi amḥay',
'deletesub'               => '(Ad yemḥu "$1")',
'historywarning'          => 'Aγtal: Asebtar i ara temḥuḍ yesεa amezruy:',
'actioncomplete'          => 'Axdam yekfa',
'deletedtext'             => '"$1" yettumḥa.
Ẓer $2 i aγmis n yimḥayin imaynuten.',
'deletedarticle'          => '"[[$1]]" yettumḥa',
'dellogpage'              => 'Aγmis n umḥay',
'dellogpagetext'          => 'Deg ukessar, d amuγ n yimḥayin imaynuten.',
'deletionlog'             => 'Aγmis n umḥay',
'reverted'                => 'Asuγal i tasiwel taqdimt',
'deletecomment'           => 'Ayγer tebγiḍ ad temḥuḍ',
'imagereverted'           => 'Asuγal i tasiwel taqdimt yekfa.',
'cantrollback'            => 'Ur yezmir ara ad yessuγal; yella yiwen kan amseqdac iwumi ibeddel/yexleq asebtar-agi.',
'editcomment'             => 'Agzul n ubeddel yella: "<i>$1</i>".', # only shown if there is an edit comment
'revertpage'              => 'Yessuγal ibeddlen n [[Special:Contributions/$2|$2]] ([[User talk:$2|Meslay]]); yettubeddel γer tasiwelt taneggarut n [[User:$1|$1]]',
'sessionfailure'          => 'Yella ugul akk d takmect inek;
Axdam-agi yebṭel axaṭer waqila yella wemdan nniḍen i yeddem isem umseqdac inek.
G leεnayek wekki γef taqeffalt "Back/Précédent" n browser/explorateur inek, umbeεd wekki γef "Actualiser/reload" akk ad tεerḍeḍ tikelt nniḍen.',
'protectlogpage'          => 'Aγmis n wemḥay',
'protectedarticle'        => '"[[$1]]" yettwaḥrez',
'protectsub'              => '(Ad yeḥrez "$1")',
'protect-default'         => '(ameslugen)',
'protect-level-sysop'     => 'Inedbalen kan',
'protect-summary-cascade' => 'acercur',
'protect-expiring'        => 'yemmut deg $1 (UTC)',
'restriction-type'        => 'Turagt',
'minimum-size'            => 'Tiddi minimum (bytes/octets)',

# Restrictions (nouns)
'restriction-edit' => 'Beddel',
'restriction-move' => 'Smimeḍ',

# Undelete
'viewdeletedpage'        => 'Ẓer isebtaren yettumḥan',
'undeletecomment'        => 'Awennit:',
'undelete-header'        => 'Ẓer [[Special:Log/delete|aγmis n umḥay]] i isebtaren ttumḥan tura.',
'undelete-search-box'    => 'Nadi γef isebtaren yettumḥan',
'undelete-search-prefix' => 'Mel isebtaren i yebdan s:',
'undelete-search-submit' => 'Nadi',
'undelete-no-results'    => 'Ur yufi ara ulaḥedd n wawalen i tnadiḍ γef isebtaren deg iγbaren.',

# Namespace form on various pages
'namespace' => 'Isem n taγult:',
'invert'    => 'Snegdam ayen textareḍ',

# Contributions
'contributions' => 'Tikkin n umseqdac',
'mycontris'     => 'Tikkin inu',
'contribsub2'    => 'n $1 ($2)',
'nocontribs'    => 'Ur yufi ara abddel i tebγiḍ.',
'ucnote'        => 'Deg ukessar llan <b>$1</b> n yibeddlen ineggura deg <b>$2</b> n wussan ineggura.',
'uclinks'       => 'Ẓer $1 n yibeddlen ineggura; ẓer $2 n wussan ineggura.',
'uctop'         => ' (taneggarut)',

'sp-contributions-newest'      => 'Tikkin tineggura',
'sp-contributions-oldest'      => 'Tikkin timezwura',
'sp-contributions-newer'       => '$1 ssabeq',
'sp-contributions-older'       => '$1 imeḍfiren',
'sp-contributions-newbies'     => 'Mel tikkin n yimseqdacen imaynuten kan',
'sp-contributions-newbies-sub' => 'I yisem yimseqdacen imaynuten',
'sp-contributions-blocklog'    => 'Aγmis n uεeṭṭil',
'sp-contributions-search'      => 'Nadi i tikkin',
'sp-contributions-username'    => 'Tansa IP neγ isem umseqdac:',
'sp-contributions-submit'      => 'Nadi',

'sp-newimages-showfrom' => 'Mel tugniwin timaynuten seg $1',

# What links here
'whatlinkshere'      => 'Ayen yewwi-d γer dagi',
'notargettitle'      => 'Ulac nnican',
'notargettext'       => 'Ur textareḍ ara asebtar d nnican neγ umseqdac d nnican.',
'linklistsub'        => '(Amuγ n yizdayen)',
'linkshere'          => "Isebtaren-agi sεan azday γer '''[[:$1]]''':",
'nolinkshere'        => "Ulac asebtar i yesεan azday γer '''[[:$1]]'''.",
'nolinkshere-ns'     => "Ulac asebtar i yesεan azday γer '''[[:$1]]''' deg n isem n taγult i textareḍ.",
'isredirect'         => 'Asebtar usemmimeḍ',
'istemplate'         => 'asekcam',
'whatlinkshere-prev' => '{{PLURAL:$1|ssabeq|$1 ssabeq}}',
'whatlinkshere-next' => '{{PLURAL:$1|ameḍfir|$1 imeḍfiren}}',

# Block/unblock
'ipaddress'                   => 'Tansa IP',
'ipadressorusername'          => 'Tansa IP neγ isem umseqdac',
'ipbreason'                   => 'Ayγer',
'ipbotheroption'              => 'nniḍen',
'badipaddress'                => 'Tansa IP mačči d ṣaḥiḥ',
'ipblocklist-submit'          => 'Nadi',
'contribslink'                => 'tikkin',
'block-log-flags-anononly'    => 'Imseqdacen udrigen kan',
'proxyblockreason'            => 'Tansa n IP inek teεkel axaṭer nettat "open proxy". G leεnayek, meslay akk d provider inek.',
'proxyblocksuccess'           => 'D ayen.',
'sorbsreason'                 => 'Tansa n IP inek teεkel axaṭer nettat "open proxy" deg DNSBL yettuseqdac da.',
'sorbs_create_account_reason' => 'Tansa n IP inek teεkel axaṭer nettat "open proxy" deg DNSBL yettuseqdac da. Ur tezmireḍ ara ad txelqeḍ isem umseqdac',

# Move page
'movepage'                => 'Smimeḍ asebtar',
'movepagetext'            => "Mi tedsseqdceḍ talγa deg ukessar ad ibddel isem n usebtar, yesmimeḍ akk
umezruy-is γer isem amaynut.
Azwel aqdim ad yuγal azady n wesmimeḍ γer azwel amaynut.
Izdayen γer azwel aqdim ur ttubeddlen ara; ssenqd-iten
u ssenqed izdayen n snat d tlata tikkwal.
D kečč i yessefk a ten-yessenqed.

Meεna, ma yella amagrad deg azwel amaynut neγ azday n wamsmimeḍ
mebla amezruy, asebtar-inek '''ur''' yettusmimeḍ '''ara'''.
Yernu, tzemreḍ ad tesmimeḍ asebtar γer isem-is aqdim ma tγelṭeḍ.",
'movepagetalktext'        => "Asebtar \"Amyannan\" yettusmimeḍ ula d netta '''ma ulac:'''
*Yella asebtar \"Amyannan\" deg isem amaynut, neγ
*Trecmeḍ tankult deg ukessar.

Lukan akka, yessefk ad t-tedmeḍ weḥdek.",
'movearticle'             => 'Smimeḍ asebtar',
'movenologin'             => 'Ur tekcimeḍ ara',
'movenologintext'         => 'Yessefk ad tesεuḍ isem n umseqdac u [[Special:Userlogin|tkecmeḍ]]
iwakken ad tesmimḍeḍ asebtar.',
'newtitle'                => 'Ar azwel amaynut',
'move-watch'              => 'Σass asebtar-agi',
'movepagebtn'             => 'Smimeḍ asebtar',
'pagemovedsub'            => 'Asemmimeḍ yekfa',
'pagemovedtext'           => 'Asebtar "[[$1]]" yettwasmimeḍ ar "[[$2]]".',
'articleexists'           => 'Yella yagi yisem am wagi, neγ 
isem ayen textareḍ mačči d ṣaḥiḥ.
Xtar yiwen nniḍen.',
'talkexists'              => "'''Asemmimeḍ n usebtar yekfa, meεna asebtar umyannan ines ur yettusemmimeḍ ara axaṭer yella yagi yiwen s yisem kif-kif. G leεnayek, xdem-it weḥd-ek.'''",
'movedto'                 => 'yettusmimeḍ ar',
'movetalk'                => 'Smimeḍ asebtar umyannan (n umagrad-nni)',
'talkpagemoved'           => 'Asebtar umyannan yettusmimeḍ daγen',
'talkpagenotmoved'        => 'Asebtar umyannan (n umagrad-nni) <strong>ur</strong> yettusmimeḍ <strong>ara</strong>.',
'1movedto2'               => '[[$1]] yettusmimeḍ ar [[$2]]',
'1movedto2_redir'         => '[[$1]] yettusmimeḍ ar [[$2]] s redirect',
'movelogpage'             => 'Aγmis n usemmimeḍ',
'movelogpagetext'         => 'Akessar yella umuγ n yisebtaren yettusmimeḍen.',
'movereason'              => 'Ayγer',
'revertmove'              => 'Uγal ar tasiwelt ssabeq',
'delete_and_move'         => 'Mḥu u smimeḍ',
'delete_and_move_text'    => '==Amḥay i tebγiḍ==

Anda tebγiḍ tesmimeḍ "[[$1]]" yella yagi. tebγiḍ ad temḥuḍ iwakken yeqqim-d wemkan i usmimeḍ?',
'delete_and_move_confirm' => 'Ih, mḥu asebtar',
'delete_and_move_reason'  => 'Mḥu iwakken yeqqim-d wemkan i usmimeḍ',
'selfmove'                => 'Izwal amezwaru d uneggaru kif-kif; ur yezmir ara yesmimeḍ asebtar γur iman-is.',
'immobile_namespace'      => 'Azwel n uγbalu neγ anda tebγiḍ tesmimeḍ d anaw aslig; ur yezmir ara yesmimeḍ isebtaren seg/γer isem n taγult-agi.',

# Export
'export'            => 'Ssufeγ isebtaren',
'exportcuronly'     => 'Ssekcem tasiwelt n tura kan, mačči akk amezruy-is',
'export-submit'     => 'Ssufeγ',
'export-addcattext' => 'Rnu isebtaren seg taggayt:',
'export-addcat'     => 'Rnu',

# Namespace 8 related
'allmessages'               => 'Izen n system',
'allmessagesname'           => 'Isem',
'allmessagesdefault'        => 'Aḍris ameslugen',
'allmessagescurrent'        => 'Aḍris n tura',
'allmessagestext'           => 'Wagi d amuγ n izen n system i yellan di isem n taγult.',
'allmessagesnotsupportedUI' => 'Interface n tutlayt inek <b>$1</b> ulaci-tt sγur {{ns:special}}:Allmessages deg udeg-agi.',
'allmessagesnotsupportedDB' => "'''{{ns:special}}:Allmessages''' ut yezmir ara ad yettuseqdac axaṭer '''\$wgUseDatabaseMessages''' yettwakkes.",
'allmessagesfilter'         => 'Tastayt n yisem n izen:',
'allmessagesmodified'       => 'Mel win yettubeddlen kan',

# Thumbnails
'thumbnail-more'  => 'Ssemγer',
'missingimage'    => '<b>Tugna ulac-itt</b><br /><i>$1</i>',
'filemissing'     => 'Afaylu ulac-it',
'thumbnail_error' => 'Agul asmi yexleq tugna tamecṭuḥt: $1',

# Special:Import
'import'                     => 'Ssekcem isebtaren',
'importinterwiki'            => 'Assekcem n transwiki',
'import-interwiki-history'   => 'Xdem alsaru n akk tisiwal umezruy n usebtar-agi',
'import-interwiki-submit'    => 'Ssekcem',
'import-interwiki-namespace' => 'Azen isebtaren ar isem n taγult:',
'importstart'                => 'Asekcem n isebtaren...',
'import-revision-count'      => '$1 {{PLURAL:$1|tasiwelt|tisiwal}}',
'importnopages'              => 'Ulac isebtaren iwekken ad ttussekcmen.',
'importfailed'               => 'Asekcem yexser: $1',
'importunknownsource'        => 'Anaw n uγbalu n usekcem mačči d mechur',
'importcantopen'             => 'Ur yezmir ara ad yexdem asekcem n ufaylu',
'importbadinterwiki'         => 'Azday n interwiki ur yelhi',
'importnotext'               => 'D ilem neγ ulac aḍris',
'importsuccess'              => 'Asekcem yekfa!',
'importhistoryconflict'      => 'Amennuγ ger tisiwal n umezruy (waqila asebtar-agi yettwazen yagi)',
'importnosources'            => 'Asekcam n transwiki ur yexdim ara u amezruy n usekcam yettwakkes.',
'importnofile'               => 'ulaḥedd afaylu usekcam ur yettwazen.',
'importuploaderror'          => 'Ur yezmir ara yazen ufaylu n usekcam; waqila ufaylu meqqer aṭṭas.',

# Import log
'importlogpage'                    => 'Aγmis n usekcam',
'importlogpagetext'                => 'Adeblan n usekcam n isebtaren i yesεan amezruy ubeddel seg wiki tiyaḍ.',
'import-logentry-upload'           => 'Yessekcem [[$1]] s usekcam n ufaylu',
'import-logentry-upload-detail'    => '$1 tasiwelt(tisiwal)',
'import-logentry-interwiki'        => '$1 s transwiki',
'import-logentry-interwiki-detail' => '$1 tasiwelt(tisiwal) seg $2',

# Tooltip help for the actions
'tooltip-pt-userpage'             => 'Asebtar n umseqdac inu',
'tooltip-pt-anonuserpage'         => 'Asebtar umseqdac n IP wukud tekkiḍ',
'tooltip-pt-mytalk'               => 'Asebtar n umyannan inu',
'tooltip-pt-anontalk'             => 'Amyannan γef yibeddlen n tansa ip-yagi',
'tooltip-pt-preferences'          => 'Isemyifiyen inu',
'tooltip-pt-watchlist'            => 'Amuγ uεessi n yisebtaren i ttεessiγ asmi ttubeddlen',
'tooltip-pt-mycontris'            => 'Amuγ n tikkin inu',
'tooltip-pt-login'                => 'Lukan tkecmeḍ xir, meεna am tebγiḍ.',
'tooltip-pt-anonlogin'            => 'Lukan tkecmeḍ xir, meεna am tebγiḍ.',
'tooltip-pt-logout'               => 'Ffeγ',
'tooltip-ca-talk'                 => 'Amyannan γef ayen yella deg usebtar',
'tooltip-ca-edit'                 => 'Tzemreḍ ad tbeddleḍ asebtar-agi. Sseqdec pre-timeẓriwt qbel.',
'tooltip-ca-addsection'           => 'Rnu awennit i amyannan-agi.',
'tooltip-ca-viewsource'           => 'Asebtar-agi yettwaḥrez. Tzemreḍ ad twaliḍ aγbalu-ines.',
'tooltip-ca-history'              => 'Tisiwal ssabeq n usebtar-agi.',
'tooltip-ca-protect'              => 'Ḥrez asebtar-agi',
'tooltip-ca-delete'               => 'Mḥu asebtar-agi',
'tooltip-ca-undelete'             => 'Err akk ibeddlen n usebtar-agi i yellan uqbel ma yettwamḥu usebtar',
'tooltip-ca-move'                 => 'Smimeḍ asebtar-agi',
'tooltip-ca-watch'                => 'Rnu asebtar-agi i umuγ uεessi inek',
'tooltip-ca-unwatch'              => 'Kkes asebtar-agi seg umuγ uεessi inek',
'tooltip-search'                  => 'Nadi {{SITENAME}}',
'tooltip-p-logo'                  => 'Asebtar amenzawi',
'tooltip-n-mainpage'              => 'Ẓer asebtar amenzawi',
'tooltip-n-portal'                => 'Γef usenfar, ayen tzemrḍ ad txedmeḍ, anda tafeḍ tiγawsiwin',
'tooltip-n-currentevents'         => 'Af ayen yeḍran tura',
'tooltip-n-recentchanges'         => 'Amuγ n yibeddlen imaynuten deg wiki.',
'tooltip-n-randompage'            => 'Ẓer asebtar menwala',
'tooltip-n-help'                  => 'Amkan ideg tafeḍ.',
'tooltip-n-sitesupport'           => 'Ellil-aγ',
'tooltip-t-whatlinkshere'         => 'Amuγ n akk isebtaren i yesεan azday ar dagi',
'tooltip-t-recentchangeslinked'   => 'Ibeddlen imaynuten deg yisebtaren myezdin seg asebtar-agi',
'tooltip-feed-rss'                => 'RSS feed n usebtar-agi',
'tooltip-feed-atom'               => 'Atom feed n usebtar-agi',
'tooltip-t-contributions'         => 'Ẓer amuγ n tikkin n umseqdac-agi',
'tooltip-t-emailuser'             => 'Azen e-mail i umseqdac-agi',
'tooltip-t-upload'                => 'Azen tugna neγ afaylu nniḍen',
'tooltip-t-specialpages'          => 'Amuγ n akk isebtaren usligen',
'tooltip-ca-nstab-main'           => 'Ẓer ayen yellan deg usebtar',
'tooltip-ca-nstab-user'           => 'Ẓer asebtar umseqdac',
'tooltip-ca-nstab-media'          => 'Ẓer asebtar n media',
'tooltip-ca-nstab-special'        => 'Wagi asebtar uslig, ur tezmireḍ ara a t-tbeddleḍ',
'tooltip-ca-nstab-project'        => 'Ẓer asebtar usenfar',
'tooltip-ca-nstab-image'          => 'Ẓer asebtar n tugna',
'tooltip-ca-nstab-mediawiki'      => 'Ẓer izen n system',
'tooltip-ca-nstab-template'       => 'Ẓer talγa',
'tooltip-ca-nstab-help'           => 'Ẓer asebtar n tallat',
'tooltip-ca-nstab-category'       => 'Ẓer asebtar n taggayt',
'tooltip-minoredit'               => 'Wagi d abeddel afessas',
'tooltip-save'                    => 'Smekti ibeddlen inek',
'tooltip-preview'                 => 'G leεnaya-k, pre-ẓer ibeddlen inek uqbel ma tesmektiḍ!',
'tooltip-diff'                    => 'Mel ayen tbeddleḍ deg uḍris.',
'tooltip-compareselectedversions' => 'Ẓer amgerrad ger snat tisiwlini (i textareḍ) n usebtar-agi.',
'tooltip-watch'                   => 'Rnu asebtar-agi i umuγ uεessi inu',
'tooltip-recreate'                => 'Σiwed xleq asebtar γas akken yettumḥu',

# Attribution
'anonymous'        => 'Amseqdac udrig (Imseqdacen udrigen) n {{SITENAME}}',
'siteuser'         => '{{SITENAME}} amseqdac $1',
'lastmodifiedatby' => 'Tikelt taneggarut asmi yettubeddel asebtar-agi $2, $1 sγur $3.', # $1 date, $2 time, $3 user
'and'              => 'u',
'othercontribs'    => 'Tikkin n umseqdac-agi.',
'others'           => 'wiyaḍ',
'siteusers'        => '{{SITENAME}} amseqdac(imseqdacen) $1',
'creditspage'      => 'Win ixedmen asebtar',
'nocredits'        => 'Ulac talγut γef wayen ixedmen asebtar-agi.',

# Spam protection
'spamprotectiontitle'  => 'Aḥraz amgel "Spam"',
'spamprotectiontext'   => "Asebtar i tebγiḍ ad tesmektiḍ iεekkel-it ''aḥraz amgel \"Spam\"''. Waqila yella azday aberrani.",
'spamprotectionmatch'  => 'Aḍris-agi ur iεeğ-it \'\'"aḥraz amgel "Spam"\'\': $1',
'subcategorycount'     => '{{PLURAL:$1|Tella yiwen taggayt tazellumt|Llant $1 taggayin tizellumin}} deg taggayt-agi.',
'categoryarticlecount' => '{{PLURAL:$1|Yella yiwen amagrad|Llan $1 imagraden}} deg taggayt-agi.',
'category-media-count' => '{{PLURAL:$1|Yella yiwen afaylu|Llan $1 ifayluwen}} deg taggayt-agi.',
'spam_reverting'       => 'Asuγal i tasiwel taneggarut i ur tesεi ara izdayen γer $1',
'spam_blanking'        => 'Akk tisiwal sεan izdayen γer $1, ad yemḥu',

# Info page
'infosubtitle'   => 'Talγut i usebtar',
'numedits'       => 'Geddac n yibeddlen (amagrad): $1',
'numtalkedits'   => 'Geddac n yibeddlen (asebtar n umyannan): $1',
'numwatchers'    => 'Geddac n yiεessasen: $1',
'numauthors'     => 'Geddac n yimsedac i yuran (amagrad): $1',
'numtalkauthors' => 'Geddac n yimsedac i yuran (asebtar umyennan): $1',

# Math options
'mw_math_png'    => 'Daymen err-it PNG',
'mw_math_simple' => 'HTML ma yella amraḍi, ma ulac PNG',
'mw_math_html'   => 'HTML ma yezmer neγ PNG ma ulac',
'mw_math_source' => 'Eğğ-it s TeX (i browsers/explorateurs n weḍris)',
'mw_math_modern' => 'Mliḥ i browsers/explorateurs imaynuten',
'mw_math_mathml' => 'MathML ma yezmer (experimental)',

# Patrolling
'markaspatrolleddiff'                 => 'Rcem "yettwassenqden"',
'markaspatrolledtext'                 => 'Rcem amagrad-agi "yettwassenqden"',
'markedaspatrolled'                   => 'Rcem belli yettwasenqed',
'markedaspatrolledtext'               => 'Tasiwelt i textareḍ tettwassenqed.',
'rcpatroldisabled'                    => 'Yettwakkes asenqad n ibeddlen imaynuten',
'rcpatroldisabledtext'                => 'Yettwakkes asenqad n ibeddlen imaynuten',
'markedaspatrollederror'              => 'Ur yezmir ara ad yercem "yettwassenqden"',
'markedaspatrollederrortext'          => 'Yessefk ad textareḍ tasiwelt akken a tt-trecmeḍ "yettwassenqden".',
'markedaspatrollederror-noautopatrol' => 'Ur tezmireḍ ara ad trecmeḍ ibeddilen inek "yettwassenqden".',

# Patrol log
'patrol-log-page' => 'Aγmis n wasenqad',
'patrol-log-line' => 'Yercem tasiwelt $1 n $2 "yettwassenqden" $3',
'patrol-log-auto' => '(otomatik)',

# Image deletion
'deletedrevision' => 'Tasiwelt taqdimt $1 tettymḥa.',

# Browsing diffs
'previousdiff' => '← Amgerrad ssabeq',
'nextdiff'     => 'amgerrad ameḍfir →',

# Media information
'mediawarning'         => "'''Aγtal''': Waqila afaylu-yagi yesεa angal aḥraymi, lukan a t-tesseqdceḍ yezmer ad ixesser aselkim inek.<hr />",
'imagemaxsize'         => 'Ḥedded tiddi n tugniwin deg yiglamen n tugniwim i:',
'thumbsize'            => 'Tiddi n tugna tamecṭuḥt:',
'file-info'            => '(tiddi n ufaylu: $1, anaw n MIME: $2)',
'file-info-size'       => '($1 × $2 pixel, tiddi n ufaylu: $3, anaw n MIME: $4)',
'file-nohires'         => '<small>Ur tella ara resolution i tameqqrant fell-as.</small>',
'file-svg'             => '<small>Wagi d tugna s lvecteur iwumi truḥ ara taγarfa ines. Tiddi n ubuḍ: $1 × $2 pixels.</small>',
'show-big-image'       => 'Resolution tameqqrant',
'show-big-image-thumb' => '<small>Tiddi n pre-timeẓriwt-agi: $1 × $2 pixels</small>',

'newimages' => 'Amuγ n ifayluwen imaynuten',
'noimages'  => 'Tugna ulac-itt.',

'passwordtooshort' => 'Awal n tbaḍnit inek d amecṭuḥ bezzaf. Yessefk ad yesεu $1 isekkilen neγ kter.',

# External editor support
'edit-externally'      => 'Beddel afaylu-yagi s usnas aberrani.',
'edit-externally-help' => 'Ẓer [http://meta.wikimedia.org/wiki/Help:External_editors taknut] iwakken tessneḍ kter.',

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

# E-mail address confirmation
'confirmemail'            => 'Sentem tansa n e-mail',
'confirmemail_noemail'    => 'Ur tesεiḍ ara tansa n email ṣaḥiḥ deg [[Special:Preferences|isemyifiyen umseqdac]] inek.',
'confirmemail_text'       => 'Feg wiki-yagi, yessefk ad tvalidiḍ tansa n email inek
qbel ma tesseqdceḍ iḍaγaren n email. Tella taqeffalt d akessar, wekki fell-as
iwakken yettwazen ungal n usentem semail. Email-nni yesεa azady, ldi-t.',
'confirmemail_pending'    => '<div class="error">
Yettwazen-ak yagi ungal n usentem; lukan txelqeḍ isem umseqdac tura kan,
ahat yessefk ad tegguniḍ cwiṭ qbel ma teεreḍ ad testeqsiḍ γef ungal amaynut.
</div>',
'confirmemail_send'       => 'Azen-iyi-d angal n usentem s e-mail iwakken ad snetmeγ.',
'confirmemail_sent'       => 'E-mail yettwazen iwakken ad tsentmeḍ.',
'confirmemail_oncreate'   => 'Angal n usentem yettwazen ar tansa n e-mail inek.
Yessefk tesseqdceḍ angal-agi iwakken ad tkecmeḍ, meεna yessefk ad t-tefkeḍ
iwakken ad xedmen yiḍaγaren n email deg wiki-yagi.',
'confirmemail_sendfailed' => 'Ur yezmir ara ad yazen asentem n email. Ssenqed tansa n email inek.

Email yuγal-d: $1',
'confirmemail_invalid'    => 'Angal n usentem mačči ṣaḥiḥ. Waqila yemmut.',
'confirmemail_needlogin'  => 'Yessefk $1 iwakken tesnetmeḍ tansa n email inek.',
'confirmemail_success'    => 'Asentem n tansa n email inek yekfa. Tura tzemreḍ ad tkecmeḍ.',
'confirmemail_loggedin'   => 'Asentem n tansa n email inek yekfa tura.',
'confirmemail_error'      => 'Yella ugur s usmekti n usentem inek.',
'confirmemail_subject'    => 'Asentem n tansa n email seg {{SITENAME}}',
'confirmemail_body'       => 'Amdan, waqila d kečč, seg tansa IP $1, yexleq
isem umseqdac "$2" s tansa n e-mail deg {{SITENAME}}.

Iwakken tbeyyneḍ belli isem umseqdac inek u terreḍ
iḍaγaren n email ad xdemen deg {{SITENAME}}, ldi azday agi:

$3

Lukan mačči d *kečč*, ur teḍfireḍ ara azday. Angal n usentem-agi
ad yemmut ass $4.',

# Inputbox extension, may be useful in other contexts as well
'tryexact'       => 'Nadi γef uzwel kif-kif',
'searchfulltext' => 'Nadi aḍris ettmam',
'createarticle'  => 'Xleq amagrad',

# Scary transclusion
'scarytranscludedisabled' => '[Yettwakkes assekcam n yisebtaren seg wiki wiyaḍ]',
'scarytranscludefailed'   => '[Ur yezmir ara yewwi-d talγa n $1; suref-aγ]',
'scarytranscludetoolong'  => '[URL d aγezfan bezzaf; suref-aγ]',

# Trackbacks
'trackbackbox'      => '<div id="mw_trackbacks">
Izdayen n zdeffir n umagrad-agi:<br />
$1
</div>',
'trackbackremove'   => ' ([$1 Mḥu])',
'trackbacklink'     => 'Azday n zdeffir',
'trackbackdeleteok' => 'Azday n zdeffir yettumḥa.',

# Delete conflict
'deletedwhileediting' => 'Aγtal: Asebtar-agi yettumḥa qbel ma tebdiḍ ad tt-tbeddleḍ!',
'confirmrecreate'     => "Amseqdac [[User:$1|$1]] ([[User talk:$1|Meslay]]) yemḥu asebtar-agi beεda ma tebdiḍ abeddel axaṭer:
: ''$2''
G leεnaya-k sentem belli ṣaḥḥ tebγiḍ ad tεiwedeḍ axlaq n usebtar-agi.",
'recreate'            => 'Σiwed xleq',

# HTML dump
'redirectingto' => 'Asemmimeḍ ar [[$1]]...',

# action=purge
'confirm_purge' => 'Mḥu lkac n usebtar-agi?

$1',

'youhavenewmessagesmulti' => 'Tesεiḍ izen amaynut deg $1',

'searchcontaining' => "Inadi isebtaren i isεan ''$1''.",
'searchnamed'      => "Nadi γef imagraden ttusemman ''$1''.",
'articletitles'    => "Imagraden i yebdan s ''$1''",
'hideresults'      => 'Ffer igmad',

# DISPLAYTITLE
'displaytitle' => '(Xdem azday ar asebtar-agi akka [[$1]])',

'loginlanguagelabel' => 'Tutlayt: $1',

# Multipage image navigation
'imgmultipageprev'   => '&larr; asebtar ssabeq',
'imgmultipagenext'   => 'asebtar ameḍfir &rarr;',
'imgmultigo'         => 'Ruḥ!',
'imgmultigotopre'    => 'Ruḥ s asebtar',
'imgmultiparseerror' => 'Afaylu n tugna yexser, ihi {{SITENAME}} ur yezmir ara ad yaf amuγ n yisebtaren.',

# Table pager
'ascending_abbrev'         => 'asawen',
'descending_abbrev'        => 'akessar',
'table_pager_next'         => 'Asebtar ameḍfir',
'table_pager_prev'         => 'Asebtar ssabeq',
'table_pager_first'        => 'Asebtar amezwaru',
'table_pager_last'         => 'Asebtar aneggaru',
'table_pager_limit'        => 'Mel $1 iferdas di mkul asebtar',
'table_pager_limit_submit' => 'Ruḥ',
'table_pager_empty'        => 'Ulac igmad',

# Auto-summaries
'autosumm-blank'   => 'Yekkes akk aḍris seg usebtar',
'autosumm-replace' => "Ibeddel asebtar s '$1'",
'autoredircomment' => 'Asemmimeḍ ar [[$1]]', # This should be changed to the new naming convention, but existed beforehand
'autosumm-new'     => 'Asebtar amaynut: $1',

# Size units
'size-bytes'     => '$1 B/O',
'size-kilobytes' => '$1 KB/KO',
'size-megabytes' => '$1 MB/MO',
'size-gigabytes' => '$1 GB/GO',

# Live preview
'livepreview-loading' => 'Assisi…',
'livepreview-ready'   => 'Assisi… D ayen!',
'livepreview-failed'  => 'Pre-timeẓriwt tağiḥbuṭ texser!
Σreḍ pre-timeẓriwt tamagnut.',
'livepreview-error'   => 'Pre-timeẓriwt tağiḥbuṭ texser: $1 "$2"
Σreḍ pre-timeẓriwt tamagnut.',

);

?>