-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathWikilog.i18n.php
8369 lines (8138 loc) · 456 KB
/
Wikilog.i18n.php
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
<?php
/**
* Internationalisation file for extension Wikilog.
*
* @file
* @ingroup Extensions
*/
$messages = array();
/** English
* @author Juliano F. Ravasi
*/
$messages['en'] = array(
# Extension information
'wikilog-desc' => 'Adds blogging features, creating a wiki-blog hybrid',
'wikilog-auto' => 'Wikilog Auto', # reserved username
'wikilog-help' => "{{ns:Help}}:Wikilog",
'right-wl-postcomment' => 'Post comments to wikilog articles',
'right-wl-moderation' => 'Moderation of wikilog article comments',
# User preferences
'wl-subscribetoall' => 'Subscribe to comments to all Wikilog posts in this Wiki',
'wl-subscribetoallblogs' => 'Subscribe to new posts in all Wikilogs in this Wiki',
'prefs-wikilog' => 'Wikilog',
# Calendar
'wikilogcalendar' => 'Wikilog calendar',
'wikilog-calendar-archive-link-title' => '$1 posts for $2',
'wikilog-calendar-next' => '$1 ›',
'wikilog-calendar-prev' => '‹ $1',
# Special:Wikilog
'wikilog-specialwikilog-title' => 'Wikilogs', # Page title
'wikilog-mark-all-read' => 'Mark all items read',
'wikilog-sessionfailure' => 'There seems to be a problem with your login session;
this action has been canceled as a precaution against session hijacking. Please retry posting the comment.',
# Logs
'wikilog-log-pagename' => 'Wikilog actions log',
'wikilog-log-pagetext' => 'Below is a list of wikilog actions.',
'wikilog-log-cmt-approve' => 'approved comment "[[$1]]"',
'wikilog-log-cmt-reject' => 'rejected comment "[[$1]]"',
'wikilog-log-cmt-rejdel' => 'Rejected wikilog comment from [[Special:Contributions/$1|$1]]',
# Wikilog tab
'wikilog-tab' => 'Wikilog',
'wikilog-tab-title' => 'Wikilog actions',
'wikilog-missing-wikilog' => "This is the [[{{int:wikilog-help}}|wikilog]] page for [[{{FULLPAGENAME}}]].
This wikilog does not exist yet.
In order to publish articles and enable other wikilog features, it has to be created first.
* <span class=\"plainlinks\">[{{fullurl:{{FULLPAGENAME}}|action=edit}} Create this wikilog].</span>",
'wikilog-information' => 'Wikilog information',
'wikilog-post-count-published' => 'There {{PLURAL:$1|is one published article|are $1 published articles}} in this wikilog',
'wikilog-post-count-drafts' => 'There {{PLURAL:$1|is one unpublished (draft) article|are $1 unpublished (draft) articles}}',
'wikilog-post-count-all' => 'In total there {{PLURAL:$1|is one article|are $1 articles}}.',
'wikilog-new-item' => 'Create new wikilog article',
'wikilog-new-item-go' => 'Create',
'wikilog-new-item-subpage' => 'Invalid item name entered, it must not be a subpage!',
'wikilog-new-item-too-long' => 'Invalid item name entered, it must be shoter!',
'wikilog-item-name' => 'Article name:',
'wikilog-import' => 'Import for Blogger.com blogs',
'wikilog-import-go' => 'Import',
'wikilog-import-file' => 'Select XML file for import:',
'wikilog-import-aliases' => 'User aliases ([[User:WikiUserName|Blogger Alias]], [[User:WikiUserName|Blogger Alias]], ...)',
'wikilog-import-ok' => 'Successfully imported $1 wiki pages into blog [{{fullurl:$2}} $2].
[{{fullurl:{{FULLPAGENAME}}|action=wikilog}} Return to Wikilog actions]
You can copy-paste following [http://httpd.apache.org/docs/2.0/mod/mod_rewrite.html RewriteRule]s into your <tt>.htaccess</tt> to redirect users from old post URLs to Wikilog:',
'wikilog-import-failed' => 'Importing failed.',
# Generic strings
'wikilog-published' => 'Published',
'wikilog-updated' => 'Updated',
'wikilog-draft' => 'Draft',
'wikilog-authors' => 'Authors',
'wikilog-wikilog' => 'Wikilog',
'wikilog-title' => 'Title',
'wikilog-actions' => 'Actions',
'wikilog-comments' => 'Comments',
'wikilog-replies' => 'Replies',
'wikilog-view-archives' => 'Archives',
'wikilog-view-summary' => 'Summary',
'wikilog-draft-title-mark' => '(draft)',
'wikilog-anonymous-mark' => '(anonymous)',
'wikilog-talk-updated' => 'Talk Updated',
# Pager strings
'wikilog-pager-newest' => 'newest',
'wikilog-pager-oldest' => 'oldest',
'wikilog-pager-prev' => 'previous',
'wikilog-pager-next' => 'next',
'wikilog-pager-first' => 'first',
'wikilog-pager-last' => 'last',
'wikilog-pager-empty' => '(no items)',
# Comments page link text
'wikilog-no-comments' => 'no comments',
'wikilog-has-comments' => '{{PLURAL:$1|one comment|$1 comments}}',
# Wikilog article header and footer
'wikilog-summary-header' => '',
'wikilog-summary-footer' => 'Posted by $7 to [[$1|$2]] on $8 at $9 ($15), $10.',
'wikilog-summary-header-single' => '',
'wikilog-summary-footer-single' => 'Posted by $7 on $8 at $9 ($15), $10.',
'wikilog-summary-uncategorized' => 'Uncategorized',
'wikilog-summary-categories' => 'Filed under $2',
'wikilog-summary-more' => '[[$3|→ continue reading...]]',
'wikilog-entry-sub' => '',
'wikilog-entry-header' => '',
'wikilog-entry-footer' => '— $7 • $9, $8 • $10',
'wikilog-author-signature' => '[[{{ns:User}}:$1|$2]] ([[{{ns:User_talk}}:$1|talk]])',
'wikilog-simple-signature' => '$1 ($2)',
# Edit page
'wikilog-edit-hint' => 'Edit wikilog article: $1',
'wikilog-edit-fieldset-legend' => 'Wikilog options:',
'wikilog-edit-signpub' => 'Sign and publish this article',
'wikilog-edit-signpub-tooltip' => 'Causes this article to be signed and published in its wikilog when saved.
Uncheck this box to keep the article as a draft.',
# Comments
'wikilog-comment-header' => '',
'wikilog-comment-footer' => '— $2 • $5 $6',
'wikilog-comment-permalink' => '{{#if:$4|$1 at $2 ($3)|<b>$1 at $2 ($3) [unread]</b>}}',
'wikilog-comment-note-item' => 'posted to $1',
'wikilog-comment-note-edited' => 'last edited on $1 at $2',
'wikilog-comment-anonsig' => '$3 (anonymous)',
'wikilog-comment-pending' => 'This comment is awaiting approval.',
'wikilog-comment-deleted' => 'This comment was deleted.',
'wikilog-comment-omitted-x' => 'Comment omitted (#$1).',
'wikilog-comment-autosumm' => 'New comment by $1: $2',
'wikilog-reply-to-comment' => 'Post a reply to this comment',
'wikilog-login-to-comment' => 'Please [[Special:UserLogin|login]] to comment.',
'wikilog-comment-page' => "Go to this comment's page",
'wikilog-comment-edit' => 'Edit this comment',
'wikilog-comment-delete' => 'Delete this comment',
'wikilog-comment-history' => 'View comment history',
'wikilog-comment-approve' => 'Approve this comment (immediate action)',
'wikilog-comment-reject' => 'Reject this comment (immediate action)',
'wikilog-newtalk-text' => '<!-- blank page created by Wikilog -->',
'wikilog-newtalk-summary' => 'created automatically by Wikilog',
'wikilog-subscribe' => 'Subscribe to comments to this entry',
'wikilog-do-subscribe' => '<p>You are not yet subscribed to all comments to this post. <a href="$1">Subscribe</a>.</p><hr />',
'wikilog-do-unsubscribe' => '<p>You are <b>subscribed</b> to all comments to this post. <a href="$1">Unsubscribe</a>.</p><hr />',
'wikilog-do-unsubscribe-one' => '<p>You are subscribed to comments to <b>the whole blog</b>. <a href="$1">Unsubscribe from this single entry</a>.</p><hr />',
'wikilog-do-unsubscribe-global' => '<p>You are subscribed to comments to <b>all blogs</b> through user preference. <a href="$1">Unsubscribe from this single entry</a>.</p><hr />',
'wikilog-do-subscribe-all' => '<p>Now you need to subscribe to comments individually for each entry of this Wikilog. <a href="$1">Enable subscription to all entries by default</a>.</p><hr />',
'wikilog-do-unsubscribe-all' => '<p>Now you are subscribe to <b>all comments</b> to entries of this Wikilog by default. <a href="$1">Disable subscription by default</a>.</p><hr />',
'wikilog-subscribed-title-yes' => 'Subscribed to comments',
'wikilog-subscribed-title-no' => 'Unsubscribed from comments',
'wikilog-subscribed-text-yes' => 'You are now subcribed to all comments to Wikilog entry [[$1]] by e-mail.',
'wikilog-subscribed-text-no' => 'You are now unsubcribed from comments to Wikilog entry [[$1]] except the answers to your ones.',
'wikilog-subscribed-all-yes' => 'Subscription to all comments in Wikilog [[$1]] is now \'\'\'active\'\'\'.
From now, you will be notified about all comments by default. You won\'t receive the notification only if you\'ll unsubscribe from an individual entry explicitly.',
'wikilog-subscribed-all-no' => 'Subscription to all comments in Wikilog [[$1]] is \'\'\'disabled\'\'\'.
From now, you will be notified only if subscribed explicitly or if you\'re the author of post or the comment being replied.',
'wikilog-subscribed-as-author' => '<p>You will receive all comments to this entry by e-mail, because you are the author.</p><hr />',
'wikilog-subscribed-usertalk' => '<p>You will receive all comments to this page by e-mail, because it is your user talk page.</p><hr />',
/* These messages are parsed inside the context of item page, so {{SUBPAGENAME}} refers to the item,
and <a href=""> is a crunch to output links instead of just bold text. */
'wikilog-comment-email-subject' => '[Wikilog] $2 - A new comment to {{SUBPAGENAME}}',
'wikilog-comment-email-body' =>
'A new reply {{#if:$6|was added by [[{{ns:User}}:$2|$2]] to the following [[{{ns:User}}:$6|$6]]\'s
comment to the post <html><a href="$3"></html>{{SUBPAGENAME}}<html></a></html>:
<div style="border-style: solid; border-color: black; border-width: 0 0 0 3px; padding-left: 8px;">
{{:$5}}
</div>
The reply was:|to <html><a href="$3"></html>{{SUBPAGENAME}}<html></a></html> was added by [[{{ns:User}}:$2|$2]]:}}
<div style="border-style: solid; border-color: black; border-width: 0 0 0 3px; padding-left: 8px;">
{{:$1}}
</div>
Available actions:
* [[{{TALKPAGENAME}}#$4|Read the whole discussion]] of the post {{SUBPAGENAME}}.
* <html><a href="$3"></html>Read the post {{SUBPAGENAME}}<html></a></html>.
* [[$1|Reply to this comment]] and/or read discussion thread.',
'wikilog-comment-email-unsubscribe' => '<p><a href="$2">Unsubscribe</a> from comments to $1.</p>',
'wikilog-ptswitcher-to-parent' => 'reply to $1 from $2 $3 at $4',
'wikilog-ptswitcher-to-comment' => 'To comment page',
'wikilog-ptswitcher-comment-label' => 'comment',
'wikilog-ptswitcher-thread' => 'Thread view',
'wikilog-ptswitcher-list' => 'List view',
# Atom and RSS feeds
'wikilog-feed-title' => '{{SITENAME}} - $1 [$2]', # $1 = title, $2 = content language
'wikilog-feed-ns-title' => '$1 wikilog articles', # $1 = namespace name
'wikilog-feed-description' => 'Read the most recent posts in this feed.',
'wikilog-comment-feed-title1' => 'Comment by $2 (#$1)',
'wikilog-comment-feed-title2' => 'Comment by $2 to $3 (#$1)',
'wikilog-comment-feed-description' => 'Read the most recent comments in this feed.',
# Item and comments page titles
'wikilog-title-item-full' => '$1 - $2', # $1 = article title, $2 wikilog title
'wikilog-title-comments' => 'Comments - $1', # $1 = article title
'wikilog-title-comments-all' => 'All Wikilog Comments',
'wikilogcomments' => 'All Wikilog Comments',
# Warning and error messages
'wikilog-error-msg' => 'Wikilog: $1',
'wikilog-error-title' => 'Wikilog error',
'wikilog-invalid-param' => 'Invalid parameter: $1.',
'wikilog-invalid-author' => 'Invalid author: $1.',
'wikilog-invalid-date' => 'Invalid date: $1.',
'wikilog-invalid-tag' => 'Invalid tag: $1.',
'wikilog-invalid-file' => 'Invalid file: $1.',
'wikilog-file-not-found' => 'Non-existing file: $1.',
'wikilog-not-an-image' => 'File is not an image: $1.',
'wikilog-out-of-context' => 'Warning: Wikilog tags are being used out of context.
They should only be used in articles in the Wikilog namespace.',
'wikilog-too-many-authors' => 'Warning: Too many authors listed in this wikilog post.',
'wikilog-too-many-tags' => 'Warning: Too many tags listed in this wikilog post.',
'wikilog-comment-is-empty' => 'Posted comment is blank.',
'wikilog-comment-too-long' => 'Posted comment is too long.',
'wikilog-comment-invalid-name' => 'Provided name is invalid.',
'wikilog-no-such-article' => 'The requested wikilog article does not exist.',
'wikilog-reading-draft' => 'This wikilog article is a draft, it was not published yet.',
'wikilog-posting-anonymously' => 'You are currently not logged in;
your comment will be posted anonymously, identified by your Internet connection address.
You should either provide a pseudonym above to identify your comment or $1 for it to be properly attributed.', # $1 = "login" link
'wikilog-anonymous-moderated' => 'After you submit your comment, it will not be immediately visible on this page.
The comment will only appear after it is reviewed by a moderator.',
# Forms
'wikilog-post-comment' => 'Post a new comment',
'wikilog-post-reply' => 'Post a new reply',
'wikilog-form-legend' => 'Search for wikilog posts',
'wikilog-form-wikilog' => 'Wikilog:',
'wikilog-form-all' => 'Any',
'wikilog-form-category' => 'In category:',
'wikilog-form-notcategory' => 'Not in category:',
'wikilog-form-name' => 'Name:',
'wikilog-form-author' => 'Author:',
'wikilog-form-tag' => 'Tag:',
'wikilog-form-date' => 'Date:',
'wikilog-form-status' => 'Status:',
'wikilog-form-view' => 'View:',
'wikilog-form-preview' => 'Preview:',
'wikilog-form-comment' => 'Comment:',
'wikilog-show-all' => 'All posts',
'wikilog-show-published' => 'Published',
'wikilog-show-drafts' => 'Drafts',
'wikilog-submit' => 'Submit',
'wikilog-preview' => 'Preview', # verb
'wikilog-edit-lc' => 'edit', # verb
'wikilog-reply-lc' => 'reply', # verb
'wikilog-delete-lc' => 'delete',
'wikilog-approve-lc' => 'approve',
'wikilog-reject-lc' => 'reject',
'wikilog-page-lc' => 'page', # noun
'wikilog-history-lc' => 'history',
# Subscription
'wikilogsubscriptions' => 'Wikilog subscriptions',
'wikilog-subscription-unauthorized' => 'You are currently not logged in.',
'wikilog-subscription-access-denied' => 'You can not subscribe to this Wikilog',
'wikilog-subscription-blogs' => 'Subscriptions to blogs:',
'wikilog-subscription-blogs-empty' => '<strong>You are not subscribed to any blogs</strong>',
'wikilog-subscription-comments' => 'Subscriptions to comments:',
'wikilog-subscription-comments-empty' => '<strong>You are not subscribed to any comments</strong>',
'wikilog-subscription-subscribe' => 'You are not subscribed to blog $1 via email yet. To subscribe click "watch".',
'wikilog-subscription-unsubscribe' => 'You are already subscribed to blog $1 via email. Click "unwatch" on the main page of the blog to cancel the subscription.',
'wikilog-subscription-subscribe-email' => 'You are not subscribed to blog $1 via email yet. To subscribe click "watch" at main page of blog.',
'wikilog-subscription-unsubscribe-email' => 'You are already subscribed to blog $1 via email. Click "unwatch" on the main page of the blog to cancel the subscription.',
'wikilog-subscription-item-unsubscribe' => 'Cancel subscription',
'wikilog-subscription-header-action' => 'Action',
'wikilog-subscription-header-comments' => 'Article/blog title you are subscribed to comments',
'wikilog-subscription-header-blogs' => 'Article/blog title you are subscribed to',
'wikilog-subscription-blog-subscribed' => 'Wikilog <strong>$1</strong> is now added to your watchlist. You will receive its new posts by email.',
'wikilog-subscription-blog-unsubscribed' => 'Your subscription to new articles in Wikilog <strong>$1</strong> is canceled. The blog is removed from your watchlist.',
'wikilog-subscription-comment-unsubscribed-blog' => 'Your subscription to the comments in Wikilog <strong>$1</strong> is canceled.',
'wikilog-subscription-comment-unsubscribed-article' => 'Your subscription to the comments to article <strong>$1</strong> is canceled.',
'wikilog-subscription-comment-subscription' => 'You can subscribe to comments at discussion page: <a href="$1">$2</a>.',
'wikilog-subscription-return-link' => 'Subscription management page',
'wikilog-subscription-email-subject' => '[Wikilog] $2 - New article in blog $4: $1',
'wikilog-subscription-email-body' =>
'User [[{{ns:User}}:$2|$2]] published the article [$3 $1] in blog [[{{ns:Blog}}:$4]]:
<hr/>
$5
<hr/>
<ul>
<li>See article: [$3 $1]</li>
<li>See discussion: [$6 $7]</li>
</ul>',
# Other
'wikilog-doc-import-comment' => "Imported Wikilog documentation",
# Untranslatable strings
'wikilog-summary' => '', # Special page summary
'wikilog-backlink' => '← $1',
'wikilog-brackets' => '[$1]',
);
/** Message documentation (Message documentation)
* @author EugeneZelenko
* @author Fryed-peach
* @author Juliano
* @author McDutchie
* @author Nghtwlkr
* @author Purodha
* @author Raymond
* @author Siebrand
* @author Umherirrender
*/
$messages['qqq'] = array(
'wikilog-desc' => '{{desc}}',
'wikilog-auto' => 'This is a reserved username that will edit as a robot.',
'wikilog-help' => 'This is the name of the help page for the extension.
This should only be changed when a translation of the extension manual is available in the target language.
Currently, English is the only language the manual is available in.
So, let this value untranslated until the manual is available in your language.',
'right-wl-postcomment' => '{{doc-right|wl-postcomment}}',
'right-wl-moderation' => '{{doc-right|wl-moderation}}',
'wikilog-specialwikilog-title' => 'This is a special page title.
"Wikilog" is used as in contraction of "wiki" and "blog" (or "weblog").
If these words are the same in your language, then just transliterate it;
otherwise use the proper translation for both words and try to keep the idea of something that ties both concepts into a single object.
It is used in the plural in this title.',
'wikilog-log-cmt-approve' => 'Log action message used for entries describing comments approved by moderators, as in someone "did that". Similar to {{msg-mw|deletedarticle}} and {{msg-mw|protectedarticle}}.
Parameters:
* $1 is the page title of the approved comment.',
'wikilog-log-cmt-reject' => 'Log action message used for entries describing comments rejected by moderators, as in someone "did that". Similar to {{msg-mw|deletedarticle}} and {{msg-mw|protectedarticle}}.
Parameters:
* $1 is the page title of the rejected comment.',
'wikilog-log-cmt-rejdel' => 'Message explaining the reason for a comment page to be deleted, after that comment was rejected by a moderator.
Parameters:
* $1 is the commenter name (which is usually an IP address in this case, genderless).',
'wikilog-missing-wikilog' => 'Displayed when user visits a page for a wikilog that has not been created yet. Similar to {{msg-mw|noarticletext|notext=1}}.',
'wikilog-post-count-published' => 'Entry in an unnumbered list with an overview in numbers about the size of the wikiblog.',
'wikilog-post-count-drafts' => 'Entry in an unnumbered list with an overview in numbers about the size of the wikiblog.',
'wikilog-post-count-all' => 'Entry in an unnumbered list with an overview in numbers about the size of the wikiblog.',
'wikilog-new-item-go' => '{{Identical|Create}}',
'wikilog-updated' => '{{Identical|Updated}}',
'wikilog-draft' => '{{Identical|Draft}}',
'wikilog-authors' => '{{Identical|Author}}',
'wikilog-title' => '{{Identical|Title}}',
'wikilog-actions' => '{{Identical|Action}}',
'wikilog-comments' => '{{Identical|Comment}}',
'wikilog-replies' => '{{Identical|Reply}}',
'wikilog-view-archives' => '{{Identical|Archive}}',
'wikilog-view-summary' => '{{Identical|Summary}}',
'wikilog-draft-title-mark' => '{{Identical|Draft}}',
'wikilog-anonymous-mark' => '{{Identical|Anonymous}}',
'wikilog-pager-prev' => '{{Identical|Previous}}',
'wikilog-pager-next' => '{{Identical|Next}}',
'wikilog-pager-first' => '{{Identical|First}}',
'wikilog-pager-last' => '{{Identical|Last}}',
'wikilog-has-comments' => 'Parameters:
* $1 is the number of comments',
'wikilog-summary-footer' => "Parameters:
* $1 is a URL formatted link to the article's parent wikilog
* $2 is the article's parent wikilog name
* $3 is a URL formatted link to the article (optional)
* $4 is the article title (optional)
* $5 is the number of authors listed in $7, for PLURAL if necessary
* $6 is the clean name of the first author, for GENDER if necessary (avoid it if possible since $7 is a list)
* $7 is a list of authors of the article, each name formated with {{msg-mw|wikilog-author-signature}}
* $8 is the publication date
* $9 is the publication time
* $10 is a link to the comments page, with either {{msg-mw|wikilog-no-comments}} or {{msg-mw|wikilog-has-comments}} as link text
* $15 is the timezone information (optional)",
'wikilog-summary-footer-single' => "Identical to {{msg-mw|wikilog-summary-footer}}, but used when listing articles from a single wikilog, so it is not necessary to say where it was posted to. Parameters:
* $1 is a URL formatted link to the article's parent wikilog (optional)
* $2 is the article's parent wikilog name (optional)
* $3 is a URL formatted link to the article (optional)
* $4 is the article title (optional)
* $5 is the number of authors listed in $7, for PLURAL if necessary
* $6 is the clean name of the first author, for GENDER if necessary (avoid it if possible since $7 is a list)
* $7 is a list of authors of the article, each name formated with {{msg-mw|wikilog-author-signature}}
* $8 is the publication date
* $9 is the publication time
* $10 is a link to the comments page, with either {{msg-mw|wikilog-no-comments}} or {{msg-mw|wikilog-has-comments}} as link text
* $15 is the timezone information (optional)",
'wikilog-summary-categories' => 'Parameters:
* $1 is the number of categories listed in $2
* $2 is a list of the categories the article is in',
'wikilog-summary-more' => "Parameters:
* $1 is a URL formatted link to the article's parent wikilog (optional)
* $2 is the article's parent wikilog name (optional)
* $3 is a URL formatted link to the article
* $4 is the article title (optional)",
'wikilog-entry-footer' => '{{optional}}
Has the same parameters of {{msg-mw|wikilog-summary-footer}}.',
'wikilog-simple-signature' => '{{optional}}
Parameters:
* $1 is a link to the commenting user page
* $2 is a link to the commenting user talk page, with {{msg-mw|talkpagelinktext}} as link text',
'wikilog-edit-hint' => 'Parameters:
* $1 is an article title.',
'wikilog-comment-footer' => '{{optional}}
Parameters:
* $1 is the name of the author of the comment (optional)
* $2 is the name of the author or the comment formatted with {{msg-mw|wikilog-simple-signature|notext=1}}
* $3 is the comment date
* $4 is the comment time
* $5 is a permalink for the comment, formatted with {{msg-mw|wikilog-comment-permalink}}
* $6 are some optional notes about the comment, formatted inside {{msg-mw|parentheses}}',
'wikilog-comment-permalink' => 'A permanent link to the comment.
Parameters:
* $1 is the comment date
* $2 is the comment time
* $3 is the timezone information (optional)',
'wikilog-comment-note-item' => 'The title of the article that the comment was posted to.
Parameters:
* $1 is an article title.',
'wikilog-comment-note-edited' => 'The last time the comment was edited.
Parameters:
* $1 is the last modification date
* $2 is the last modification time
* $3 is the timezone information (optional)',
'wikilog-comment-anonsig' => 'Signature used for anonymous users which post comments to articles.
Parameters:
* $1 is a link to the commenting user page (unused, it is an IP address)
* $2 is a link to the commenting user talk page (unused)
* $3 is the pseudonym used by the anonymous commenter (genderless)',
'wikilog-comment-autosumm' => 'Parameters:
* $1 is a user name
* $2 is a summary',
'wikilog-feed-title' => '{{optional}}
Parameters:
* $1 is a title
* $2 is the content language of the wiki',
'wikilog-feed-ns-title' => 'Parameters:
* $1 is the name of a namespace in the content language.',
'wikilog-comment-feed-title1' => 'Parameters:
* $1 is a comment number (to make unique titles for different comments)
* $2 is the commenter name',
'wikilog-comment-feed-title2' => 'Parameters:
* $1 is a comment number (to make unique titles for different comments)
* $2 is the commenter name
* $3 is the title of the article the comment was posted to',
'wikilog-title-item-full' => '{{optional}}
Parameters:
* $1 a page title
* $2 is the wikilog title',
'wikilog-title-comments' => 'Parameters:
* $1 is a page title',
'wikilog-error-msg' => 'Parameters:
* $1 is an error message',
'wikilog-invalid-param' => 'Parameters:
* $1 is the invalid parameter',
'wikilog-invalid-author' => 'Parameters:
* $1 is the invalid author name',
'wikilog-invalid-date' => 'Parameters:
* $1 is the invalid date',
'wikilog-invalid-tag' => 'Parameters:
* $1 is the invalid tag',
'wikilog-invalid-file' => 'Parameters:
* $1 is the invalid file name.',
'wikilog-file-not-found' => 'Parameters:
* $1 is the non-existing file',
'wikilog-not-an-image' => 'Parameters:
* $1 is the input that is not an image',
'wikilog-posting-anonymously' => 'Parameters:
* $1 is a link to the login page with {{msg-mw|loginreqlink}} as link label',
'wikilog-form-category' => '{{Identical|Category}}',
'wikilog-form-name' => '{{Identical|Name}}',
'wikilog-form-author' => '{{Identical|Author}}',
'wikilog-form-tag' => '{{Identical|Tag}}',
'wikilog-form-date' => '{{Identical|Date}}',
'wikilog-form-status' => '{{Identical|Status}}',
'wikilog-form-preview' => 'Form field label. The word "Preview" used as a noun, as in "the preview of the changes".',
'wikilog-form-comment' => '{{Identical|Comment}}',
'wikilog-show-drafts' => '{{Identical|Draft}}',
'wikilog-submit' => '{{Identical|Submit}}',
'wikilog-preview' => 'The word "Preview" used as a verb, as in "to preview the page".
{{Identical|Preview}}',
'wikilog-edit-lc' => 'The word "edit" used as a verb, as in "to edit a comment".
Part of a list of actions, use lowercase if applicable.
{{Identical|Edit}}',
'wikilog-reply-lc' => 'The word "reply" used as a verb, as in "to reply to a comment".
Part of a list of actions, use lowercase if applicable.
{{Identical|Reply}}',
'wikilog-delete-lc' => 'As in "to delete a comment".
Part of a list of actions, use lowercase if applicable.
{{Identical|Delete}}',
'wikilog-approve-lc' => 'As in "to approve a comment".
Part of a list of actions, use lowercase if applicable.
{{Identical|Approve}}',
'wikilog-reject-lc' => 'As in "to reject a comment".
Part of a list of actions, use lowercase if applicable.',
'wikilog-page-lc' => 'The word "page" used as noun, as in "the comment page".
Part of a list of actions, use lowercase if applicable.
{{Identical|Page}}',
'wikilog-history-lc' => 'Noun.
Part of a list of actions, use lowercase if applicable.
{{Identical|History}}',
'wikilog-doc-import-comment' => 'This is an automatic edit summary for pages imported into the wiki.',
);
/** Abkhazian (Аҧсшәа)
* @author Temuri rajavi
*/
$messages['ab'] = array(
'wikilog-form-category' => 'Акатегориа:',
);
/** Afrikaans (Afrikaans)
* @author Naudefj
*/
$messages['af'] = array(
'wikilog-help' => '{{ns:help}}:Wikilog',
'wikilog-specialwikilog-title' => 'Wikilogs',
'wikilog-log-pagename' => 'Wikilog-aksieslogboek',
'wikilog-log-pagetext' => "Hieronder is 'n lys van wikilog aksies:",
'wikilog-log-cmt-approve' => 'het kommentaar [[$1]] goedgekeur',
'wikilog-log-cmt-reject' => 'het kommentaar [[$1]] afgekeur',
'wikilog-tab' => 'Wikilog',
'wikilog-tab-title' => 'Wikilog-aksies',
'wikilog-information' => 'Wikilog-inligting',
'wikilog-new-item-go' => 'Skep',
'wikilog-item-name' => 'Artikelnaam:',
'wikilog-published' => 'Gepubliseer',
'wikilog-updated' => 'Opgedateer',
'wikilog-authors' => 'Outeurs',
'wikilog-wikilog' => 'Wikilog',
'wikilog-title' => 'Titel',
'wikilog-actions' => 'Aksies',
'wikilog-comments' => 'Kommentaar',
'wikilog-replies' => 'Antwoorde',
'wikilog-view-archives' => 'Argiewe',
'wikilog-view-summary' => 'Samevatting',
'wikilog-draft-title-mark' => '(werkweergawe)',
'wikilog-anonymous-mark' => '(anoniem)',
'wikilog-pager-newest' => 'nuutste',
'wikilog-pager-oldest' => 'oudste',
'wikilog-pager-prev' => 'vorige',
'wikilog-pager-next' => 'volgende',
'wikilog-pager-first' => 'eerste',
'wikilog-pager-last' => 'laaste',
'wikilog-pager-empty' => '(geen items)',
'wikilog-no-comments' => 'geen kommentaar',
'wikilog-has-comments' => '{{PLURAL:$1|een opmerking|$1 opmerkings}}',
'wikilog-summary-footer' => 'Geplaas deur $7 op [[$1|$2]] op $8 om $9 ($15), $10.',
'wikilog-summary-footer-single' => 'Geplaas deur $7 op $8 om $9 ($15), $10.',
'wikilog-summary-uncategorized' => 'Ongekategoriseer',
'wikilog-summary-categories' => 'Geliasseer onder $2',
'wikilog-summary-more' => '[[$3|→ lees verder...]]',
'wikilog-author-signature' => '[[{{ns:User}}:$1|$1]] ([[{{ns:User_talk}}:$1|bespreek]])',
'wikilog-comment-permalink' => '$1 om $2',
'wikilog-comment-note-item' => 'geplaas op $1',
'wikilog-comment-note-edited' => 'laaste wysiging op $1 om $2',
'wikilog-comment-anonsig' => '$3 (anoniem)',
'wikilog-comment-deleted' => 'Hierdie kommentaar is verwyder.',
'wikilog-comment-edit' => 'Wysig die kommentaar',
'wikilog-comment-delete' => 'Skrap hierdie kommentaar',
'wikilog-comment-history' => 'Wys kommentaar se geskiedenis',
'wikilog-comment-approve' => 'Keur kommentaar goed (onmiddellike aksie)',
'wikilog-comment-reject' => 'Verwerp kommentaar (onmiddellike aksie)',
'wikilog-newtalk-text' => '<!-- leë bladsy deur Wikilog geskep -->',
'wikilog-title-comments' => 'Kommentaar - $1',
'wikilog-error-msg' => 'Wikilog: $1',
'wikilog-error-title' => 'Wikilog-fout',
'wikilog-invalid-param' => 'Ongeldige parameter: $1.',
'wikilog-invalid-author' => 'Ongeldige outeur: $1.',
'wikilog-invalid-date' => 'Ongeldige datum: $1.',
'wikilog-invalid-tag' => 'Ongeldige etiket: $1.',
'wikilog-invalid-file' => 'Ongeldige lêer: $1.',
'wikilog-file-not-found' => 'Nie-bestaande lêer: $1.',
'wikilog-not-an-image' => "Die lêer is nie 'n beeld nie: $1.",
'wikilog-post-comment' => "Pos 'n nuwe kommentaar",
'wikilog-post-reply' => "Pos 'n nuwe antwoord",
'wikilog-form-legend' => 'Soek vir wikilog-artikels',
'wikilog-form-wikilog' => 'Wikilog:',
'wikilog-form-category' => 'Kategorie:',
'wikilog-form-name' => 'Naam:',
'wikilog-form-author' => 'Outeur:',
'wikilog-form-tag' => 'Etiket:',
'wikilog-form-date' => 'Datum:',
'wikilog-form-status' => 'Status:',
'wikilog-form-preview' => 'Voorskou:',
'wikilog-form-comment' => 'Opmerking:',
'wikilog-show-all' => 'Alle boodskappe',
'wikilog-show-published' => 'Gepubliseer',
'wikilog-show-drafts' => 'Werkweergawes',
'wikilog-submit' => 'Dien in',
'wikilog-preview' => 'Voorskou',
'wikilog-edit-lc' => 'wysig',
'wikilog-reply-lc' => 'antwoord',
'wikilog-delete-lc' => 'skrap',
'wikilog-approve-lc' => 'keur goed',
'wikilog-reject-lc' => 'verwerp',
'wikilog-page-lc' => 'bladsy',
'wikilog-history-lc' => 'geskiedenis',
);
/** Gheg Albanian (Gegë)
* @author Mdupont
*/
$messages['aln'] = array(
'wikilog-desc' => 'Shton funksione Blogging, duke krijuar një hibrid wiki-blog',
'wikilog-auto' => 'Wikilog Auto',
'wikilog-help' => '{{ns:Help}}:Wikilog',
'right-wl-postcomment' => 'Komentet Mesazhe të wikilog artikuj',
'right-wl-moderation' => 'Moderim i wikilog komente neni',
'wikilog-specialwikilog-title' => 'Wikilogs',
'wikilog-log-pagename' => 'veprimet Wikilog log',
'wikilog-log-pagetext' => 'Më poshtë është një listë e wikilog veprime.',
'wikilog-log-cmt-approve' => 'Komenti i miratuar "[[$1]]"',
'wikilog-log-cmt-reject' => 'refuzuar "Komenti [[$1]]"',
'wikilog-log-cmt-rejdel' => 'Kundërshtoi koment wikilog nga [[Special:Contributions/$1|$1]]',
'wikilog-tab' => 'Wikilog',
'wikilog-tab-title' => 'veprimet Wikilog',
'wikilog-missing-wikilog' => 'Kjo është [[{{int:wikilog-help}}|wikilog faqe]] për [[{{FULLPAGENAME}}]]. Kjo wikilog nuk ekziston ende. Në mënyrë që të botojë artikuj dhe për të mundësuar wikilog karakteristika të tjera, ajo ka të krijohet parë. * <span class="plainlinks">[{{fullurl:{{FULLPAGENAME}}|action=edit}} Krijo këtë] wikilog.</span>',
'wikilog-information' => 'informacion Wikilog',
'wikilog-post-count-published' => 'Ka {{PLURAL:$1|është një nga|botuar artikull janë $1 botuar artikuj}} në këtë wikilog',
'wikilog-post-count-drafts' => 'Ka {{PLURAL:$1|është një i pabotuar (projekt)|neni janë $1 pabotuar (projekt) artikuj}}',
'wikilog-post-count-all' => 'Në total ka {{PLURAL:$1|është një nga|neni janë $1 artikuj}}.',
'wikilog-new-item' => 'neni wikilog Krijo të ri',
'wikilog-new-item-go' => 'Krijo',
'wikilog-item-name' => 'Emri i artikullit:',
'wikilog-published' => 'Publikuar',
'wikilog-updated' => 'Përditësuar',
'wikilog-draft' => 'Projekt',
'wikilog-authors' => 'Autorët',
'wikilog-wikilog' => 'Wikilog',
'wikilog-title' => 'Titull',
'wikilog-actions' => 'Veprimet',
'wikilog-comments' => 'Komente',
'wikilog-replies' => 'Përgjigje',
'wikilog-view-archives' => 'Arkiv',
'wikilog-view-summary' => 'Përmbledhje',
'wikilog-draft-title-mark' => '(Projekt)',
'wikilog-anonymous-mark' => '(Anonim)',
'wikilog-pager-newest' => 'ri',
'wikilog-pager-oldest' => 'vjetër',
'wikilog-pager-prev' => 'i mëparshëm',
'wikilog-pager-next' => 'tjetër',
'wikilog-pager-first' => 'i parë',
'wikilog-pager-last' => 'fundit',
'wikilog-pager-empty' => '(Nuk ka artikuj)',
'wikilog-no-comments' => 'nuk ka komente',
'wikilog-has-comments' => '{{PLURAL:$1|një koment|Komentet $1}}',
'wikilog-summary-footer' => 'Dërguar nga $7 të [[$1|$2]] më $8 në $9 ($15), $10.',
'wikilog-summary-footer-single' => 'Dërguar nga $7 më $8 në $9 ($15), $10.',
'wikilog-summary-uncategorized' => 'Uncategorized',
'wikilog-summary-categories' => 'Paraqitur sipas $2',
'wikilog-summary-more' => '[[$3|→ vazhdojë leximin ...]]',
'wikilog-author-signature' => '[[{{ns:User}}:$1|$1]] ([[{{ns:User_talk}}:$1|flisni]])',
'wikilog-edit-fieldset-legend' => 'opsione Wikilog:',
'wikilog-edit-signpub' => 'Regjistrohu dhe publikimi i këtij neni',
'wikilog-edit-signpub-tooltip' => 'Shkakton këtë artikull që do të nënshkruhet dhe publikohet në wikilog e saj kur shpëtoi. Çshenjojeni këtë kuti për të mbajtur artikull si një projekt.',
'wikilog-comment-permalink' => '$1 tek $2',
'wikilog-comment-note-item' => 'postuar tek $1',
'wikilog-comment-note-edited' => 'e fundit redaktuar $1 tek $2',
'wikilog-comment-anonsig' => '$3 (anonim)',
'wikilog-comment-pending' => 'Ky koment është në pritje të miratimit.',
'wikilog-comment-deleted' => 'Ky koment u fshi.',
'wikilog-comment-omitted-x' => 'Koment lënë jashtë (#$1).',
'wikilog-comment-autosumm' => 'koment i ri nga $1: $2',
'wikilog-reply-to-comment' => 'Posto një përgjigje për këtë koment',
'wikilog-comment-page' => "Shko tek faqja këtë koment's",
'wikilog-comment-edit' => 'Ndryshoni këtë koment',
'wikilog-comment-delete' => 'Fshije këtë koment',
'wikilog-comment-history' => 'Shihni historik koment',
'wikilog-comment-approve' => 'Miratojë këtë koment (veprim të menjëhershëm)',
'wikilog-comment-reject' => 'Kundërshtojnë këtë koment (veprim të menjëhershëm)',
'wikilog-newtalk-text' => '<!-- blank page created by Wikilog -->',
'wikilog-newtalk-summary' => 'krijuar automatikisht nga Wikilog',
'wikilog-feed-description' => 'Lexo postimet më të fundit në këtë ushqim.',
'wikilog-comment-feed-title1' => 'Koment nga $2 (#$1)',
'wikilog-comment-feed-title2' => 'Koment nga $2 në $3 (#$1)',
'wikilog-comment-feed-description' => 'Lexo komentet më të fundit në këtë ushqim.',
'wikilog-title-comments' => 'Komente - $1',
'wikilog-error-msg' => 'Wikilog: $1',
'wikilog-error-title' => 'gabim Wikilog',
'wikilog-invalid-param' => 'parametër i pavlefshëm: $1.',
'wikilog-invalid-author' => 'autor i pavlefshëm: $1.',
'wikilog-invalid-date' => 'Data e pavlefshme: $1.',
'wikilog-invalid-tag' => 'tag pavlefshme: $1.',
'wikilog-invalid-file' => 'Pavlefshme file: $1.',
'wikilog-file-not-found' => 'Jo-ekzistuese file: $1.',
'wikilog-not-an-image' => 'File nuk është një imazh: $1.',
'wikilog-out-of-context' => 'Warning: tags Wikilog janë duke u përdorur jashtë kontekstit. Ato duhet të përdoret vetëm në shkrimet në hapësirën Wikilog.',
'wikilog-too-many-authors' => 'Warning: Shumë autorë shumë të shënuara në këtë post wikilog.',
'wikilog-too-many-tags' => 'Warning: Shumë tags shumë të shënuara në këtë post wikilog.',
'wikilog-comment-is-empty' => 'koment Posted është bosh.',
'wikilog-comment-too-long' => 'koment Posted është shumë i gjatë.',
'wikilog-comment-invalid-name' => 'emri kusht është i pavlefshëm.',
'wikilog-no-such-article' => 'Artikulli i kërkuar wikilog nuk ekziston.',
'wikilog-reading-draft' => 'Ky artikull wikilog është një projekt, ai nuk ishte botuar ende.',
'wikilog-posting-anonymously' => 'Ju tani jeni duke not logged in, komenti juaj do të postohet në mënyrë anonime, të identifikuara nga lidhja adresën e internetit tuaj. Ju duhet ose të sigurojë një pseudonim më lart për të identifikuar komentin tuaj ose $1 për atë që do të atribuohen si duhet.',
'wikilog-anonymous-moderated' => 'Pasi ju paraqisni komentin tuaj, ajo nuk do të jetë menjëherë e dukshme në këtë faqe. Koment do të shfaqet vetëm pasi të jetë shqyrtuar nga një moderator.',
'wikilog-post-comment' => 'Shkruaj një koment të ri',
'wikilog-post-reply' => 'Posto një përgjigje të re',
'wikilog-form-legend' => 'Kërko për wikilog posts',
'wikilog-form-wikilog' => 'Wikilog:',
'wikilog-form-category' => 'Kategoria:',
'wikilog-form-name' => 'Emri:',
'wikilog-form-author' => 'Author:',
'wikilog-form-tag' => 'Tag:',
'wikilog-form-date' => 'Data:',
'wikilog-form-status' => 'Statusi:',
'wikilog-form-preview' => 'Preview:',
'wikilog-form-comment' => 'Koment:',
'wikilog-show-all' => 'Të gjitha mesazhet',
'wikilog-show-published' => 'Publikuar',
'wikilog-show-drafts' => 'Skicat',
'wikilog-submit' => 'Submit',
'wikilog-preview' => 'Preview',
'wikilog-edit-lc' => 'redaktoj',
'wikilog-reply-lc' => 'përgjigje',
'wikilog-delete-lc' => 'fshij',
'wikilog-approve-lc' => 'miratoj',
'wikilog-reject-lc' => 'refuzoj',
'wikilog-page-lc' => 'faqe',
'wikilog-history-lc' => 'histori',
'wikilog-doc-import-comment' => 'Dokumentacionin e importuara Wikilog',
);
/** Aragonese (aragonés)
* @author Juanpabl
*/
$messages['an'] = array(
'wikilog-new-item-go' => 'Creyar',
'wikilog-actions' => 'Accions',
'wikilog-form-date' => 'Calendata:',
'wikilog-form-preview' => 'Previsualización:',
'wikilog-submit' => 'Ninviar',
'wikilog-preview' => 'Previsualizar',
'wikilog-edit-lc' => 'editar',
'wikilog-page-lc' => 'pachina',
'wikilog-history-lc' => 'historial',
);
/** Arabic (العربية)
* @author Meno25
* @author OsamaK
* @author روخو
*/
$messages['ar'] = array(
'wikilog-desc' => 'يضيف خصائص تدوين، منشئا تهجين ويكي-مدونة',
'wikilog-auto' => 'سجل الويكي آلي',
'wikilog-help' => '{{ns:Help}}:سجل الويكي',
'right-wl-postcomment' => 'كتابة تعليقات على مقالات سجل الويكي',
'right-wl-moderation' => 'مراجعة تعليقات مقالات سجل الويكي',
'wikilog-specialwikilog-title' => 'سجلات الويكي',
'wikilog-log-pagename' => 'سجل أفعال سجل الويكي',
'wikilog-log-pagetext' => 'بالأسفل قائمة بأفعال سجل الويكي.',
'wikilog-log-cmt-approve' => 'وافق على التعليق "[[$1]]"',
'wikilog-log-cmt-reject' => 'رفض التعليق "[[$1]]"',
'wikilog-log-cmt-rejdel' => 'تعليقات سجل الويكي المرفوضة من [[Special:Contributions/$1|$1]]',
'wikilog-tab' => 'سجل الويكي',
'wikilog-tab-title' => 'أفعال سجل الويكي',
'wikilog-missing-wikilog' => 'هذه هي صفحة [[{{int:wikilog-help}}|سجل الويكي]] ل[[{{FULLPAGENAME}}]].
سجل الويكي هذا لا يوجد حاليا.
حتى تنشر المقالات وتفعل خصائص سجل الويكي الأخرى، يجب أن يتم إنشاؤه أولا.
* <span class="plainlinks">[{{fullurl:{{FULLPAGENAME}}|action=edit}} أنشئ سجل الويكي هذا].</span>',
'wikilog-information' => 'معلومات سجل الويكي',
'wikilog-post-count-published' => 'هناك {{PLURAL:$1|مقالة واحدة منشورة|$1 مقالة منشورة}} في سجل الويكي هذا',
'wikilog-post-count-drafts' => 'هناك {{PLURAL:$1|مقالة واحدة غير منشورة (مسودة)|$1 مقالة غير منشورة (مسودة)}}',
'wikilog-post-count-all' => 'إجمالا هناك {{PLURAL:$1|مقالة واحدة|$1 مقالة}}.',
'wikilog-new-item' => 'إنشاء مقالة سجل ويكي جديدة',
'wikilog-new-item-go' => 'إنشاء',
'wikilog-item-name' => 'اسم المقالة:',
'wikilog-published' => 'منشور',
'wikilog-updated' => 'محدث',
'wikilog-draft' => 'مسودة',
'wikilog-authors' => 'مؤلفون',
'wikilog-wikilog' => 'سجل الويكي',
'wikilog-title' => 'عنوان',
'wikilog-actions' => 'أفعال',
'wikilog-comments' => 'تعليقات',
'wikilog-replies' => 'ردود',
'wikilog-view-archives' => 'أرشيفات',
'wikilog-view-summary' => 'ملخص',
'wikilog-draft-title-mark' => '(مسودة)',
'wikilog-anonymous-mark' => '(مجهول)',
'wikilog-pager-newest' => 'الأحدث',
'wikilog-pager-oldest' => 'الأقدم',
'wikilog-pager-prev' => 'سابق',
'wikilog-pager-next' => 'تالي',
'wikilog-pager-first' => 'أول',
'wikilog-pager-last' => 'آخر',
'wikilog-pager-empty' => '(لا مدخلات)',
'wikilog-no-comments' => 'لا تعليقات',
'wikilog-has-comments' => '{{PLURAL:$1|تعليق واحد|$1 تعليق}}',
'wikilog-summary-footer' => 'أرسل بواسطة $7 إلى [[$1|$2]] في $8 الساعة $9 ($15), $10.',
'wikilog-summary-footer-single' => 'أرسل بواسطة $7 في $8 الساعة $9 ($15), $10.',
'wikilog-summary-uncategorized' => 'غير مصنف',
'wikilog-summary-categories' => 'مصنف تحت $2',
'wikilog-summary-more' => '[[$3|→ استكمال القراءة...]]',
'wikilog-author-signature' => '[[{{ns:User}}:$1|$1]] ([[{{ns:User_talk}}:$1|نقاش]])',
'wikilog-edit-fieldset-legend' => 'خيارات سجل الويكي:',
'wikilog-edit-signpub' => 'وقع وانشر هذه المقالة',
'wikilog-edit-signpub-tooltip' => 'يسبب هذه المقالة أن يتم توقيعها ونشرها في سجلها للويكي عند حفظها.
لا تعلم على هذا الصندوق لإبقاء المقالة كمسودة.',
'wikilog-comment-anonsig' => '$3 (مجهول)',
'wikilog-comment-pending' => 'هذا التعليق بانتظار الموافقة.',
'wikilog-comment-deleted' => 'هذا التعليق تم حذفه.',
'wikilog-comment-autosumm' => 'تعليق جديد بواسطة $1: $2',
'wikilog-reply-to-comment' => 'اكتب ردا لهذا التعليق',
'wikilog-comment-page' => 'اذهب إلى صفحة هذا التعليق',
'wikilog-comment-edit' => 'عدل هذا التعليق',
'wikilog-comment-delete' => 'احذف هذا التعليق',
'wikilog-comment-history' => 'عرض تاريخ التعليق',
'wikilog-comment-approve' => 'وافق على هذا التعليق (فعل لحظي)',
'wikilog-comment-reject' => 'ارفض هذا التعليق (فعل لحظي)',
'wikilog-newtalk-text' => '<!-- صفحة فارغة منشأة بواسطة سجل الويكي -->',
'wikilog-newtalk-summary' => 'تم إنشاؤه تلقائيا بواسطة سجل الويكي',
'wikilog-feed-description' => 'اقرأ أحدث الكتابات في هذا التلقيم.',
'wikilog-title-comments' => 'تعليقات - $1',
'wikilog-error-msg' => 'سجل الويكي: $1',
'wikilog-error-title' => 'خطأ سجل الويكي',
'wikilog-invalid-param' => 'محدد غير صحيح: $1.',
'wikilog-invalid-author' => 'مؤلف غير صحيح: $1.',
'wikilog-invalid-date' => 'تاريخ غير صحيح: $1.',
'wikilog-invalid-tag' => 'وسم غير صحيح: $1.',
'wikilog-invalid-file' => 'ملف غير صحيح: $1.',
'wikilog-file-not-found' => 'ملف غير موجود: $1.',
'wikilog-not-an-image' => 'الملف ليس صورة: $1.',
'wikilog-out-of-context' => 'تحذير: وسوم سجل الويكي يتم استخدامها خخارج المحتوى.
يجب أن يتم استخدامها فقط في المقالات في نطاق سجل الويكي.',
'wikilog-too-many-authors' => 'تحذير: عدد كبير من المؤلفين معروضين في تعليق سجل الويكي هذا.',
'wikilog-too-many-tags' => 'تحذير: عدد كبير من الوسوم معروضة في تعليق سجل الويكي هذا.',
'wikilog-comment-is-empty' => 'التعليق المكتوب فارغ.',
'wikilog-comment-too-long' => 'التعليق المكتوب طويل جدا.',
'wikilog-comment-invalid-name' => 'الاسم الموفر غير صحيح.',
'wikilog-no-such-article' => 'مقالة سجل الويكي المطلوبة غير موجودة.',
'wikilog-reading-draft' => 'مقالة سجل الويكي هذه مسودة، لم يتم نشرها بعد.',
'wikilog-posting-anonymously' => 'أنت حاليا لست مسجل الدخول؛
تعليقك سيتم تسجيله كمجهول، معرف بواسطة عنوان اتصالك بالإنترنت.
ينبغي إما أن توفر اسما مستعارا بالاعلى لتعريف تعليقك أو $1 له ليتم عزوه بشكل صحيح',
'wikilog-anonymous-moderated' => 'بعد كتابة تعليقك، لن يكون ظاهرا فورا على هذه الصفحة.
التعليق سيظهر فقط بعد مراجعته بواسطة إداري.',
'wikilog-post-comment' => 'أرسل ردا جديدا',
'wikilog-post-reply' => 'أرسل ردا جديدا',
'wikilog-form-legend' => 'بحث عن تعليقات سجل الويكي',
'wikilog-form-wikilog' => 'سجل الويكي:',
'wikilog-form-category' => 'التصنيف:',
'wikilog-form-name' => 'الاسم:',
'wikilog-form-author' => 'المؤلف:',
'wikilog-form-tag' => 'الوسم:',
'wikilog-form-date' => 'التاريخ:',
'wikilog-form-status' => 'الحالة:',
'wikilog-form-preview' => 'عرض مسبق:',
'wikilog-form-comment' => 'التعليق:',
'wikilog-show-all' => 'كل التعليقات',
'wikilog-show-published' => 'منشور',
'wikilog-show-drafts' => 'مسودات',
'wikilog-submit' => 'إرسال',
'wikilog-preview' => 'عرض مسبق',
'wikilog-edit-lc' => 'تعديل',
'wikilog-reply-lc' => 'رد',
'wikilog-delete-lc' => 'حذف',
'wikilog-approve-lc' => 'موافقة',
'wikilog-reject-lc' => 'رفض',
'wikilog-page-lc' => 'صفحة',
'wikilog-history-lc' => 'تاريخ',
'wikilog-doc-import-comment' => 'استورد توثيق سجل الويكي',
);
/** Aramaic (ܐܪܡܝܐ)
* @author Basharh
*/
$messages['arc'] = array(
'wikilog-pager-newest' => 'ܚܕܬ ܡܢ ܟܠ',
'wikilog-pager-oldest' => 'ܩܕܝܡ ܡܢ ܟܠ',
'wikilog-pager-prev' => 'ܕܩܕܡ',
'wikilog-pager-next' => 'ܕܒܬܪ',
'wikilog-pager-first' => 'ܩܕܡܝܐ',
'wikilog-pager-last' => 'ܐܚܪܝܐ',
);
/** Egyptian Spoken Arabic (مصرى)
* @author Meno25
*/
$messages['arz'] = array(
'wikilog-desc' => 'يضيف خصائص تدوين، منشئا تهجين ويكي-مدونة',
'wikilog-auto' => 'سجل الويكى آلي',
'wikilog-help' => '{{ns:Help}}:سجل الويكي',
'right-wl-postcomment' => 'كتابه تعليقات على مقالات سجل الويكي',
'right-wl-moderation' => 'مراجعه تعليقات مقالات سجل الويكي',
'wikilog-specialwikilog-title' => 'سجلات الويكي',
'wikilog-log-pagename' => 'سجل أفعال سجل الويكي',
'wikilog-log-pagetext' => 'بالأسفل قائمه بأفعال سجل الويكى.',
'wikilog-log-cmt-approve' => 'وافق على التعليق "[[$1]]"',
'wikilog-log-cmt-reject' => 'رفض التعليق "[[$1]]"',
'wikilog-log-cmt-rejdel' => 'تعليقات سجل الويكى المرفوضه من [[Special:Contributions/$1|$1]]',
'wikilog-tab' => 'سجل الويكي',
'wikilog-tab-title' => 'أفعال سجل الويكي',
'wikilog-missing-wikilog' => 'هذه هى صفحه [[{{int:wikilog-help}}|سجل الويكي]] ل[[{{FULLPAGENAME}}]].
سجل الويكى هذا لا يوجد حاليا.
حتى تنشر المقالات وتفعل خصائص سجل الويكى الأخرى، يجب أن يتم إنشاؤه أولا.
* <span class="plainlinks">[{{fullurl:{{FULLPAGENAME}}|action=edit}} أنشئ سجل الويكى هذا].</span>',
'wikilog-information' => 'معلومات سجل الويكي',
'wikilog-post-count-published' => 'هناك {{PLURAL:$1|مقاله واحده منشورة|$1 مقاله منشورة}} فى سجل الويكى هذا',
'wikilog-post-count-drafts' => 'هناك {{PLURAL:$1|مقاله واحده غير منشوره (مسودة)|$1 مقاله غير منشوره (مسودة)}}',
'wikilog-post-count-all' => 'إجمالا هناك {{PLURAL:$1|مقاله واحدة|$1 مقالة}}.',
'wikilog-new-item' => 'إنشاء مقاله سجل ويكى جديدة',
'wikilog-new-item-go' => 'إنشاء',
'wikilog-item-name' => 'اسم المقالة:',
'wikilog-published' => 'منشور',
'wikilog-updated' => 'محدث',
'wikilog-draft' => 'مسودة',
'wikilog-authors' => 'مؤلفون',
'wikilog-wikilog' => 'سجل الويكي',
'wikilog-title' => 'عنوان',
'wikilog-actions' => 'أفعال',
'wikilog-comments' => 'تعليقات',
'wikilog-replies' => 'ردود',
'wikilog-view-archives' => 'أرشيفات',
'wikilog-view-summary' => 'ملخص',
'wikilog-draft-title-mark' => '(مسودة)',
'wikilog-anonymous-mark' => '(مجهول)',
'wikilog-pager-newest' => 'أجدد',
'wikilog-pager-oldest' => 'أقدم',
'wikilog-pager-prev' => 'سابق',
'wikilog-pager-next' => 'تالى',
'wikilog-pager-first' => 'أول',
'wikilog-pager-last' => 'آخر',
'wikilog-pager-empty' => '(لا مدخلات)',
'wikilog-no-comments' => 'لا تعليقات',
'wikilog-has-comments' => '{{PLURAL:$1|تعليق واحد|$1 تعليق}}',
'wikilog-summary-footer' => 'أرسل بواسطه $7 إلى [[$1|$2]] فى $8 الساعه $9 ($15), $10.',
'wikilog-summary-footer-single' => 'أرسل بواسطه $7 فى $8 الساعه $9 ($15), $10.',
'wikilog-summary-uncategorized' => 'غير مصنف',
'wikilog-summary-categories' => 'مصنف تحت $2',
'wikilog-summary-more' => '[[$3|→ استكمال القراءه...]]',
'wikilog-author-signature' => '[[{{ns:User}}:$1|$1]] ([[{{ns:User_talk}}:$1|نقاش]])',
'wikilog-edit-fieldset-legend' => 'خيارات سجل الويكي:',
'wikilog-edit-signpub' => 'وقع وانشر هذه المقالة',
'wikilog-edit-signpub-tooltip' => 'يسبب هذه المقاله أن يتم توقيعها ونشرها فى سجلها للويكى عند حفظها.
لا تعلم على هذا الصندوق لإبقاء المقاله كمسوده.',
'wikilog-comment-pending' => 'هذا التعليق بانتظار الموافقه.',
'wikilog-comment-deleted' => 'هذا التعليق تم حذفه.',
'wikilog-comment-autosumm' => 'تعليق جديد بواسطه $1: $2',
'wikilog-reply-to-comment' => 'اكتب ردا لهذا التعليق',
'wikilog-comment-page' => 'اذهب إلى صفحه هذا التعليق',
'wikilog-comment-edit' => 'عدل هذا التعليق',
'wikilog-comment-delete' => 'احذف هذا التعليق',
'wikilog-comment-history' => 'عرض تاريخ التعليق',
'wikilog-comment-approve' => 'وافق على هذا التعليق (فعل لحظي)',
'wikilog-comment-reject' => 'ارفض هذا التعليق (فعل لحظي)',
'wikilog-newtalk-text' => '<!-- صفحه فارغه منشأه بواسطه سجل الويكى -->',
'wikilog-newtalk-summary' => 'تم إنشاؤه تلقائيا بواسطه سجل الويكي',
'wikilog-feed-description' => 'اقرأ أحدث الكتابات فى هذا التلقيم.',
'wikilog-title-comments' => 'تعليقات - $1',
'wikilog-error-msg' => 'سجل الويكي: $1',
'wikilog-error-title' => 'خطأ سجل الويكي',
'wikilog-invalid-param' => 'محدد غير صحيح: $1.',
'wikilog-invalid-author' => 'مؤلف غير صحيح: $1.',
'wikilog-invalid-date' => 'تاريخ غير صحيح: $1.',
'wikilog-invalid-tag' => 'وسم غير صحيح: $1.',
'wikilog-invalid-file' => 'ملف غير صحيح: $1.',
'wikilog-file-not-found' => 'ملف غير موجود: $1.',
'wikilog-not-an-image' => 'الملف ليس صورة: $1.',
'wikilog-out-of-context' => 'تحذير: وسوم سجل الويكى يتم استخدامها خخارج المحتوى.
يجب أن يتم استخدامها فقط فى المقالات فى نطاق سجل الويكى.',
'wikilog-too-many-authors' => 'تحذير: عدد كبير من المؤلفين معروضين فى تعليق سجل الويكى هذا.',
'wikilog-too-many-tags' => 'تحذير: عدد كبير من الوسوم معروضه فى تعليق سجل الويكى هذا.',
'wikilog-comment-is-empty' => 'التعليق المكتوب فارغ.',
'wikilog-comment-too-long' => 'التعليق المكتوب طويل جدا.',
'wikilog-comment-invalid-name' => 'الاسم الموفر غير صحيح.',
'wikilog-no-such-article' => 'مقاله سجل الويكى المطلوبه غير موجوده.',
'wikilog-reading-draft' => 'مقاله سجل الويكى هذه مسوده، لم يتم نشرها بعد.',
'wikilog-posting-anonymously' => 'أنت حاليا لست مسجل الدخول؛
تعليقك سيتم تسجيله كمجهول، معرف بواسطه عنوان اتصالك بالإنترنت.
ينبغى إما أن توفر اسما مستعارا بالاعلى لتعريف تعليقك أو $1 له ليتم عزوه بشكل صحيح',
'wikilog-anonymous-moderated' => 'بعد كتابه تعليقك، لن يكون ظاهرا فورا على هذه الصفحه.
التعليق سيظهر فقط بعد مراجعته بواسطه إدارى.',
'wikilog-post-comment' => 'أرسل ردا جديدا',
'wikilog-post-reply' => 'أرسل ردا جديدا',
'wikilog-form-legend' => 'بحث عن تعليقات سجل الويكي',
'wikilog-form-wikilog' => 'سجل الويكي:',
'wikilog-form-category' => 'التصنيف:',
'wikilog-form-name' => 'الاسم:',
'wikilog-form-author' => 'المؤلف:',
'wikilog-form-tag' => 'الوسم:',
'wikilog-form-date' => 'التاريخ:',
'wikilog-form-status' => 'الحالة:',
'wikilog-form-preview' => 'المعاينة:',
'wikilog-form-comment' => 'التعليق:',
'wikilog-show-all' => 'كل التعليقات',
'wikilog-show-published' => 'منشور',
'wikilog-show-drafts' => 'مسودات',
'wikilog-submit' => 'تنفيذ',
'wikilog-preview' => 'معاينة',
'wikilog-edit-lc' => 'عدل',
'wikilog-reply-lc' => 'رد',