summaryrefslogtreecommitdiff
path: root/languages/messages/MessagesSrn.php
blob: 3ed398e02a68f6ee7fdb06214e8f6ebead34c80b (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
<?php
/** Sranan Tongo (Sranantongo)
 *
 * @addtogroup Language
 *
 * @author Adfokati
 * @author Jordi
 * @author Siebrand
 * @author Ooswesthoesbes
 */

$fallback = 'nl';

$messages = array(
# User preference toggles
'tog-underline'               => 'Gi lin a den skaki:',
'tog-highlightbroken'         => 'Gi skaki na no peprewoysi <a href="" class="new">leki dyaso</a> (alternati: leki disi<a href="" class="internal">?</a>).',
'tog-justify'                 => 'Paragraf leti meki',
'tog-hideminor'               => 'Libi pikin kenki no si ini bakaseywan kenki',
'tog-extendwatchlist'         => 'Granmeki sirey',
'tog-usenewrc'                => 'Granmeki Bakaseywan Kenki-papira teki (JavaScript)',
'tog-numberheadings'          => 'Autonumro edelen',
'tog-showtoolbar'             => 'Kenki-tubu-box libi si (JavaScript)',
'tog-editondblclick'          => 'Klik tu ten fu kenki (JavaScript)',
'tog-editsection'             => 'Kenki fu seksipapira nanga [kenki]-skaki',
'tog-editsectiononrightclick' => 'Kenki fu seksi duba meki nanga wan letimoysmoysiklik opo wan edelen (JavaScript)',
'tog-showtoc'                 => 'Inut libi si (fu peprewoysi nanga meni 3 edelen)',
'tog-rememberpassword'        => 'Memre mi waktiwortu nanga masyinnen opo disi komputer.',
'tog-editwidth'               => 'Kenki-box is o folbre',
'tog-watchcreations'          => 'Peprewoysi mi skopu soma opo mi sirey presi',
'tog-watchdefault'            => 'Peprewoysi mi kenki soma opo mi sirey presi',
'tog-watchmoves'              => 'Peprewoysi mi dribi soma opo mi sirey presi',
'tog-watchdeletion'           => 'Peprewoysi mi trowe soma opo mi sirey presi',
'tog-minordefault'            => 'Ala fu mi kenki soma leki pikin agi',
'tog-previewontop'            => 'Fusi hey opo mi kenkibox libi si',
'tog-previewonfirst'          => 'Fusi opo foswan kenki libi si',
'tog-nocache'                 => 'No cache teki',
'tog-enotifwatchlistpages'    => 'E-mail mi fu kenki fu peprewoysi opo mi sirey',
'tog-enotifusertalkpages'     => 'E-mail mi fu kenki fu mi taki',
'tog-enotifminoredits'        => 'E-mail mi fu pikin kenki fu peprewoysi opo mi sirey',
'tog-enotifrevealaddr'        => 'Mi e-mailadresi libi si ini e-mailboskopu',
'tog-shownumberswatching'     => 'Tala fu masyin libi si taki disi papira si',
'tog-externaleditor'          => 'Soma wan dorosey litiwrokkenki teki',
'tog-externaldiff'            => 'Soma wan dorosey gersikenki teki',
'tog-showjumplinks'           => '“go na”-tuganiliskaki inipoti',
'tog-uselivepreview'          => '“live fusi” teki (JavaScript – ekspirimenti)',
'tog-forceeditsummary'        => 'Wanseplomi nanga wan leygi infrumasi-box',
'tog-watchlisthideown'        => 'Mi kenki opo mi sirey no libi si',
'tog-watchlisthidebots'       => 'Botkenki opo mi sirey no libi si',
'tog-watchlisthideminor'      => 'Pikin kenki opo mi sirey no libi si',
'tog-ccmeonemails'            => 'Mi wan kopi stir fu den e-mail dy mi na masyin stir',
'tog-diffonly'                => 'Papira-inot ondro kenki no libi si',

'underline-always'  => 'Alaten',
'underline-never'   => 'Noyti',
'underline-default' => 'Saki fu yu browser',

'skinpreview' => '(Fusi)',

# Dates
'sunday'        => 'sonde',
'monday'        => 'mundey',
'tuesday'       => 'tude-wroko',
'wednesday'     => 'dridey-wroko',
'thursday'      => 'fode-wroko',
'friday'        => 'freyda',
'saturday'      => 'satra',
'sun'           => 'son',
'mon'           => 'mun',
'tue'           => 'tud',
'wed'           => 'dri',
'thu'           => 'fod',
'fri'           => 'fre',
'sat'           => 'sat',
'january'       => 'foswan mun',
'february'      => 'fostu mun',
'march'         => 'fosdri mun',
'april'         => 'fosfo mun',
'may_long'      => 'fosfeyfi mun',
'june'          => 'fossiksi mun',
'july'          => 'fosseybi mun',
'august'        => 'fosayti mun',
'september'     => 'fosneygi mun',
'october'       => 'fostin mun',
'november'      => 'foserfu mun',
'december'      => 'fostwarfu mun',
'january-gen'   => 'foswan mun',
'february-gen'  => 'fostu mun',
'march-gen'     => 'fosdri mun',
'april-gen'     => 'fosfo mun',
'may-gen'       => 'fosfeyfi mun',
'june-gen'      => 'fossiksi mun',
'july-gen'      => 'fosseybi mun',
'august-gen'    => 'fosayti mun',
'september-gen' => 'fosneygi mun',
'october-gen'   => 'fostin mun',
'november-gen'  => 'foserfu mun',
'december-gen'  => 'fostwarfu mun',
'jan'           => 'wan',
'feb'           => 'tu',
'mar'           => 'dri',
'apr'           => 'fo',
'may'           => 'fosfeyfi mun',
'jun'           => 'sik',
'jul'           => 'sey',
'aug'           => 'ayt',
'sep'           => 'ney',
'oct'           => 'tin',
'nov'           => 'erf',
'dec'           => 'twa',

# Bits of text used by many pages
'categories'            => 'Den guru',
'pagecategories'        => '{{PLURAL:$1|Guru|Guru}}',
'category_header'       => 'Peprewoysi ini guru “$1”',
'subcategories'         => 'Subguru',
'category-media-header' => 'Media ini guru “$1”',
'category-empty'        => "''Disi guru abi no papira efu media.''",

'about'          => 'Abra',
'article'        => 'Papira',
'newwindow'      => '(opo ini wan nyon fensre)',
'cancel'         => 'Broko',
'qbfind'         => 'Suku',
'qbbrowse'       => 'Wiwiri',
'qbedit'         => 'Kenki',
'qbpageoptions'  => 'Disi papira',
'qbpageinfo'     => 'Papira-infrumasi',
'qbmyoptions'    => 'Mi peprewoysi',
'qbspecialpages' => 'Spesyal peprewoysi',
'moredotdotdot'  => 'Pasa...',
'mypage'         => 'Mi papira',
'mytalk'         => 'Mi taki',
'anontalk'       => 'Taki fu disi IP',
'navigation'     => 'Lukubun',
'and'            => 'nanga',

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

'errorpagetitle'    => 'Fowtu',
'returnto'          => 'Gwe na $1.',
'tagline'           => 'Fu {{SITENAME}}',
'help'              => 'Yepi',
'search'            => 'Suku',
'searchbutton'      => 'Suku',
'go'                => 'Go',
'searcharticle'     => 'Go',
'history'           => 'Stori fu a papira',
'history_short'     => 'Stori',
'updatedmarker'     => 'kenki sins mi bakaseywan konsi',
'info_short'        => 'Infrumasie',
'printableversion'  => 'Libiwroko e kwinsi',
'permalink'         => 'Permalink',
'print'             => 'Kwinsi',
'edit'              => 'Kenki',
'editthispage'      => 'Kenki disi papira',
'delete'            => 'Trowe',
'deletethispage'    => 'Disi papira trowe',
'undelete_short'    => 'Otrowe $1 {{PLURAL:$1|kenki|kenki}}',
'protect'           => 'Tapu',
'protect_change'    => 'tapu kenki',
'protectthispage'   => 'Disi papira kenki',
'unprotect'         => 'Otapu',
'unprotectthispage' => 'Disi papira otapu',
'newpage'           => 'Nyun papira',
'talkpage'          => 'Taki',
'talkpagelinktext'  => 'Taki',
'specialpage'       => 'Spesyal papira',
'personaltools'     => 'Pesoonli tubu',
'postcomment'       => 'Opotaki presi',
'articlepage'       => 'Papira libi si',
'talk'              => 'Taki',
'views'             => 'Den kibri',
'toolbox'           => 'Tubu-box',
'userpage'          => 'Papira fu masyin libi si',
'projectpage'       => 'Projectpapira libi si',
'imagepage'         => 'Gefrepapira libi si',
'mediawikipage'     => 'Papira fu boskopu libi si',
'templatepage'      => 'Ankra libi si',
'viewhelppage'      => 'Papira fu yibi libi si',
'categorypage'      => 'Gurupapira libi si',
'viewtalkpage'      => 'Taki libi si',
'otherlanguages'    => 'Ini tra tongo',
'redirectedfrom'    => '(Stir fu $1)',
'redirectpagesub'   => 'Stirpapira',
'lastmodifiedat'    => 'Disi papira abi wan bakaseywan kenki opo $1 a $2.', # $1 date, $2 time
'viewcount'         => 'Disi papira bem {{PLURAL:$1|wansetron|$1 tron}} e si.',
'protectedpage'     => 'Tapu papira',
'jumpto'            => 'Go na:',
'jumptonavigation'  => 'lukubun',
'jumptosearch'      => 'suku',

# 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'         => 'Abra {{SITENAME}}',
'aboutpage'         => 'Project:Abra',
'bugreports'        => 'Buku fu fowtu',
'bugreportspage'    => 'Project:Buku fu fowtu',
'copyright'         => 'A inot ben siba a hiri fu $1.',
'copyrightpagename' => '{{SITENAME}} kopireg',
'copyrightpage'     => '{{ns:project}}:Kopireg',
'currentevents'     => 'Den weti',
'currentevents-url' => 'Project:Den weti',
'disclaimers'       => 'Diskleem',
'disclaimerpage'    => 'Project:Diskleem en général',
'edithelp'          => 'Yibi a kenki',
'edithelppage'      => 'Help:Kenki',
'faq'               => 'Pasa aksa',
'faqpage'           => 'Project:Pasa aksa',
'helppage'          => 'Help:Inot',
'mainpage'          => 'Fruwondruwiwiri',
'policy-url'        => 'Project:Polisi',
'portal'            => 'Singi nanga Spoto Uku',
'portal-url'        => 'Project:Singi nanga Spoto Uku',
'privacy'           => 'Prafisi polisi',
'privacypage'       => 'Project:Prafisi polisi',
'sitesupport'       => 'Yibi a finansi',
'sitesupport-url'   => 'Project:Yibi en finansi',

'ok'                      => 'oki',
'retrievedfrom'           => 'Riti fu "$1"',
'youhavenewmessages'      => 'Yu abi $1 ($2).',
'newmessageslink'         => 'nyun boskopu',
'newmessagesdifflink'     => 'bakaseywan kenki libi si',
'youhavenewmessagesmulti' => 'Yu abi nyun boskopu opo $1',
'editsection'             => 'kenki',
'editold'                 => 'kenki',
'editsectionhint'         => 'Kenki gron: $1',
'toc'                     => 'Inut',
'showtoc'                 => 'libi si',
'hidetoc'                 => 'kibri',
'thisisdeleted'           => '$1 libi si efu otrowe?',
'viewdeleted'             => '$1 libi si?',
'restorelink'             => '$1 {{PLURAL:$1|si|si}} taki ben e trowe',
'feedlinks'               => 'Nyan:',
'site-rss-feed'           => '$1 RSS-nyan',
'site-atom-feed'          => '$1 Atom-nyan',
'page-rss-feed'           => '“$1” RSS-nyan',
'page-atom-feed'          => '“$1” Atom-nyan',

# Short words for each namespace, by default used in the namespace tab in monobook
'nstab-main'      => 'Papira',
'nstab-user'      => 'Papira fu a masyin',
'nstab-media'     => 'Papira fu media',
'nstab-special'   => 'Spesyal',
'nstab-project'   => 'Projectpapira',
'nstab-image'     => 'Gefre',
'nstab-mediawiki' => 'Boskopu',
'nstab-template'  => 'Ankra',
'nstab-help'      => 'Papira fu yibi',
'nstab-category'  => 'Guru',

# General errors
'error'                => 'Fowtu',
'databaseerror'        => 'Fowtu fu database',
'internalerror'        => 'Ini fowtu',
'internalerror_info'   => 'Ini fowtu: $1',
'filecopyerror'        => 'Gefre “$1” kan no na “$2” e kopi sey.',
'filerenameerror'      => '“$1” kan no tu “$2” e dribi sey.',
'filedeleteerror'      => 'Gefre “$1” kan no e trowe sey.',
'directorycreateerror' => 'Map “$1” kan no skopu sey.',
'filenotfound'         => 'Gefre “$1” kan no e findi sey.',
'badtitle'             => 'Fowtu papiranen',
'badtitletext'         => 'A nen fu a opoaksa papira ben fowtu, leyti efu abi wan fowtu skaki intertongo- efu interwikinen. Ski abi a nen no gu ben litiwroko.',
'viewsource'           => 'Bigin libi si',
'viewsourcefor'        => 'fu $1',
'viewsourcetext'       => 'Yu kan a wiki-si fu disi papira aluku nanga kopi:',

# Login and logout pages
'logouttitle'           => 'Gwe efu masyin',
'loginpagetitle'        => 'Nen fu masyin',
'yourname'              => 'Nen fu masyin:',
'yourpassword'          => 'Waktiwortu:',
'yourpasswordagain'     => 'Gi yu waktiwortu fu a fostu:',
'remembermypassword'    => 'Memre mi waktiwortu nanga masyinnen opo disi komputer.',
'yourdomainname'        => 'Yu domein:',
'login'                 => 'Kon',
'loginprompt'           => 'Yu mu den kuki iniputi abi tu kan e kon ben opo {{SITENAME}}.',
'userlogin'             => 'Kon / Meki fu masyin',
'logout'                => 'Gwe',
'userlogout'            => 'Gwe',
'notloggedin'           => 'No kon',
'nologin'               => 'Yu abi no masyin? $1.',
'nologinlink'           => 'Meki fu masyin',
'createaccount'         => 'Meki fu masyin',
'gotaccount'            => 'Yu abi wansi wan masyin? $1.',
'gotaccountlink'        => 'Kon',
'createaccountmail'     => 'via e-mail',
'youremail'             => 'E-mail:',
'username'              => 'Nen fu masyin:',
'uid'                   => 'Masyin ID:',
'yourrealname'          => 'Yu tru nen:',
'yourlanguage'          => 'Tongo:',
'yournick'              => 'Habnen:',
'email'                 => 'E-mail',
'prefs-help-realname'   => 'Yu tru nen ben wan opsi, leki yu disi opogi kan disi nen teki sey tu gi yu atribusi fu yu wroko.',
'loginerror'            => 'Fowtu fu a kon',
'loginsuccesstitle'     => 'Gu e kon',
'loginsuccess'          => "'''Yu ben e kon opo {{SITENAME}} leki masyin \"\$1\".'''",
'nosuchuser'            => 'A masyin "$1" ben no da. Luku a yu skrifi efu skopu wan nyun masyin.',
'nosuchusershort'       => 'A masyin "<nowiki>$1</nowiki>" ben no da. Luku a yu skrifi.',
'nouserspecified'       => 'Yu mu wan masyinnen opogi.',
'wrongpassword'         => 'Waktiwortu ben fowtu. Du noma gi.',
'wrongpasswordempty'    => 'A waktiwortu ben leyti. Du noma gi.',
'passwordtooshort'      => 'Yu waktiwortu ben tu syartu. A mu a mena u $1 bloki ben.',
'mailmypassword'        => 'E-mail waktiwortu',
'passwordremindertitle' => 'Nyun tempi waktiwortu fu {{SITENAME}}',
'passwordremindertext'  => 'Wanman, ski yu, abi fu a  IP-adresi $1 wan asuku e du yu a stir fu a waktiwortu fu {{SITENAME}} ($4).
A waktiwortu fu masyin "$2" ben "$3".
Kon now nanga kenki yu waktiwortu.

Leki wanman trawan leki yu disi asuku abi e du efu yu yu waktiwortu baka sabi nanga a no langar wana kenki, luku no na disi boskopu nanga teki yu owru waktiwortu.',
'noemail'               => 'Da ben no e-mailadres dyaso fu a masyin "$1".',
'passwordsent'          => 'A waktiwortu ben stir na a e-mailadres fu "$1".
Kon na yu a abi kisi.',
'eauthentsent'          => 'Da ben wan klari e-mail na a gi e-mailadresi e stir. Folo den instruksi ini a e-mail tu agi taki a yu e-mailadresi ben. Tu dy ten sey da no e-mail na a adresi e stir.',
'accountcreated'        => 'Masyin ben skopu',
'accountcreatedtext'    => 'A masyin $1 ben skopu.',
'createaccount-title'   => 'Masyin skopu fu {{SITENAME}}',
'loginlanguagelabel'    => 'Tongo: $1',

# Password reset dialog
'resetpass'        => 'Kenki yu waktiwortu',
'resetpass_header' => 'Kenki yu waktiwortu',
'resetpass_submit' => 'Kenki yu waktiwortu nanga kon',

# Edit page toolbar
'bold_sample'     => 'Deki litiwrok',
'bold_tip'        => 'Fatu',
'italic_sample'   => 'Skoynise litiwrok',
'italic_tip'      => 'Skoynsi',
'link_sample'     => 'Skakinen',
'link_tip'        => 'Iniskaki',
'extlink_sample'  => 'http://www.eksempre.com Skakinen',
'extlink_tip'     => 'Skaki na dorosey (frigiti http:// no)',
'headline_sample' => 'Edelen litiwrok',
'headline_tip'    => 'Edelen (2)',
'math_sample'     => 'Gi fomula',
'math_tip'        => 'Fomula fu teri (LaTeX)',
'nowiki_sample'   => 'Presi dyaso a si fu a no wiki-opomeki',
'nowiki_tip'      => 'No wiki-opomeki',
'image_tip'       => 'Gefre',
'media_tip'       => 'Skaki na a gefre',
'sig_tip'         => 'Yu sinaturi nanga datum nanga ten',
'hr_tip'          => 'Lina dy lupiti ben (teki sparsa)',

# Edit pages
'summary'                => 'Infrumasi-box',
'subject'                => 'Ondroinfru/edelen',
'minoredit'              => 'Disi ben wan pikin kenki',
'watchthis'              => 'Disi papira si',
'savearticle'            => 'Oponaki',
'preview'                => 'Fusi',
'showpreview'            => 'Fusi libi si pre kenki',
'showlivepreview'        => 'Fusi libi si pre kenki (LIVE)',
'showdiff'               => 'Kenki libi si',
'anoneditwarning'        => "'''Atessi:''' yu ben no kon. Yu IP-adresi ben oponaki ini a stori leki yu den kenki fu disi papira oponaki.",
'missingcommenttext'     => 'Presi yu oponaki dyaso-ondro.',
'summary-preview'        => 'Fusi libi si fu infrumasi',
'subject-preview'        => 'Ondroinfru/edelen fusi',
'blockedtitle'           => 'Masyin ben spikri',
'blockedtext'            => "<big>'''Yu massyin efu IP-adresi ben spikri.'''</big>

A spreki ben e du via $1. A gi yesikrari ben ''$2''.

* Set spikri: $8
* U spikri: $6
* Wana tu spikri: $7

Yu kan kontakti nanga $1 efu wan trawan [[{{MediaWiki:Grouppage-sysop}}|sesopu]] abra a spikri tu taki.
Yu kan a funksi 'e-mail disi masyin' no teki, iksi yu wan gu e-mailadresi abi e gi ini yu [[Special:Preferences|wana]] nanga a teki fu disi funksi ni spikri ben.
Yu IP-adresi ben $3 now nanga a spikrinumro ben #$5. Aksa ala tu a infrumasi leki yu pewan opo disi spikri reagiri.",
'whitelistedittitle'     => 'Yu mu kon fu a kenki',
'whitelistedittext'      => 'Yu mu $1 fu a kenki fu peprewoysi.',
'whitelistreadtitle'     => 'Yu mu kon fu a leysi',
'whitelistreadtext'      => 'Yu mu [[Special:Preferences|kon]] fu a leysi fu peprewoysi.',
'whitelistacctitle'      => 'Yu kan no masyin skopu',
'loginreqtitle'          => 'Yu mu kon',
'loginreqlink'           => 'kon',
'loginreqpagetext'       => 'Yu mu $1 tu a libi si fu trawan peprewoysi.',
'accmailtitle'           => 'Waktiwortu ben stir.',
'accmailtext'            => 'A waktiwortu fu "$1" ben stir na $2.',
'newarticle'             => '(Nyon)',
'newarticletext'         => "Disi papira ben no da. Presi ini a ondroben box tu skopu a papira (pasa infrumasi ben opo a [[{{MediaWiki:Helppage}}|yepipapira]]).
Teki a box '''back''' ini yu browser leki yu dyaso soma ben e kon.",
'noarticletext'          => 'Disi papira abi no ini-si. Yu kan [[Special:Search/{{PAGENAME}}|na disi tref suku]] ini ala peprewoysi efu <span class="plainlinks">[{{fullurl:{{FULLPAGENAME}}|action=edit}} disi papira kenki efu skopu]</span>.',
'note'                   => '<strong>Opotaki:</strong>',
'previewnote'            => '<strong>Atessi: disi ben wan fusi; yu kenki ben no oponaki!</strong>',
'editing'                => 'Kenki fu $1',
'editinguser'            => 'Kenki fu lesi fu <b>$1</b>',
'editingsection'         => 'Kenki fu $1 (seksi)',
'editingcomment'         => 'Kenki fu $1 (opotaki)',
'yourtext'               => 'Yu litiwrok',
'yourdiff'               => 'Kenki',
'copyrightwarning'       => "Atessi: Ala kenki opo {{SITENAME}} sey akti tu ben ugi ondro a $2 (si $1 fu eksra infrumasi). Leki yu no wana taki yu litiwroko nanga trawan na awana kenki nanga spredi kan sey, yusu no fu 'Oponaki'.<br />
Dyasonanga yu pramisi a wi ok taki yu disi litiwroko a yuse skrifi abi, efu abi abrateki u wan gu, fri, opoba sorsi.<br />
<strong>TEKI NO MATERIYALI TAKI SEY TAPU NANGA OTURSLESI, IKSI YU ABI PERMISI FU TAKI!</strong>",
'longpagewarning'        => '<strong>Disi papira ben $1 kilobyte gran; ili browser abi problemi nanga a kenki fu peprewoysi dy granr ben leki 32kb. Denki abra a spliti ini den seksi.</strong>',
'templatesused'          => 'Ankra teki opo disi papira:',
'templatesusedpreview'   => 'Ankra dy ben teki ini dis fusi:',
'templatesusedsection'   => 'Ankra teki opo disi seksi:',
'template-protected'     => '(ben tapu)',
'template-semiprotected' => '(semitapu)',
'nocreatetext'           => '{{SITENAME}} abi a abiliti tu nyun peprewoysi skupu apikin.
Yu kan kaba da ben peprewoysi kenki, efu yu kan [[Special:Userlogin|kon efu wan masyin skopu]].',
'recreate-deleted-warn'  => "'''Atessi: yu ben skopun wan papira dy ben trowe ini stori.'''

Denka abra a ben gu taki yu kontinu kenki disi papira, Fu yu isi ben dyaso ondro a trowebuku fu disi papira:",

# Account creation failure
'cantcreateaccounttitle' => 'Kan masyin ni skopu.',

# History pages
'viewpagelogs'        => 'Buku fu disi papira libi si',
'currentrev'          => 'Disi si',
'revisionasof'        => 'Si leki opo $1',
'revision-info'       => 'Si opo $1 fu $2',
'previousrevision'    => '←Owrur si',
'nextrevision'        => 'Nyunr si→',
'currentrevisionlink' => 'Disi si',
'cur'                 => 'disi',
'next'                => 'trawan',
'last'                => 'bakaseywan',
'orig'                => 'owrus',
'page_first'          => 'foswan',
'page_last'           => 'bakaseywan',
'histlegend'          => 'Sileksi fu diff: sileksi den tu aluku si nanga gi ENTER efru a box ondro a.<br />
Infrumasi nanga syartu: (disi) = kenki nanga disi si now, (vorige) = kenki nanga a owru si, p = pikin kenki',
'deletedrev'          => '[ben e trowe]',
'histfirst'           => 'Foswan',
'histlast'            => 'Bakaseywan',
'historysize'         => '({{PLURAL:$1|wan byte|$1 byte}})',
'historyempty'        => '(leygi)',

# Revision feed
'history-feed-title'          => 'Kenkistori',
'history-feed-description'    => 'Kenkistori du disi papira opo {{SITENAME}}',
'history-feed-item-nocomment' => '$1 o $2', # user at time
'history-feed-empty'          => 'A aksa papira ben no da.
A kan ben trowe efu dribi.
[[Special:Search|Suku {{SITENAME}}]] fu rilivante peprewoysi.',

# Revision deletion
'rev-deleted-comment' => '(opetaki ben trowe)',
'rev-deleted-user'    => '(masyin ben trowe)',
'rev-deleted-event'   => '(aksi ben trowe)',
'rev-delundel'        => 'libi si/no libi si',
'revisiondelete'      => 'Versie trowe/otrowe',

# Diffs
'history-title'           => 'Stori fu "$1"',
'difference'              => '(Kenki ini-fu disi kenki-fusi)',
'lineno'                  => 'Lin $1:',
'compareselectedversions' => 'Ski disi si',
'editundo'                => 'dyens',
'diff-multi'              => '({{plural:$1|Wan inisey si ben|$1 inisey si ben}} no libi si)',

# Search results
'searchresults'         => 'Sukuleysi',
'searchresulttext'      => 'Fu pasa infrumasi abra suku opo {{SITENAME}}, leysi [[{{MediaWiki:Helppage}}|{{int:help}}]].',
'searchsubtitle'        => "Y ben o suku na '''[[:$1]]'''",
'searchsubtitleinvalid' => "Yu ben o suku na '''$1'''",
'noexactmatch'          => "'''Da ben no papira nanga a nen \"\$1\".''' Yu kan disi [[:\$1|skopu]].",
'noexactmatch-nocreate' => "'''Da ben no papira nanga a nen \"\$1\".'''",
'prevn'                 => 'fos $1',
'nextn'                 => 'tra $1',
'viewprevnext'          => '($1) ($2) ($3) libi si.',
'powersearch'           => 'Suku',

# Preferences page
'preferences'              => 'Wana',
'mypreferences'            => 'Mi wana',
'prefs-edits'              => 'Nomru fu kenki:',
'prefsnologin'             => 'No kon',
'qbsettings'               => 'Kwikbak',
'qbsettings-none'          => 'Nowan',
'qbsettings-fixedleft'     => 'Set na ku',
'qbsettings-fixedright'    => 'Set na pe',
'qbsettings-floatingleft'  => 'Han na ku',
'qbsettings-floatingright' => 'Han na pe',
'changepassword'           => 'Kenki yu waktiwortu',
'skin'                     => 'Buba',
'math'                     => 'Fomula',
'dateformat'               => 'Datumopomeki',
'datedefault'              => 'No wana',
'datetime'                 => 'Datum nanga ten',
'math_lexing_error'        => 'leksikografi fowtu',
'math_syntax_error'        => 'sintaki fowtu',
'prefs-personal'           => 'Masyinmasi',
'prefs-rc'                 => 'Bakaseywan kenki',
'prefs-watchlist'          => 'Sirey',
'prefs-watchlist-days'     => 'Maximum teki fu dey ini mi sirey:',
'prefs-watchlist-edits'    => 'Maximum teki fu dey ini mi granmeki sirey:',
'prefs-misc'               => 'Diversi',
'saveprefs'                => 'Oponaki',
'resetprefs'               => 'Bakadray na owru si',
'oldpassword'              => 'Owru waktiwortu:',
'newpassword'              => 'Nyun waktiwortu:',
'retypenew'                => 'Gi nyun waktiwortu dyasotu:',
'textboxsize'              => 'Kenki',
'rows'                     => 'Rei:',
'columns'                  => 'Kolum:',
'searchresultshead'        => 'Suku',
'resultsperpage'           => 'Ris ies papira:',
'contextlines'             => 'Lina ies ris:',
'contextchars'             => 'Kontekst ies lina:',
'stub-threshold'           => 'Dupolo fu seti <a href="#" class="stub">stub</a>:',
'recentchangesdays'        => 'Teki fu dey tu libi si ini bakaseywan kenki:',
'recentchangescount'       => 'Teki fu peprewoysi ini bakaseywan kenki:',
'savedprefs'               => 'Yu masi ben oponaki.',
'timezonelegend'           => 'Gron fu ten',
'timezonetext'             => 'A teki fu yuru taki yu presiten kenki fu a serverten (UTC).',
'localtime'                => 'Lokali ten',
'timezoneoffset'           => 'Ski ini ten¹',
'servertime'               => 'Serverten',
'guesstimezone'            => 'Fu a browser presi',
'allowemail'               => 'E-mail fu trawan masyin adu',
'defaultns'                => 'Soma ini disi nenpreki suku:',
'default'                  => 'soma',
'files'                    => 'Gefre',

# User rights
'userrights-lookup-user'           => 'Masyinguru kenki',
'userrights-user-editname'         => 'Wan masyinnen gi:',
'editusergroup'                    => 'Masyinguru kenki',
'userrights-editusergroup'         => 'Masyinguru kenki',
'saveusergroups'                   => 'Masyinguru oponaki',
'userrights-groupsmember'          => 'Masyin fu:',
'userrights-groupsremovable'       => 'Guru dy trowe kan:',
'userrights-groupsavailable'       => 'Guru dy mudenki sey:',
'userrights-available-add'         => 'Yu kan masyin presi a disi {{PLURAL:$2|guru|guru}}: $1.',
'userrights-available-remove'      => 'Yu kan masyin trowe fu disi {{PLURAL:$2|guru|guru}}: $1.',
'userrights-available-add-self'    => 'Yu kan yuse presi a disi {{PLURAL:$2|guru|guru}}: $1.',
'userrights-available-remove-self' => 'Yu kan yuse trowe fu disi {{PLURAL:$2|guru|guru}}: $1.',
'userrights-no-interwiki'          => 'Yu abi no lesi tu kenki fu masyinlesi opo trawan wiki.',

# Groups
'group'               => 'Guru:',
'group-autoconfirmed' => 'Registiri masyin',
'group-bot'           => 'Bot',
'group-sysop'         => 'Sesopu',
'group-bureaucrat'    => 'Burokrati',
'group-all'           => '(ala)',

'group-autoconfirmed-member' => 'Registiri masyin',
'group-bot-member'           => 'Bot',
'group-sysop-member'         => 'Sesopu',
'group-bureaucrat-member'    => 'Burokrati',

'grouppage-autoconfirmed' => '{{ns:project}}:Registiri masyin',
'grouppage-bot'           => '{{ns:project}}:Bot',
'grouppage-sysop'         => '{{ns:project}}:Sesopu',
'grouppage-bureaucrat'    => '{{ns:project}}:Burokrati',

# User rights log
'rightslog'  => 'Masyinlesibuku',
'rightsnone' => '(no)',

# Recent changes
'nchanges'                       => '$1 {{PLURAL:$1|kenki|kenki}}',
'recentchanges'                  => 'Bakaseywan kenki',
'recentchanges-feed-description' => 'Nanga disi papira kan yu den bakaseywan kenki fu disi wiki libi si.',
'rcnote'                         => "Dyaso {{PLURAL:$1|ben a bakaseywan kenki|ben den bakaseywan '''$1''' kenki}} ini {{PLURAL:$2|a bakaseywan dey|den bakaseywan '''$2''' dey}}, opo $3.",
'rcnotefrom'                     => 'Kenki fu <b>$2</b> (nanga wan maksimum fu <b>$1</b> kenki libi si).',
'rclistfrom'                     => 'Libi a kenki si fu $1',
'rcshowhideminor'                => '$1 den pikin kenki',
'rcshowhidebots'                 => '$1 den bot',
'rcshowhideliu'                  => '$1 den masyin',
'rcshowhideanons'                => '$1 den IP',
'rcshowhidepatr'                 => '$1 den kenki kontoli',
'rcshowhidemine'                 => 'mi kenki $1',
'rclinks'                        => 'A $1 bakaseywan kenki libi si ini a bakaseywan $2 dey<br />$3',
'diff'                           => 'kenki',
'hist'                           => 'stori',
'hide'                           => 'kibri',
'show'                           => 'libi si',
'minoreditletter'                => 'p',
'newpageletter'                  => 'N',
'boteditletter'                  => 'b',
'newsectionsummary'              => '/* $1 */ nyon gron',

# Recent changes linked
'recentchangeslinked'          => 'Saamga kenki',
'recentchangeslinked-title'    => 'Saamga kenki nanga $1',
'recentchangeslinked-noresult' => 'Da ben no kenki ini a gi ten opo den peprewoysi dy fu dyaso skaki sey.',
'recentchangeslinked-summary'  => "Disi spesyal papira libi den bakaseywan kenki opo peprewoysi dy ben skaki fu disi papira si. Peprewoysi opo [[Special:Watchlist|yu sirey]] ben '''deki'''.",

# Upload
'upload'            => 'Uploti',
'uploadbtn'         => 'Uploti',
'reupload'          => 'Ri-uploti',
'uploadnologin'     => 'No kon',
'uploaderror'       => 'Uplotifowtu',
'uploadlog'         => 'uplotibuku',
'uploadlogpage'     => 'Uplotibuku',
'filename'          => 'Gefrenen',
'filedesc'          => 'Infrumasi-box',
'fileuploadsummary' => 'Infrumasi:',
'uploadwarning'     => 'Atessi fu uploti',
'savefile'          => 'Gefre oponaki',
'uploadedimage'     => 'abi "[[$1]]" e uploti',
'overwroteimage'    => 'abi wan nyun si fu "[[$1]]" e uploti',
'watchthisupload'   => 'Disi papira si',

'license-nopreview' => '(No fusi)',

# Image list
'imagelist'                 => 'Rey fu den gefre',
'ilsubmit'                  => 'Suku',
'showlast'                  => 'A bakaseywan $1 gefre libi si $2.',
'byname'                    => 'opo nen',
'bydate'                    => 'opo datum',
'bysize'                    => 'opo gran',
'imgdelete'                 => 'trowe',
'imgdesc'                   => 'infru',
'imgfile'                   => 'gefre',
'filehist'                  => 'Stori fu disi gefre',
'filehist-help'             => 'Klik opo wan datum/ten tu si a gefre leki a ben e si dy ten.',
'filehist-deleteall'        => 'trowe ala',
'filehist-deleteone'        => 'trowe disi',
'filehist-revert'           => 'bakadray',
'filehist-current'          => 'disi',
'filehist-datetime'         => 'Datum/ten',
'filehist-user'             => 'Masyin',
'filehist-dimensions'       => 'Dimensi',
'filehist-filesize'         => 'Gefregran',
'filehist-comment'          => 'Opotaki',
'imagelinks'                => 'Skaki',
'linkstoimage'              => 'Disi gefre ben teki opo disi peprewosyi:',
'nolinkstoimage'            => 'No papira gi skaki na disi gefre.',
'sharedupload'              => 'Disi gefre ben wan spliti uploti nanga kan ok a trawan project teki sey.',
'shareduploadwiki'          => 'Si $1 fu pasa infrumasi.',
'shareduploadwiki-linktext' => 'gefreinfrumasi',
'noimage'                   => 'Da ben no gefre nanga disi nen. Yu kan a $1.',
'noimage-linktext'          => 'uploti',
'uploadnewversion-linktext' => 'Wan nyunr si fu disi gefre uploti',
'imagelist_date'            => 'Datum',
'imagelist_name'            => 'Nen',
'imagelist_user'            => 'Masyin',
'imagelist_size'            => 'Gran (byte)',
'imagelist_description'     => 'Infrumasi',
'imagelist_search_for'      => 'Suku na gefre:',

# File reversion
'filerevert'                => '$1 bakadray',
'filerevert-legend'         => 'Gefre bakadray',
'filerevert-intro'          => '<span class="plainlinks">Yu ben \'\'\'[[Media:$1|$1]]\'\'\' bakadrayn tu a [$4 si opo $2, $3]</span>.',
'filerevert-comment'        => 'Opotaki:',
'filerevert-defaultcomment' => 'E bakadray tu a si opo $1, $2',
'filerevert-submit'         => 'Bakadray',
'filerevert-success'        => '<span class="plainlinks">\'\'\'[[Media:$1|$1]]\'\'\' ben bakadray tu a [$4 si opo $2, $3]</span>.',

# File deletion
'filedelete'             => '"$1" trowe',
'filedelete-legend'      => 'Gefre trowe',
'filedelete-intro'       => "Yu ben '''[[Media:$1|$1]]''' trowen.",
'filedelete-intro-old'   => '<span class="plainlinks">Yu ben a si fu \'\'\'[[Media:$1|$1]]\'\'\' fu [$4 $3, $2] trowen.</span>',
'filedelete-comment'     => 'Opotaki:',
'filedelete-submit'      => 'Trowe',
'filedelete-success'     => "'''$1''' ben e trowe.",
'filedelete-success-old' => '<span class="plainlinks">A si fu \'\'\'[[Media:$1|$1]]\'\'\' fu $3, $2 ben e trowen.</span>',
'filedelete-nofile'      => "'''$1''' ben no da ini {{SITENAME}}.",

# MIME search
'mimesearch' => 'Suku opo MIME-type',
'mimetype'   => 'MIME-type:',
'download'   => 'Dawnloti',

# List redirects
'listredirects' => 'Rey fu stirpeprewoysi',

# Unused templates
'unusedtemplates'    => 'Oteki ankra',
'unusedtemplateswlh' => 'trawan skaki',

# Random page
'randompage'         => 'Wan somapapira',
'randompage-nopages' => 'Da ben no peprewoysi ini disi nenpreki.',

# Random redirect
'randomredirect'         => 'Wansoma stirpapira',
'randomredirect-nopages' => 'Da ben no stirpeprewoysi ini disi nenpreki.',

# Statistics
'statistics'    => 'Site-Infrumasi',
'sitestats'     => '{{SITENAME}}-Infrumasi',
'userstats'     => 'Masyininfrumasi',
'sitestatstext' => "Ini a databesi {{PLURAL:$1|ben wan papira|ben '''$1''' peprewoysi}}, nanga takipeprewoysi, {{SITENAME}}-peprewoysi, den stub dy si syartu ben, stirpeprewoysi, boskopu nanga trawan peprewoysi dy hosa no infrumasi abi.
Da {{PLURAL:$2|ben hosa wan peprewoysi|ben hosa '''$2''' peprewoysi}} nanga tru infrumasi.

Da {{PLURAL:$8|ben '''wan''' gefre|ben '''$8''' gefre}} uploti.

Da {{PLURAL:$3|ben '''wan''' papira|ben '''$3''' peprewoysi}} libi si nanga {{PLURAL:$4|wan kenki|'''$4''' kenki}} e meki sins {{SITENAME}} ben e skopu.
Taki gi wan midi fu '''$5''' kenki ies papira nanga '''$6''' sko peprewoysi ies kenki.

A gran fu a [http://meta.wikimedia.org/wiki/Help:Job_queue job queue] ben '''$7'''.",
'userstatstext' => "Da {{PLURAL:$1|ben '''wan''' register masyin|ben '''$1''' register masyin}}, pefu da
'''$2''' (efu '''$4%''') $5-lesi {{PLURAL:$2|abi|abi}}.",

'disambiguations' => 'Peprewoysi fu kumakriki',

'doubleredirects'     => 'Tustirpeprewoysi',
'doubleredirectstext' => 'Disi rei abi peprewoysi dy stir na trawan stir. Ies rei abi skaki na a foswan nanga a fostu stirpapira nanga wan skaki na a duli fu a fosty stirpapira. Pasa den ten ben a bakaseywan papira a tru duli.',

'brokenredirects'        => 'Broko stirpeprewoysi',
'brokenredirectstext'    => 'Dyaso ben stirpeprewoysi dy wan stir ben na wan papira dy no da ben.',
'brokenredirects-edit'   => '(kenki)',
'brokenredirects-delete' => '(trowe)',

'withoutinterwiki'        => 'Peprewoysi nanga no skaki na trawan tongo',
'withoutinterwiki-header' => 'Disi peprewoysi skaki no na si ini wan trawan tongo:',
'withoutinterwiki-submit' => 'Libi si',

'fewestrevisions' => 'Peprewoysi nanga a mena kenki',

# Miscellaneous special pages
'nbytes'                  => '$1 {{PLURAL:$1|a byte|den byte}}',
'ncategories'             => '$1 {{PLURAL:$1|guru|guru}}',
'nlinks'                  => '$1 {{PLURAL:$1|skaki|skaki}}',
'nmembers'                => '$1 {{PLURAL:$1|man|man}}',
'nrevisions'              => '$1 {{PLURAL:$1|si|si}}',
'nviews'                  => '$1 {{PLURAL:$1|mansi|mansi}}',
'lonelypages'             => 'Wawan peprewoysi',
'lonelypagestext'         => 'Na den ondroben peprewoysi sey fu u {{SITENAME}} no skaki.',
'uncategorizedpages'      => 'Oguru peprewoysi',
'uncategorizedcategories' => 'Oguru guru',
'uncategorizedimages'     => 'Oguru gefre',
'uncategorizedtemplates'  => 'Oguru ankra',
'unusedcategories'        => 'Oteki guru',
'unusedimages'            => 'Oteki gefre',
'wantedcategories'        => 'Winsi guru',
'wantedpages'             => 'Winsi peprewoysi',
'mostlinked'              => 'Pasateki peprewoysi',
'mostlinkedcategories'    => 'Pasateki guru',
'mostlinkedtemplates'     => 'Pasateki ankra',
'mostcategories'          => 'Peprewoysi nanga a pasa guru',
'mostimages'              => 'Pasateki gefre',
'mostrevisions'           => 'Peprewoysi nanga a pasa kenki',
'allpages'                => 'Ala peprewoysi',
'prefixindex'             => 'Prifiks fu ala peprewoysi',
'shortpages'              => 'Syartu peprewoysi',
'longpages'               => 'Langa peprewoysi',
'deadendpages'            => 'Peprewoysi nanga no skaki',
'deadendpagestext'        => 'Den ondroben peprewoysi abi no skaki na trawan peprewoysi ini {{SITENAME}}.',
'protectedpages'          => 'Tapu peprewoysi',
'protectedpagestext'      => 'Da ondroben peprewoysi ben tapu nanga kan no kenki abi efru e dribi ben',
'listusers'               => 'Rey fu masyin',
'specialpages'            => 'Spesyal peprewoysi',
'newpages'                => 'Nyon peprewoysi',
'newpages-username'       => 'Masyinnen:',
'ancientpages'            => 'Pasa owru peprewoysi',
'move'                    => 'Dribi',
'movethispage'            => 'Disi papira dribi',
'pager-newer-n'           => '{{PLURAL:$1|nyunr wan|nyunr $1}}',
'pager-older-n'           => '{{PLURAL:$1|owrur wan|owrur $1}}',

# Book sources
'booksources'    => 'Bukuinfrumasi',
'booksources-go' => 'Suku',

'data'           => 'Data',
'groups'         => 'Masyinguru',
'alphaindexline' => '$1 te $2',
'version'        => 'Si fu a softwer',

# Special:Log
'specialloguserlabel'  => 'Masyin:',
'speciallogtitlelabel' => 'Papiranen:',
'log'                  => 'Buku',
'all-logs-page'        => 'Ala buku',
'log-search-submit'    => 'Go',
'log-title-wildcard'   => 'Peprewoysi suku dy nanga disi nen bigin',

# Special:Allpages
'nextpage'          => 'Trawan papira ($1)',
'prevpage'          => 'Foswan papira ($1)',
'allpagesfrom'      => 'Libi peprewoysi si fru:',
'allarticles'       => 'Ala peprewoysi',
'allinnamespace'    => 'Ala peprewoysi (nenpreki $1)',
'allnotinnamespace' => 'Ala peprewoysi (no ini nenpreki $1)',
'allpagessubmit'    => 'Go',
'allpagesprefix'    => 'Peprewoysi libi si nanga a prifiks:',
'allpages-bad-ns'   => '{{SITENAME}} abi no nenpreki nanga a nen "$1".',

# Special:Listusers
'listusersfrom'      => 'Masyin libi si fu:',
'listusers-submit'   => 'Libi si',
'listusers-noresult' => 'No masyin dyaso.',

# E-mail user
'mailnologin'     => 'No stiradresi',
'emailuser'       => 'Wan e-mail stir na disi masyin',
'emailpage'       => 'Mayin e-mail',
'defemailsubject' => 'E-mail fu {{SITENAME}}',
'noemailtitle'    => 'Disi masyin abi no e-mailadresi',
'emailfrom'       => 'Fu',
'emailto'         => 'A',
'emailsubject'    => 'Infrumasi',
'emailmessage'    => 'Boskopu',
'emailsend'       => 'Stir',

# Watchlist
'watchlist'            => 'Mi sirey',
'mywatchlist'          => 'Mi sirey',
'watchlistfor'         => "(fru '''$1''')",
'addedwatch'           => 'Presi a yu sirey',
'addedwatchtext'       => "A papira \"[[:\$1]]\" ben presi a yu [[Special:Watchlist|sirey]]. Folo kenki fu disi papira nanga a taki sey opo [[Special:Watchlist|yu sirey]] nanga sey '''deku''' ini a [[Special:Recentchanges|rey fu bakseywan kenki]].

Iksi yu wan papira no langar wana si, go na a papira nanga du opo \"No si\" ini a menu.",
'removedwatch'         => 'Trowe fu yu sirey',
'removedwatchtext'     => 'A papira "[[:$1]]" ben trowe fu yu sirey.',
'watch'                => 'Si',
'watchthispage'        => 'Disi papira si',
'unwatch'              => 'Osi',
'watchlist-details'    => 'Da {{PLURAL:$1|ben wan papira|ben $1 peprewoysi}} opo yu sirey, nanga no takipeprewoysi.',
'wlshowlast'           => 'Libi den bakaseywan $1 yuru, $2 dey si ($3)',
'watchlist-hide-bots'  => 'Kibri kenki fu den bot',
'watchlist-hide-own'   => 'Kibri mi kenki',
'watchlist-hide-minor' => 'Kibri pikin kenki',

# Displayed when you click the "watch" button and it's in the process of watching
'watching'   => 'Presi a yu sirey ...',
'unwatching' => 'Trowe fu yu sirey ...',

# Delete/protect/revert
'deletepage'                  => 'Disi papira trowe',
'historywarning'              => 'Atessi: a papira dy yu wana trowe abi pasa si:',
'confirmdeletetext'           => 'Yu wanaefru ben trowen wan papira, nanga si stori. Gi klari a dyaso-ondro ini a box taki disi we fuli yu miki ben, taki yu den folo luku nanga taki a trowe gu ben nanga a [[{{MediaWiki:Policy-url}}|polisi]].',
'actioncomplete'              => 'Aksi e du',
'deletedtext'                 => '"<nowiki>$1</nowiki>" ben e trowe. Si a $2 fu wan sibuku fu bakaseywan trowe.',
'deletedarticle'              => 'abi "[[$1]]" e trowe',
'dellogpage'                  => 'Trowebuku',
'deletecomment'               => 'Yesikrari fu trowe:',
'deleteotherreason'           => 'Trawan/okwan yesikrari:',
'deletereasonotherlist'       => 'Trawan yesikrari',
'rollbacklink'                => 'draywatra',
'protectlogpage'              => 'Tapubuku',
'confirmprotect'              => 'Gi tapu klari',
'protectcomment'              => 'Opotaki:',
'protectexpiry'               => 'Lasi:',
'protect_expiry_invalid'      => 'A lasi ben fowtu.',
'protect_expiry_old'          => 'A lasi ben ini iksini.',
'protect-unchain'             => 'Gi dribi u',
'protect-text'                => 'Dyaso ben yu kan tu kenki nanga aluku a tapunivo fu a papira <strong><nowiki>$1</nowiki></strong>.',
'protect-locked-access'       => "'''Yu masyin abi no lesi tu kenki a tapunivo.'''
Disi ben a tapunivo fu a papira <strong>[[$1]]</strong> now:",
'protect-cascadeon'           => 'Disi papira ben tapu sins a ini den folo {{PLURAL:$1|papira|peprewoysi}} ben e presi, dy tapu ben nanga a kaskade-opsi. A tapunivo kenki abi no efekti.',
'protect-default'             => '(soma saki)',
'protect-fallback'            => 'Dyaso ben a lesi "$1" fanowdu',
'protect-level-autoconfirmed' => 'Wawan rigistir masyin',
'protect-level-sysop'         => 'Wawan sesopu',
'protect-summary-cascade'     => 'kaskada',
'protect-expiring'            => 'lasi opo $1',
'protect-cascade'             => 'Kaskadetapu - tapu ala peprewoysi nanga ankra dy ini disi papira teki ben (atessi; disi kan gran folo abi).',
'protect-cantedit'            => 'Yu kan a tapunivo fu disi papira no kenki, sins yu no lesi abi tu kenki a.',
'restriction-type'            => 'Den leti:',
'restriction-level'           => 'Pelkinivo:',

# Undelete
'undeletebtn'            => 'Otrowe',
'undelete-search-submit' => 'Suku',

# Namespace form on various pages
'namespace'      => 'Nenpreki:',
'invert'         => 'Dray sileksi',
'blanknamespace' => '(Edenenpreki)',

# Contributions
'contributions' => 'Masyinkenki',
'mycontris'     => 'Mi kenki',
'contribsub2'   => 'Fu $1 ($2)',
'uctop'         => '(nyunse kenki)',
'month'         => 'Fu mun (nanga owrur):',
'year'          => 'Fu yari (nanga owrur):',

'sp-contributions-newbies-sub' => 'Fu nyun masyin',
'sp-contributions-blocklog'    => 'Spikribuku',
'sp-contributions-submit'      => 'Suku',

# What links here
'whatlinkshere'       => 'Skaki na disi papira',
'whatlinkshere-title' => 'Peorewoysi dy skaki na $1',
'linklistsub'         => '(Rei fu skaki)',
'linkshere'           => "Disi peprewoysi gi skaki na '''[[:$1]]''':",
'nolinkshere'         => "No peprewoysi gi skaki na '''[[:$1]]'''.",
'isredirect'          => 'stirpapira',
'istemplate'          => 'teki leki wan ankra',
'whatlinkshere-prev'  => '{{PLURAL:$1|foswan|fos $1}}',
'whatlinkshere-next'  => '{{PLURAL:$1|trawan|tra $1}}',
'whatlinkshere-links' => '← skaki na da',

# Block/unblock
'blockip'            => 'Masyin spikri',
'ipboptions'         => '15 mena:15 min,1 yuru:1 hour,2 yuru:2 hours,6 yuru:6 hours,12 yuru:12 hours,1 dey:1 day,3 dey:3 days,1 wiki:1 week,2 wiki:2 weeks,1 mun:1 month,3 mun:3 months,6 mun:6 months,1 yari:1 year,alaten:infinite', # display1:time1,display2:time2,...
'ipblocklist'        => 'Rey fu spikri masyin nanga IP',
'ipblocklist-submit' => 'Suku',
'blocklink'          => 'spikri',
'unblocklink'        => 'ospikri',
'contribslink'       => 'kenki',
'blocklogpage'       => 'Spikribuku',
'blocklogentry'      => 'abi "[[$1]]" e spikru nanga wan lasi opo $2 $3',

# Move page
'movepage'         => 'Dribi papira',
'movepagetext'     => "Nanaga a ondroben box kan yu wan papira dribi. A stori go na a nyun papira. A owru nen sey wan stir na a nyun papira sey. Stir na a owru papira ben no kenki. Luku na a dribi efu da no tustir efu broko stir ben e kon. Yu ben risponsibu fu den stir.

A papira kan '''wawan''' dribi sey leki a nyun papiranen:
* no da ben, efu
* a stirpapira nanga no stori ben.

<b>ATESSI!</b>
Fu poppelari peprewoysi kan a drabi drastiki nanga ofusi folo abi. Ben suri taki den folo abrasi ben pre yu disi aksi du.",
'movepagetalktext' => "A takipapira sey a trawan nen, '''iksi''':
* A takipapira ondro a nyun nen da ala ben;
* Yu a ondroben box odu.",
'movearticle'      => 'Dribi papira:',
'movenologin'      => 'No kon',
'newtitle'         => 'Na nyun papiranen:',
'move-watch'       => 'Disi papira si',
'movepagebtn'      => 'Dribi papira',
'pagemovedsub'     => 'Dribi fu a papira ben gu',
'movepage-moved'   => '<big>\'\'\'"$1" ben dribi na "$2"\'\'\'</big>', # The two titles are passed in plain text as $3 and $4 to allow additional goodies in the message.
'articleexists'    => 'A papira ben ala da efu a papira nen ben fowtu.
Gi wan trawan papiranen.',
'talkexists'       => "'''A papira ben dribi, ma a taki papira kan no dribi sey sins da ala wan papira nanga a nyun nen ben. Presi den takipeprewoysi yuse.'''",
'movedto'          => 'ben dribi na',
'movetalk'         => 'Taki papira nangadribi',
'talkpagemoved'    => 'A takipapira ben e nangadribi.',
'talkpagenotmoved' => 'A takipapira ben <strong>no</strong> e nangadribi.',
'1movedto2'        => '[[$1]] ben dribi na [[$2]]',
'movelogpage'      => 'Dribibuku',
'movereason'       => 'Yesikrari:',
'revertmove'       => 'bakadray',

# Export
'export' => 'Export',

# Namespace 8 related
'allmessages'     => 'Boskopu',
'allmessagesname' => 'Nen',

# Thumbnails
'thumbnail-more'  => 'Fergran',
'thumbnail_error' => 'Fowtu nanga a skopu fu thumbnail: $1',

# Import log
'importlogpage' => 'Importbuku',

# Tooltip help for the actions
'tooltip-pt-userpage'             => 'Mi papira',
'tooltip-pt-mytalk'               => 'Mi taki',
'tooltip-pt-preferences'          => 'Mi wana',
'tooltip-pt-watchlist'            => 'A rey fu papira yu ben sin fu kenki',
'tooltip-pt-mycontris'            => 'Rey fu mi kenki',
'tooltip-pt-login'                => 'Yu ben e mudi fu a kon leki wan masyin, ma disi ben no nosakili oda taki.',
'tooltip-pt-logout'               => 'Gwe',
'tooltip-ca-talk'                 => 'Taki abra disi papira',
'tooltip-ca-edit'                 => 'Yu kan disi papira kenki. Teki a fusi-box pre yu oponaki.',
'tooltip-ca-addsection'           => 'Wan opotaki opo a takipapira presi',
'tooltip-ca-viewsource'           => 'Disi papira ben tapu. Yu kan a wiki-si si.',
'tooltip-ca-protect'              => 'Disi papira tapu',
'tooltip-ca-delete'               => 'Trowe disi papira',
'tooltip-ca-move'                 => 'Dribi disi papira',
'tooltip-ca-watch'                => 'Disi papira opo mi sirey presi',
'tooltip-ca-unwatch'              => 'Disi papira fu mi sirey trowe',
'tooltip-search'                  => 'Suku ini {{SITENAME}}',
'tooltip-p-logo'                  => 'Fruwondruwiwiri',
'tooltip-n-mainpage'              => 'Go na a Fruwondruwiwiri',
'tooltip-n-portal'                => 'Infrumasi abri disi wroko: for-we aksa nanga pasa.',
'tooltip-n-currentevents'         => 'Si dyaso fu weti nanga infrumasi abra aladen.',
'tooltip-n-recentchanges'         => 'A rey fu bakaseywan kenki ini disi wiki.',
'tooltip-n-randompage'            => 'Gi wan papira dy soma teki ben fu ala peprewoysi',
'tooltip-n-help'                  => 'Da is infrumasi nanga yibi fu disi wiki.',
'tooltip-n-sitesupport'           => 'Gi wi wan finansi',
'tooltip-t-whatlinkshere'         => 'Rey fu ala peprewoysi dy na disi papira skaki.',
'tooltip-t-contributions'         => 'Libi den kenki fu disi masyin si',
'tooltip-t-emailuser'             => 'Disi masyin wan e-mail stir',
'tooltip-t-upload'                => 'Den gefre nanga media uploti',
'tooltip-t-specialpages'          => 'Rey fu spesyal peprewoysi',
'tooltip-ca-nstab-user'           => 'Papira fu masyin libi si',
'tooltip-ca-nstab-media'          => 'Papira fu media libi si',
'tooltip-ca-nstab-project'        => 'Projectpapira libi si',
'tooltip-ca-nstab-image'          => 'Gefrepapira libi si',
'tooltip-ca-nstab-mediawiki'      => 'Boskopu libi si',
'tooltip-ca-nstab-template'       => 'Ankra libi si',
'tooltip-ca-nstab-help'           => 'Papira fu yibi libi si',
'tooltip-ca-nstab-category'       => 'Gurupapira libi si',
'tooltip-minoredit'               => 'Disi efu pikin kenki libi si',
'tooltip-save'                    => 'Oponaki fu yu kenki',
'tooltip-preview'                 => 'Wan fusi meki. Teki disi!',
'tooltip-diff'                    => 'Meki kenki libi si (leki a ini stori siba ben)',
'tooltip-compareselectedversions' => 'Den kenki ini-fu den sileksi si fu disi papira libi si.',
'tooltip-watch'                   => 'Disi papira a yu sirey presi',

# Attribution
'siteuser'  => '{{SITENAME}}-masyin $1',
'siteusers' => '{{SITENAME}}-masyin $1',

# Spam protection
'subcategorycount'       => 'Da {{PLURAL:$1|ben wan subguru|ben $1 subguru}} ini disi guru.',
'categoryarticlecount'   => 'Da ben {{PLURAL:$1|wan papira|$1 prewoysi}} ini disi guru.',
'category-media-count'   => 'Da ben {{PLURAL:$1|wan gefre|$1 gefre}} ini disi guru.',
'listingcontinuesabbrev' => 'pasa',

# Browsing diffs
'previousdiff' => '← Foswan kenki',
'nextdiff'     => 'Trawan kenki →',

# Media information
'widthheightpage'      => '$1×$2, $3 peprewoysi',
'file-info-size'       => '($1 × $2 pixel, gefregran: $3, MIME-type: $4)',
'file-nohires'         => '<small>No heyr risolusi dyaso.</small>',
'svg-long-desc'        => '(SVG-gefre, nominali $1 × $2 den pixel, gefregran: $3)',
'show-big-image'       => 'Heyr risolusi',
'show-big-image-thumb' => '<small>Gran fu disi gefre: $1 × $2 pixel</small>',

# Special:Newimages
'newimages'    => 'Nyun gefre',
'showhidebots' => '(Bot $1)',
'noimages'     => 'Noti a si.',

# Bad image list
'bad_image_list' => 'A opomeki ben leki ondro:

Wawan lina ini a rei (lina dy bigin nanga *) ben awroko. A foswan skaki opo a lina mu a skaki ben na a owinsi gefre.
Ala trawan skaki dy opo se lina ben, ben awroko leki spesyal, leki fru eksempre peprewoysi pe opo a gefre ini a si ben opoteki.',

# Metadata
'metadata'          => 'Metadata',
'metadata-help'     => 'Disi gefre e abi eksra infrumasi, dy via wan fotokamera, skennar efu fotokenki-aplikasi e presi kan ben. Leki a gefre ben kenki, kan infrumasi ski no gu ben nanga a kenki gefre.',
'metadata-expand'   => 'Granmeki infrumasi libi si',
'metadata-collapse' => 'Granmeki infrumasi no libi si',
'metadata-fields'   => 'Den EXIF-metadatabox ini disi boskopu sey ok libi si opo wan gefrepapira leki a metadatatabel ben inipotu. Trawan box sey no libi si.
* make
* model
* datetimeoriginal
* exposuretime
* fnumber
* focallength', # Do not translate list items

# External editor support
'edit-externally'      => 'Disi gefre nanga a dorosey aplikasi kenki',
'edit-externally-help' => 'Ini a [http://meta.wikimedia.org/wiki/Help:External_editors infrumasibuku fu setup] ben pasa infrumasi.',

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

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

# Multipage image navigation
'imgmultigo'      => 'Go!',
'imgmultigotopre' => 'Go na papira',

# Table pager
'ascending_abbrev'         => 'opo.',
'descending_abbrev'        => 'afo.',
'table_pager_limit_submit' => 'Go',

# Auto-summaries
'autosumm-new' => 'Nyon papira: $1',

# Watchlist editing tools
'watchlisttools-view' => 'Rilivant kenki libi si',
'watchlisttools-edit' => 'Mi sirey libi si nanga kenki',
'watchlisttools-raw'  => 'Raw sirey kenki',

);