summaryrefslogtreecommitdiff
path: root/languages/messages/MessagesAng.php
blob: f68a02d36b01c1b8093ba85578540807726af801 (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
<?php
/** Old English (Ænglisc)
 *
 * See MessagesQqq.php for message documentation incl. usage of parameters
 * To improve a translation please visit http://translatewiki.net
 *
 * @ingroup Language
 * @file
 *
 * @author Gott wisst
 * @author JJohnson
 * @author Omnipaedista
 * @author Spacebirdy
 * @author Wōdenhelm
 */

$namespaceNames = array(
	NS_SPECIAL          => 'Syndrig',
	NS_TALK             => 'Gesprec',
	NS_FILE             => 'Biliþ',
	NS_FILE_TALK        => 'Biliþgesprec',
	NS_TEMPLATE         => 'Bysen',
	NS_TEMPLATE_TALK    => 'Bysengesprec',
	NS_HELP             => 'Help',
	NS_HELP_TALK        => 'Helpgesprec',
	NS_CATEGORY         => 'Flocc',
	NS_CATEGORY_TALK    => 'Floccgesprec',
);

$messages = array(
# User preference toggles
'tog-underline'              => 'Hlenċa undermearcian:',
'tog-hideminor'              => 'Lytla ādihtunga hȳdan in nīƿliċum hƿeorfum',
'tog-hidepatrolled'          => 'Ƿeardede ādihtas hȳdan ƿiþ nīƿe hƿearfas',
'tog-newpageshidepatrolled'  => 'Ƿeardede sīdan hȳdan ƿiþ nīƿe hƿearfas',
'tog-extendwatchlist'        => 'Ƿæccȝetale sprædan to scēaƿenne ealle hƿearfas, ne efne þā nīƿoste',
'tog-numberheadings'         => 'Selffremmende-rīm hēafodingas',
'tog-showtoolbar'            => 'Þone tōlstæf scēaƿian (þearf JavaScript)',
'tog-editondblclick'         => 'Sīdan ādihtan bȳ tƿicnæppende (þearf JavaScript)',
'tog-editsection'            => 'Dǣla ādihtende þafian bȳ [ādihtan] hlenċum',
'tog-showtoc'                => 'Innunga tæfle sēon (for sīdum þe mā þonne 3 hēafodingas habbaþ)',
'tog-rememberpassword'       => 'Mīne inmeldunge ȝemyndan on þissum spearcatelle',
'tog-editwidth'              => 'Þone ādihtbox sprædan to fyllenne þæt fulānsīenēagþȳrl',
'tog-watchcreations'         => 'Sīdan þe iċ scieppe ēacian tō mīnre ƿæccȝetale',
'tog-watchdefault'           => 'Sīdan þe iċ ādihte ēacian tō mīnre ƿæccȝetale',
'tog-watchmoves'             => 'Sīdan þe iċ hƿeorfe ēacian tō mīnre ƿæccȝetale',
'tog-watchdeletion'          => 'Sīdan þe iċ forlēose ēacian tō mīnre ƿæccȝetale',
'tog-minordefault'           => 'Ealle ādihtende mearcian tōlas ȝeƿunelīċe',
'tog-previewontop'           => 'Forescēaƿe sēon fore ādihtbox',
'tog-previewonfirst'         => 'Forescēaƿe sēon on formestum ādihte',
'tog-shownumberswatching'    => 'Hū mæniȝ ƿæccende brūcendas sēon',
'tog-uselivepreview'         => 'Līfe forescēaƿe brūcan (þearf JavaScript) (oferfundenisc)',
'tog-watchlisthideown'       => 'Mīna ādihtunga hȳdan ƿiþ þā ƿæccȝetale',
'tog-watchlisthidebots'      => 'Searuþrala ādihtas hȳdan ƿiþ þā ƿæccȝetale',
'tog-watchlisthideminor'     => 'Minliċa ādihtunga hȳdan ƿiþ þæt ƿæccbrede',
'tog-watchlisthideliu'       => 'Ādihtas bȳ inmeldedum brūcendum hȳdan ƿiþ þā ƿæccȝetale',
'tog-watchlisthideanons'     => 'Ādihtas bȳ uncūðum brūcendum hȳdan ƿiþ þā ƿæccȝetale',
'tog-watchlisthidepatrolled' => 'Ƿeardede ādihtas hȳdan ƿiþ þā ƿæccȝetale',
'tog-ccmeonemails'           => 'Mē tƿifealda sendan þāra e-ǣrenda þe iċ ōðrum brūcendum sende',
'tog-diffonly'               => 'Ne scēaƿian sīdan innunge under scādungum',
'tog-showhiddencats'         => 'Ȝehȳdede floccas scēaƿian',

'underline-always'  => 'Ǣfre',
'underline-never'   => 'Nǣfre',
'underline-default' => 'Ƿebbsēċendes ȝeƿuna',

# Dates
'sunday'        => 'Sunnandæȝ',
'monday'        => 'Mōnandæȝ',
'tuesday'       => 'Tīƿesdæȝ',
'wednesday'     => 'Ƿēdnesdæȝ',
'thursday'      => 'Þunresdæȝ',
'friday'        => 'Frīȝedæȝ',
'saturday'      => 'Sæternesdæȝ',
'sun'           => 'Sun',
'mon'           => 'Mōn',
'tue'           => 'Tīƿ',
'wed'           => 'Ƿēd',
'thu'           => 'Þun',
'fri'           => 'Frī',
'sat'           => 'Sæt',
'january'       => 'Se Æfterra Ȝēola',
'february'      => 'Solmōnaþ',
'march'         => 'Hrēþmōnaþ',
'april'         => 'Ēostremōnaþ',
'may_long'      => 'Þrimilcemōnaþ',
'june'          => 'Sēremōnaþ',
'july'          => 'Mǣdmōnaþ',
'august'        => 'Ƿēodmōnaþ',
'september'     => 'Hāliȝmōnaþ',
'october'       => 'Ƿinterfylleþ',
'november'      => 'Blōtmōnaþ',
'december'      => 'Ȝēolmōnaþ',
'january-gen'   => 'þæs Æfterran Ȝēolan',
'february-gen'  => 'Solmōnþes',
'march-gen'     => 'Hrēþmōnþes',
'april-gen'     => 'Ēostremōnþes',
'may-gen'       => 'Þrimilcemōnþes',
'june-gen'      => 'Sēremōnþes',
'july-gen'      => 'Mǣdmōnþes',
'august-gen'    => 'Ƿēodmōnþes',
'september-gen' => 'Hāliȝmōnþes',
'october-gen'   => 'Ƿinterfylleðes',
'november-gen'  => 'Blōtmōnþes',
'december-gen'  => 'Ȝēolmōnþes',
'jan'           => 'ÆȜē',
'feb'           => 'Sol',
'mar'           => 'Hrē',
'apr'           => 'Ēos',
'may'           => 'Þri',
'jun'           => 'Sēr',
'jul'           => 'Mǣd',
'aug'           => 'Ƿēo',
'sep'           => 'Hāl',
'oct'           => 'Ƿin',
'nov'           => 'Blō',
'dec'           => 'Ȝēo',

# Categories related messages
'pagecategories'                => '{{PLURAL:$1|Flocc|Floccas}}',
'category_header'               => 'Ȝeƿritu in flocce "$1"',
'subcategories'                 => 'Underfloccas',
'category-media-header'         => 'Ȝemynda in flocce "$1"',
'category-empty'                => "''Þes flocc hæfþ nū nān ȝeƿritu oþþe ȝemynda in.''",
'hidden-categories'             => '{{PLURAL:$1|Ȝehȳded flocc|Ȝehȳdede floccas}}',
'hidden-category-category'      => 'Ȝehȳdede floccas', # Name of the category where hidden categories will be listed
'category-subcat-count'         => '{{PLURAL:$2|Þes flocc hæfþ efne þone folgende underflocc.|Þes flocc hæfþ þā folgende {{PLURAL:$1|underflocc|$1 underfloccas}}, þāra $2.}}',
'category-subcat-count-limited' => 'Þes flocc hæfþ {{PLURAL:$1|þisne underflocc|$1 þās underfloccas}}.',
'category-article-count'        => '{{PLURAL:$2|Þes flocc hæfþ efne þā folgende sīdan.|{{PLURAL:$1|Sēo folgende sīde is|$1 Þā folgendan sīdan sind}} in þissum flocce, þāra $2.}}',
'category-file-count-limited'   => '{{PLURAL:$1|Þēos fīl is|$1 Þās fīlan sind}} in þissum flocce.',
'listingcontinuesabbrev'        => 'mā',

'mainpagedocfooter' => '[http://meta.wikimedia.org/wiki/Help:Contents Brūcendlǣdend] þeahtian for helpe on bryċe þǣre ƿikihnescƿare.

== Beȝinnende ==
* [http://www.mediawiki.org/wiki/Manual:Configuration_settings Configuration settings list]
* [http://www.mediawiki.org/wiki/Manual:FAQ MediaWiki FAQ]
* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]',

'about'          => 'Ymbe',
'article'        => 'Innoþsīde',
'newwindow'      => '(openaþ in nīƿum ēagþyrele)',
'cancel'         => 'Undōn',
'qbfind'         => 'Findan',
'qbbrowse'       => 'Ofer sēċan',
'qbedit'         => 'Ādihtan',
'qbpageoptions'  => 'Þēos sīde',
'qbpageinfo'     => 'Ȝeƿef',
'qbmyoptions'    => 'Mīna sīdan',
'qbspecialpages' => 'Syndriȝa sīdan',
'moredotdotdot'  => 'Mā...',
'mypage'         => 'Mīnu sīde',
'mytalk'         => 'Mīn ȝespreċ',
'anontalk'       => 'Ȝespreċ for þissum IP',
'navigation'     => 'Þurhfōr',
'and'            => '&#32;and',

'errorpagetitle'    => 'Ƿōh',
'returnto'          => 'To $1 eftgān.',
'tagline'           => 'Fram {{SITENAME}}n',
'help'              => 'Help',
'search'            => 'Sēċan',
'searchbutton'      => 'Sēċan',
'go'                => 'Gān',
'searcharticle'     => 'Gān',
'history'           => 'Sīdan stǣr',
'history_short'     => 'Stǣr',
'updatedmarker'     => 'nīƿed siþþan ƿæs iċ ǣror hēr',
'info_short'        => 'Cȳþþu',
'printableversion'  => 'Ȝemǣlendliċu fadung',
'permalink'         => 'Fæst hlenċ',
'print'             => 'Ȝemǣlan',
'edit'              => 'Ādihtan',
'create'            => 'Scieppan',
'editthispage'      => 'Þās sīdan ādihtan',
'create-this-page'  => 'Þās sīdan scieppan',
'delete'            => 'āfeorsian',
'deletethispage'    => 'Þās sīdan āfeorsian',
'protect'           => 'Beorgan',
'protect_change'    => 'hƿeorfan',
'protectthispage'   => 'Þās sīdan beorgan',
'unprotect'         => 'Unbeorgan',
'unprotectthispage' => 'Þās sīdan unbeorgan',
'newpage'           => 'Nīƿu sīde',
'talkpage'          => 'Þās sīdan ymbspreċan',
'talkpagelinktext'  => 'ȝespreċ',
'specialpage'       => 'Syndriȝu sīde',
'personaltools'     => 'Āgen tōl',
'postcomment'       => 'Nīƿe dǣl',
'articlepage'       => 'Innoþsīdan sēon',
'talk'              => 'ȝespreċ',
'views'             => 'Ānsīene',
'toolbox'           => 'Tōlbox',
'userpage'          => 'Brūcendsīdan sēon',
'projectpage'       => 'Ƿeorcsīdan sēon',
'imagepage'         => 'Fīlsīdan sēon',
'mediawikipage'     => 'Ȝeƿritsīdan sēon',
'templatepage'      => 'Bysensīdan sēon',
'viewhelppage'      => 'Helpsīdan sēon',
'categorypage'      => 'Floccsīdan sēon',
'viewtalkpage'      => 'Ȝespreċ sēon',
'otherlanguages'    => 'On ōðrum sprǣċum',
'redirectedfrom'    => '(Edlǣded fram $1)',
'redirectpagesub'   => 'Edlǣdsīde',
'lastmodifiedat'    => 'Man læst þās sīdan hƿearf on $1, æt $2.', # $1 date, $2 time
'protectedpage'     => 'Borgenu sīde',
'jumpto'            => 'Forðgangan on:',
'jumptonavigation'  => 'þurhfōr',
'jumptosearch'      => 'sēcan',

# 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'            => 'Ymbe {{SITENAME}}n',
'aboutpage'            => 'Project:Ymbe',
'copyright'            => 'Man mæȝ innoþ under $1 findan.',
'copyrightpage'        => '{{ns:project}}:Ȝeƿritesriht',
'currentevents'        => 'Efenealde belimpas',
'currentevents-url'    => 'Project:Efenealde belimpas',
'disclaimers'          => 'Ymbcƿidas',
'disclaimerpage'       => 'Ƿeorc:Ymbcƿidas',
'edithelp'             => 'Ādihtan help',
'edithelppage'         => 'Help:Ādihtan',
'faq'                  => 'Oftost ascoda ascunga',
'faqpage'              => 'Project:FAQ',
'helppage'             => 'Help:Innoþ',
'mainpage'             => 'Hēafodsīde',
'mainpage-description' => 'Hēafodsīde',
'policy-url'           => 'Project:Þēaƿ',
'portal'               => 'Gemǣnscipe Ingang',
'portal-url'           => 'Project:Gemǣnscipe Ingang',
'privacy'              => 'Ānlīepnesse þēaƿ',
'privacypage'          => 'Project:Ānlīepnesse þēaƿ',

'badaccess'        => 'Þafunge ƿōh',
'badaccess-group0' => 'Þū ne mōst dōn þā dǣde þǣre þe þū hafast abitt.',

'versionrequired' => 'Fadunge $1 þæs MediaWicis nēodaþ',

'ok'                      => 'OK',
'retrievedfrom'           => 'Fram "$1" beȝieten',
'youhavenewmessages'      => 'Þū hæfst $1 ($2).',
'newmessageslink'         => 'nīƿu ǣrendȝeƿritu',
'newmessagesdifflink'     => 'nīƿost hƿearf',
'youhavenewmessagesmulti' => 'Þū hæfst nīƿe ǣrende on $1',
'editsection'             => 'ādihtan',
'editold'                 => 'ādihtan',
'viewsourceold'           => 'Sēon andweorc',
'editlink'                => 'ādihtan',
'viewsourcelink'          => 'Fruman sēon',
'editsectionhint'         => 'Dǣl ādihtan: $1',
'toc'                     => 'Innoþ',
'showtoc'                 => 'sēon',
'hidetoc'                 => 'hȳdan',
'thisisdeleted'           => 'Wilt þū sēon oþþe nīwian $1?',
'viewdeleted'             => '$1 sēon?',
'restorelink'             => '{{PLURAL:$1|ān ahwītod ādihtung}$1 ahwītoda ādihtunga}}',
'feedlinks'               => 'Flōd:',
'feed-invalid'            => 'Ungenge underwrītunge inlāde gecynd.',
'feed-unavailable'        => 'Fruman inlāda ne sind gearwa',
'site-rss-feed'           => '$1 RSS strēam',
'site-atom-feed'          => '$1 Atom strēam',
'page-rss-feed'           => '$1 RSS strēam',
'page-atom-feed'          => '$1 Atom strēam',
'red-link-title'          => '$1 (ne ȝiet ƿriten)',

# Short words for each namespace, by default used in the namespace tab in monobook
'nstab-main'      => 'Sīde',
'nstab-user'      => 'Brūcendsīde',
'nstab-media'     => 'Ȝemyndsīde',
'nstab-special'   => 'Syndriȝu sīde',
'nstab-project'   => 'Ƿeorces sīde',
'nstab-image'     => 'Fīl',
'nstab-mediawiki' => 'Ǣrendȝeƿrit',
'nstab-template'  => 'Bysen',
'nstab-help'      => 'Helpsīde',
'nstab-category'  => 'Flocc',

# Main script and global functions
'nosuchaction'      => 'Nǣniȝ dǣd',
'nosuchactiontext'  => 'Þæt weorc þe se nettfrumfinded wile is ungenge.
Þū meahtlīce miswrite þone nettfrumfindend, oþþe folgode unrihtne hlencan.
Þis mæg ēac tācnian unrihtnesse on þǣre sōftware þe is gebrocen fram {{SITENAME}}.',
'nosuchspecialpage' => 'Nǣniȝu syndriȝu sīde',
'nospecialpagetext' => '<strong>Þū hafast abiden ungenges ānlices trametes.</strong>

Getæl gengra ānlicra trameta cann mann findand be [[Special:SpecialPages|{{int:specialpages}}]].',

# General errors
'error'              => 'Ƿōh',
'databaseerror'      => 'Cȳþþuhordes ƿōh',
'dberrortext'        => 'Gewitnesshordes bēnes endebyrdnesse unrihtness hæfþ gelumpen.
Þis mæg gelimpan unrihtnesse on þǣre sōftware.
Sēo nīwoste gesōhte sōftware bēn wæs:
<blockquote><tt>$1</tt></blockquote>
fram innan weorce "<tt>$2</tt>".
Gewitnesshord edwende unrihtnesse "<tt>$3: $4</tt>"',
'laggedslavemode'    => "'''Ƿarnung:''' Sīde ne mihteliċ ne hæfþ nīƿa nīƿunga.",
'enterlockreason'    => 'Wrīt race þǣre forwiernunge and apunsunge be þǣm tīman on þǣm bēo sēo forwiernung forlǣten',
'missingarticle-rev' => '(nīƿung#: $1)',
'internalerror'      => 'Innan ƿōh',
'internalerror_info' => 'Innan ƿōh: $1',
'filerenameerror'    => 'Ne cúðe ednemnan þrǽd "$1" tó "$2".',
'filenotfound'       => 'Ne cūðe findan þrǣd "$1".',
'formerror'          => 'Ƿōh: ne meahte cȳþþuȝeƿrit forþsendan',
'badarticleerror'    => 'Þēos dǣd ne cann bēon gefremed on þissum tramete.',
'badtitle'           => 'Unandfenge títul',
'viewsource'         => 'Fruman sēon',
'cascadeprotected'   => 'Þis trament hafaþ geworden gebeorgod wiþ ādihtunge, for þǣm þe hē is geinnod in þissum trament {{PLURAL:$1|tramente, þe is| tramentum, þe sind}} geborgod mid þǣre "cascading" cyre gesett wyrcende: $2',

# Login and logout pages
'logouttitle'                => 'Brūcendūtmeldung',
'logouttext'                 => "'''Þū eart nū ūtmeldod.'''

Þū canst ætfeolan tō brūcenne {{SITENAME}} ungecūðe, oþþe þū canst [[Special:UserLogin|inmeldian eft]] tō ylcan oþþe ōðrum brūcende.
Cnāw þæt sume sīdan cunnon gelǣstende ēowod wesan swā þū wǣre gīet inmeldod, oþ þæt þū clǣnsie þīnes sēcendtōles gemynd.",
'welcomecreation'            => '== Ƿilcumen, $1! ==

Þīn hordcleofa ƿearþ ȝescapen.  Ne forȝiet tō hƿierfenne þīna [[Special:Preferences|{{SITENAME}} foreberunga]].',
'loginpagetitle'             => 'Brūcendinmeldung',
'yourname'                   => 'Þīn brūcendnama',
'yourpassword'               => 'Þafungƿord:',
'yourpasswordagain'          => 'Þafungƿord edƿrītan:',
'remembermypassword'         => 'Mīne inmeldunge ȝemyndan on þissum spearcatelle',
'yourdomainname'             => 'Þīn ȝeƿeald:',
'login'                      => 'Inmeldian',
'nav-login-createaccount'    => 'Nīƿne hordcleofan scieppan oþþe inmeldian',
'userlogin'                  => 'Macian nīwne grīman oþþe grīman brūcan',
'logout'                     => 'Ūtmeldian',
'userlogout'                 => 'Ūtmeldian',
'notloggedin'                => 'Ne inȝemelded',
'nologinlink'                => 'Hordcleofan scieppan',
'createaccount'              => 'Hordcleofan scieppan',
'gotaccountlink'             => 'Inmeldian',
'createaccountmail'          => 'Þurh spearcenaǣrend',
'badretype'                  => 'Þā þafungƿord þe ƿrite þū, bēoþ unȝemæcca.',
'userexists'                 => 'Hƿā hæfþ þæt brūcendnama.
Bidde ōðer brūcendnama ċēosan.',
'youremail'                  => 'E-ǣrende *',
'username'                   => 'Brūcendnama:',
'yourrealname'               => 'Þīn rihtnama*',
'yourlanguage'               => 'Brūcendofermearces sprǣc',
'yourvariant'                => 'Sprǣce wendung',
'yourgender'                 => 'Ȝecynd:',
'gender-male'                => 'Ƿer',
'gender-female'              => 'Frēo',
'loginerror'                 => 'Inmeldunge ƿōh',
'nocookiesnew'               => 'Se brūcendreccend wæs gemacod, ac þū neart inmedlod.
{{SITENAME}} brȳcþ tācninclu tō inmeldienne brūcendas.
Þū hafast forwierned tācninclu. 
Bidde þē, lǣt hīe tō twyrcenne, and þǣræfter inmelda þurh þīnne nīwan brūcendnaman and gelēafnessword.',
'loginsuccesstitle'          => 'Inmeldung gesǣlde',
'loginsuccess'               => "'''Þu eart nū inmeldod tō {{SITENAME}} swā \"\$1\".'''",
'nosuchuser'                 => 'Þǣr nis nān brūcere þe hæfþ þone naman "$1".
Stafena micelnesse sind hefige and ānlica on brūcendnamum. 
Scēawa þīne wrītunge eft, oþþe brūc þā cartan þe is hērunder tō [[Special:UserLogin/signup|settene nīwne brūcendreccend]].',
'nosuchusershort'            => 'Þǣr is nān brūcend mid þǣm naman "<nowiki>$1</nowiki>".  Edscēawa on þīne wrītunge.',
'mailmypassword'             => 'Nīƿe þafungƿord bȳ e-mail sendan',
'acct_creation_throttle_hit' => 'Hwæt, þu hæfst gēo geseted {{PLURAL:$1|1 hordcleofan|$1 -}}. Þu ne canst settan ǣnige māran.',
'accountcreated'             => 'Hordcleofan ȝescapen',
'loginlanguagelabel'         => 'Sprǣċ: $1',

# Password reset dialog
'oldpassword'               => 'Eald þafungƿord:',
'newpassword'               => 'Nīƿu þafungƿord:',
'retypenew'                 => 'Nīƿe þafungƿord edƿrītan',
'resetpass-submit-loggedin' => 'Þafungƿord hƿeorfan',

# Edit page toolbar
'bold_sample'     => 'Þicce traht',
'bold_tip'        => 'Þicce traht',
'italic_sample'   => 'Flōƿende traht',
'italic_tip'      => 'Flōƿende traht',
'link_sample'     => 'Hlenċnama',
'link_tip'        => 'Innanƿeard hlenċe',
'extlink_sample'  => 'http://www.bisen.com hlenċnama',
'extlink_tip'     => 'Ūtanƿeard hlenċe (ȝemune http:// foredǣl)',
'headline_sample' => 'Hēafodlīnan traht',
'headline_tip'    => 'Emnet 2 hēafodlīn',
'math_sample'     => 'Ƿiċunge hēr ēacian',
'math_tip'        => 'Rīmcræftisc ƿiċung (LaTeX)',
'nowiki_sample'   => 'Unȝeƿorhtne traht hēr stellan',
'nowiki_tip'      => 'Ƿiki ȝeƿeorc forȝietan',
'image_sample'    => 'Bisen.jpg',
'image_tip'       => 'Impod biliþ',
'media_sample'    => 'Bisen.ogg',
'media_tip'       => 'Fīlhlenċe',
'sig_tip'         => 'Þīn namanseȝn mid tīdstempunge',
'hr_tip'          => 'Brād līn (ne oft brūcan)',

# Edit pages
'summary'                          => 'Scortnes:',
'subject'                          => 'Ymbe/hēafodlīn:',
'minoredit'                        => 'Þes is lȳtl ādiht',
'watchthis'                        => 'Þās sīdan ƿæccan',
'savearticle'                      => 'Sīdan sparian',
'preview'                          => 'Forescēaƿian',
'showpreview'                      => 'Forescēaƿian',
'showlivepreview'                  => 'Līfe forescēaƿe',
'showdiff'                         => 'Hƿearfas sēon',
'summary-preview'                  => 'Scortnesse forescēaƿe:',
'blockednoreason'                  => 'nānu racu ȝiefen',
'whitelistedittitle'               => 'Inmeldunge behōfed to ādihtenne',
'whitelistedittext'                => 'Þū scealt $1 to ādihtenne sīdan.',
'nosuchsectiontitle'               => 'Ne mæȝ dǣl findan',
'loginreqtitle'                    => 'Inmeldung ābeden',
'loginreqlink'                     => 'inmeldian',
'loginreqpagetext'                 => 'Þū scealt $1 tō sēonne ōðre sīdan.',
'accmailtitle'                     => 'Þafungƿord sended.',
'accmailtext'                      => "Hlīetemaced þafungƿord for [[User talk:$1|$1]] ƿæs to $2 sended.

Þū meaht þæt þafungƿord hƿeorfan for þissum nīƿan hordcleofa on þǣre ''[[Special:ChangePassword|change password]]'' sīde æfter inmeldiende.",
'newarticle'                       => '(Nīƿe)',
'newarticletext'                   => "Þu hæfst bende tō tramete gefolgod þe nū gīet ne stendeþ.
Tō scieppene þone tramet, onginn þyddan in þǣre boxe under (sēo þone [[{{MediaWiki:Helppage}}|helptramet]] for mā gefrǣge).
Gif þu hider misfōn cōme, cnoca þā þīnne webbscēaweres '''on bæc''' cnæpp.",
'usercssjsyoucanpreview'           => "'''Rǣd:''' Brūc þone 'Forescēawian' cnæpp tō āfandienne þīne nīwe css/js beforan sparunge.",
'updated'                          => '(Ednīƿed)',
'note'                             => "'''Behielde:'''",
'previewnote'                      => "'''Ȝemune þe þēos efne forescēaƿe is.'''
Þīne hƿearfas ne ȝiet bēoþ spared!",
'editing'                          => 'Ādihtende $1',
'editingsection'                   => 'Ādihtende $1 (dǣl)',
'editingcomment'                   => 'Ādihtende $1 (nīƿe dǣl)',
'editconflict'                     => 'Ādihtes ƿiþfeoht: $1',
'yourtext'                         => 'Þīn traht',
'editingold'                       => "'''ǷARNUNG: Þū ādihtest ealde fadunge þisre sīdan.'''
Ȝif þū hine sparie, ǣniȝ hƿearfas ȝemaced siþþan þisse fadunge bēoþ sōðes forloren.",
'yourdiff'                         => 'Tōdǣlednessa',
'copyrightwarning2'                => "Bidde behielde þæt man mæȝ ealla forðunga tō {{SITENAME}}
ādihtan, hƿeorfan, oþþe forniman.
Ȝif þū ne ƿille man þīn ȝeƿrit ādihtan unmildheorte, þonne hīe hēr ne forþsendan.<br />
Þū behǣtst ēac þæt þū selfa þis ƿrite, oþþe efenlǣhtest of sumre
folcliċum āgnunge oþþe ȝelīċum frēom horde (sēo $1 for āscungum).
'''Ne forþsend efenlǣhtscielded ƿeorc būtan þafunge!'''",
'longpagewarning'                  => 'WARNUNG: Þes tramet is $1 kilobyta lang; sume
webbscēaweras hæbben earfoðu mid þȳ þe hīe ādihtaþ trametas nēa oþþe lengran þonne 32kb.
Bidde behycge þæt þu bricst þone tramet intō smalrum dǣlum.',
'templatesused'                    => 'Ongelīcnessa gebrȳcda on þissum tramete:',
'template-protected'               => '(borgen)',
'template-semiprotected'           => '(sāmborgen)',
'hiddencategories'                 => 'Þēos sīde is ȝesīþ {{PLURAL:$1|1 ȝehȳdedes flocces|$1 ȝehȳdeda flocca}}:',
'nocreatetitle'                    => 'Sīdan ȝesceaft mǣte',
'nocreate-loggedin'                => 'Þū ne hæfst þafunge to scieppenne nīƿa sīdan.',
'permissionserrors'                => 'Þafunga ƿōh',
'permissionserrorstext-withaction' => 'Þū ne hæfst þafunge for $2, forþǣm þe {{PLURAL:$1|race|racum}}:',
'recreate-deleted-warn'            => "'''Warnung: Þu edsciepst tramet þe wæs ǣr āfeorsod.'''

Þu sceoldest smēagan, hwæðer hit gerādlic sīe, forþ tō gānne mid ādihtunge þisses trametes.
Þæt āfeorsungbred þisses trametes is hēr geīeht for behēfnesse:",

# History pages
'viewpagelogs'           => 'Ealdhordas sēon for þisse sīdan',
'nohistory'              => 'Nis nān ādihtungstǣr for þissum tramete.',
'previousrevision'       => '← Ieldra fadung',
'nextrevision'           => 'Nīƿra fadung →',
'currentrevisionlink'    => 'Nīƿu fadung',
'cur'                    => 'nū',
'next'                   => 'nīehst',
'last'                   => 'ǣr',
'history-fieldset-title' => 'Stǣr sēċan',
'histfirst'              => 'Ǣrest',
'histlast'               => 'Nīƿost',
'historyempty'           => '(æmettiȝ)',

# Revision feed
'history-feed-title'       => 'Ednīƿunge stǣr',
'history-feed-description' => 'Ednīƿunge stǣr þisse sīdan on þǣre ƿiki',

# Revision deletion
'rev-deleted-comment'    => '(cƿide fornōm)',
'rev-deleted-user'       => '(brūcendnama fornōm)',
'rev-delundel'           => 'scēaƿian/hȳdan',
'revdelete-hide-text'    => 'Ednīƿungtraht hȳdan',
'revdelete-hide-comment' => 'Ādihtcƿide hȳdan',
'revdelete-hide-user'    => 'Ādihteres brūcendnama/IP address hȳdan',
'revdelete-hide-image'   => 'Fīlinnoþ hȳdan',
'revdel-restore'         => 'scēaƿnesse hƿeorfan',
'pagehist'               => 'Sīdan stǣr',
'revdelete-content'      => 'innoþ',
'revdelete-summary'      => 'ādihtscortnes',
'revdelete-uname'        => 'brūcendnama',

# History merging
'mergehistory-from'   => 'Frumasīde:',
'mergehistory-submit' => 'Ednīƿunga ȝeþēodian',
'mergehistory-reason' => 'Racu:',

# Merge log
'revertmerge' => 'Unȝeþēodan',

# Diffs
'history-title'           => 'Ednīƿunge stǣr for "$1"',
'difference'              => '(Scēadung betwēonan hweorfungum)',
'lineno'                  => 'Līne $1:',
'compareselectedversions' => 'Corena fadunga metan',
'editundo'                => 'undōn',

# Search results
'searchresults'                  => 'Sōcne becymas',
'searchresults-title'            => 'Sōcne becymas for "$1"',
'searchresulttext'               => 'For mā cȳþþe ymbe {{SITENAME}} sēċan, sēo [[{{MediaWiki:Helppage}}|{{int:help}}]].',
'searchsubtitle'                 => "Þū sōhtest '''[[:$1]]'''",
'searchsubtitleinvalid'          => "Þū sōhtest '''$1'''",
'notitlematches'                 => 'Nān sīdenama mæccan',
'notextmatches'                  => 'Nāne sīdetrahtes mæccan',
'nextn'                          => 'nīehst $1',
'searchmenu-new'                 => "'''Þā sīdan \"[[:\$1]]\" scieppan on þisre ƿiki!'''",
'searchhelp-url'                 => 'Help:Innoþ',
'searchprofile-everything'       => 'Ȝehƿæt',
'searchprofile-articles-tooltip' => 'In $1 sēċan',
'searchprofile-project-tooltip'  => 'In $1 sēċan',
'searchprofile-images-tooltip'   => 'Fīlan sēċan',
'search-result-size'             => '$1 ({{PLURAL:$2|1 ƿord|$2 ƿord}})',
'search-redirect'                => '(edlǣd $1)',
'search-section'                 => '(dǣl $1)',
'search-suggest'                 => 'Mǣnst þū: $1',
'search-interwiki-caption'       => 'Sƿeostorƿeorc',
'search-interwiki-default'       => '$1 becymas:',
'search-interwiki-more'          => '(mā)',
'search-mwsuggest-enabled'       => 'mid teohhungum',
'search-mwsuggest-disabled'      => 'nān teohhunga',
'searchrelated'                  => 'ȝesibbed',
'searchall'                      => 'eall',
'showingresults'                 => 'Īewan under oþ <b>$1</b> tōhīgunga onginnenda mid #<b>$2</b>.',
'showingresultsnum'              => 'Under sind <b>$3</b> tóhígunga onginnende mid #<b>$2</b>.',
'powersearch'                    => 'Sēċan',
'powersearch-legend'             => 'Forþliċ sōcn',
'powersearch-ns'                 => 'In namanstedum sēċan:',
'powersearch-redir'              => 'Edlǣdas scēaƿian',
'powersearch-field'              => 'Sēċan',
'search-external'                => 'Ūtan sōcn',

# Preferences page
'preferences'        => 'Foreberunga',
'mypreferences'      => 'Mīna foreberunga',
'prefsnologin'       => 'Ne inȝemelded',
'qbsettings-none'    => 'Nān',
'skin'               => 'Scynn',
'skin-preview'       => 'Forescēaƿian',
'dateformat'         => 'Tælmearcwīse',
'datetime'           => 'Tælmearc and tīd',
'math_unknown_error' => 'uncūþ ƿōh',
'prefs-rc'           => 'Nīƿe hƿearfas',
'prefs-watchlist'    => 'Ƿæccȝetalu',
'saveprefs'          => 'Sparian',
'rows'               => 'Rǣƿa',
'columns'            => 'Sȳla:',
'searchresultshead'  => 'Sōcnfintan',
'resultsperpage'     => 'Tōhīgunga tō īewenne for tramete',
'contextlines'       => 'Līnan tō īewenne in tōhīgunge',
'recentchangescount' => 'Tītula getæl in nīwlicum hweorfungum',
'savedprefs'         => 'Þīna foreberunga ƿurdon ȝespared.',
'timezonelegend'     => 'Tīdstell',
'servertime'         => 'Bryttantīma is nū',
'defaultns'          => 'Sēcan in þissum namstedum be frambyge:',
'default'            => 'gewunelic',

# User rights
'userrights-user-editname' => 'Brūcendnama ƿrītan:',
'editusergroup'            => 'Ādihtan Brūcendsamþrēatas',
'userrights-editusergroup' => 'Brūcenda clīeƿenas ādihtan:',
'saveusergroups'           => 'Brūcenda clīeƿenas sparian',
'userrights-groupsmember'  => 'Ȝesīþ þæs:',
'userrights-reason'        => 'Racu:',

# Groups
'group'            => 'Clīeƿen:',
'group-user'       => 'Brūcendas:',
'group-bot'        => 'Searuþralas',
'group-sysop'      => 'Beƿitendas',
'group-bureaucrat' => 'Tōþeȝnas',
'group-suppress'   => 'Oferȝesihta',
'group-all'        => '(eall)',

'group-user-member'     => 'brūcend',
'group-bot-member'      => 'searuþræl',
'group-sysop-member'    => 'beƿitend',
'group-suppress-member' => 'oferȝesiht',

'grouppage-sysop' => '{{ns:project}}:Beƿitendas',

# User rights log
'rightslog' => 'Brūcenda riht cranic',

# Associated actions - in the sentence "You do not have permission to X"
'action-edit' => 'þās sīdan ādihtan',

# Recent changes
'nchanges'                       => '$1 {{PLURAL:$1|hƿearf|hƿeafas}}',
'recentchanges'                  => 'Nīƿe hƿearfas',
'recentchanges-legend'           => 'Nīƿa hƿearfa forebearƿan',
'recentchanges-feed-description' => 'Þā mǣst nīƿoste hƿearfan huntan to þisse ƿiki in þissum strēame',
'rcnote'                         => "Under {{PLURAL:$1|... '''1''' ...|sind þā æftemestan '''$1''' hweorfunga}} in {{PLURAL:$2|...|þǣm æftemestum '''$2''' dagum}}, . . $5, $4.",
'rcnotefrom'                     => 'Under sind þā hweorfunga siþþan <b>$2</b> (oþ <b>$1</b> geīewed).',
'rclistfrom'                     => 'Nīƿe hƿeorfan sēon beȝinnende fram $1',
'rcshowhideminor'                => '$1 lȳtl ādihtas',
'rcshowhidebots'                 => '$1 searuþralas',
'rcshowhideliu'                  => '$1 inmeldede brūcendas',
'rcshowhideanons'                => '$1 uncūþ brūcendas',
'rcshowhidemine'                 => '$1 mīne ādihtas',
'rclinks'                        => 'Læste $1 hƿearfas sēon in læstum $2 dagum<br />$3',
'diff'                           => 'scēa',
'hist'                           => 'Stǣr',
'hide'                           => 'hȳdan',
'show'                           => 'Scēaƿan',
'minoreditletter'                => 'm',
'newpageletter'                  => 'N',
'boteditletter'                  => 'b',
'rc_categories_any'              => 'Ǣniȝ',
'rc-enhanced-expand'             => 'Ȝehanda sēon (þearf JavaScript)',
'rc-enhanced-hide'               => 'Ȝehanda hȳdan',

# Recent changes linked
'recentchangeslinked'       => 'Sibbhƿearfas',
'recentchangeslinked-title' => 'Hƿearfas ȝesibbed to "$1"',
'recentchangeslinked-page'  => 'Sīdenama:',
'recentchangeslinked-to'    => 'Hƿearfas to sīdan sēon þe hlenċan habbaþ to þǣre ȝiefen sīdan in stede',

# Upload
'upload'            => 'Fīl forþsendan',
'uploadbtn'         => 'Fīl forþsendan',
'uploadnologin'     => 'Ne inmeldod',
'uploaderror'       => 'Ƿōh on forþsendende',
'upload-permitted'  => 'Þafed fīlcynn: $1.',
'upload-preferred'  => 'Foreboren fīlcynn: $1.',
'upload-prohibited' => 'Forboden fīlcynn: $1.',
'uploadlogpage'     => 'Forþsend ealdhord',
'filename'          => 'Fīlnama',
'filedesc'          => 'Scortnes',
'filesource'        => 'Fruma:',
'badfilename'       => 'Onlīcnesnama wearþ gewend tō "$1(e/an)".',
'savefile'          => 'Þrǣd sparian',
'uploadedimage'     => 'forþsendode "[[$1]]"',
'sourcefilename'    => 'Fruman þrǣdnama:',

'license'           => 'Gelēaf:',
'nolicense'         => 'Nǣnne gecorenne',
'license-nopreview' => 'Þis gelēaf nis gearu.',

# Special:ListFiles
'listfiles-summary'     => 'Þes syngriga tramet ēowaþ ealle forþsendede fīlas.
Æfter gewunelicum wīsum, þā nīwostan fīlas sind ēowod be hēafe þæs getæles.
Swenge wiþ sweorhēafod andwendeþ þā endebyrdnessa.',
'listfiles_search_for'  => 'Sēcan biliþnaman:',
'imgfile'               => 'fīl',
'listfiles'             => 'Biliþgetalu',
'listfiles_date'        => 'Tælmearc',
'listfiles_name'        => 'Nama',
'listfiles_user'        => 'Brūcend',
'listfiles_size'        => 'Micelness',
'listfiles_description' => 'Tōƿritennes',
'listfiles_count'       => 'Fadunga',

# File description page
'filehist'                  => 'Fīlanstǣr',
'filehist-help'             => 'Cnæpp on dæȝe/tīde to sēonne þā fīlan sƿā ƿæs hēo on þǣre tīde.',
'filehist-deleteall'        => 'afeorsian eall',
'filehist-deleteone'        => 'afeorsian',
'filehist-revert'           => 'undōn',
'filehist-current'          => 'nū',
'filehist-datetime'         => 'Dæȝ/Tīd',
'filehist-thumb'            => 'Lȳtlbiliþ',
'filehist-nothumb'          => 'Nān biliþincel',
'filehist-user'             => 'Brūcend',
'filehist-dimensions'       => 'Miċela',
'filehist-filesize'         => 'Fīlmicelness',
'filehist-comment'          => 'Ymbsprǣċ',
'imagelinks'                => 'Fīlhlenċan',
'linkstoimage'              => 'Þā folgendan {{PLURAL:$1|sīde hæfþ hlenċe|sīdan habbaþ hlenċan}} for þissum fīle:',
'nolinkstoimage'            => 'Þǣr sind nāne trametas þe bindaþ tō þissum biliðe.',
'morelinkstoimage'          => 'Seoh [[Special:WhatLinksHere/$1|mā hlencan]] tō þissum fīle.',
'redirectstofile'           => '{{PLURAL:$1|Þes fīl edlǣdeþ|$1 Þās fīlas hēr edlǣdaþ}} tō þissum  fīle:',
'duplicatesoffile'          => '{{PLURAL:$1|Þes fīl hēr is gelīcness|Þās fīlas hēr sind gelīcnessa}} þisses fīles (seoh [[Special:FileDuplicateSearch/$2|mā gewitnesse hērymb]]):',
'sharedupload'              => 'Þēos fīl is fram $1 and man mæȝ hīe brūcan on ōðrum ƿeorcum.', # $1 is the repo name, $2 is shareduploadwiki(-desc)
'noimage'                   => 'Nān þrǣd mid þissum naman stendeþ nū oþþe nā mā, ac þu canst þēah hine $1.',
'uploadnewversion-linktext' => 'Nīƿe fadunge þisse fīlan forþsendan',

# File reversion
'filerevert-legend' => 'Eftdōn fīl',

# File deletion
'filedelete-submit' => 'āfeorsian',

# Unused templates
'unusedtemplateswlh' => 'ōðre hlenċan',

# Random page
'randompage' => 'Hlīetliċu sīde',

# Statistics
'statistics'              => 'Cȳþþu',
'statistics-articles'     => 'Innungsīdan',
'statistics-pages'        => 'Sīdan',
'statistics-users-active' => 'Hƿate brūcendas',
'statistics-mostpopular'  => 'Mǣst saƿen sīdan',

'doubleredirects' => 'Tƿifealde ymblǣderas',

'brokenredirects'        => 'Brocene ymblǣderas',
'brokenredirectstext'    => 'Þā folgendan edlǣdunga bendaþ tō unedwistlicum trametum.',
'brokenredirects-edit'   => '(ādihtan)',
'brokenredirects-delete' => '(āfeorsian)',

'withoutinterwiki'         => 'Trametas būtan sprǣcbendum',
'withoutinterwiki-summary' => 'Þā folgendan trametas ne bindaþ tō ōðrum sprǣcfadungum:',

# Miscellaneous special pages
'nbytes'               => '$1 {{PLURAL:$1|byte|bytes}}',
'ncategories'          => '$1 {{PLURAL:$1|flocca|floccas}}',
'nlinks'               => '$1 bendas',
'nmembers'             => '$1 {{PLURAL:$1|ȝesīþ|ȝesīðas}}',
'specialpage-empty'    => 'Þēos sīde is ǣmtiȝ.',
'lonelypages'          => 'Ealdorlēase trametas',
'unusedimages'         => 'Unbrocene fīlan',
'popularpages'         => 'Dēore trametas',
'wantedcategories'     => 'Gewilnode floccas',
'wantedpages'          => 'Gewilnode trametas',
'mostlinked'           => 'Gebundenostan trametas',
'mostlinkedcategories' => 'Gebundenostan floccas',
'mostlinkedtemplates'  => 'Gebundenostan bysena',
'prefixindex'          => 'Ealla sīdan mid foredǣle',
'shortpages'           => 'Scorte trametas',
'longpages'            => 'Lange trametas',
'listusers'            => 'Brūcenda ȝetalu',
'newpages'             => 'Nīƿa sīdan',
'newpages-username'    => 'Brūcendnama:',
'ancientpages'         => 'Ieldestan Trametas',
'move'                 => 'Gān',
'movethispage'         => 'Þās sīdan ȝeferan',
'pager-newer-n'        => '{{PLURAL:$1|nīƿra 1|nīƿra $1}}',
'pager-older-n'        => '{{PLURAL:$1|ieldra 1|ieldra $1}}',

# Book sources
'booksources'               => 'Bōcfruman',
'booksources-search-legend' => 'Sēcan bōcfruman',
'booksources-go'            => 'Gān',
'booksources-text'          => 'Under is getalu benda tō ōðrum webstedum þe bebycgaþ nīwa and gebrocena bēc, and hæbben 
ēac mā āscunga ymbe bēc þe þu sēcst:',

# Special:Log
'specialloguserlabel'  => 'Brūcend:',
'speciallogtitlelabel' => 'Nama:',
'log'                  => 'Ealdhord',

# Special:AllPages
'allpages'       => 'Ealla sīdan',
'alphaindexline' => '$1  $2',
'nextpage'       => 'Nīehsta sīde ($1)',
'prevpage'       => 'Ǣror sīde ($1)',
'allpagesfrom'   => 'Sīdan scēaƿian beȝinnende æt:',
'allpagesto'     => 'Sīdan scēaƿian endende æt:',
'allarticles'    => 'Ealla sīdan',
'allinnamespace' => 'Ealle trametas ($1 namanstede)',
'allpagesprev'   => 'Fore',
'allpagesnext'   => 'Nīehst',
'allpagessubmit' => 'Gān',

# Special:Categories
'categories'         => 'Floccas',
'categoriespagetext' => 'Þā folgendan floccas standaþ in þǣm wici.',

# Special:LinkSearch
'linksearch'    => 'Ūtanƿeard hlenċan',
'linksearch-ok' => 'Sēċan',

# Special:ListUsers
'listusers-noresult' => 'Nǣnne brūcend gefundenne.',

# Special:Log/newusers
'newuserlogpage'          => 'Brūcenda ȝesceaft ȝetalu',
'newuserlog-create-entry' => 'Nīƿe brūcend',

# Special:ListGroupRights
'listgrouprights-group'           => 'Clīeƿen',
'listgrouprights-rights'          => 'Riht',
'listgrouprights-helppage'        => 'Help:Clīeƿenes riht',
'listgrouprights-members'         => '(ȝesīða ȝetalu)',
'listgrouprights-removegroup'     => '{{PLURAL:$2|Clīeƿen|Clīeƿenas}} forniman: $1',
'listgrouprights-addgroup-all'    => 'Eall clīeƿenas ēacian',
'listgrouprights-removegroup-all' => 'Ealle clīeƿenas forniman',

# E-mail user
'emailuser'     => 'To þissum brūcende ƿrītan',
'emailfrom'     => 'Fram',
'emailto'       => 'Tō:',
'emailsubject'  => 'Forþsetennes',
'emailmessage'  => 'Ǣrendȝeƿrit',
'emailsend'     => 'Ǣrendian',
'emailsent'     => 'Ǣrendȝeƿrit sended',
'emailsenttext' => 'Þīn e-mail ǣrendȝeƿrit ƿearþ ȝesend.',

# Watchlist
'watchlist'         => 'Mīnu ƿæcceȝetalu',
'mywatchlist'       => 'Mīnu ƿæcceȝetalu',
'watchlistfor'      => "(for '''$1''')",
'addedwatch'        => 'To ƿæcceȝetale ēacod',
'removedwatch'      => 'Fornōm fram ƿæccȝetale',
'removedwatchtext'  => 'Sēo sīde "[[:$1]]" ƿæs fram [[Special:Watchlist|þīnre ƿæccȝetale]] fornōm.',
'watch'             => 'Ƿæccan',
'watchthispage'     => 'Þās sīdan ƿæccan',
'unwatch'           => 'Unƿæccan',
'unwatchthispage'   => 'Ƿæccende healtian',
'watchlist-details' => '{{PLURAL:$1|$1 sīde|$1 sīdan}} on þīnre ƿæccȝetale, ne beinnende ȝespreċsīdan.',
'watchlistcontains' => 'Þīn behealdnestalu hæfþ $1 {{PLURAL:$1|trameta|trametas}} inn.',
'wlnote'            => 'Under sind þā æftemestan $1 hweorfunga in þǣm æftemestum <b>$2</b> stundum.',
'wlshowlast'        => 'Īewan æftemestan $1 stunda $2 daga $3',
'watchlist-options' => 'Ƿæccȝetale forebearƿan',

# Displayed when you click the "watch" button and it is in the process of watching
'watching'   => 'Ƿæccende...',
'unwatching' => 'Unƿæccende...',

'enotif_newpagetext'           => 'Þēos is nīƿu sīde.',
'enotif_impersonal_salutation' => '{{SITENAME}} brūcend',
'changed'                      => 'hƿorfen',
'created'                      => 'ȝescapen',
'enotif_lastvisited'           => 'Sēo $1 for eall hƿearfas siþþan þīn læst cyme.',
'enotif_lastdiff'              => 'Sēo $1 to sēonne þisne hƿearf.',
'enotif_anon_editor'           => 'uncūþ brūcend $1',

# Delete
'deletepage'            => 'Sīdan āfeorsian',
'excontent'             => "innung ƿæs: '$1'",
'excontentauthor'       => "innung ƿæs: '$1' (and se āna forðiend ƿæs '[[Special:Contributions/$2|$2]]')",
'exblank'               => 'tramet wæs ǣmtig',
'historywarning'        => 'Warnung: Se tramet, þone þu āfeorsian teohhast, hæfþ stǣre:',
'actioncomplete'        => 'Ƿeorcdǣd fuldōn',
'deletedarticle'        => 'āfeorsode "[[$1]]"',
'dellogpage'            => 'Āfeorsunge_wisbōc',
'deletionlog'           => 'āfeorsunge wisbōc',
'deletecomment'         => 'Racu:',
'deleteotherreason'     => 'Ōðra/ēaca racu:',
'deletereasonotherlist' => 'Ōðru racu',

# Rollback
'rollback_short' => 'Edhƿeorfan',
'rollbacklink'   => 'Edhƿeorfan',
'rollbackfailed' => 'Edhƿeorf misfangen',
'editcomment'    => "Sēo ādihtungymbsprǣc wæs: \"''\$1''\".", # only shown if there is an edit comment
'revertpage'     => 'Ācierde ādihtunga fram [[Special:Contributions/$2|$2]] ([[User talk:$2|Gesprec]]); wendede on bæc tō ǣrran fadunge fram [[User:$1|$1]]', # Additionally available: $3: revid of the revision reverted to, $4: timestamp of the revision reverted to, $5: revid of the revision reverted from, $6: timestamp of the revision reverted from

# Protect
'protectlogpage'              => 'Beorges ealdhord',
'protectedarticle'            => 'borgen "[[$1]]"',
'unprotectedarticle'          => 'unborgen "[[$1]]"',
'protect-title'               => 'Beorges emnet hƿeorfan for "$1"',
'prot_1movedto2'              => '[[$1]] ȝefered tō [[$2]]',
'protectcomment'              => 'Racu:',
'protectexpiry'               => 'Endaþ:',
'protect_expiry_invalid'      => 'Endende tīde is unriht.',
'protect_expiry_old'          => 'Endende tīde is in ȝēara dagum.',
'protect-text'                => "Þū meaht þæt beorges emnet sēon and hƿeorfan hēr for þǣre sīdan '''<nowiki>$1</nowiki>'''.",
'protect-default'             => 'Eall brūcendas þafian',
'protect-fallback'            => '"$1" þafunge ābiddan',
'protect-level-autoconfirmed' => 'Nīƿe and unbōcen brūcendas fortȳnan',
'protect-level-sysop'         => 'Efne for beƿitendum',
'protect-summary-cascade'     => 'beflōƿende',
'protect-expiring'            => 'endaþ $1 (UTC)',
'protect-cascade'             => 'Sīdan beorgan beinnodon þisse sīdan (flōƿende ȝebeorg)',
'protect-cantedit'            => 'Þū ne meaht þæt beorges emnet hƿeorfan þisre sīdan, forþǣm ne hæfst þū þafunge to ādihtenne hīe.',
'protect-expiry-options'      => '1 stund:1 hour,1 dæg:1 day,1 wucu:1 week,2 wuca:2 weeks,1 mōnaþ:1 month,3 mōnþas:3 months,6 mōnþas:6 months,1 gēar:1 year,unendiendlic:infinite', # display1:time1,display2:time2,...
'restriction-type'            => 'Þafung:',
'restriction-level'           => 'Ȝehæftes emnet:',

# Restrictions (nouns)
'restriction-edit'   => 'Ādihtan',
'restriction-move'   => 'Gān',
'restriction-create' => 'Scieppan',
'restriction-upload' => 'Forþsendan',

# Restriction levels
'restriction-level-sysop'         => 'fulborgen',
'restriction-level-autoconfirmed' => 'sāmborgen',
'restriction-level-all'           => 'ǣniȝ emnet',

# Undelete
'undeletebtn'            => 'Edstaðola!',
'undeletelink'           => 'sēon/nīƿian',
'undeletedarticle'       => 'edstaðolod "[[$1]]"',
'undelete-search-submit' => 'Sēċan',

# Namespace form on various pages
'namespace'      => 'Namanstede:',
'invert'         => 'Cyre edƿendan',
'blanknamespace' => '(Hēafod)',

# Contributions
'contributions'       => 'Brūcendforðunga',
'contributions-title' => 'Brūcendforðunga for $1',
'mycontris'           => 'Mīna forðunga',
'contribsub2'         => 'For $1 ($2)',
'uctop'               => '(hēafod)',
'month'               => 'Fram mōnþe (and ǣror)',
'year'                => 'Fram ȝēare (and ǣror)',

'sp-contributions-search'   => 'Forðunga sēċan',
'sp-contributions-username' => 'IP address oþþe brūcendnama:',
'sp-contributions-submit'   => 'Sēċan',

# What links here
'whatlinkshere'            => 'Hƿæt hæfþ hlenċan hider',
'whatlinkshere-title'      => 'Sīdan þe hlenċan habbaþ to "$1"',
'whatlinkshere-page'       => 'Sīde:',
'linkshere'                => "Þā folgenda sīdan habbaþ hlenċan þe to þisse sīdan lǣdan: '''[[:$1]]'''",
'nolinkshere'              => 'Nāne trametas bindaþ hider.',
'isredirect'               => 'edlǣdungtramet',
'istemplate'               => 'bysentraht',
'isimage'                  => 'biliþhlenċ',
'whatlinkshere-links'      => '← hlenċan',
'whatlinkshere-hideredirs' => '$1 edlǣdas',
'whatlinkshere-hidetrans'  => '$1 bysentraht',
'whatlinkshere-hidelinks'  => '$1 hlenċan',
'whatlinkshere-filters'    => 'Seohhunga',

# Block/unblock
'blockip'                  => 'Brūcend fortȳnan',
'ipbreason'                => 'Racu:',
'ipbreasonotherlist'       => 'Ōðeru racu',
'ipbreason-dropdown'       => '*Gemǣna gǣlungraca
** Insettung falses gefrǣges
** Āfēorsung innunge of trametum
** Spamming benda tō ūtanweardum webbstedum
** Insettung gedofes/dwolunge intō trametum
** Þrǣstiendlicu gebǣrnes/tirgung
** Miswendung manigfealdra brūcendhorda
** Uncwēme brūcendnama',
'ipbsubmit'                => 'Þisne brūcend gǣlan',
'ipbother'                 => 'Ōðeru tīd',
'ipboptions'               => '2 stunda:2 hours,1 dæȝ:1 day,3 dagas:3 days,1 ƿucu:1 week,2 ƿuca:2 weeks,1 mōnaþ:1 month,3 mōnþas:3 months,6 mōnþas:6 months,1 ȝēar:1 year,unendiend:infinite', # display1:time1,display2:time2,...
'ipbotheroption'           => 'ōðer',
'ipbotherreason'           => 'Ōðeru/geīecendlicu racu:',
'ipblocklist-submit'       => 'Sēċan',
'infiniteblock'            => 'unendiende',
'expiringblock'            => 'forealdaþ $1',
'blocklink'                => 'fortȳnan',
'unblocklink'              => 'unfortȳnan',
'change-blocklink'         => 'Fortȳne hƿeorfan',
'contribslink'             => 'forðunga',
'unblocklogentry'          => 'unfortȳnode $1',
'block-log-flags-nocreate' => 'Hordcleofan scieppende forboden',
'proxyblocksuccess'        => 'Ȝedōn.',

# Move page
'movearticle'     => 'Sīdan ȝeferan:',
'newtitle'        => 'To nīƿum name:',
'move-watch'      => 'Frumasīdan and endesīdan ƿæccan',
'movepagebtn'     => 'Sīdan ȝeferan',
'pagemovedsub'    => 'Ȝefōr spēdde',
'movepage-moved'  => '\'\'\'"$1" ƿæs to "$2"\'\'\' ȝefered', # The two titles are passed in plain text as $3 and $4 to allow additional goodies in the message.
'articleexists'   => 'Tramet on þǣm naman ǣr stendeþ, oþþe þone
naman þu cēas nis andfenge.
Bidde cēos ōðerne naman.',
'movedto'         => 'ȝefered to',
'movetalk'        => 'Ȝesibbed ȝespreċsīdan ȝeferan',
'1movedto2'       => '[[$1]] ȝefered to [[$2]]',
'1movedto2_redir' => '[[$1]] ȝefered to [[$2]] ofer edlǣdunge',
'movelogpage'     => 'Ȝeferan ealdhord',
'movereason'      => 'Racu:',
'revertmove'      => 'Undōn',

# Export
'export' => 'Sīdan ūtsendan',

# Namespace 8 related
'allmessagesname'    => 'Nama',
'allmessagesdefault' => 'Fūsliċ traht',
'allmessagescurrent' => 'Nū traht',

# Thumbnails
'thumbnail-more' => 'Mǣrsian',
'filemissing'    => 'Þrǣd unandƿeard',

# Special:Import
'import'                  => 'Sīdan inbringan',
'import-interwiki-submit' => 'Inbringan',
'importstart'             => 'Inbringende sīdan...',
'importnopages'           => 'Nān sīdan to inbringenne.',
'importfailed'            => 'Inbringung tōsǣlede: $1',
'importnotext'            => 'Ǣmtiȝ oþþe nān traht',
'importsuccess'           => 'Inbringoþ ȝesǣled!',
'import-noarticle'        => 'Nān sīde to inbringenne!',

# Tooltip help for the actions
'tooltip-pt-userpage'             => 'Þīnu brūcendsīde',
'tooltip-pt-mytalk'               => 'Þīnu ȝespreċsīde',
'tooltip-pt-preferences'          => 'Þīna forebearƿan',
'tooltip-pt-watchlist'            => 'Sēo ȝetalu sīdena þe ƿæccest þū for hƿearfum',
'tooltip-pt-mycontris'            => 'Ȝetalu þīnra forðunga',
'tooltip-pt-login'                => 'Man þē byldeþ to inmeldienne; þēah, þis nis ābeden',
'tooltip-pt-logout'               => 'Ūtmeldian',
'tooltip-ca-talk'                 => 'Ȝespreċ ymbe þǣre innoþsīdan',
'tooltip-ca-edit'                 => 'Þū meaht þās sīdan ādihtan. Bidde brūc þone forescēaƿecnæpp fore spariende',
'tooltip-ca-addsection'           => 'Nīƿe dǣl beȝinnan',
'tooltip-ca-viewsource'           => 'Þēos sīde is borgen.
Þū meaht hire fruman sēon.',
'tooltip-ca-history'              => 'Ǣror fadunga þisse sīdan',
'tooltip-ca-protect'              => 'Þās sīdan beorgan',
'tooltip-ca-delete'               => 'Þās sīdan āfeorsian',
'tooltip-ca-move'                 => 'Þās sīdan ȝeferan',
'tooltip-ca-watch'                => 'Þās sīdan ēacian to þīnre ƿæccȝetale',
'tooltip-ca-unwatch'              => 'Þās sīdan forniman ƿiþ þīne ƿæccȝetale',
'tooltip-search'                  => 'Sēcan {{SITENAME}}',
'tooltip-search-go'               => 'To sīdan gān ȝif bēo þes rihtnama',
'tooltip-search-fulltext'         => 'Þā sīdan sēċan mid þissum trahte',
'tooltip-p-logo'                  => 'Hēafodsīde',
'tooltip-n-mainpage'              => 'Þǣre hēafodsīdan gān',
'tooltip-n-portal'                => 'Ymbe þǣm ƿeorce, hƿæt meaht þū dōn, hƿǣr to findenne þing',
'tooltip-n-currentevents'         => 'Ieldran cȳþþe findan ymbe nīƿum ȝelimpum',
'tooltip-n-recentchanges'         => 'Sēo ȝetalu nīƿa hƿearfa in þǣre ƿiki',
'tooltip-n-randompage'            => 'Hlīeta sīdan hladan',
'tooltip-n-help'                  => 'Cunnunge stede',
'tooltip-t-whatlinkshere'         => 'Ȝetalu eallra ƿikisīdan þe mid hlenċum hider habbaþ',
'tooltip-t-recentchangeslinked'   => 'Nīƿe hƿearfas in sīdum mid hlenċum fram þisse sīdan',
'tooltip-feed-rss'                => 'RSS strēam for þisse sīdan',
'tooltip-feed-atom'               => 'Atom strēam for þisse sīdan',
'tooltip-t-contributions'         => 'Þā ȝetale sēon þāra forðunga þisses brūcendes',
'tooltip-t-emailuser'             => 'E-mail to þissum brūcende sendan',
'tooltip-t-upload'                => 'Fīlan forþsendan',
'tooltip-t-specialpages'          => 'Ȝetalu eallra syndriȝa sīdena',
'tooltip-t-print'                 => 'Ȝemǣnendliċu fadung þisse sīdan',
'tooltip-t-permalink'             => 'Fæst hlenċ for þisse fadunge þǣre sīdan',
'tooltip-ca-nstab-main'           => 'Þā innoþsīdan sēon',
'tooltip-ca-nstab-user'           => 'Þā brūcendsīdan sēon',
'tooltip-ca-nstab-special'        => 'Þēos is syndriȝu sīde, þū ne meaht þā sīdan hireself ādihtan',
'tooltip-ca-nstab-project'        => 'Þā ƿeorces sīdan sēon',
'tooltip-ca-nstab-image'          => 'Þā fīlsīde sēon',
'tooltip-ca-nstab-template'       => 'Þæt bysen sēon',
'tooltip-ca-nstab-category'       => 'Þā floccsīdan sēon',
'tooltip-minoredit'               => 'Þis sƿā lȳtl ādiht mearcian',
'tooltip-save'                    => 'Þīnne hƿearfas sparian',
'tooltip-preview'                 => 'Forescēaƿe þīne hƿearfas, bidde brūc þis fore sparest þū!',
'tooltip-diff'                    => 'Þā hƿearfas sēon þe dydest þū þǣm trahte',
'tooltip-compareselectedversions' => 'Þā tōdāl sēon betƿēonan þǣre tƿǣm coren fadungum þisse sīdan',
'tooltip-watch'                   => 'Þās sīdan ēacian to þīnre ƿæccȝetale',
'tooltip-undo'                    => '"Undōn" undēþ þisne ādiht and þæt ādihtcynd openaþ in forescēaƿemōde. Þis þafaþ race ēaciende in þǣre scortnesse.',

# Attribution
'anonymous' => 'Namcūþlēas(e) brūcend {{SITENAME}}n',
'siteuser'  => '{{SITENAME}}n brūcere $1',
'others'    => 'ōðru',

# Info page
'numedits'     => 'Hū mæniȝ ādihtas (sīde): $1',
'numtalkedits' => 'Hū mæniȝ ādihtas (ȝespreċsīde): $1',
'numwatchers'  => 'Hū mæniȝ ƿæcceras: $1',

# Patrol log
'patrol-log-auto' => '(selffremmende)',
'patrol-log-diff' => 'nīƿung $1',

# Browsing diffs
'previousdiff' => '← Ieldra ādiht',
'nextdiff'     => 'Nīƿra ādiht',

# Media information
'imagemaxsize'         => 'Settan biliðu on biliþgemearcungtrametum tō:',
'thumbsize'            => 'Þumannæglmicelnes:',
'file-info-size'       => '($1 × $2 pixels, fīlmiċelu: $3, MIMEcynn: $4)',
'file-nohires'         => '<small>Þǣr nis nǣniȝ mā miċelu.</small>',
'svg-long-desc'        => '(SVG fīl, rihte $1 × $2 pixels, fīlmiċelu: $3)',
'show-big-image'       => 'Fulmiċelu',
'show-big-image-thumb' => '<small>Þēos forescēaƿe miċelu: $1 × $2 pixels</small>',

# Special:NewFiles
'imagelisttext' => 'Under is getalu $1 biliða gedæfted $2.',
'noimages'      => 'Nāht tō sēonne.',
'ilsubmit'      => 'Sēċan',
'bydate'        => 'be tælmearce',

# Metadata
'metadata'          => 'Metacȳþþu',
'metadata-expand'   => 'Oferȝehanda sēon',
'metadata-collapse' => 'Oferȝehanda hȳdan',

# EXIF tags
'exif-imagewidth'       => 'Ƿīdnes',
'exif-imagelength'      => 'Hīehþ',
'exif-compression'      => 'Ȝeþryccungmōd',
'exif-ycbcrpositioning' => 'Y and C ȝesetednes',
'exif-imagedescription' => 'Biliðes nama',
'exif-artist'           => 'Fruma',
'exif-usercomment'      => 'Brūcendes trahtnunga',
'exif-exposuretime'     => 'Blicestīd',
'exif-brightnessvalue'  => 'Beorhtnes',
'exif-lightsource'      => 'Lēohtfruma',
'exif-whitebalance'     => 'Hƿītefnetta',
'exif-sharpness'        => 'Scearpnes',
'exif-gpslatituderef'   => 'Norþ oþþe sūþ brǣdu',
'exif-gpslatitude'      => 'Brǣdu',
'exif-gpslongituderef'  => 'Ēast oþþe ƿest lengu',
'exif-gpslongitude'     => 'Lengu',
'exif-gpsmeasuremode'   => 'Mētungmōd',
'exif-gpsimgdirection'  => 'Rihtung þæs biliðes',

# EXIF attributes
'exif-compression-1' => 'Unȝeþrycced',

'exif-meteringmode-0'   => 'Uncūþ',
'exif-meteringmode-1'   => 'Ȝeþēaƿisc',
'exif-meteringmode-6'   => 'Sām',
'exif-meteringmode-255' => 'Ōðer',

'exif-lightsource-0' => 'Uncūþ',
'exif-lightsource-1' => 'Dæȝeslēoht',

# Flash modes
'exif-flash-mode-3' => 'selffremmende mōd',

'exif-focalplaneresolutionunit-2' => 'ynċas',

'exif-exposuremode-1' => 'Handlic blice',

'exif-whitebalance-0' => 'Selffremmende hƿītefnetta',

'exif-scenecapturetype-1' => 'Landsceap',

'exif-gaincontrol-0' => 'Nān',

'exif-contrast-1' => 'Sōfte',
'exif-contrast-2' => 'Heard',

'exif-sharpness-1' => 'Sōfte',
'exif-sharpness-2' => 'Heard',

'exif-subjectdistancerange-2' => 'Nēah hāƿung',
'exif-subjectdistancerange-3' => 'Feorr hāƿung',

# Pseudotags used for GPSLatitudeRef and GPSDestLatitudeRef
'exif-gpslatitude-n' => 'Norþ brǣdu',
'exif-gpslatitude-s' => 'Sūþ brǣdu',

# Pseudotags used for GPSLongitudeRef and GPSDestLongitudeRef
'exif-gpslongitude-e' => 'Ēast lengu',
'exif-gpslongitude-w' => 'Ƿest lengu',

# Pseudotags used for GPSTrackRef, GPSImgDirectionRef and GPSDestBearingRef
'exif-gpsdirection-t' => 'Sōþ rihtung',

# External editor support
'edit-externally-help' => '(Þā [http://www.mediawiki.org/wiki/Manual:External_editors ȝearƿunga tyhtas] sēon for mā cȳþþe)',

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

# E-mail address confirmation
'confirmemail_body' => 'Hwilchwega, gewēne þu of IP stōwe $1, hæfþ in namanbēc gestt ǣnne hordcleofan
"$2" mid þissum e-ǣrendes naman on {{SITENAME}}n.

Tō āsēðenne þæt þes hordcleofa tō þē gebyraþ and tō openienne
e-ǣrenda hwilcnessa on {{SITENAME}}n, opena þisne bend in þīnum webbscēawere:

$3

Gif þis is *nā* þū, ne folga þisne bend.

$5

Þēos āsēðungrūn forealdaþ æt $4.',

# Scary transclusion
'scarytranscludefailed'  => '[Bisenfeccung getrucod for $1; sarig]',
'scarytranscludetoolong' => '[URL is tō lang]',

# Multipage image navigation
'imgmultigo' => 'Gān!',

# Table pager
'table_pager_first'        => 'Forma tramet',
'table_pager_last'         => 'Hindemesta tramet',
'table_pager_limit_submit' => 'Gān',
'table_pager_empty'        => 'Nān becymas',

# Auto-summaries
'autosumm-blank' => 'Þā sīdan blæċode',
'autosumm-new'   => "Sīdan mid '$1' ȝescapen",

# Watchlist editor
'watchlistedit-noitems'       => 'Þīnu ƿæccȝetalu ne hæfþ nǣniȝ naman.',
'watchlistedit-normal-title'  => 'Ƿæccȝetale ādihtan',
'watchlistedit-normal-legend' => 'Naman forniman ƿiþ ƿæccȝetale',
'watchlistedit-normal-submit' => 'Naman forniman',
'watchlistedit-raw-titles'    => 'Naman:',
'watchlistedit-raw-done'      => 'Þīnu ƿæccȝetalu nīƿode.',

# Watchlist editing tools
'watchlisttools-view' => 'Ƿeorþliċe hƿearfas sēon',
'watchlisttools-edit' => 'Ƿæccȝetale sēon and ādihtan',
'watchlisttools-raw'  => 'Grēne ƿæccȝetale ādihtan',

# Special:Version
'version'              => 'Fadung', # Not used as normal message but as header for the special page itself
'version-specialpages' => 'Syndriȝa sīdan',
'version-other'        => 'Ōðer',
'version-hooks'        => 'Anglas',
'version-hook-name'    => 'Angelnama',

# Special:FilePath
'filepath'        => 'Fīlpæþ',
'filepath-page'   => 'Fīl:',
'filepath-submit' => 'Gān',

# Special:FileDuplicateSearch
'fileduplicatesearch-filename' => 'Fīlnama:',
'fileduplicatesearch-submit'   => 'Sēċan',

# Special:SpecialPages
'specialpages'             => 'Syndriȝa sīdan',
'specialpages-group-other' => 'Ōðra syndriȝa sīdan',
'specialpages-group-users' => 'Brūcendas and riht',

# Special:BlankPage
'blankpage' => 'Blæċu sīde',

# Special:Tags
'tags-edit' => 'ādihtan',

);