summaryrefslogtreecommitdiff
path: root/languages/messages/MessagesGv.php
blob: 4d03c65b620480193c6fdc907a3699447a6ed645 (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
<?php
/** Manx (Gaelg)
 *
 * See MessagesQqq.php for message documentation incl. usage of parameters
 * To improve a translation please visit http://translatewiki.net
 *
 * @ingroup Language
 * @file
 *
 * @author Alison
 * @author MacTire02
 * @author Shimmin Beg
 */

$namespaceNames = array(
	NS_MEDIA            => 'Meanyn',
	NS_SPECIAL          => 'Er_lheh',
	NS_TALK             => 'Resooney',
	NS_USER             => 'Ymmydeyr',
	NS_USER_TALK        => 'Resooney_ymmydeyr',
	NS_PROJECT_TALK     => 'Resooney_$1',
	NS_FILE             => 'Coadan',
	NS_FILE_TALK        => 'Resooney_coadan',
	NS_MEDIAWIKI        => 'MediaWiki',
	NS_MEDIAWIKI_TALK   => 'Resooney_MediaWiki',
	NS_TEMPLATE         => 'Clowan',
	NS_TEMPLATE_TALK    => 'Resooney_clowan',
	NS_HELP             => 'Cooney',
	NS_HELP_TALK        => 'Resooney_cooney',
	NS_CATEGORY         => 'Ronney',
	NS_CATEGORY_TALK    => 'Resooney_ronney',
);

$messages = array(
# User preference toggles
'tog-underline'           => 'Cur linnaghyn fo chianglaghyn:',
'tog-highlightbroken'     => 'Croo kianglaghyn brisht <a href="" class="new">myr shoh</a> (aght elley: myr shoh<a href="" class="internal">?</a>).',
'tog-hideminor'           => "Follaghey myn-arraghyn ayns caghlaaghyn s'noa",
'tog-numberheadings'      => 'Cur earrooyn gyn smooinaght er kione-linnaghyn',
'tog-showtoolbar'         => 'Taishbyney barr greieyn (ta feme ec er JavaScript)',
'tog-editondblclick'      => 'Reaghey duillagyn lesh crig dooblit (ta feme ec er JavaScript)',
'tog-rememberpassword'    => "Cooinnee m'ockle arrey er y cho-earrooder shoh",
'tog-watchcreations'      => 'Cur duillagyn ta crooit aym lesh my rolley arrey',
'tog-watchdefault'        => 'Cur duillagyn ta reaghit aym lesh my rolley arrey',
'tog-watchmoves'          => 'Cur duillagyn ta scughit aym lesh my rolley arrey',
'tog-watchdeletion'       => 'Cur duillagyn ta scryssit aym lesh my rolley arrey',
'tog-minordefault'        => 'Myr roie-hoieaghey, cowraghey dagh reaghey myr myn-reaghey',
'tog-previewontop'        => 'Taishbyney roie-haishbynys roish y chishtey reaghey',
'tog-previewonfirst'      => 'Taishbyney roie-haishbynys ec y chied reaghey',
'tog-enotifusertalkpages' => 'Cur post-l dou my vees y duillag ymmydeyr aym caghlaa',
'tog-enotifminoredits'    => 'Cur dou post-l er myn-arraghey duillagyn chammah',
'tog-shownumberswatching' => 'Taishbyney quoid dy ymmydeyryn ta freill arrey er',
'tog-fancysig'            => 'Gra dy vel y screeuys myr wikiteks (gyn kiangley seyr-obbragh)',
'tog-showhiddencats'      => 'Taishbyney ronnaghyn follit',

'underline-always'  => 'Rieau',
'underline-never'   => 'Dy bragh',
'underline-default' => 'Rere roie-hoiaghey y yeeagheyder',

# Dates
'sunday'        => 'Jedoonee',
'monday'        => 'Jelune',
'tuesday'       => 'Jemayrt',
'wednesday'     => 'Jecrean',
'thursday'      => 'Jerdein',
'friday'        => 'Jeheiney',
'saturday'      => 'Jesarn',
'sun'           => 'Doon',
'mon'           => 'Lune',
'tue'           => 'Mayrt',
'wed'           => 'Crean',
'thu'           => 'Jerd',
'fri'           => 'Eney',
'sat'           => 'Sarn',
'january'       => 'Jerrey Geuree',
'february'      => 'Toshiaght Arree',
'march'         => 'Mart',
'april'         => 'Averil',
'may_long'      => 'Boaldyn',
'june'          => 'Mean Souree',
'july'          => 'Jerrey Souree',
'august'        => 'Luanistyn',
'september'     => 'Mean Fouyir',
'october'       => 'Jerrey Fouyir',
'november'      => 'Mee Houney',
'december'      => 'Mee ny Nollick',
'january-gen'   => 'Jerrey Geuree',
'february-gen'  => 'Toshiaght Arree',
'march-gen'     => 'Mart',
'april-gen'     => 'Averil',
'may-gen'       => 'Boaldyn',
'june-gen'      => 'Mean Souree',
'july-gen'      => 'Jerrey Souree',
'august-gen'    => 'Luanistyn',
'september-gen' => 'Mean Fouyir',
'october-gen'   => 'Jerrey Fouyir',
'november-gen'  => 'Mee Houney',
'december-gen'  => 'Mee ny Nollick',
'jan'           => 'JGeu',
'feb'           => 'TArr',
'mar'           => 'Mart',
'apr'           => 'Ave',
'may'           => 'Boal',
'jun'           => 'MSou',
'jul'           => 'JSou',
'aug'           => 'Luan',
'sep'           => 'MFou',
'oct'           => 'JFou',
'nov'           => 'Soun',
'dec'           => 'Noll',

# Categories related messages
'pagecategories'                 => '{{PLURAL:$1|Ronney|Ronnaghyn}}',
'category_header'                => 'Duillagyn ayns ronney "$1"',
'subcategories'                  => 'Fo-ronnaghyn',
'category-media-header'          => 'Meanyn ayns ronney "$1"',
'category-empty'                 => "''Cha nel duillagyn ny meanyn ayns y ronney shoh ec y traa t'ayn.''",
'hidden-categories'              => '{{PLURAL:$1|Ronney follit|Ronnaghyn follit}}',
'hidden-category-category'       => 'Ronnaghyn follit', # Name of the category where hidden categories will be listed
'category-subcat-count'          => "{{PLURAL:$2|Ta{{PLURAL:$1|&nbsp;ny $1 fo-ronney|'n $1 'o-ronney|'n $1 'o-ronney|&nbsp;ny $1 fo-ronnaghyn}} shoh ec y ronney shoh, jeh'n lane-sym $2.}}",
'category-subcat-count-limited'  => "{{PLURAL:$1|Ta{{PLURAL:$1|&nbsp;ny $1 fo-ronney|'n $1 'o-ronney|'n $1 'o-ronney|&nbsp;ny $1 fo-ronnaghyn}} shoh ec y ronney shoh.}}",
'category-article-count'         => "Ta{{PLURAL:$1|'n $1 duillag|'n $1 duillag|'n $1 ghuillag| ny $1 duillagyn}} heese 'sy ronney shoh, jeh'n lame-sym $2.",
'category-article-count-limited' => "Ta{{PLURAL:$1|'n $1 duillag|'n $1 duillag|'n $1 ghuillag| ny $1 duillagyn}} heese 'sy ronney shoh.",
'category-file-count-limited'    => "Ta{{PLURAL:$1|'n $1 coadan|'n $1 choadan|'n $1 choadan| ny $1 coadanyn}} heese 'sy ronney shoh.",
'listingcontinuesabbrev'         => 'tooil.',

'mainpagetext' => "<big>'''Ta MediaWiki currit stiagh nish.'''</big>",

'about'          => 'Mychione',
'article'        => 'Duillag chummal',
'newwindow'      => '(foshlit ayns uinnag elley eh)',
'cancel'         => 'Dolley magh',
'qbfind'         => 'Fow',
'qbbrowse'       => 'Ronsaghey',
'qbedit'         => 'Reaghey',
'qbpageoptions'  => 'Yn duillag shoh',
'qbpageinfo'     => 'Co-hecks',
'qbmyoptions'    => 'My ghuillagyn',
'qbspecialpages' => 'Duillagyn er lheh',
'moredotdotdot'  => 'Tooilley...',
'mypage'         => 'My ghuillag',
'mytalk'         => 'My resoonaght',
'anontalk'       => "Cur loayrtys da'n IP shoh",
'navigation'     => 'Stiureydys',
'and'            => '&#32;as',

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

'errorpagetitle'    => 'Marranys',
'returnto'          => 'Goll er ash gys $1.',
'tagline'           => 'Ass {{SITENAME}}.',
'help'              => 'Cooney',
'search'            => 'Ronsaghey',
'searchbutton'      => 'Ronsaghey',
'go'                => 'Gow',
'searcharticle'     => 'Gow',
'history'           => 'Shennaghys ny duillag',
'history_short'     => 'Shennaghys',
'info_short'        => 'Oayllys',
'printableversion'  => 'Lhieggan clou',
'permalink'         => 'Kiangley yiarn',
'print'             => 'Dy chlou',
'edit'              => 'Reaghey',
'create'            => 'Croo',
'editthispage'      => 'Reaghey yn duillag shoh',
'create-this-page'  => 'Croo yn duillag shoh',
'delete'            => 'Scryss',
'deletethispage'    => 'Scryss y duillag shoh',
'undelete_short'    => 'Jee-scryssey {{PLURAL:$1|$1 caghlaa|$1 chaghlaa|$1 chaghlaa|$1 caghlaaghyn}}',
'protect'           => 'Coadee',
'protect_change'    => 'arraghey',
'protectthispage'   => 'Coadee yn duillag shoh',
'unprotect'         => 'Jee-choadee',
'unprotectthispage' => 'Jee-choadee y duillag shoh',
'newpage'           => 'Duillag noa',
'talkpage'          => 'Resooney magh y duillag shoh',
'talkpagelinktext'  => 'Resoonaght',
'specialpage'       => 'Duillag er lheh',
'personaltools'     => 'Greienyn persoonagh',
'postcomment'       => 'Cohaggloo y chur seose',
'articlepage'       => 'Jeeagh er duillag y chummal',
'talk'              => 'Resoonaght',
'views'             => 'Reayrtyn',
'toolbox'           => 'Kishtey greie',
'userpage'          => 'Jeeagh er duillag yn ymmydeyr',
'projectpage'       => 'Jeeagh er duillag y halee',
'imagepage'         => 'Jeeagh er duillag y choadan',
'mediawikipage'     => 'Jeeagh er duillag y haghteraght',
'templatepage'      => 'Jeeagh er duillag y chlowan',
'viewhelppage'      => 'Jeeagh er duillag y chooney',
'categorypage'      => 'Jeeagh er duillag ny ronnaghyn',
'viewtalkpage'      => 'Jeeagh er resoonaght',
'otherlanguages'    => 'Ayns çhengaghyn elley',
'redirectedfrom'    => '(Aa-enmyssit ass $1)',
'redirectpagesub'   => 'Duillag aa-enmys',
'lastmodifiedat'    => "Va'n duillag shoh ceaghlit er $1, ec $2.", # $1 date, $2 time
'protectedpage'     => 'Duillag choadit',
'jumpto'            => 'Gow gys:',
'jumptonavigation'  => 'stiureydys',
'jumptosearch'      => 'ronsaghey',

# 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'            => 'Mychione {{SITENAME}}',
'aboutpage'            => 'Project:Mychione',
'copyright'            => 'Ta stoo ry-gheddyn rere $1.',
'copyrightpagename'    => 'Coip-chiart {{GRAMMAR:genitive|{{SITENAME}}}}',
'copyrightpage'        => '{{ns:project}}:Coip-chiartyn',
'currentevents'        => 'Cooishyn y laa',
'currentevents-url'    => 'Project:Cooishyn y laa',
'disclaimers'          => 'Jiooldeyderyn',
'disclaimerpage'       => 'Project:Obbalys cadjin',
'edithelp'             => 'Cooney y reaghey',
'edithelppage'         => 'Help:Reaghey',
'faq'                  => 'FC',
'faqpage'              => 'Project:FC',
'helppage'             => 'Help:Cummal',
'mainpage'             => 'Ard-ghuillag',
'mainpage-description' => 'Ard-ghuillag',
'policy-url'           => 'Project:Polasee',
'portal'               => 'Ynnyd y phobble',
'portal-url'           => 'Project:Ynnyd y phobble',
'privacy'              => 'Polasee preevaadjys',
'privacypage'          => 'Project:Polasee preevaadjys',

'badaccess' => 'Marranys y chied',

'ok'                      => 'OK',
'retrievedfrom'           => 'Feddynit ass "$1"',
'youhavenewmessages'      => 'Ta $1 ayd ($2).',
'newmessageslink'         => 'çhaghteraghtyn noa',
'newmessagesdifflink'     => "caghlaa s'jerree",
'youhavenewmessagesmulti' => 'Ta çhaghteraghtyn noa ayd er $1',
'editsection'             => 'reaghey',
'editold'                 => 'reaghey',
'viewsourceold'           => 'jeeagh er bun',
'editlink'                => 'reaghey',
'viewsourcelink'          => 'jeeagh er bun',
'editsectionhint'         => 'Reaghey rheynn: $1',
'toc'                     => 'Cummal',
'showtoc'                 => 'taishbyney',
'hidetoc'                 => 'follaghey',
'viewdeleted'             => 'Jeeagh er $1?',
'site-rss-feed'           => 'Scoltey RSS $1',
'site-atom-feed'          => 'Scoltey Atom $1',
'page-rss-feed'           => 'Scoltey RSS "$1"',
'page-atom-feed'          => 'Atom Feed "$1"',
'red-link-title'          => '$1 (cha nel y duillag shoh ayn)',

# Short words for each namespace, by default used in the namespace tab in monobook
'nstab-main'      => 'Duillag',
'nstab-user'      => 'Duillag yn ymmydeyr',
'nstab-special'   => 'Er lheh',
'nstab-project'   => 'Duillag shalee',
'nstab-image'     => 'Coadan',
'nstab-mediawiki' => 'Çhaghteraght',
'nstab-template'  => 'Clowan',
'nstab-help'      => 'Duillag choonee',
'nstab-category'  => 'Ronney',

# Main script and global functions
'nosuchspecialpage' => 'Cha nel y duillag er lheh shoh ayn',

# General errors
'error'                => 'Marranys',
'missing-article'      => 'Cha row teks duillag, lhisagh ve er gheddyn lesh yn ennym "$1" $2, feddynit ec y stoyr-fysseree.

Dy cadjin, she y chooish da\'n taghyrt shen na jannoo shelg er kiangley caghlaa ass date ny kiangley shennaghys dys duillag va scrysst.

Mannagh vel eh y chooish, foddee dy vel doghan \'sy chooid vog er ve feddynit magh ayd.<br />
Cur coontey jeh da [[Special:ListUsers/sysop|reireyder]], as gow notey jeh\'n URL.',
'missingarticle-rev'   => '(caghlaa#: $1)',
'internalerror'        => 'Marranys ynveanagh',
'internalerror_info'   => 'Marranys ynveanagh: $1',
'badarticleerror'      => 'Cha nod oo jannoo shen er y duillag shoh.',
'badtitle'             => 'Drogh-ennym',
'badtitletext'         => "Va marrantys bentyn rish ennym y ghuillag v'ou shirrey.  Foddee dy vel eh follym ny gyn vree, ny kianglt dy moal myr kiangley eddyr-wiki.  Foddee dy row cowraghyn 'syn ennym nagh nod oo jannoo ymmyd jeu ayns enmyn.",
'viewsource'           => 'Jeeagh er bun',
'viewsourcefor'        => 'dy $1',
'actionthrottled'      => 'Obbyr er ny phlooghey',
'actionthrottledtext'  => "Myr saase noi-spam, cha nod oo jannoo yn obbyr shoh rouyr keayrtyn ayns tammylt beg, as t'ou er roshtyn yn earroo smoo.  Jean eab noa dy gerrid, my saillt.",
'protectedpagetext'    => "Ta'n duillag shoh fo ghlass, as cha nod oo eshyn y reaghey.",
'viewsourcetext'       => 'Foddee oo jeeagh as jean aascreeuyn er bun ny duillag shoh:',
'namespaceprotected'   => "Cha nel kiart ayd duillagyn 'sy reamys '''$1''' y reaghey.",
'customcssjsprotected' => 'Cha nel kiart ayd y duillag shoh y reaghey.  Ta tosheeaghtyn persoonagh ymmydeyr elley ayn.',
'ns-specialprotected'  => 'Cha nod oo reaghey duillagyn er lheh.',

# Login and logout pages
'logouttitle'                => 'Log magh yn ymmydeyr',
'welcomecreation'            => '== Failt ort, $1! ==
Ta dty choontys chrooit nish.<br />
Ny jean jarrood dty [[Special:Preferences|{{SITENAME}} hosheeaghtyn]] y arraghey.',
'loginpagetitle'             => 'Log stiagh yn ymmydeyr',
'yourname'                   => "Dt'ennym ymmydeyr",
'yourpassword'               => 'Fockle yn arrey:',
'yourpasswordagain'          => "Aascreeu d'ockle arrey:",
'remembermypassword'         => "Cooinnee m'ockle arrey",
'login'                      => 'Log stiagh',
'nav-login-createaccount'    => 'Log stiagh / croo coontys',
'loginprompt'                => 'Shegin dhyt cur pooar da minniagyn dy loggal stiagh ayns {{SITENAME}}.',
'userlogin'                  => 'Log stiagh / croo coontys',
'logout'                     => 'Log magh',
'userlogout'                 => 'Log magh',
'notloggedin'                => 'Cha nel ou loggit stiagh',
'nologin'                    => "Nagh vel log stiagh ayd? '''$1'''.",
'nologinlink'                => 'Croo coontys',
'createaccount'              => 'Croo coontys',
'gotaccount'                 => "Vel coontys ayd hannah? '''$1'''.",
'gotaccountlink'             => 'Log stiagh',
'createaccountmail'          => 'er post-L',
'youremail'                  => 'Post-L:',
'username'                   => "Dt'ennym ymmydeyr:",
'uid'                        => 'Enney ymmydeyr:',
'yourrealname'               => 'Feer-ennym:',
'yourlanguage'               => 'Çhengey:',
'yournick'                   => 'Far-ennym:',
'yourgender'                 => 'Keintys:',
'gender-unknown'             => 'Neuhoilshit',
'gender-male'                => 'Firrinagh',
'gender-female'              => 'Bwoirrinagh',
'email'                      => 'Post-L',
'prefs-help-realname'        => "Ta dt'eer ennym reihyssagh.<br />
My bailliu eh y chiarail, bee eh ymmydit son cur gys lieh y chur dhyt er son yn obbyr ayd.",
'loginerror'                 => 'Marranys log stiagh',
'loginsuccesstitle'          => "T'ou loggalt stiagh",
'loginsuccess'               => "'''T'ou loggit stiagh ayns {{SITENAME}} myr \"\$1\".'''",
'nosuchuser'                 => 'Cha nel ymmydeyr lesh yn ennym "$1".<br />
Cur streean er dty lettraghey, ny [[Special:UserLogin/signup|croo coontys noa]].',
'nosuchusershort'            => 'Cha nel ymmydeyr lesh yn ennym "<nowiki>$1</nowiki>".
Cur streean er dty lettraghey.',
'nouserspecified'            => 'Shegin dhyt ennym ymmydeyr y honraghey.',
'wrongpassword'              => 'Va fockle arrey neuchiart screeuit. Screeu eh reesht eh.',
'wrongpasswordempty'         => "Va'n fockle arrey screeuit bane.
Aascreeu, my sailliu.",
'mailmypassword'             => "Cur dou m'ockle arrey er post-L",
'passwordremindertitle'      => 'Fockle arrey noa shallidagh gys {{SITENAME}}',
'noemail'                    => 'Cha nel enmys post-L recortyssit da\'n ymmydeyr "$1".',
'passwordsent'               => 'Va fockle arrey noa currit da enmys post-L ta recortyssit da "$1".<br />
Tra t\'eh ayd, log stiagh my sailliu.',
'acct_creation_throttle_hit' => "Va {{PLURAL:$1|1 choontys|$1 coontyssyn}} crooit ec keayrtee da'n wiki shoh lesh yn enmys IP ayd 'sy laa ain, as cha nel ny smoo coontyssyn y chroo lhiggalagh.<br />
Myr eiyrtys, cha nod keayrtee lesh yn enmys IP shoh ny smoo coontyssyn noa y chroo nish.",
'accountcreated'             => 'Coontys crooit',
'accountcreatedtext'         => 'Ta coontys ymmydeyr da $1 crooit.',
'createaccount-title'        => 'Coontys crooit dy {{SITENAME}}',
'loginlanguagelabel'         => 'Çhengey: $1',

# Password reset dialog
'resetpass'                 => 'Caghlaa fockle yn arrey',
'resetpass_header'          => 'Caghlaa fockle arrey y choontys',
'oldpassword'               => 'Shenn-ockle yn arrey:',
'newpassword'               => 'Fockle noa yn arrey:',
'retypenew'                 => "Aascreeu d'ockle arrey noa:",
'resetpass_submit'          => 'Soiaghey fockle yn arrey as loggal stiagh',
'resetpass_forbidden'       => 'Cha nod focklyn arrey y arraghey er {{SITENAME}}',
'resetpass-submit-loggedin' => 'Caghlaa fockle yn arrey',

# Edit page toolbar
'bold_sample'     => 'Clou trome',
'bold_tip'        => 'Clou trome',
'italic_sample'   => 'Clou iddaalagh',
'italic_tip'      => 'Clou iddaalagh',
'link_sample'     => 'Ennym y chianglee',
'link_tip'        => 'Kiangley ynveanagh',
'extlink_sample'  => 'http://www.example.com ennym chianglee',
'extlink_tip'     => 'Kiangley mooie (cooiney roie-ockle http://)',
'headline_sample' => 'Teks y chione-linney',
'headline_tip'    => 'Kione-linney corrym 2',
'math_sample'     => 'Cur formley stiagh ayns shoh',
'math_tip'        => 'Formley maddaghtoil (LaTeX)',
'nowiki_sample'   => 'Cur stiagh teks gyn cummey ayns shoh',
'nowiki_tip'      => 'Ny chur tastey da cummey wikiagh',
'image_tip'       => 'Coadan jingit',
'media_tip'       => 'Kiangley yn choadan',
'sig_tip'         => "Dt'ennym screeuit lesh clouag am",
'hr_tip'          => 'Linney cochruinnagh (ymmyd dy spaarailagh)',

# Edit pages
'summary'                          => 'Giare-choontey:',
'subject'                          => 'Cooish/kione-linney:',
'minoredit'                        => 'She myn-arraghey eh shoh',
'watchthis'                        => 'Freill arrey er y duillag shoh',
'savearticle'                      => 'Sauail y duillag',
'preview'                          => 'Roie-haishbynys',
'showpreview'                      => 'Taishbyney roie-haishbynys',
'showlivepreview'                  => 'Roie-haishbynys bio',
'showdiff'                         => 'Taishbyney caghlaaghyn',
'anoneditwarning'                  => "'''Raaue:''' Cha nel ou loggit stiagh.
Bee dt'enmys IP recortyssit ayns shennaghys reaghey yn duillag shoh.",
'missingcommenttext'               => 'Taggloo er heese, my sailt.',
'summary-preview'                  => 'Roie-haishbynys y ghiare-choontey:',
'subject-preview'                  => 'Roie-haishbynys cooish/kione-linney:',
'blockedtitle'                     => "Ta'n ymmydeyr glast magh",
'blockedtext'                      => "<big>'''Ta dt'ennym ymmydeyr ny dt'enmys IP currit fo ghlass.'''</big>

V'ou glassit magh ec $1. T'eh yn oyr na ''$2''.

* Toshiaght y ghlass: $8
* Jerrey yn ghlass: $6
* Currit da: $7

Foddee oo cur fys er $1 ny [[{{MediaWiki:Grouppage-sysop}}|reireyder]] elley dy resooney magh y ghlass.
Cha nod oo jannoo ymmyd jeh'n chummey 'cur post-L da'n ymmydeyr shoh' mannagh vel eh sonrit ayns dty [[Special:Preferences|choontys tosheeaghtyn]] as mannagh vel ou glasst magh.<br />
She $3 dt'enmys IP roie, as she dt'enney ghlass na #$5. Cur ad lesh dagh ooilley eysht.",
'blockednoreason'                  => 'cha nel fa currit',
'loginreqlink'                     => 'Log stiagh',
'loginreqpagetext'                 => 'Shegin dhyt $1 dys jeeagh er duillagyn elley.',
'accmailtitle'                     => 'Fockle yn arrey currit.',
'accmailtext'                      => "Ta fockle arrey gyn tort er son [[User talk:$1|$1]] er ve currit dys $2.

Foddee oo ceaghley yn fockle arrey noa da'n choontys noa shoh er duillag ''[[Special:ChangePassword|cheaghley fockle yn arrey]]'' lurg loggal stiagh.",
'newarticle'                       => '(Noa)',
'newarticletext'                   => 'T’ou er jeet trooid kiangley dys duillag nagh vel ayn foast.  
Son dy chroo y duillag, gow toshiaght screeuyn ‘sy chishtey çheu heese jeh shoh (jeeagh er [[{{MediaWiki:Helppage}}|duillag y chooney]] son ny smoo fys).  
My haink oo dys shoh trooid marranys, crig er cramman ‘erash’ yn jeeagheyder ayd.',
'noarticletext'                    => "Cha nel teks 'sy duillag shoh ec y traa t'ayn.
Foddee oo [[Special:Search/{{PAGENAME}}|ronsaghey enmys ny duillag shoh]] ayns duillagyn elley,
<span class=\"plainlinks\">[{{fullurl:{{#Special:Log}}|page={{FULLPAGENAMEE}}}} jean ronsaght 'sy lioaryn cooishyn ta bentyn rish],
ny [{{fullurl:{{FULLPAGENAME}}|action=edit}} reaghey yn duillag shoh]</span>.",
'note'                             => "'''Note:'''",
'previewnote'                      => "'''Cooinnee nagh vel eh shoh agh ny roie-haishbynys;
cha nel dty chaghlaaghyn sauailt foast!'''",
'editing'                          => 'Reaghey $1',
'editingsection'                   => 'Reaghey $1 (meer)',
'editingcomment'                   => 'Reaghey $1 (meer noa)',
'yourtext'                         => 'Dty heks',
'storedversion'                    => 'Lhieggan stoyrit',
'yourdiff'                         => 'Anchaslyssyn',
'copyrightwarning'                 => "Cur tastey my saillt: my t’ou cur red erbee da {{SITENAME}}, t’eh toiggit dy vel oo cur magh eh rere yn $2 (jeeagh er $1 son ny smoo fys).  Mannagh by vie lhiat dy beagh sleih elley reaghey dty obbyr gyn myghin as skeaylley eh dy seyr, ny chur roish eh ayns shoh.
<br />
Chammah as shen, t’ou gialdyn dooin dy screeu oo hene eh, ny ren oo coip jeh ny ta fo çhiarnys y theay, ny ry-gheddyn dy seyr.
'''NY CHUR ROISH GYN KIED OBBYR TA FO COIP-CHIART! '''",
'templatesused'                    => 'Clowanyn ymmydit er y duillag shoh:',
'templatesusedpreview'             => "Clowanyn ymmydit 'sy roie-haishbynys shoh:",
'template-protected'               => '(glast)',
'template-semiprotected'           => '(lieh-ghlast)',
'hiddencategories'                 => "Ta'n duillag shoh ayns {{PLURAL:$1|ronney follit|ronney follit|ronney follit|ronnaghyn follit}}",
'nocreatetitle'                    => 'Crooaght duillag jeorit',
'nocreatetext'                     => "Ta ablid duillagyn noa y chroo lhiettalit ec {{SITENAME}}.<br />
Foddee shiu goll er ash as reaghey duillag t'ayn nish, ny [[Special:UserLogin|loggal stiagh ny croo coontys]].",
'nocreate-loggedin'                => 'Cha nel kied ayd duillagyn noa y chroo er {{SITENAME}}.',
'permissionserrorstext-withaction' => 'Cha nel kiart ayd y $2, er {{PLURAL:$1|y fa|y fa}}:',
'recreate-deleted-warn'            => "'''Raaue: Ta shiu aachroo duillag as eh er ve scrysst roie.'''

By chair dhyt smooinagh vel eh kiart goll er oai lesh reaghey yn duillag shoh.<br />
Ta lioar ny scryssaghyn magh kiarit ayns shoh rere dty chaays hene:",

# Account creation failure
'cantcreateaccounttitle' => 'Cha nod coontys y chroo',

# History pages
'viewpagelogs'           => 'Jeeagh er lioaryn cooishyn ny duillag shoh',
'currentrev'             => 'Aavriwnys roie',
'revisionasof'           => 'Aavriwnys veih $1',
'revision-info'          => 'Aavriwnys veih $1 ec $2', # Additionally available: $3: revision id
'previousrevision'       => '←Aavriwnys ny shinney',
'nextrevision'           => 'Aavriwnys ny saa→',
'currentrevisionlink'    => 'Aavriwnys roie',
'cur'                    => 'traa',
'next'                   => 'nah',
'last'                   => 'roish',
'page_first'             => 'Kied',
'page_last'              => 'roish',
'histlegend'             => "Reih anchaslys: jean reih kiarkil reih ny lhiegganyn by vie lhiat cosoylaghey ad, as crig er \"enter\", ny er y cramman ec cass y rolley.<br />
Ogher: '''({{int:cur}})''' = anchaslyssyn rish y lhieggan t'ayn nish,
'''({{int:last}})''' = anchaslyssyn rish y lhieggan roish, '''{{int:minoreditletter}}''' = mynchaghlaa",
'history-fieldset-title' => 'Femblal shennaghys',
'deletedrev'             => '[scryssit]',
'histfirst'              => 'By hoshee',
'histlast'               => 'By yerree',
'historyempty'           => '(follym)',

# Revision feed
'history-feed-title'          => 'Shennaghys yn aavriwnys',
'history-feed-description'    => 'Shennaghys aavriwnys y duillag shoh er yn wiki',
'history-feed-item-nocomment' => '$1 ec $2', # user at time

# Revision deletion
'rev-deleted-comment'  => '(cohaggloo scughit)',
'rev-deleted-user'     => '(ennym yn ymmydeyr scughit)',
'rev-delundel'         => 'taishbyney/follaghey',
'revdelete-hide-image' => 'Cummal y choadan y ollaghey',
'revdel-restore'       => 'ceaghley leayrid',
'pagehist'             => 'Shennaghys y duillag',
'deletedhist'          => 'Shennaghys scryssit',
'revdelete-content'    => 'cummal',
'revdelete-summary'    => 'giare-choontey yn reaghey',
'revdelete-uname'      => 'ennym yn ymmydeyr',

# History merging
'mergehistory'             => 'Shennaghys ny duillagyn y chochiangley',
'mergehistory-from'        => 'Bun-ghuillag:',
'mergehistory-into'        => 'Kione-ghuillag:',
'mergehistory-submit'      => 'Aavriwnyssyn y chochiangley',
'mergehistory-autocomment' => 'Ta [[:$1]] cochianglit stiagh ayns [[:$2]]',
'mergehistory-comment'     => 'Ta [[:$1]] cochianglit stiagh ayns [[:$2]]: $3',

# Merge log
'revertmerge' => 'Jee-vestey',

# Diffs
'history-title'           => 'Shennaghys aavriwnys dy "$1"',
'difference'              => '(Anchaslys eddyr aavriwnyssyn)',
'lineno'                  => 'Linney $1:',
'compareselectedversions' => 'Cosoylaghey ny lhiegganyn reiht',
'editundo'                => 'rassey',

# Search results
'searchresults'             => 'Eiyrtyssyn y ronsaghey',
'searchresults-title'       => 'Eiyrtyssyn ny ronsaght er son "$1"',
'searchresulttext'          => 'Son ny smoo oayllys mychione ronsaghtyn er {{SITENAME}}, jeeagh er [[{{MediaWiki:Helppage}}|{{int:help}}]].',
'searchsubtitle'            => 'Ren oo ronsaght er \'\'\'[[:$1]]\'\'\' ([[Special:Prefixindex/$1|dagh duillag ta toshiaghey lesh "$1"]]{{int:pipe-separator}}[[Special:WhatLinksHere/$1|dagh duillag ta kianglt lesh "$1"]])',
'searchsubtitleinvalid'     => "Ren oo ronsaght er '''$1'''",
'noexactmatch'              => "'''Cha nel duillag lesh yn ennym \"\$1\".'''
Foddee oo [[:\$1|croo yn duillag shoh]].",
'noexactmatch-nocreate'     => "'''Cha nel duillag ayn lesh yn enmys \"\$1\".'''",
'notitlematches'            => 'Cha nel shen ennym ghuillag erbee',
'notextmatches'             => 'Cha nel shen ry-lhaih er duillag erbee',
'prevn'                     => '$1 roish shoh',
'nextn'                     => 'nah $1',
'viewprevnext'              => 'Jeeagh er ($1 {{int:pipe-separator}} $2) ($3)',
'searchhelp-url'            => 'Help:Cummal',
'search-result-size'        => "$1 ({{PLURAL:$2|1 fockle|$2 'ockle|$2 'ockle|$2 focklyn}})",
'search-result-score'       => 'Bentynys: $1%',
'search-redirect'           => '(aa-enmyssit ass $1)',
'search-section'            => '(rheynn $1)',
'search-suggest'            => "R'ou çheet er: $1",
'search-interwiki-caption'  => 'Shuyr-haleeghyn',
'search-interwiki-default'  => '{{PLURAL:$1|$1 eiyrtys|$1 eiyrtys|$1 eiyrtys|$1 eiyrtyssyn}}:',
'search-interwiki-more'     => '(ny smoo)',
'search-mwsuggest-enabled'  => 'lesh coyrle',
'search-mwsuggest-disabled' => 'gyn coyrle',
'search-relatedarticle'     => 'Bentyn rish',
'mwsuggest-disable'         => 'Lhiettal coyrle AJAX',
'searchrelated'             => 'bentyn rish',
'searchall'                 => 'yn clane',
'showingresultstotal'       => "Ny ta heese, shen {{PLURAL:$4|eiyrtys '''$1''' jeh '''$3'''|eiyrtyssyn '''$1 - $2''' jeh '''$3'''}}",
'nonefound'                 => "'''Notey''':Cha nel eh ronsaghey dagh reamys gyn reih.
My t'ou uss son ronsaghey dagh cooid (as shen goaill stiagh duillagyn resooney, clowanyn, a.r.e.), cur ''all:'' ec y toshiaght, ny ennym y reamys reih ayd myr roie-ockle (m.s., ''Clowan:'').",
'powersearch'               => 'Ard-ronsaghey',
'powersearch-legend'        => 'Ard-ronsaghey',
'powersearch-ns'            => 'Ronsaghey ayns boayl-enmyn:',
'powersearch-redir'         => 'Cur aa-enmyssyn er y rolley',
'powersearch-field'         => 'Ronsaghey er son',
'search-external'           => 'Ronsaghey mooie',

# Preferences page
'preferences'               => 'Tosheeaghtyn',
'mypreferences'             => 'My hosheeaghtyn',
'prefsnologin'              => 'Cha nel oo loggit stiagh',
'qbsettings-none'           => 'Veg',
'changepassword'            => 'Fockle yn arrey y cheaghley',
'skin'                      => 'Crackan',
'skin-preview'              => 'Roie-haishbynys',
'dateformat'                => 'Kiaddey yn date',
'datetime'                  => 'Date as am',
'math_syntax_error'         => 'Co-ordrail marranagh',
'prefs-personal'            => 'Gruaie yn ymmydeyr',
'prefs-rc'                  => "Caghlaaghyn s'noa",
'prefs-watchlist'           => 'Rolley arrey',
'prefs-watchlist-days'      => 'Laaghyn y haishbyney ayns rolley arrey:',
'saveprefs'                 => 'Sauail',
'textboxsize'               => 'Reaghey',
'columns'                   => 'Collooyn:',
'searchresultshead'         => 'Ronsaghey',
'recentchangesdays'         => "Laaghyn y haishbyney ayns caghlaaghyn s'noa:",
'savedprefs'                => 'Ta dty hosheeaghtyn sauailt.',
'timezonelegend'            => 'Cryss hraa:',
'localtime'                 => 'Traa ynnydagh:',
'timezoneoffset'            => 'Ashchlou¹:',
'timezoneregion-africa'     => 'Yn Affrick',
'timezoneregion-america'    => 'America',
'timezoneregion-antarctica' => 'Yn Antarctagh',
'timezoneregion-arctic'     => 'Yn Arctagh',
'timezoneregion-asia'       => 'Yn Aishey',
'timezoneregion-atlantic'   => 'Y Keayn Sheear',
'timezoneregion-australia'  => 'Yn Austrail',
'timezoneregion-europe'     => 'Yn Oarpey',
'timezoneregion-indian'     => 'Y Keayn Injinagh',
'timezoneregion-pacific'    => 'Y Keayn Sheealtagh',
'default'                   => 'loght',
'files'                     => 'Coadanyn',

# User rights
'userrights'               => 'Reireydys kiartyn ymmydeyr', # Not used as normal message but as header for the special page itself
'userrights-lookup-user'   => 'Possanyn ymmydeyr y stiurey',
'userrights-user-editname' => 'Screeu stiagh ennym ymmydeyr:',
'editusergroup'            => 'Possanyn ymmydeyr y reaghey',
'userrights-editusergroup' => 'Possanyn ymmydeyr y reaghey',
'saveusergroups'           => 'Possanyn ymmydeyr y sauail',
'userrights-groupsmember'  => 'Oltey jeh:',
'userrights-reason'        => 'Fa:',

# Groups
'group'            => 'Possan:',
'group-user'       => 'Ymmydeyryn',
'group-bot'        => 'Botyn',
'group-sysop'      => 'Reireyderyn',
'group-bureaucrat' => 'Oikreilleyderyn',
'group-suppress'   => 'Meehastidyn',
'group-all'        => '(yn clane)',

'group-user-member'       => 'Ymmydeyr',
'group-bot-member'        => 'Robot',
'group-sysop-member'      => 'Reireyder',
'group-bureaucrat-member' => 'Oikreilleyder',
'group-suppress-member'   => 'Meehastid',

'grouppage-user'  => '{{ns:project}}:Ymmydeyryn',
'grouppage-bot'   => '{{ns:project}}:Robotyn',
'grouppage-sysop' => '{{ns:project}}:Reireyderyn',

# User rights log
'rightslog'  => 'Lioar chooishyn kiartyn ymmydeyr',
'rightsnone' => '(veg)',

# Associated actions - in the sentence "You do not have permission to X"
'action-edit' => 'reaghey yn duillag shoh',

# Recent changes
'nchanges'                       => '$1 {{PLURAL:$1|caghlaa|chaghlaa|chaghlaa|caghlaaghyn}}',
'recentchanges'                  => "Caghlaaghyn s'noa",
'recentchanges-legend'           => "Reihyssyn da ny caghlaaghyn s'noa",
'recentchangestext'              => "Shirrey ny caghlaaghyn s'noa da'n wiki er y duillag shoh.",
'recentchanges-feed-description' => 'Lorgey ny caghlaaghyn jeianagh er y wiki ayns y veaghey shoh.',
'rcnote'                         => "Ny ta heese, she {{PLURAL:$1|ny '''$1''' caghlaa|yn '''$1''' chaghlaa|ny '''$1''' chaghlaa|ny '''$1''' caghlaaghyn}} s'jerree ayns {{PLURAL:$2|ny '''$2''' laa|yn '''$2''' laa|ny '''$2''' laa|ny '''$2''' laaghyn}} s'jerree, kiart ec $4, $5.",
'rcnotefrom'                     => "Shoh heese ny caghlaaghyn veih '''$2''' (gys '''$1''' taishbynit).",
'rclistfrom'                     => "Taishbyney caghlaaghyn s'noa veih $1",
'rcshowhideminor'                => '{{PLURAL:$1|$1 myn-arraghey|$1 vyn-arraghey|$1 vyn-arraghey|$1 myn-arraghyn}}',
'rcshowhidebots'                 => '{{PLURAL:$1|$1 robot|$1 robot|$1 robot|$1 robotyn}}',
'rcshowhideliu'                  => '{{PLURAL:$1|$1 ymmydeyr|$1 ymmydeyr|$1 ymmydeyr|$1 ymmydeyryn}} ta loggit stiagh',
'rcshowhideanons'                => '{{PLURAL:$1|$1 ymmydeyr|$1 ymmydeyr|$1 ymmydeyr|$1 ymmydeyryn}} neuenmyssit',
'rcshowhidepatr'                 => '$1 arraghyn patrolaghit',
'rcshowhidemine'                 => "$1 m'arraghyn",
'rclinks'                        => "Soilshaghey {{PLURAL:$1|ny $1 caghlaa|yn $1 chaghlaa|ny $1 chaghlaa|ny $1 caghlaaghyn}} s'jerree ayns {{PLURAL:$2|ny $2 laa|yn $2 laa|ny $2 laa|ny $2 laaghyn}} s'jerree<br />$3",
'diff'                           => 'anch',
'hist'                           => 'shen',
'hide'                           => 'Follaghey',
'show'                           => 'Taishbyney',
'minoreditletter'                => 'm',
'newpageletter'                  => 'N',
'boteditletter'                  => 'r',
'rc-enhanced-expand'             => 'Taishbyney sonreeaghtyn (ta JavaScript er shirrey)',
'rc-enhanced-hide'               => 'Follaghey mynphoyntyn',

# Recent changes linked
'recentchangeslinked'          => 'Caghlaaghyn-vooinjerys',
'recentchangeslinked-title'    => 'Caghlaaghyn bentyn rish "$1"',
'recentchangeslinked-noresult' => 'Cha nel caghlaa erbee er duillagyn kianglt car y traa taishbynit.',
'recentchangeslinked-summary'  => "Shoh rolley caghlaaghyn va jeant er duillagyn kianglt veih duillag sonrit (ny er olteynyn ronney sonrit).<br />
Ta duillagyn er [[Special:Watchlist|dty rolley arrey]] ayns '''clou trome'''.",
'recentchangeslinked-page'     => 'Ennym y duillag:',
'recentchangeslinked-to'       => 'Taishbyney caghlaaghyn da duillagyn kianglt rish y duillag hene, ayns ynnyd jeh shoh',

# Upload
'upload'            => 'Laadey neese coadan',
'uploadbtn'         => 'Laadey neese coadan',
'reupload'          => 'Aalaadey neese',
'uploadnologin'     => 'Cha nel oo loggit stiagh',
'uploadlogpage'     => 'Lioar laadyn neese',
'filename'          => 'Ennym y choadan',
'filedesc'          => 'Giare-choontey',
'fileuploadsummary' => 'Giare-choontey:',
'filestatus'        => 'Stayd choip-chiart:',
'filesource'        => 'Bun:',
'uploadedfiles'     => 'Coadanyn ta laadit neese',
'badfilename'       => 'T\'ennym y choadan aa-enmyssit myr "$1".',
'fileexists-thumb'  => "<center>'''Coadan roie'''</center>",
'savefile'          => 'Sauail y coadan',
'uploadedimage'     => '"[[$1]]" laadit neese',
'uploadvirus'       => "Ta veerys 'sy choadan! Mynphoyntyn: $1",
'watchthisupload'   => 'Freill arrey er y choadan shoh',

'upload-file-error' => 'Marranys ynveanagh',

'license'            => 'Kieddagh:',
'license-nopreview'  => '(Cha nel roie-haishbynys ry-gheddyn)',
'upload_source_file' => ' (coadan er dty cho-earrooder)',

# Special:ListFiles
'imgfile'               => 'coadan',
'listfiles'             => 'Rolley coadanyn',
'listfiles_date'        => 'Date',
'listfiles_name'        => 'Ennym',
'listfiles_user'        => 'Ymmydeyr',
'listfiles_size'        => 'Mooadys',
'listfiles_description' => 'Coontey',

# File description page
'filehist'                  => 'Shennaghys y choadan',
'filehist-help'             => 'Crig er date/traa ennagh son dy ‘akin y coadan myr v’eh ec y traa shen.',
'filehist-deleteall'        => 'scryss ooilley',
'filehist-deleteone'        => 'scryss eh shoh',
'filehist-revert'           => 'goll er ash',
'filehist-current'          => 'bio',
'filehist-datetime'         => 'Date/Am',
'filehist-thumb'            => 'Ingin-ordaag',
'filehist-user'             => 'Ymmydeyr',
'filehist-dimensions'       => 'Mooadyssyn',
'filehist-filesize'         => 'Mooadys y choadan',
'filehist-comment'          => 'Cohaggloo',
'imagelinks'                => 'Kianglaghyn y choadan',
'linkstoimage'              => 'Ta {{PLURAL:$1|ny $1 duillag|yn $1 duillag|ny $1 ghuillag|ny $1 duillagyn}} eiyrtyssagh kianglt lesh y coadan shoh:',
'nolinkstoimage'            => 'Cha nel duillag erbee kianglt lesh y coadan shoh.',
'sharedupload'              => "Ta'n coadan shoh çheet ass $1, as foddee dy beagh eh ymmydit ayns shaleeyn elley.", # $1 is the repo name, $2 is shareduploadwiki(-desc)
'shareduploadwiki-linktext' => 'duillag huarastyl y choadan',
'noimage'                   => 'Cha nel coadan erbee ayn as yn ennym shoh er, agh foddee oo $1',
'noimage-linktext'          => 'laad neese eh',
'uploadnewversion-linktext' => "Laad neese lhieggan noa jeh'n choadan shoh",

# File reversion
'filerevert-comment' => 'Cohaggloo:',

# File deletion
'filedelete'                  => 'Scryss $1',
'filedelete-legend'           => 'Scryss y coadan',
'filedelete-submit'           => 'Scryss',
'filedelete-nofile'           => "Cha nel '''$1''' ayn.",
'filedelete-otherreason'      => 'Fa elley/tooilley:',
'filedelete-reason-otherlist' => 'Oyr elley',
'filedelete-reason-dropdown'  => '*Fa scryssey cadjin
** Brishey choip-chiart
** Coadan doobyl',

# MIME search
'mimesearch' => 'Sorçh MIME',
'mimetype'   => 'sorçh MIME:',
'download'   => 'laad neose',

# Unwatched pages
'unwatchedpages' => 'Duillagyn gyn arrey',

# List redirects
'listredirects' => 'Rolley duillagyn aa-enmyssit',

# Unused templates
'unusedtemplates'    => 'Clowanyn neuymmydit',
'unusedtemplateswlh' => 'kianglaghyn elley',

# Random page
'randompage' => 'Duillag gyn tort',

# Random redirect
'randomredirect' => 'Aa-enmys gyn tort',

# Statistics
'statistics'              => 'Staydraa',
'statistics-header-users' => 'Staydraa ymmydeyr',
'statistics-pages'        => 'Duillagyn',

'disambiguations' => 'Duillagyn reddaghyn',

'doubleredirects' => 'Aa-enmyssyn dooblagh',

'brokenredirects'        => 'Aa-enmyssyn brisht',
'brokenredirects-edit'   => '(reaghey)',
'brokenredirects-delete' => '(scryss)',

'withoutinterwiki'        => 'Duillagyn gyn kianglaghyn eddyrwiki',
'withoutinterwiki-legend' => 'Roie-ockle',
'withoutinterwiki-submit' => 'Taishbyney',

'fewestrevisions' => 'Duillagyn lesh ny caghlaaghyn sloo',

# Miscellaneous special pages
'nbytes'                  => '$1 {{PLURAL:$1|byte|vyte|byte|byteyn}}',
'ncategories'             => '$1 {{PLURAL:$1|ronney|ronnaghyn}}',
'nlinks'                  => '$1 {{PLURAL:$1|kiangley|chiangley|chiangley|kianglaghyn}}',
'nmembers'                => '$1 {{PLURAL:$1|oltey|oltey|oltey|olteynyn}}',
'lonelypages'             => 'Duillagyn treoghe',
'uncategorizedpages'      => 'Duillagyn gyn ronney',
'uncategorizedcategories' => 'Ronnaghyn gyn ronney',
'uncategorizedimages'     => 'Coadanyn gyn ronney',
'uncategorizedtemplates'  => 'Clowanyn gyn ronney',
'unusedcategories'        => 'Ronnaghyn neuymmydit',
'unusedimages'            => 'Coadanyn neuymmydit',
'popularpages'            => 'Duillagyn cadjin',
'wantedcategories'        => 'Ronnaghyn ry-laccal',
'wantedpages'             => 'Duillagyn ry-laccal',
'wantedfiles'             => 'Coadanyn ry-laccal',
'wantedtemplates'         => 'Clowanyn ry-laccal',
'mostlinked'              => 'Duillagyn as mooarane kianglaghyn daue',
'mostlinkedcategories'    => 'Ronnaghyn as mooarane kianglaghyn daue',
'mostlinkedtemplates'     => 'Clowanyn as mooarane kianglaghyn daue',
'mostcategories'          => 'Duillagyn lesh ronnaghyn smoo',
'mostimages'              => 'Coadanyn as mooarane kianglaghyn daue',
'mostrevisions'           => 'Duillagyn lesh aavriwnyssyn smoo',
'prefixindex'             => 'Dagh duillag lesh roie-ockle',
'shortpages'              => 'Duillagyn giarey',
'longpages'               => 'Duillagyn liauyr',
'deadendpages'            => 'Duillagyn kione kyagh',
'protectedpages'          => 'Duillagyn fo ghlass',
'protectedpages-indef'    => 'Cha nel agh coadey neuyerrinagh',
'protectedpages-cascade'  => 'Cha nel agh coadey eiraghtagh',
'protectedtitles'         => 'Enmyn coadit',
'listusers'               => 'Rolley ymmydeyryn',
'usercreated'             => 'Crooit er $1 ec $2',
'newpages'                => 'Duillagyn noa',
'newpages-username'       => 'Ennym ymmydeyr:',
'ancientpages'            => 'Duillagyn by hinney',
'move'                    => 'Scughey',
'movethispage'            => 'Yn duillag shoh y scughey',
'pager-newer-n'           => "{{PLURAL:$1|1 ny s'noa|$1 ny s'noa}}",
'pager-older-n'           => '{{PLURAL:$1|1 ny shinney|$1 ny shinney}}',
'suppress'                => 'Meehastid',

# Book sources
'booksources'               => 'Bun-gheillyn lioar',
'booksources-search-legend' => 'Jean ronsaght er farraneyn lioar',
'booksources-go'            => 'Gow',

# Special:Log
'specialloguserlabel'  => 'Ymmydeyr:',
'speciallogtitlelabel' => 'Ennym:',
'log'                  => 'Lioaryn cooishyn',
'all-logs-page'        => 'Dagh ooilley lioar chooishyn',

# Special:AllPages
'allpages'       => 'Dagh ooilley ghuillag',
'alphaindexline' => '$1 gys $2',
'nextpage'       => 'Yn chied duillag elley ($1)',
'prevpage'       => 'Yn duillag roish ($1)',
'allpagesfrom'   => 'Taishbyney duillagyn ta toshiaghey lesh:',
'allpagesto'     => 'Taishbyney duillagyn ta jannoo jerrey lesh:',
'allarticles'    => 'Dagh ooilley ghuillag',
'allpagessubmit' => 'Gow',
'allpagesprefix' => 'Taishbyney duillagyn lesh roie-ockle:',

# Special:Categories
'categories'                    => 'Ronnaghyn',
'special-categories-sort-count' => 'sorçhaghey rere coontey',
'special-categories-sort-abc'   => 'sorçhaghey rere lettyr',

# Special:LinkSearch
'linksearch'    => 'Kianglaghyn çheumooie',
'linksearch-ok' => 'Ronsaghey',

# Special:ListUsers
'listusers-submit' => 'Taishbyney',

# Special:Log/newusers
'newuserlogpage'          => 'Lioar chooishyn ny h-ymmydeyryn noa',
'newuserlog-create-entry' => 'Ymmydeyr noa',

# Special:ListGroupRights
'listgrouprights-group'    => 'Possan',
'listgrouprights-rights'   => 'Kiartyn',
'listgrouprights-helppage' => 'Help:Kiartyn y phossan',
'listgrouprights-members'  => '(rolley olteynyn)',

# E-mail user
'emailuser'      => "Cur post-L da'n ymmydeyr shoh",
'emailfrom'      => 'Veih:',
'emailto'        => 'Da:',
'emailsubject'   => 'Bun-chooish:',
'emailmessage'   => 'Çhaghteraght:',
'emailsend'      => 'Cur',
'emailccsubject' => 'Aascreeuyn dty haghteraght dys $1: $2',
'emailsent'      => 'Post-L currit',
'emailsenttext'  => 'Ta dty phost-L currit.',

# Watchlist
'watchlist'         => 'My rolley arrey',
'mywatchlist'       => 'My rolley arrey',
'watchlistfor'      => "(son '''$1''')",
'watchnologin'      => 'Cha nel oo loggit stiagh',
'addedwatch'        => 'Currit rish y rolley arrey',
'addedwatchtext'    => "Va'n duillag \"[[:\$1]]\" currit lesh dty [[Special:Watchlist|rolley arrey]].<br />
Bee caghlaaghyn jeant er y duillag shoh as e ghuillag resoonaght ry-akin ayns y rolley shoh, as bee '''clou trome''' er ayns rolley ny [[Special:RecentChanges|caghlaaghyn s'noa]].",
'removedwatch'      => 'Gowit ass y rolley arrey',
'removedwatchtext'  => 'Va\'n duillag "[[:$1]]" gowit ass dty [[Special:Watchlist|rolley arrey]].',
'watch'             => 'Freill arrey',
'watchthispage'     => 'Freill arrey er y duillag shoh',
'unwatch'           => 'Cur stap er arrey',
'unwatchthispage'   => 'Cur stap er arrey',
'notanarticle'      => 'Cha nel eh shoh ny ghuillag cummal',
'notvisiblerev'     => "Va'n aavriwnys scryssit",
'watchlist-details' => 'Ta {{PLURAL:$1|$1 duillag|$1 duillag|$1 ghuillag|$1 duillagyn}} er dty rolley arrey, faagail magh duillagyn resoonaght.',
'watchlistcontains' => 'Ta $1 {{PLURAL:$1|duillag|duillagyn}} ayns dty rolley arrey.',
'wlshowlast'        => "Taishbyney ny $1 ooryn $2 laaghyn $3 s'jerree",
'watchlist-options' => "Reihyn da'n rolley arrey",

# Displayed when you click the "watch" button and it is in the process of watching
'watching'   => 'Jannoo arrey...',
'unwatching' => 'Stap y chur er arrey...',

'enotif_newpagetext'           => 'She duillag noa eh shoh.',
'enotif_impersonal_salutation' => '{{SITENAME}} ymmydeyr',
'changed'                      => 'ceaghlit',
'created'                      => 'crooit',
'enotif_anon_editor'           => 'ymmydeyr $1 neuenmyssit',
'enotif_body'                  => 'Y charrey,


Va\'n duilag $PAGETITLE er {{SITENAME}} $CHANGEDORCREATED er $PAGEEDITDATE liorish $PAGEEDITOR, jeeagh er $PAGETITLE_URL dys y lhieggan roie dy akin.

$NEWPAGE

Giare-choontey yn reagheyder: $PAGESUMMARY $PAGEMINOREDIT

Cur fys er y reagheyder:
post: $PAGEEDITOR_EMAIL
wiki: $PAGEEDITOR_WIKI

Cha bee fograghyn elley ayns cah caghlaaghyn elley agh ynrican my vel shiu er jeet dys y duillag shen.
Foddee shiu aajeshaghey bratteeyn ny fograghyn ry hoi dagh duillag er dty rolley arrey.

             Dty chorys fograghyn caarjoil ec {{SITENAME}}

--
Dys kiartee dty rolley arrey y chaghlaa, cur keayrt er
{{fullurl:{{ns:special}}:Watchlist/edit}}

Aaveaghey as cooney s\'odjey:
{{fullurl:{{MediaWiki:Helppage}}}}',

# Delete
'deletepage'            => 'Scryss y duillag',
'confirm'               => 'Feeraghey',
'excontent'             => "v'eh ny chummal na: '$1'",
'exblank'               => "va'n duillag follym",
'delete-confirm'        => 'Scryss "$1"',
'delete-legend'         => 'Scryss',
'historywarning'        => 'Raaue: Ta shennaghys ec y duillag ta shiu er-chee scryssey magh:',
'confirmdeletetext'     => 'Ta shiu er-çhee scryssey magh duillag myrane lesh y shennaghys eck.<br />
Feeraghey dy vel eh y çhalee ayd eh y yannoo, dy vel ny scanshyn toiggit ayd, as dy vel oo jannoo eh ayns coardailys rish [[{{MediaWiki:Policy-url}}|y pholasee]].',
'actioncomplete'        => 'Obbraghey creaghnit',
'deletedtext'           => 'Ta "<nowiki>$1</nowiki>" scrysst.<br />
Jeeagh er $2 son recortys ny scryssaghyn magh jeianagh.',
'deletedarticle'        => '"[[$1]]" scryssit',
'dellogpage'            => 'Lioar scryssaghyn magh',
'deletecomment'         => 'Fa son scryssey magh:',
'deleteotherreason'     => 'Fa elley/tooilley:',
'deletereasonotherlist' => 'Fa elley',
'deletereason-dropdown' => '*Fa scryssey cadjin
** Aghin yn ughtar
** Brishey choip-chiart
** Cragheydys',

# Rollback
'rollback_short' => 'Aahogherys',
'rollbacklink'   => 'aahogherys',
'editcomment'    => "V'eh \"''\$1''\" giare-choontys y reaghey.", # only shown if there is an edit comment

# Protect
'protectlogpage'              => 'Lioar choadee',
'protectedarticle'            => '"[[$1]]" glast',
'modifiedarticleprotection'   => 'er gaghlaa keim coadee "[[$1]]"',
'prot_1movedto2'              => '[[$1]] aa-enmyssit myr [[$2]]',
'protectcomment'              => 'Fa:',
'protectexpiry'               => 'Jerrey:',
'protect_expiry_invalid'      => 'Ta jerrey yn amm gyn vree.',
'protect_expiry_old'          => 'Ta jerrey yn amm er ngoll shaghey hannah.',
'protect-text'                => "Foddee oo jeeagh er as arraghey yn rea choadee ayns shoh son y duillag '''<nowiki>$1</nowiki>'''.",
'protect-locked-access'       => "Cha nel kied ec dty choontys dys arraghey cormidyn coadee.<br />
Shoh ny reaghaghyn roie da'n duillag '''$1''':",
'protect-cascadeon'           => "Ta'n duillag shoh coadit nish, er y fa dy vel eh goit stiagh {{PLURAL:$1|'sy $1 duillag|'syn $1 duillag| 'sy $1 ghuillag|ayns ny $1 duillagyn}} heese as adsyn fo coadey eiraghtagh.  Ga dy nod oo caghlaa keim coadee y ghuillag shoh, cha jean eh bentyn rish y coadey eiraghtagh.",
'protect-default'             => 'Lhig da dagh ymmydeyr',
'protect-fallback'            => 'Ta feme er kied "$1" ayd',
'protect-level-autoconfirmed' => 'Cur ymmydeyryn noa as ymmydeyryn neu-recortit fo ghlass',
'protect-level-sysop'         => 'Reireyderyn ynrican',
'protect-summary-cascade'     => 'spooytey',
'protect-expiring'            => 'jerrey jeant ec $1 (UTC)',
'protect-cascade'             => "Cur fo ghlass ny duillagyn t'ayns y duillag shoh (coadee spooytal)",
'protect-cantedit'            => 'Cha nod oo caghlaa keim choadey ny duillag shoh.  Cha nel kied ayd ee y reaghey.',
'protect-expiry-options'      => '1 oor:1 hour,1 laa:1 day,1 hiaghtin:1 week,2 hiaghtin:2 weeks,1 vee:1 month,3 meeghyn:3 months,6 meeghyn:6 months,1 vlein:1 year,neuyerrinagh:infinite', # display1:time1,display2:time2,...
'restriction-type'            => 'Kied:',
'restriction-level'           => 'Rea teorey:',

# Restrictions (nouns)
'restriction-edit'   => 'Reaghey',
'restriction-move'   => 'Scughey',
'restriction-create' => 'Croo',

# Restriction levels
'restriction-level-sysop'         => 'lane glast',
'restriction-level-autoconfirmed' => 'lieh-ghlast',

# Undelete
'undelete'               => 'Jeeagh er duillagyn scrysst',
'undeletepage'           => 'Jeeagh er as cur er ash duillagyn scrysst',
'viewdeletedpage'        => 'Jeeagh er duillagyn scrysst',
'undeletebtn'            => 'Cur er ash',
'undeletelink'           => 'jeeagh/cur er ash',
'undeletereset'          => 'Aahoiaghey',
'undeletecomment'        => 'Cohaggloo:',
'undeletedarticle'       => '"[[$1]]" aahoiaghit',
'undelete-search-box'    => 'Duillagyn scrysst y ronsaghey',
'undelete-search-submit' => 'Ronsaghey',

# Namespace form on various pages
'namespace'      => 'Boayl-ennym:',
'invert'         => 'Cur y teiy bun ry-skyn',
'blanknamespace' => '(Cadjin)',

# Contributions
'contributions'       => 'Cohortyssyn ymmydeyr',
'contributions-title' => 'Cohortyssyn ymmydeyr liorish $1',
'mycontris'           => 'My chohortyssyn',
'contribsub2'         => 'Da $1 ($2)',
'uctop'               => ' (baare)',
'month'               => "Veih mee (as ny s'aa):",
'year'                => "Veih blein (as ny s'aa):",

'sp-contributions-newbies'     => 'Taishbyney cohortyssyn liorish coontyssyn noa ynrican',
'sp-contributions-newbies-sub' => 'Lesh coontyssyn noa',
'sp-contributions-blocklog'    => 'Lioar chooishyn ghlassaghyn magh',
'sp-contributions-search'      => 'Ronsaghey cohortyssyn',
'sp-contributions-username'    => 'Enmys IP ny ennym ymmydeyr:',
'sp-contributions-submit'      => 'Ronsaghey',

# What links here
'whatlinkshere'            => 'Cre ta kianglt lesh shoh',
'whatlinkshere-title'      => 'Duillagyn ta kianglt lesh $1',
'whatlinkshere-page'       => 'Duillag:',
'linkshere'                => "Ta ny kied duillagyn elley kianglt lesh '''[[:$1]]''':",
'nolinkshere'              => "Cha nel duillag erbee kianglt lesh '''[[:$1]]'''.",
'isredirect'               => 'duillag aa-enmyssit',
'istemplate'               => 'goaill stiagh',
'isimage'                  => 'kiangley coadan',
'whatlinkshere-prev'       => '{{PLURAL:$1|roish|y $1 roish}}',
'whatlinkshere-next'       => '{{PLURAL:$1|y nah|y nah $1}}',
'whatlinkshere-links'      => '← kianglaghyn',
'whatlinkshere-hideredirs' => 'duillagyn aa-enmyssit $1',
'whatlinkshere-hidetrans'  => '$1 duillagyn er nyn ngoaill stiagh',
'whatlinkshere-hidelinks'  => 'kianglaghyn $1',
'whatlinkshere-filters'    => 'Shollaneyn',

# Block/unblock
'blockip'                  => 'Glass magh yn ymmydeyr',
'blockip-legend'           => 'Glass magh yn ymmydeyr',
'ipaddress'                => 'Enmys IP / ennym ymmydeyr',
'ipadressorusername'       => 'Enmys IP ny ennym ymmydeyr:',
'ipbexpiry'                => 'Jerrey:',
'ipbreason'                => 'Fa:',
'ipbreasonotherlist'       => 'Fa elley',
'ipbreason-dropdown'       => '* Oyr glassey cadjin
** Inserting false information
** Removing content from pages
** Spamming links to external sites
** Inserting nonsense/gibberish into pages
** Intimidating behaviour/harassment
** Abusing multiple accounts
* Oyr elley
** Ennym ymmydeyryn neuchooie
** Feyshtyn eddyr-wiki',
'ipbanononly'              => 'Glass magh ymmydeyryn neuenmyssit',
'ipbcreateaccount'         => 'Crooaght coontys y chumrail',
'ipbsubmit'                => 'Glass magh yn ymmydeyr shoh',
'ipbother'                 => 'Mooad elley am:',
'ipboptions'               => '2 oor:2 hours,1 laa:1 day,3 laaghyn:3 days,1 hiaghtin:1 week,2 hiaghtin:2 weeks,1 vee:1 month,3 meeghyn:3 months,6 meeghyn:6 months,1 vlein:1 year,neuyerrinagh:infinite', # display1:time1,display2:time2,...
'ipbotheroption'           => 'elley',
'ipbotherreason'           => 'Fa elley/tooilley:',
'badipaddress'             => 'Enmys IP gyn vree',
'ipblocklist'              => 'Rolley enmyssyn IP as enmyn ymmydeyr fo ghlass',
'ipblocklist-username'     => 'Ennym ymmydeyr ny enmys IP:',
'ipblocklist-submit'       => 'Ronsaghey',
'blocklistline'            => '$1, $3 er ny g(h)lassey magh ec $2 ($4)',
'infiniteblock'            => 'neuyerrinagh',
'createaccountblock'       => 'crooaght coontys glasst',
'blocklink'                => 'glassey magh',
'unblocklink'              => 'foshley',
'change-blocklink'         => 'caghlaa glass',
'contribslink'             => 'cohortyssyn',
'blocklogpage'             => 'Lioar chooishyn ghlassaghyn magh',
'blocklogentry'            => 'er nglassey magh [[$1]] rish/derrey $2 $3',
'unblocklogentry'          => '$1 er ny neughlassey magh',
'block-log-flags-anononly' => 'ymmydeyryn neuenmyssit ynrican',
'block-log-flags-nocreate' => 'gyn kiart coontyssyn y chroo',
'proxyblocksuccess'        => 'Jeant.',

# Move page
'move-page'               => '$1 y scughey',
'move-page-legend'        => 'Duillag y scughey',
'movepagetext'            => "Ta'n form heese lhiggey dhyt duillag y aa-enmys, as y shennaghys echey y scughey dys yn ennym noa.
Hig y shenn ennym y ve duillag aastiurey dys yn ennym noa.
My ta aastiuraghyn ayn hannah dys y shenn ennym, foddee oo adsyn y chaghlaa dy seyr-obbragh.  Mannagh nee oo shen, jean shickyr dy hirrey er [[Special:DoubleRedirects|dooble-aastiuraghyn]] as [[Special:BrokenRedirects|aastiuraghyn brishtey]].
T'eh ort y yannoo shickyr dy bee kianglaghyn kiangley rish y dean kiart foast.

Gow tashtey '''nagh''' jed y duillag er scughey my ta duillag ayn as yn ennym noa echey hannah, '''mannagh''' nee duillag follym ny aastiurey t'ayn gyn shennaghys reaghey erbee.
Myr shen, foddee oo duillag y chur erash 'syn chenn ynnyd echey my nee uss marrantys, as cha nod oo screeu harrish duillag t'ayn hannah.

'''Raaue!'''
She caghlaa trome as doaltattym t'ayn er son duillag mie er enney.  Jean shickyr dy vel oo toiggal ny h-eiyrtyssyn roish my nee uss y caghlaa shoh.",
'movepagetalktext'        => "Hie y duillag resooney echey er scughey lesh y duillag hene '''mannagh:'''
*Vel duillag resooney ayn nagh vel follym as yn ennym noa er;
*Nee uss jee-reih y kishtey heese

Foddee oo y duillag resooney y scughey er lheh ny yei shen.",
'movearticle'             => 'Duillag y scughey:',
'movenologin'             => 'Cha nel oo loggit stiagh',
'newtitle'                => 'Gys ard-ennym noa:',
'move-watch'              => 'Freill arrey er y duillag shoh',
'movepagebtn'             => 'Yn duillag y scughey',
'pagemovedsub'            => "Va'n scughey rahoil",
'movepage-moved'          => '<big>Va \'\'\'"$1" aa-enmyssit myr "$2"\'\'\'</big>', # The two titles are passed in plain text as $3 and $4 to allow additional goodies in the message.
'articleexists'           => 'Ta duillag ayn lesh yn ennym shen, ny ta ennym mee-chiart reiht ayd.<br />
Reih ennym elley, my sailliu.',
'talkexists'              => "'''Va'n duillag hene scughit, agh cha nod y duillag resoonaght y scughey er yn oyr dy row fer ec yn enmys shen hannah.<br />
Jean covestey eddyr oc er laueyn, my sailliu.'''",
'movedto'                 => 'aa-enmyssit myr',
'movetalk'                => 'Scughey yn duillag resoonaght ta cochianglt lesh',
'1movedto2'               => '[[$1]] aa-enmyssit myr [[$2]]',
'1movedto2_redir'         => 'va [[$1]] scughit dys [[$2]] harrish aaenmys',
'movelogpage'             => 'Lioar chooishyn y scughey',
'movereason'              => 'Fa',
'revertmove'              => 'goll er ash',
'delete_and_move'         => 'Scryss as scughey',
'delete_and_move_confirm' => 'Ta, scryss magh y duillag',

# Export
'export'          => 'Assphurtal duillagyn',
'export-submit'   => 'Assphurtal',
'export-download' => 'Sauail myr coadan',

# Namespace 8 related
'allmessages'        => 'Çhaghteraghtyn corys',
'allmessagesname'    => 'Ennym',
'allmessagesdefault' => 'Teks cadjinit',
'allmessagescurrent' => 'Teks roie',

# Thumbnails
'thumbnail-more'  => 'Mooadaghey',
'filemissing'     => 'Coadan ersooyl',
'thumbnail_error' => 'Marranys ingin-ordaag y chroo: $1',

# Special:Import
'import-comment'     => 'Cohaggloo:',
'importbadinterwiki' => 'Droghchiangley eddyrwiki',
'importnotext'       => 'Follym ny gyn teks',

# Import log
'importlogpage' => 'Cur lioar chooishyn stiagh',

# Tooltip help for the actions
'tooltip-pt-userpage'             => 'My ghuillag ymmydeyr',
'tooltip-pt-mytalk'               => 'My ghuillag resoonaght',
'tooltip-pt-preferences'          => 'My hosheeaghtyn',
'tooltip-pt-watchlist'            => 'Rolley duillagyn ta er dty rolley arrey',
'tooltip-pt-mycontris'            => 'Rolley my chohortyssyn',
'tooltip-pt-login'                => 'Ta greinnaghey shiu loggal stiagh, cha nel eh anneydagh, ansherbee.',
'tooltip-pt-logout'               => 'Log magh',
'tooltip-ca-talk'                 => 'Resoonaght mychione ny duillag cummal',
'tooltip-ca-edit'                 => 'Foddee oo reaghey yn duillag shoh. Crig er y chramman roie-haishbynys roish eh y hauail.',
'tooltip-ca-addsection'           => 'Jean rheynn noa',
'tooltip-ca-viewsource'           => "Ta'n duillag shoh fo ghlass. Foddee oo jeeagh er e bun.",
'tooltip-ca-history'              => "Shenn aavriwnyssyn jeh'n duillag shoh",
'tooltip-ca-protect'              => 'Coadee yn duillag shoh',
'tooltip-ca-delete'               => 'Scryss y duillag shoh',
'tooltip-ca-move'                 => 'Yn duillag y scughey',
'tooltip-ca-watch'                => 'Cur y duillag shoh lesh dty rolley arrey',
'tooltip-ca-unwatch'              => 'Scughey y duillag shoh ass dty rolley arrey',
'tooltip-search'                  => '{{SITENAME}} y ronsaghey',
'tooltip-search-go'               => 'Immee dys duillag as yn ennym cruinn shoh er, my vees eh ayn',
'tooltip-search-fulltext'         => 'Ronsaghey ny duillagyn er son y teks shoh',
'tooltip-p-logo'                  => 'Ard-ghuillag',
'tooltip-n-mainpage'              => 'Cur keayrt er yn Ard-ghuillag',
'tooltip-n-portal'                => "Mychione y çhalee, jean dty chooid share, c'raad reddyn dy feddyn",
'tooltip-n-currentevents'         => 'Fow oayllys shaghadys fo chooishyn yn laa',
'tooltip-n-recentchanges'         => "Rolley caghlaaghyn s'noa ayns y wiki.",
'tooltip-n-randompage'            => 'Duillag gyn tort y laadey',
'tooltip-n-help'                  => 'Boayl gys feddyn magh.',
'tooltip-t-whatlinkshere'         => 'Rolley dagh ooilley ghuillag wiki ta kianglt lesh shoh',
'tooltip-t-recentchangeslinked'   => 'Caghlaaghyn noa er duillagyn ta kianglt lesh y duillag shoh',
'tooltip-feed-rss'                => "Beaghey RSS da'n duillag shoh",
'tooltip-feed-atom'               => "Beaghey Atom da'n duillag shoh",
'tooltip-t-contributions'         => 'Jeeagh er cohortyssyn yn ymmydeyr shoh',
'tooltip-t-emailuser'             => "Cur post-L da'n ymmydeyr shoh",
'tooltip-t-upload'                => 'Laadey neese coadanyn',
'tooltip-t-specialpages'          => 'Rolley dagh ooilley ghuillag er lheh',
'tooltip-t-print'                 => "Lhieggan so-chlou jeh'n duillag shoh",
'tooltip-t-permalink'             => 'Kiangley beayn da aavriwnys ny duillag shoh',
'tooltip-ca-nstab-main'           => 'Jeeagh er duillag y chummal',
'tooltip-ca-nstab-user'           => 'Jeeagh er duillag yn ymmydeyr',
'tooltip-ca-nstab-special'        => "She duillag er lheh t'ayn; cha nod oo reaghey y duillag hene",
'tooltip-ca-nstab-project'        => 'Jeeagh er duillag y halee',
'tooltip-ca-nstab-image'          => 'Jeeagh er duillag y choadan',
'tooltip-ca-nstab-mediawiki'      => 'Jeeagh er çhaghteraght y chorys',
'tooltip-ca-nstab-template'       => 'Jeeagh er y clowan',
'tooltip-ca-nstab-help'           => 'Jeeagh er duillag y chooney',
'tooltip-ca-nstab-category'       => 'Jeeagh er duillag y ronney',
'tooltip-minoredit'               => 'She myn-arraghey eh shoh',
'tooltip-save'                    => 'Sauail dty chaghlaaghyn',
'tooltip-preview'                 => 'Roie-haishbyney ny caghlaaghyn ayd; jannoo ymmyd jeh roish sauail, my saillt!',
'tooltip-diff'                    => 'Taishbyney caghlaaghyn y teks ta jeant ayd.',
'tooltip-compareselectedversions' => 'Jeeagh er ny caghlaaghyn eddyr y daa lhieggan reiht y ghuillag shoh.',
'tooltip-watch'                   => 'Cur y duillag shoh lesh dty rolley arrey',
'tooltip-rollback'                => 'Ta "aahogherys" rassey dagh cohoyrtys yn ymmydeyr s\'jerree da\'n duillag shoh.',
'tooltip-undo'                    => "Ta \"rassey\" cur y reaghey shoh er ash as t'eh fosley yn form reaghee ayns mod roie-haishbynys.<br />
T'eh lhiggey da oyr y chur 'sy ghiare-choontey.",

# Attribution
'anonymous' => '{{PLURAL:$1|Ymmeyder|Ymmeyderny}} neuenmyssit dy {{SITENAME}}',
'siteuser'  => 'ymmydeyr {{SITENAME}} $1',
'others'    => 'sleih elley',
'siteusers' => '{{PLURAL:$2|Ymmydeyr|Ymmydeyryn}} ec {{SITENAME}} $1',

# Info page
'infosubtitle' => 'Oayllys da duillag',

# Math options
'mw_math_png' => 'Jean PNG dagh ooilley hraa',

# Patrol log
'patrol-log-auto' => '(seyr-obbragh)',
'patrol-log-diff' => 'caghlaa $1',

# Browsing diffs
'previousdiff' => '← Y caghlaa ny shinney',
'nextdiff'     => 'Y caghlaa ny snoa →',

# Media information
'widthheightpage'      => '$1×$2, $3 {{PLURAL:$3|duillag|duillagyn}}',
'file-info-size'       => '($1 × {{PLURAL:$2|$2 pixel|$2 phixel|$2 phixel|$2 pixelyn}}, mooadys y choadan: $3, sorçh MIME: $4)',
'file-nohires'         => '<small>Cha nel jeeskeaylley ny smoo ry-gheddyn.</small>',
'svg-long-desc'        => '(coadan SVG, $1 × {{PLURAL:$2|$2 pixel|$2 phixel|$2 phixel|$2 pixelyn}} dy ennymagh, mooadys y choadan: $3)',
'show-big-image'       => 'Jeeskeaylley ymlane',
'show-big-image-thumb' => '<small>Mooadys y roie-haishbynys shoh: $1 × {{PLURAL:$2|$2 pixel|$2 phixel|$2 phixel|$2 pixelyn}}</small>',

# Special:NewFiles
'newimages'    => 'Laaragh coadanyn noa',
'showhidebots' => '($1 botyn)',
'ilsubmit'     => 'Ronsaghey',
'bydate'       => 'rere date',

# Bad image list
'bad_image_list' => "Shoh yn aght:

Cha nel agh meeryn ayns rolley (linnaghyn as * ec y toshiaght) ta goll er smooinaghtyn er.
Shegin da'n chied chiangley er linney ve ny chiangley da drogh choadan.
Kianglaghyn eiyrtyssagh erbee er yn linney shoh, t'ad goll er loaghtey myr lhimmaghyn, shen gra, duillagyn as ta'n coadan ayns-linney, foddee.",

# Metadata
'metadata'          => 'Metadata',
'metadata-help'     => "Ta'n coadan shoh goaill tooilley oayllys stiagh, currit veih'n shamraig bun-earrooagh ny yn scanreyder as eh ymmydit dys y coadan y chroo ny y yannoo bun-earrooagh, foddee.<br />
My vel y coadan ceaghlit veih'n chummey bunneydagh, foddee nagh beagh mynphoyntyn ennagh cohoilshaghey yn coadan ceaghlit.",
'metadata-expand'   => 'Taishbyney ny mynphointyn sheeynt',
'metadata-collapse' => 'Follaghey ny mynphointyn sheeynt',
'metadata-fields'   => "Bee magheryn metafysseree EXIF er y rolley 'sy çhaghteraght shoh currit er taishbynys duillag y jalloo nar ta taabyl ny metafysseree fillit.<br />
Bee adsyn elley follit dy seyr-obbragh.<br />
* make
* model
* datetimeoriginal
* exposuretime
* fnumber
* isospeedratings
* focallength", # Do not translate list items

# EXIF tags
'exif-imagewidth'       => 'Lheead',
'exif-imagelength'      => 'Yrjid',
'exif-ycbcrpositioning' => 'Soie Y as C',
'exif-xresolution'      => 'Cruinnys co-chruinnagh',
'exif-yresolution'      => 'Cruinnys pontreilagh',
'exif-resolutionunit'   => 'Unnid chruinnys X as Y',
'exif-imagedescription' => 'Ennym y chochaslys',
'exif-make'             => 'Jeantagh y hamraig',
'exif-artist'           => 'Ughtar',
'exif-copyright'        => 'Shellooder y choip-chiart',
'exif-fnumber'          => 'Earroo F',
'exif-flash'            => 'Çhenney',
'exif-gpslatitude'      => 'Dowan-lheead',
'exif-gpslongitude'     => 'Dowan-liurid',
'exif-gpsaltitude'      => 'Yrdjid',
'exif-gpstimestamp'     => 'Am GPS (clag breneenagh)',
'exif-gpsspeedref'      => 'Unnid vieauid',
'exif-gpsdatestamp'     => 'Date GPS',

'exif-unknowndate' => 'Date gyn enney',

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

'exif-meteringmode-0'   => 'Gyn enney',
'exif-meteringmode-1'   => 'Mean',
'exif-meteringmode-255' => 'Elley',

'exif-lightsource-0' => 'Gyn enney',

'exif-focalplaneresolutionunit-2' => 'oarleeyn',

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

'exif-scenecapturetype-1' => 'Reayrt çheerey',
'exif-scenecapturetype-2' => 'Cochaslys',
'exif-scenecapturetype-3' => 'Reayrtys oie',

'exif-gaincontrol-0' => 'Veg',

'exif-contrast-1' => 'Bog',
'exif-contrast-2' => 'Creoi',

'exif-sharpness-1' => 'Bog',
'exif-sharpness-2' => 'Creoi',

# Pseudotags used for GPSSpeedRef and GPSDestDistanceRef
'exif-gpsspeed-k' => "Kilometeryn 'syn oor",
'exif-gpsspeed-m' => "Meeillaghyn 'syn oor",

# External editor support
'edit-externally'      => 'Reaghey yn coadan shoh lesh sheeyntagh mooie',
'edit-externally-help' => 'Jeeagh er [http://www.mediawiki.org/wiki/Manual:External_editors saraghyn soiaghey seose] son tooilley oayllys.',

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

# Delete conflict
'recreate' => 'Aachroo',

# action=purge
'confirm_purge_button' => 'OK',

# Multipage image navigation
'imgmultigo' => 'Gow!',

# Table pager
'table_pager_first'        => 'Yn chied duillag',
'table_pager_last'         => "Yn duillag s'jerree",
'table_pager_limit_submit' => 'Gow',
'table_pager_empty'        => 'Gyn eiyrtys',

# Auto-summaries
'autosumm-new' => 'Duillag crooit lesh: $1',

# Watchlist editor
'watchlistedit-numitems'      => 'Ta {{PLURAL:$1|1 ard-ennym|$1 ard-enmyn}} ayns dty rolley arrey, magh voish duillagyn resoonaght.',
'watchlistedit-noitems'       => 'Cha nel ard-enmyn ayns dty rolley arrey.',
'watchlistedit-normal-title'  => 'Rolley arrey y reaghey',
'watchlistedit-normal-legend' => 'Enmyn y scughey ass y rolley arrey',
'watchlistedit-normal-submit' => 'Enmyn y scughey',
'watchlistedit-normal-done'   => 'Va {{PLURAL:$1|1 ard-ennym|$1 ard-enmyn}} scrysst ass dty rolley arrey:',
'watchlistedit-raw-titles'    => 'Enmyn:',

# Watchlist editing tools
'watchlisttools-view' => 'Jeeagh er caghlaaghyn bentynagh',
'watchlisttools-edit' => 'Jeeagh er as reaghey yn rolley arrey',
'watchlisttools-raw'  => 'Reaghey aw-rolley arrey',

# Special:Version
'version'                  => 'Lhieggan', # Not used as normal message but as header for the special page itself
'version-specialpages'     => 'Duillagyn er lheh',
'version-other'            => 'Elley',
'version-version'          => 'Lhieggan',
'version-license'          => 'Kiedoonys',
'version-software-version' => 'Lhieggan',

# Special:FilePath
'filepath-page' => 'Coadan:',

# Special:FileDuplicateSearch
'fileduplicatesearch-filename' => 'Ennym y choadan:',
'fileduplicatesearch-submit'   => 'Ronsaghey',

# Special:SpecialPages
'specialpages'                   => 'Duillagyn er lheh',
'specialpages-group-maintenance' => 'Coontaghyn meansal',
'specialpages-group-other'       => 'Duillagyn elley er lheh',
'specialpages-group-login'       => 'Log stiagh / croo coontys',
'specialpages-group-users'       => 'Ymmydeyryn as kiartyn',

# Special:Tags
'tags-edit' => 'reaghey',

);