-
-
Notifications
You must be signed in to change notification settings - Fork 798
Expand file tree
/
Copy pathstrings.xml
More file actions
2047 lines (1992 loc) · 172 KB
/
strings.xml
File metadata and controls
2047 lines (1992 loc) · 172 KB
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
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<string name="app_name_prod">Wikipedia</string>
<string name="app_name_beta" tools:ignore="UnusedResources">Wikipedia Beta</string>
<string name="app_name_alpha" tools:ignore="UnusedResources">Wikipedia Alpha</string>
<string name="wikimedia">Wikimedia</string>
<string name="nav_item_back">Back</string>
<string name="page_tabs_back">Back</string>
<string name="nav_item_forward">Forward</string>
<string name="search_hint">Search Wikipedia</string>
<string name="search_hint_voice_search">Voice input search</string>
<string name="search_hint_search_languages">Search for a language</string>
<string name="search_back_button_content_description">Go back</string>
<string name="search_clear_query_content_description">Clear query</string>
<string name="search_icon_content_description">Search</string>
<string name="filter_hint_filter_my_lists_and_articles">Filter my lists</string>
<string name="nav_item_suggested_edits">Edits</string>
<string name="nav_item_more">More</string>
<string name="nav_item_search">Search</string>
<string name="nav_item_contribute">Contribute</string>
<string name="error_network_error">Cannot connect to the Internet.</string>
<string name="page_error_retry">Retry</string>
<string name="card_offline_error_retry">Retry</string>
<string name="storage_access_error_retry">Retry</string>
<string name="article_load_error_retry">Retry</string>
<string name="offline_load_error_retry">Retry</string>
<string name="page_error_back_to_main">Go back</string>
<string name="error_back">Go back</string>
<string name="error_next">Next</string>
<string name="menu_clear_all_history">Clear history</string>
<string name="history_item_deleted">%s removed from history</string>
<string name="history_items_deleted">%d articles removed from history</string>
<string name="history_item_delete_undo">Undo</string>
<string name="notification_archive_undo">Undo</string>
<string name="app_settings">App settings</string>
<string name="search_tab_tooltip">Tap the icon again to directly start typing a search term.</string>
<string name="history_list_title">History</string>
<string name="image_content_description">Image: %s</string>
<string name="page_content_description">Page: %s</string>
<string name="wikimedia_commons">Wikimedia Commons</string>
<string name="wikidata">Wikidata</string>
<!-- Saved pages -->
<string name="dialog_title_clear_history">Clear browsing history</string>
<string name="dialog_message_clear_history">This will delete all of your browsing history, and close any currently open tabs. Are you sure?</string>
<string name="dialog_message_clear_history_yes">Yes</string>
<string name="dialog_message_clear_history_no">No</string>
<string name="share_via">Share via</string>
<string name="image_share_via">Share via</string>
<string name="search_redirect_from">Redirected from %s</string>
<!-- Page Edit History -->
<string name="page_edit_history_activity_title">Revision history: %s</string>
<string name="page_edit_history_minor_edit"><![CDATA[<b>m</b> %s]]></string>
<string name="page_edit_history_comment_placeholder">Empty edit summary</string>
<string name="page_edit_history_search_or_filter_edits_hint">Search or filter edits</string>
<string name="page_edit_history_filter_by">Filter by</string>
<string name="page_edit_history_filter_by_all">All edits (%s)</string>
<string name="page_edit_history_filter_by_user">User edits (%s)</string>
<string name="page_edit_history_filter_by_anon">Unregistered edits (%s)</string>
<string name="page_edit_history_filter_by_bot">Bot edits (%s)</string>
<string name="page_edit_history_metrics_content_description">Metrics from %1$s to %2$s</string>
<plurals name="page_edit_history_article_edits_since_year">
<item quantity="one">%1$d edit since %2$s</item>
<item quantity="other">%1$d edits since %2$s</item>
</plurals>
<plurals name="edits_since_year_per_wiki">
<item quantity="one">%1$d edit since %2$s (%3$s)</item>
<item quantity="other">%1$d edits since %2$s (%3$s)</item>
</plurals>
<string name="page_edit_history_empty_search_message"><![CDATA[Try changing <a href="#">filters</a> to see more edits]]></string>
<!-- Page toolbar menu -->
<string name="menu_page_show_tabs">Show tabs</string>
<string name="menu_page_other_languages">Change language</string>
<string name="menu_page_find_in_page">Find in article</string>
<string name="menu_page_add_to_watchlist">Add to Watchlist</string>
<string name="menu_page_watch">Watch</string>
<string name="menu_page_unwatch">Unwatch</string>
<string name="menu_page_view_talk">View talk page</string>
<string name="menu_page_talk_page">Talk page</string>
<string name="menu_page_view_edit_history">View edit history</string>
<string name="menu_page_edit_history">Edit history</string>
<string name="menu_page_remove_from_watchlist">Remove from Watchlist</string>
<string name="menu_page_watched">Watched</string>
<string name="edit_section_find_in_page">Find in page</string>
<string name="menu_page_font_and_theme">Font and theme</string>
<string name="menu_page_add_to_list">Add to reading list</string>
<string name="menu_page_add_to_default_list">Save</string>
<string name="feed_card_add_to_list">Add to reading list</string>
<string name="feed_card_add_to_default_list">Save</string>
<string name="menu_page_share">Share link</string>
<string name="menu_article_share">Share article</string>
<string name="menu_page_article_share">Share</string>
<string name="menu_page_open_a_new_tab">Open a new tab</string>
<string name="menu_page_new_tab">New tab</string>
<string name="menu_page_reading_lists">Reading lists</string>
<string name="menu_page_recently_viewed">Recently viewed</string>
<string name="menu_page_archive">Archive</string>
<!-- Long press menu -->
<string name="menu_long_press_open_page">Open</string>
<string name="menu_long_press_open_in_places">Open in Places</string>
<string name="menu_long_press_open_in_new_tab">Open in new tab</string>
<string name="menu_long_press_copy_page">Copy link address</string>
<!-- Toolbar menu items -->
<string name="menu_text_select_define">Define</string>
<string name="on_this_day_page_share">Share</string>
<string name="reading_list_page_share">Share</string>
<string name="menu_text_select_edit_here">Edit here</string>
<string name="menu_edit_article">Edit article</string>
<string name="last_updated_text">Last updated %s</string>
<string name="talk_page_link_text">View talk page</string>
<string name="edit_history_link_text">View edit history</string>
<string name="map_view_link_text">View on a map</string>
<string name="other_languages_indication_text">Read in another language</string>
<string name="language_count_link_text">Available in %d other languages</string>
<string name="content_license_cc_by_sa">CC BY-SA 4.0</string>
<string name="edit_save_action_license_logged_in"><![CDATA[By publishing, you agree to the <a href="%1$s">Terms of Use</a>, and to irrevocably release your contributions under the <a href="%2$s">CC BY-SA 4.0</a> license.]]></string>
<string name="edit_save_action_license_anon"><![CDATA[By publishing, you agree to the <a href="%1$s">Terms of Use</a>, and to irrevocably release your contributions under the <a href="%2$s/">CC BY-SA 4.0</a> license. Edits will be attributed to the IP address of your device. If you <a href="https://#login">log in</a>, you will have more privacy.]]></string>
<string name="edit_anon_warning"><![CDATA[Edits will be attributed to the IP address of your device. If you <a href="https://#login">log in</a>, you will have more privacy.]]></string>
<string name="preference_title_language">Wikipedia languages</string>
<string name="langlinks_filter_hint">Search</string>
<string name="langlinks_empty">This page is not available in other languages.</string>
<string name="langlinks_no_match">No languages found</string>
<string name="langlinks_activity_title">Other languages</string>
<string name="langlinks_your_wikipedia_languages">Your Wikipedia languages</string>
<string name="menu_save_changes">Publish changes</string>
<string name="edit_saved_successfully">Edit published!</string>
<string name="stub_article_edit_saved_successfully">Edit published! Changes may take time to appear.</string>
<string name="dialog_message_edit_failed">Edit failed!</string>
<string name="dialog_message_edit_failed_retry">Retry</string>
<string name="dialog_message_edit_failed_cancel">Cancel</string>
<string name="dialog_message_leaving_edit">Your changes have not been published yet. Are you sure you want to leave this page?</string>
<string name="dialog_message_leaving_edit_leave">Leave</string>
<string name="dialog_message_leaving_edit_stay">Stay</string>
<string name="dialog_confirm_delete_donation_history_title">Confirm deletion</string>
<string name="dialog_confirm_delete_donation_history_message">This will only apply to donations made from this device.</string>
<string name="dialog_confirm_delete_donation_history_delete">Delete</string>
<string name="dialog_confirm_delete_donation_history_cancel">Cancel</string>
<string name="menu_show_toc">Table of Contents</string>
<string name="search_no_results_found">No results found</string>
<string name="search_reading_list_no_results">No results found in \"%s\"</string>
<string name="search_reading_lists_no_results">No results found in reading lists</string>
<string name="search_history_no_results">No results found in history</string>
<string name="edit_section_captcha_message">To help protect against automated spam, please enter the words that appear below</string>
<string name="edit_section_captcha_request_an_account_message"><![CDATA[Can\'t see the image? <a href="https://en.wikipedia.org/wiki/Wikipedia:Request_an_account">Request an account</a>]]></string>
<string name="edit_section_captcha_hint">Repeat words from above</string>
<string name="title_captcha">Enter CAPTCHA</string>
<string name="edit_section_captcha_reload">Tap CAPTCHA to reload</string>
<string name="nav_item_login">Log in to Wikipedia</string>
<string name="login_username_hint">Username</string>
<string name="login_password_hint">Password</string>
<string name="account_creation_password_hint">Password</string>
<string name="login_2fa_hint">Two-factor authentication code</string>
<string name="login_2fa_other_workflow_error_msg">Two-factor authentication required! Please login from the main screen, and enter the code from your 2FA token.</string>
<string name="login_email_auth_hint">Email verification code</string>
<string name="login_email_auth_other_workflow_error_msg">Email verification required! Please login from the main screen, and enter your email verification code.</string>
<string name="login_background_error_msg">Unable to re-login. Please go back to the main screen and log in manually.</string>
<string name="onboarding_card_login">Log in</string>
<string name="page_editing_login">Log in</string>
<string name="reading_lists_sync_login">Log in</string>
<string name="create_account_login">Log in</string>
<string name="menu_login">Log in</string>
<string name="login_activity_title">Log in</string>
<string name="login_in_progress_dialog_message">Logging you in…</string>
<string name="login_success_toast">Logged in!</string>
<string name="reset_password_title">Set your password</string>
<string name="reset_password_description">You logged in with a temporary password. To finish logging in, please set your new password here.</string>
<string name="reset_password_hint">New password</string>
<string name="reset_password_button">Save and log in</string>
<string name="preference_title_logout">Log out</string>
<string name="toast_logout_complete">Logged out</string>
<string name="logout_prompt">This will log you out on all devices where you are currently logged in. Do you want to continue?</string>
<string name="logout_dialog_cancel_button_text">Cancel</string>
<string name="logged_out_in_background_title">Logged out</string>
<string name="logged_out_in_background_dialog">You have been logged out of Wikipedia. Would you like to log in again?</string>
<string name="logged_out_in_background_login">Log in</string>
<string name="logged_out_in_background_cancel">Cancel</string>
<string name="account_vanish_request_title">Vanish account</string>
<string name="account_vanish_request_confirm_title">Vanish account warning</string>
<string name="account_vanish_request_confirm"><![CDATA[Vanishing is a <b>last resort</b> and should <b>only be used when you wish to stop editing forever</b> and also to hide as many of your past associations as possible.<br/><br/>Account deletion on Wikipedia is done by changing your account name to make it so others cannot recognize your contributions in a process called account vanishing. <b>Vanishing does not guarantee complete anonymity or remove contributions to the projects</b>.]]></string>
<string name="history_empty_title">No recently viewed articles</string>
<string name="history_empty_message">Track what you\'ve been reading here.</string>
<string name="history_offline_articles_toast">Some articles in history may not be viewable while offline.</string>
<string name="search_empty_message">Search and read the free encyclopedia in your language</string>
<string name="search_empty_message_multilingual_upgrade">Search Wikipedia in more languages</string>
<string name="delete_selected_items">Delete selected items</string>
<string name="wp_stylized"><![CDATA[<big>W</big>IKIPEDI<big>A</big>]]></string>
<string name="create_account_username_hint">Username</string>
<string name="login_dont_have_account">Don\'t have an account?</string>
<string name="login_join_wikipedia">Join Wikipedia</string>
<string name="login_forgot_password">Forgot your password?</string>
<string name="create_account_already_have">Already have an account?</string>
<string name="create_account_activity_title">Create an account</string>
<string name="dialog_create_account_checking_progress">Verifying</string>
<string name="create_account_email_hint">Email (Optional)</string>
<string name="create_account_password_repeat_hint">Repeat password</string>
<string name="create_account_password_is_username">Password can\'t be the same as username</string>
<string name="create_account_passwords_mismatch_error">Passwords don\'t match</string>
<string name="create_account_email_error">Invalid email address</string>
<string name="create_account_username_error">Invalid characters in username</string>
<string name="create_account_password_error">The password must be at least 8 characters</string>
<string name="create_account_generic_error">Could not create account</string>
<string name="create_account_next">Next</string>
<string name="email_recommendation_dialog_title">Create account with no email address?</string>
<string name="email_recommendation_dialog_message"><![CDATA[Although the email address is optional, it is <b>highly recommended</b>, since an email is needed for account recovery if you ever lose your password.]]></string>
<string name="email_recommendation_message">Recommended since email is needed for account recovery.</string>
<string name="email_recommendation_dialog_create_without_email_action">Continue without email</string>
<string name="email_recommendation_dialog_create_with_email_action">Add an email address</string>
<string name="create_account_button">Create account</string>
<string name="create_account_name_unavailable">The user name \"%s\" is not available. Please choose a different name.</string>
<string name="create_account_ip_block_message">Sorry, your IP address is currently blocked from creating new accounts.</string>
<string name="create_account_ip_block_help_url">https://en.wikipedia.org/wiki/Help:I_have_been_blocked</string>
<string name="create_account_ip_block_details">Details</string>
<string name="preferences_general_heading">General</string>
<string name="preferences_account_heading">Account</string>
<string name="wikipedia_app_faq">Wikipedia App FAQ</string>
<string name="send_feedback">Send app feedback</string>
<string name="create_account_account_created_toast">Account created!</string>
<string name="preferences_heading_syncing">Syncing</string>
<string name="preferences_heading_data_usage">Data usage</string>
<string name="preferences_heading_experimental">Experimental</string>
<string name="preference_title_sync_reading_lists_from_account">Reading list syncing</string>
<string name="preference_title_download_reading_list_articles">Download reading list articles</string>
<string name="preference_summary_sync_reading_lists">Sync reading lists across different devices by saving them to your Wikipedia account</string>
<string name="preference_summary_sync_reading_lists_from_account">Sync reading lists across different devices by saving them to your Wikipedia account \"%s\"</string>
<string name="preference_dialog_of_turning_off_reading_list_sync_title">Remove synced reading lists from \"%s\"?</string>
<string name="preference_dialog_of_turning_off_reading_list_sync_text">This will completely delete all previously synced reading lists from remote storage. Remove all synced lists from your account \"%s\"?</string>
<string name="preference_title_auto_upload_crash_reports">Send crash reports</string>
<string name="preference_summary_auto_upload_crash_reports">Allow the app to send crash reports to a third-party service provider automatically so that we can review your crash and fix the bug faster and more easily.</string>
<string name="editing_error_spamblacklist">Links to blocked domains (%s) detected. Please remove them and try again.</string>
<string name="history_filter_list_hint">Filter history</string>
<string name="error_can_not_process_link">Could not display this link</string>
<string name="page_protected_autoconfirmed">This page has been semi-protected.</string>
<string name="page_protected_sysop">This page has been fully protected.</string>
<string name="page_protected_other">This page has been protected to the following levels: %s</string>
<string name="page_protected_can_not_edit">Sorry, your account does not have sufficient privileges to edit this page at this time.</string>
<string name="page_protected_can_not_edit_anon">Sorry, this page cannot be edited anonymously at this time.</string>
<string name="page_protected_can_not_edit_title">This page is protected</string>
<string name="page_watchlist_overflow_menu_onboarding_tooltip_title">Add to Watchlist</string>
<string name="page_watchlist_overflow_menu_onboarding_tooltip_text"><![CDATA[Keep track of what\'s happening to articles you are interested in. Tap the overflow menu and select <b>Add to Watchlist</b> to see changes to an article.]]></string>
<string name="settings_item_preferences">Settings</string>
<string name="settings_activity_title">Settings</string>
<string name="about_description">About the Wikipedia app</string>
<string name="privacy_policy_description">Privacy policy</string>
<string name="terms_of_use_description">Terms of use</string>
<string name="about_wikipedia_url">https://en.wikipedia.org/wiki/Wikipedia:About</string>
<string name="privacy_policy_url">https://foundation.wikimedia.org/wiki/Special:MyLanguage/Privacy_policy</string>
<string name="offline_reading_and_data_url">https://www.mediawiki.org/wiki/Special:MyLanguage/Wikimedia_Apps/Android_FAQ#Offline_reading_and_data</string>
<string name="android_app_faq_url">https://www.mediawiki.org/wiki/Special:MyLanguage/Wikimedia_Apps/Android_FAQ</string>
<string name="terms_of_use_url">https://foundation.wikimedia.org/wiki/Special:MyLanguage/Terms_of_Use</string>
<string name="android_app_request_an_account_url">https://en.wikipedia.org/wiki/Wikipedia:Request_an_account</string>
<string name="cc_by_sa_4_url">https://creativecommons.org/licenses/by-sa/4.0/</string>
<string name="cc_0_url">https://creativecommons.org/publicdomain/zero/1.0/</string>
<string name="android_app_edit_help_url">https://mediawiki.org/wiki/Special:MyLanguage/Wikimedia_Apps/Android_Suggested_edits</string>
<string name="suggested_edits_image_tags_help_url">https://mediawiki.org/wiki/Special:MyLanguage/Wikimedia_Apps/Android_Suggested_edits#Image_tags</string>
<string name="about_libraries_heading">Libraries used</string>
<string name="about_contributors_heading">Contributors</string>
<string name="about_contributors"><![CDATA[<a href="https://www.mediawiki.org/wiki/Special:MyLanguage/Wikimedia_Apps/Team/Android">Team page</a>]]></string>
<string name="about_translators_heading">Translators</string>
<string name="about_translators_translatewiki"><![CDATA[This app was translated by the volunteer translators at <a href="https://translatewiki.net">translatewiki.net</a>.]]></string>
<string name="about_app_license_heading">License</string>
<string name="about_app_license"><![CDATA[Source code available on <a href=\"https://github.com/wikimedia/apps-android-wikipedia\">GitHub</a> under the <a href=\"https://www.apache.org/licenses/LICENSE-2.0\">Apache 2.0 License</a>. Unless otherwise specified, content is available under a <a href=\"https://creativecommons.org/licenses/by-sa/4.0\">Creative Commons Attribution-ShareAlike License</a>.]]></string>
<string name="about_wmf"><![CDATA[A product of the <a href="https://wikimediafoundation.org/">Wikimedia Foundation</a>]]></string>
<string name="about_activity_title">About</string>
<string name="about_logo_content_description">Wikipedia puzzle globe logo</string>
<string name="edit_abandon_confirm">The page has been modified. Are you sure you want to exit without saving your changes?</string>
<string name="edit_abandon_confirm_yes">Yes</string>
<string name="edit_abandon_confirm_no">No</string>
<string name="user_blocked_from_editing_title">Blocked</string>
<string name="user_logged_in_blocked_from_editing" type="id">Your user account has been blocked from editing on this wiki.</string>
<string name="user_anon_blocked_from_editing" type="id">Your IP address has been blocked from editing.</string>
<string name="edit_how_page_improved">How did you improve the page?</string>
<string name="edit_next">Next</string>
<string name="edit_done">Publish</string>
<string name="edit_preview">Preview</string>
<string name="edit_undo">Undo</string>
<string name="edit_redo">Redo</string>
<string name="edit_rollback">Rollback</string>
<string name="edit_warn">Warn</string>
<string name="edit_damage">Damage %s</string>
<string name="edit_intent">Intent %s</string>
<plurals name="edit_diff_bytes">
<item quantity="one">%s byte</item>
<item quantity="other">%s bytes</item>
</plurals>
<string name="edit_zoom_in">Zoom in</string>
<string name="edit_zoom_out">Zoom out</string>
<string name="edit_summary_tag_typo">Fixed typo</string>
<string name="edit_summary_tag_grammar">Fixed grammar</string>
<string name="edit_summary_tag_links">Added links</string>
<string name="edit_summary_tag_other">Other</string>
<string name="edit_summary_tag_other_hint">Other ways you improved the page</string>
<string name="edit_summary_added_short_description">Added short description</string>
<string name="edit_summary_updated_short_description">Updated short description</string>
<string name="edit_conflict_title">Edit conflict</string>
<string name="edit_conflict_message">The page has already been modified by a different user, and is conflicting with your edit. Please copy your edits, go back and refresh the page, then try editing again.</string>
<string name="edit_notices">Edit notices</string>
<string name="edit_notices_please_read">Please read before editing</string>
<string name="edit_notices_show_auto">Show edit notices automatically</string>
<string name="edit_notices_tooltip">Tap this button to view edit notices for this article.</string>
<string name="find_next">Find next</string>
<string name="find_previous">Find previous</string>
<string name="find_first_occurence">This is the first occurrence</string>
<string name="find_last_occurence">This is the last occurrence</string>
<string name="article_opened_in_background_tab">The article has been opened in a background tab.</string>
<!-- need this and next? -->
<string name="abusefilter_title_warn">This may be an unconstructive edit. Are you sure you want to publish it?</string>
<string name="abusefilter_title_disallow">You cannot publish this edit. Please go back and change it.</string>
<string name="abusefilter_text_warn"><![CDATA[An automated filter has identified this edit as potentially unconstructive. It may contain one or more of the following:<br /><br />· Typing in all caps<br />· Blanking articles or spamming<br />· Irrelevant external links or images<br />· Repeating characters]]></string>
<string name="abusefilter_text_disallow"><![CDATA[An automated filter has identified this edit as potentially unconstructive, or potential vandalism.<br /><br />Wikipedia is an encyclopedia and only neutral, notable content belongs here.]]></string>
<string name="page_similar_titles">Similar pages</string>
<string name="search_did_you_mean">Did you mean \"%s\"?</string>
<string name="search_recent_header">Recent searches:</string>
<string name="search_results_count_zero">No results</string>
<plurals name="search_results_count">
<item quantity="one">1 result</item>
<item quantity="other">%d results</item>
</plurals>
<string name="button_clear_all_recent_searches">Clear recent searches</string>
<string name="clear_recent_searches_confirm">Are you sure you want to clear your search history?</string>
<string name="clear_recent_searches_confirm_yes">Yes</string>
<string name="clear_recent_searches_confirm_no">No</string>
<string name="error_browser_not_found">Could not open web page (no browser app found).</string>
<string name="table_infobox">Quick facts</string>
<string name="table_other">More information</string>
<string name="table_close">Close</string>
<string name="widget_name_featured_page">Wikipedia featured page</string>
<string name="widget_title_featured_page">Today\'s featured page:</string>
<string name="widget_name_search">Wikipedia search</string>
<string name="widget_description_search">The fastest way to search Wikipedia</string>
<string name="widget_description_featured_page">The best articles Wikipedia has to offer</string>
<string name="wiktionary_no_definitions_found">No definitions found.</string>
<string name="alpha_update_notification_title">New alpha update available</string>
<string name="alpha_update_notification_text">Tap to download</string>
<string name="dialog_close_description">Close</string>
<string name="preference_title_show_images">Show images</string>
<string name="preference_summary_show_images">Enable or disable loading of images in pages. Uncheck this setting if your Internet connection is slow, or if your data plan is limited.</string>
<string name="preference_title_download_only_over_wifi">Download only over Wi-Fi</string>
<string name="dialog_title_download_only_over_wifi">Confirm download using mobile data?</string>
<string name="dialog_text_download_only_over_wifi">You have "Download only over Wi-Fi" turned on in settings. Do you want to allow using your mobile data plan for this download only?</string>
<string name="dialog_title_download_only_over_wifi_allow">Allow</string>
<string name="read_more_section">Read more</string>
<string name="about_article_section">About this article</string>
<string name="menu_gallery_visit_image_page">Go to image page</string>
<string name="gallery_error_draw_failed">Could not draw the image.</string>
<string name="license_title">License for %s</string>
<string name="gallery_menu_share">Share</string>
<string name="gallery_share_error">Could not share image: %s</string>
<string name="gallery_save_progress">Downloading file…</string>
<string name="gallery_save_success">File saved.</string>
<string name="gallery_error_video_failed">Could not play the video.</string>
<string name="gallery_save_image_write_permission_rationale">Permission to write to storage on your device is required for saving images.</string>
<string name="gallery_edit_button_content_description">Edit image caption</string>
<string name="gallery_add_image_caption_button">Add image caption</string>
<string name="gallery_add_image_caption_in_language_button">Add image caption (%s)</string>
<string name="err_cannot_save_file">Cannot save file</string>
<string name="expand_refs">Tap to expand</string>
<string name="cc_logo">Creative Commons license</string>
<string name="captcha_image">Captcha image</string>
<string name="gallery_fair_use_license">Fair use</string>
<string name="gallery_uploader_unknown">Uploader unknown</string>
<string name="gallery_not_available_offline_snackbar">Gallery view not available offline.</string>
<string name="gallery_not_available_offline_snackbar_dismiss">Dismiss</string>
<string name="menu_new_tab">New tab</string>
<string name="menu_close_all_tabs">Close all tabs</string>
<string name="close_all_tabs_confirm">Are you sure you want to close all tabs?</string>
<string name="close_all_tabs_confirm_yes">Yes</string>
<string name="close_all_tabs_confirm_no">No</string>
<string name="button_close_tab">Close tab</string>
<string name="unnamed_tab_closed">Tab closed.</string>
<string name="tab_item_closed">%s closed.</string>
<string name="all_tab_items_closed">All tabs closed.</string>
<string name="tool_tip_bookmark_icon_title">Add to reading list</string>
<string name="tool_tip_bookmark_icon_text">Tap on the bookmark icon to save the article to a reading list.</string>
<string name="page_view_in_browser">View page in browser</string>
<string name="tool_tip_toc_title">Table of contents quick access</string>
<string name="tool_tip_toc_text">You can now swipe left to open the table of contents, and also tap and drag on this scroller button to quickly jump to different sections of an article.</string>
<string name="error_response_malformed">Response from the server was not formatted correctly.</string>
<string name="error_unknown">An unknown error occurred.</string>
<string name="format_error_server_message">Message: \"%s\"</string>
<string name="address_copied">Address copied to clipboard.</string>
<string name="text_copied">Text copied to clipboard.</string>
<string name="button_continue_to_article">Read article</string>
<string name="button_continue_to_talk_page">Open talk page</string>
<string name="button_continue_to_disambiguation">View similar pages</string>
<string name="link_preview_disambiguation_description">This title relates to more than one page:</string>
<string name="button_add_to_reading_list">Add to reading list</string>
<string name="page_offline_notice_cannot_load_while_offline">Article cannot be loaded while offline.</string>
<string name="page_offline_notice_add_to_reading_list">Hint: Add the article to a reading list and it will be downloaded once you\'re back online.</string>
<string name="page_offline_notice_last_date">You are reading an offline version of this article saved on %s.</string>
<string name="redirected_from_snackbar">Redirected from \"%s\"</string>
<string name="button_get_directions">Get directions</string>
<string name="error_no_maps_app">Could not find any apps that provide directions.</string>
<string name="preference_title_customize_explore_feed">Explore feed</string>
<string name="preference_title_show_link_previews">Show link previews</string>
<string name="preference_summary_customize_explore_feed">Customize the Explore feed</string>
<string name="preference_summary_show_link_previews">Show a quick preview of articles when tapping on links.</string>
<string name="preference_title_collapse_tables">Collapse tables</string>
<string name="preference_summary_collapse_tables">Automatically collapse tables in articles, such as infoboxes, references, and notes.</string>
<string name="nav_item_donate">Donate</string>
<string name="nav_item_year_in_review">Year In Review</string>
<string name="error_voice_search_not_available">Sorry, voice recognition is not available.</string>
<string name="location_service_disabled">Location services are disabled.</string>
<string name="enable_location_service">Enable</string>
<string name="location_permissions_enable_prompt">Enable location permissions to see places near you.</string>
<string name="location_permissions_enable_action">Turn on</string>
<string name="error_webview_updating">The Android System WebView is currently being updated. Please try again in a moment.</string>
<plurals name="multi_items_selected">
<item quantity="one">%d selected</item>
<item quantity="other">%d selected</item>
</plurals>
<string name="multi_select_items_selected">%d selected</string>
<string name="error_message_generic">An error occurred</string>
<string name="view_link_preview_error_button_dismiss">Dismiss</string>
<string name="link_preview_dialog_read_button">Read</string>
<string name="link_preview_dialog_save_button">Save</string>
<string name="link_preview_dialog_saved_button">Saved</string>
<string name="link_preview_dialog_share_button">Share</string>
<string name="link_preview_stub_placeholder_text">This article is a stub, which means there isn\'t enough content in the article to generate a preview. However, you can change that.</string>
<string name="error_page_does_not_exist">This page does not exist</string>
<string name="error_user_page_does_not_exist"><![CDATA[Wikipedia does not have a <a href="%1$s">user page</a> with this exact name. In general, this page should be created and edited by <b>%2$s</b>. If in doubt, please verify that \"%3$s\" exists.]]></string>
<string name="view_wiki_error_message_offline">Cannot connect to internet</string>
<string name="view_wiki_error_message_timeout">Cannot connect to Wikipedia. Check your network connection, or try again later</string>
<string name="reference_title">Reference %s</string>
<string name="reference_list_title">References</string>
<string name="theme_chooser_dialog_image_dimming_switch_label">Image dimming (in Dark theme)</string>
<string name="preference_title_prefer_offline_content">Prefer offline content</string>
<string name="preference_summary_prefer_offline_content">Save data usage by loading articles that are available offline rather than always loading the latest version of an article</string>
<string name="preference_title_delete_local_donation_history">Clear donation history</string>
<string name="theme_chooser_dialog_match_system_theme_switch_label">Match system theme</string>
<string name="page_footer_license_text">Content is available under $1 unless otherwise noted</string>
<string name="empty_tab_title">New tab</string>
<string name="menu_save_all_tabs">Save all tabs</string>
<string name="error_blocked_title">Your username or IP address has been blocked.</string>
<string name="error_blocked_by"><![CDATA[The block was made by <a href="%2$s">%1$s</a>]]></string>
<string name="error_blocked_reason">The reason given is: %s</string>
<string name="error_blocked_start">Start of block: %s</string>
<string name="error_blocked_expiry">Expiration of block: %s</string>
<string name="error_blocked_id">Block ID: %s</string>
<string name="error_blocked_footer"><![CDATA[You can contact <a href="%2$s">%1$s</a> or another <a href="https://en.wikipedia.org/wiki/Wikipedia:Administrators">administrator</a> to discuss the block.]]></string>
<string name="theme_chooser_menu_item_short_tooltip">Customize your toolbar</string>
<string name="error_blocked_footer_no_blocker"><![CDATA[You can contact an <a href="https://en.wikipedia.org/wiki/Wikipedia:Administrators">administrator</a> to discuss the block.]]></string>
<string name="temp_account_not_logged_in">You are not logged in</string>
<string name="temp_account_anon_ip_dialog_body"><![CDATA[Once you make an edit, your IP address will be associated with your edits.<br /><br /><a href="https://#login">Log in</a> or <a href="https://#createaccount">create an account</a> to get credit for future edits and to access other features.]]></string>
<string name="temp_account_anon_dialog_body"><![CDATA[Once you make an edit, a <b>temporary account</b> will be created for you to protect your privacy. <a href="%1$s">Learn more</a>.<br /><br /><a href="https://#login">Log in</a> or <a href="https://#createaccount">create an account</a> to get credit for future edits and to access other features.]]></string>
<string name="temp_account_temp_dialog_body"><![CDATA[Your edit will be attributed to %1$s. Your IP address will be visible to administrators.<br /><br />If you <a href="https://#login">log in</a> or <a href="https://#createaccount">create an account</a>, your edits will be attributed to a name you choose, among other benefits.]]></string>
<string name="temp_account_dialog_ok">Got it</string>
<string name="temp_account_using_title">You are using a temporary account</string>
<string name="temp_account_dialog_discard">Discard changes and log in</string>
<plurals name="temp_account_created">
<item quantity="one">Temporary account %1$s was created after your edit was published. It will expire in %2$d day.</item>
<item quantity="other">Temporary account %1$s was created after your edit was published. It will expire in %2$d days.</item>
</plurals>
<plurals name="temp_account_expiry">
<item quantity="one">Account will expire in %d day.</item>
<item quantity="other">Account will expire in %d days.</item>
</plurals>
<string name="temp_account_anon_ip_edit_status"><![CDATA[<b>You are not logged in.</b> Once you make an edit, your IP address will be associated with your edits.]]></string>
<string name="temp_account_anon_edit_status"><![CDATA[<b>You are not logged in.</b> Once you make an edit, a temporary account will be created for you to protect your privacy. <a href="%1$s">Learn more</a>]]></string>
<string name="temp_account_edit_status"><![CDATA[<b>You are using a temporary account.</b> Your edit will be attributed to %1$s. <a href="%2$s">Learn more</a>.]]></string>
<string name="temp_account_login_status"><![CDATA[<b>You are currently using a temporary account.</b> Edits made with the temporary account %1$s will not be carried over to your permanent account when you log in. Log in or create an account to get credit to your username, among other benefits.]]></string>
<string name="temp_account_end_session">End session</string>
<string name="temp_account_end_session_confirm">This will log you out of your temporary account. Do you want to continue?</string>
<!-- Crash reporter -->
<string name="crash_report_activity_title">Application error</string>
<string name="crash_report_relaunch_or_quit">We\'re sorry, the Wikipedia app has experienced an error and was terminated.\n\nWould you like to start over or quit?</string>
<string name="crash_report_relaunch">Start over</string>
<string name="crash_report_quit">Quit</string>
<!-- /Crash reporter -->
<!-- Article menu bar -->
<string name="article_menu_bar_save_button">Save</string>
<string name="article_menu_bar_language_button">Language</string>
<string name="article_menu_bar_search_button">Search</string>
<string name="article_menu_bar_theme_button">Theme</string>
<string name="article_menu_bar_contents_button">Contents</string>
<string name="article_header_edit_hint">Edit…</string>
<string name="article_header_edit_description">Edit article description</string>
<string name="article_header_edit_lead_section">Edit introduction</string>
<!-- /Article menu bar -->
<!-- Theme -->
<string name="color_theme_select">Theme</string>
<string name="color_theme_light">Light</string>
<string name="color_theme_dark">Dark</string>
<string name="color_theme_black">Black</string>
<string name="color_theme_sepia">Sepia</string>
<string name="color_theme_test_title">Sample text</string>
<string name="color_theme_test_text">Drag the slider to change the size of the text that is used when reading articles. To set the text size throughout the rest of the app, change your system text size.</string>
<string name="preference_title_app_theme">App theme</string>
<string name="preference_summary_color_theme">Switch to using the app\'s dark color theme</string>
<string name="text_size_increase">Increase text size</string>
<string name="text_size_decrease">Decrease text size</string>
<string name="text_size_percent_default">%s (Default)</string>
<string name="text_style_title">Font</string>
<string name="theme_category_reading">Reading</string>
<string name="theme_category_editing">Editing</string>
<string name="reading_focus_mode">Reading focus mode</string>
<string name="reading_focus_mode_detail">Hides edit features and bottom toolbar on scroll</string>
<string name="editing_syntax_highlight_label">Syntax highlighting</string>
<string name="editing_line_numbers_label">Show line numbers</string>
<string name="editing_monospace_font_label">Use monospace font</string>
<string name="editing_typing_suggestions">Show typing suggestions</string>
<!-- /Theme -->
<!-- Reading lists -->
<string name="nav_item_saved">Saved</string>
<string name="reading_list_save_to">Save to reading list</string>
<string name="reading_list_move_to">Move to reading list</string>
<string name="reading_list_create_new">Create new</string>
<string name="reading_list_title_exists">Reading list \"%s\" already exists.</string>
<string name="reading_list_article_added_to_named">Added %1$s to %2$s.</string>
<string name="reading_list_article_added_to_default_list">Saved %s. Do you want to add it to a list?</string>
<string name="reading_list_article_moved_to_named">Moved %1$s to %2$s.</string>
<string name="reading_list_article_already_exists_message">All good! %1$s already contains %2$s.</string>
<string name="reading_list_articles_already_exist_message">All good! %s already contains all articles.</string>
<string name="reading_list_added_view_button">View list</string>
<string name="reading_list_add_to_list_button">Add to list</string>
<plurals name="format_reading_list_statistical_summary_without_size">
<item quantity="one">1 article</item>
<item quantity="other">%d articles</item>
</plurals>
<plurals name="format_reading_list_statistical_summary">
<item quantity="one">1 article, %2$.2f MB</item>
<item quantity="other">%1$d articles, %2$.2f MB</item>
</plurals>
<plurals name="format_reading_list_statistical_detail_without_size">
<item quantity="one">%1$d of 1 article available offline</item>
<item quantity="other">%1$d of %2$d articles available offline</item>
</plurals>
<plurals name="format_reading_list_statistical_detail">
<item quantity="one">%1$d of 1 article available offline, %3$.2f MB</item>
<item quantity="other">%1$d of %2$d articles available offline, %3$.2f MB</item>
</plurals>
<string name="reading_list_sort">Sort</string>
<string name="reading_list_sort_ellipsis">Sort by…</string>
<string name="reading_list_sort_by_name">Sort by name</string>
<string name="reading_list_sort_by_name_desc">Sort by name (reverse)</string>
<string name="reading_list_sort_by_recent">Sort by date added (newest)</string>
<string name="reading_list_sort_by_recent_desc">Sort by date added (oldest)</string>
<string name="reading_list_sort_by_created">Sort by date created (newest)</string>
<string name="reading_list_sort_by_created_desc">Sort by date created (oldest)</string>
<string name="reading_list_menu_delete">Delete list</string>
<string name="reading_list_menu_export">Export list</string>
<string name="reading_list_menu_select">Select</string>
<string name="reading_list_menu_unselect">Unselect</string>
<string name="reading_list_export_write_permission_rationale">Permission to write to storage on your device is required for exporting your reading list.</string>
<string name="reading_list_menu_rename">Edit name/description</string>
<string name="reading_list_action_menu_remove_from_offline">Remove from offline</string>
<string name="reading_list_action_menu_save_for_offline">Save for offline</string>
<string name="reading_list_action_menu_remove_all_from_offline">Remove all from offline</string>
<string name="reading_list_action_menu_save_all_for_offline">Save all for offline</string>
<string name="reading_list_action_menu_add_to_another_list">Add to another list</string>
<string name="reading_list_action_menu_move_to_another_list">Move to another list</string>
<string name="reading_list_name_sample">My reading list</string>
<string name="reading_list_name_hint">Name of this list</string>
<string name="reading_list_description_hint">Description (optional)</string>
<string name="reading_list_item_deleted">%s removed from list</string>
<string name="reading_list_item_deleted_from_list">%1$s removed from %2$s</string>
<plurals name="reading_list_articles_deleted">
<item quantity="one">%d article removed from list</item>
<item quantity="other">%d articles removed from list</item>
</plurals>
<plurals name="reading_list_articles_deleted_from_list">
<item quantity="one">%d article removed from %s</item>
<item quantity="other">%d articles removed from %s</item>
</plurals>
<plurals name="reading_lists_deleted_message">
<item quantity="one">%d list deleted</item>
<item quantity="other">%d lists deleted</item>
</plurals>
<string name="reading_lists_default_list_delete_message">The default list (%s) can\'t be deleted</string>
<string name="reading_lists_default_plus_one_list_delete_message">%1$s deleted. The default list (%2$s) can\'t be deleted.</string>
<string name="reading_lists_default_plus_many_lists_delete_message">Lists deleted. The default list (%s) can\'t be deleted.</string>
<string name="single_list_json_file_name">%s (Wikipedia reading list).json</string>
<string name="multiple_lists_json_file_name">Wikipedia reading lists (%s and more).json</string>
<string name="reading_list_items_deleted">%d articles removed from list</string>
<string name="reading_lists_item_deleted">%s removed from lists</string>
<string name="reading_list_item_delete_undo">Undo</string>
<string name="reading_list_deleted">%s deleted</string>
<string name="saved_list_empty_title">No saved pages yet</string>
<string name="reading_lists_empty_message">Add articles to a list for reading later, even when you\'re offline.</string>
<string name="reading_list_empty">You have no articles added to this list.</string>
<string name="reading_list_article_offline">Available offline</string>
<string name="reading_list_article_make_offline">Make this article available offline</string>
<string name="reading_list_add_to_other_list">Add to another reading list</string>
<string name="reading_list_move_to_other_list">Move to another reading list</string>
<string name="reading_list_move_from_to_other_list">Move from %s to another reading list</string>
<string name="reading_list_remove_from_list">Remove from %s</string>
<string name="reading_list_remove_from_lists">Remove from reading lists</string>
<string name="reading_list_select_item">Select</string>
<string name="reading_list_confirm_remove_article_from_offline">Remove from offline</string>
<string name="reading_list_confirm_remove_article_from_offline_title">Article appears in multiple lists</string>
<string name="reading_list_confirm_remove_article_from_offline_message">%s will no longer be available offline for all reading lists:</string>
<string name="reading_lists_sync_reminder_title">Turn on reading list syncing?</string>
<string name="reading_lists_sync_reminder_text"><![CDATA[Articles saved to reading lists can now be synced to your Wikipedia account. <a href="https://www.mediawiki.org/wiki/Special:MyLanguage/Wikimedia_Apps/Android_FAQ#Synced_reading_lists">Learn more</a>]]></string>
<string name="reading_lists_login_reminder_text_with_link"><![CDATA[Reading lists can now be synced across devices. Log in to your Wikipedia account and allow your lists to be saved. <a href="https://www.mediawiki.org/wiki/Special:MyLanguage/Wikimedia_Apps/Android_FAQ#Synced_reading_lists">Learn more</a>]]></string>
<string name="reading_lists_sync_reminder_action">Enable syncing</string>
<string name="reading_list_login_reminder_title">Sync reading lists</string>
<string name="reading_lists_login_reminder_text">Reading lists can now be synced across devices. Log in to your Wikipedia account and allow your lists to be saved.</string>
<string name="reading_lists_login_button">Log in / join Wikipedia</string>
<string name="reading_lists_ignore_button">Not now</string>
<string name="reading_lists_confirm_remote_delete_yes">Yes</string>
<string name="reading_lists_confirm_remote_delete_no">No</string>
<string name="reading_list_article_save_in_progress">The article is being downloaded, and it will be available offline when complete.</string>
<string name="reading_list_articles_added_to_named">Added %1$d articles to %2$s</string>
<string name="reading_list_articles_moved_to_named">Moved %1$d articles to %2$s</string>
<string name="reading_list_delete_confirm">Are you sure you want to delete %s?</string>
<string name="reading_list_delete_lists_confirm_dialog_title">Delete selected list(s)?</string>
<plurals name="reading_list_delete_lists_confirm_dialog_message">
<item quantity="one">Are you sure you want to delete %d list?</item>
<item quantity="other">Are you sure you want to delete %d lists?</item>
</plurals>
<string name="reading_list_preference_login_to_enable_sync_dialog_title">Log in to enable sync</string>
<string name="reading_list_preference_login_to_enable_sync_dialog_text">Log in to allow your reading lists to be saved to your account.</string>
<string name="reading_list_preference_login_to_enable_sync_dialog_cancel">Cancel</string>
<string name="reading_list_preference_login_to_enable_sync_dialog_login">Log in</string>
<string name="reading_list_turned_sync_off_dialog_title">Reading list sync turned off</string>
<string name="reading_list_turned_sync_off_dialog_text">Reading list sync is off for your account, and saved articles on your logged-in devices are no longer being backed up. Turn on reading list sync in Settings.</string>
<string name="reading_list_turned_sync_off_dialog_ok">OK</string>
<string name="reading_list_turned_sync_off_dialog_settings">Settings</string>
<string name="reading_list_prompt_turned_sync_on_dialog_title">Turn on reading list sync?</string>
<string name="reading_list_prompt_turned_sync_on_dialog_text"><![CDATA[Articles saved to reading lists can now be synced to your Wikipedia account. <a href="#faq">Learn more</a>]]></string>
<string name="reading_list_prompt_turned_sync_on_dialog_do_not_show">Don’t show me this again</string>
<string name="reading_list_prompt_turned_sync_on_dialog_enable_syncing">Enable syncing</string>
<string name="reading_list_prompt_turned_sync_on_dialog_no_thanks">No thanks</string>
<string name="default_reading_list_name">Saved</string>
<string name="default_reading_list_description">Default list for your saved articles</string>
<string name="no_user_lists_title">Organize articles into lists</string>
<string name="no_user_lists_msg">Create lists for places to travel to, favorite topics, and much more</string>
<string name="reading_list_saved_list_rename">%1$s (user created)</string>
<string name="split_reading_list_message">There is a limit of %d articles per reading list. Existing lists with more than this limit have been split into multiple lists.</string>
<string name="reading_list_move_article_limit_message">Can\'t move to this list. You\'ve reached the limit of %2$d articles per list for \"%1$s\".</string>
<string name="reading_list_article_limit_message">Can\'t add to this list. You\'ve reached the limit of %2$d articles per list for \"%1$s\".</string>
<string name="reading_lists_limit_message">Can\'t create another list. You\'ve reached the limit of 100 reading lists per account.</string>
<string name="reading_lists_menu_create_list">Create new list</string>
<string name="reading_lists_menu_import_list">Import list</string>
<string name="reading_lists_menu_sort_by">Sort by</string>
<string name="reading_lists_refresh_sync_option">Refresh sync</string>
<string name="reading_list_preference_login_or_signup_to_enable_sync_dialog_login">Log in / sign up</string>
<plurals name="reading_list_article_offline_message">
<item quantity="one">This article will now be available offline.</item>
<item quantity="other">These articles will now be available offline.</item>
</plurals>
<plurals name="reading_list_article_not_offline_message">
<item quantity="one">This article will no longer be available offline.</item>
<item quantity="other">These articles will no longer be available offline.</item>
</plurals>
<string name="reading_list_toast_last_sync">Reading lists synced</string>
<string name="reading_list_menu_last_sync">Last sync: %s</string>
<string name="reading_list_remove_list_dialog_ok_button_text">OK</string>
<string name="reading_list_delete_dialog_ok_button_text">OK</string>
<string name="reading_list_remove_from_list_dialog_cancel_button_text">Cancel</string>
<string name="reading_list_delete_dialog_cancel_button_text">Cancel</string>
<string name="reading_list_remove_from_offline_cancel_button_text">Cancel</string>
<string name="reading_list_download_using_mobile_data_cancel_button_text">Cancel</string>
<string name="reading_list_split_dialog_ok_button_text">OK</string>
<string name="reading_list_delete_lists_dialog_delete_button_text">Delete</string>
<string name="reading_list_activity_title">Reading list: %s</string>
<string name="reading_list_notification_title">Reading list(s) exported</string>
<string name="reading_list_notification_text">%d Reading list(s) have been exported as \'reading_lists export.json\' to your downloads folder</string>
<string name="reading_list_notification_detailed_text">Reading lists have been exported to \'reading_lists_export.json\'</string>
<string name="reading_lists_action_menu_export_lists">Export</string>
<string name="reading_lists_import_file_picker_title">Choose the file to import</string>
<string name="reading_lists_import_failure_message">Reading lists import failed</string>
<string name="reading_lists_export_select_lists_message">Select list(s) to export</string>
<string name="reading_lists_export_completed_message">Reading list(s) exported</string>
<plurals name="reading_list_export_failed_message">
<item quantity="one">Reading list export failed</item>
<item quantity="other">Reading lists export failed</item>
</plurals>
<plurals name="reading_list_import_success_message">
<item quantity="one">Reading list imported</item>
<item quantity="other">Reading lists imported</item>
</plurals>
<string name="reading_lists_preview_header_title">Shared list</string>
<string name="reading_lists_preview_save_button">Save</string>
<string name="reading_lists_preview_save_dialog_title">Save list</string>
<string name="reading_lists_preview_save_dialog_text">Name list and select articles to save.</string>
<string name="reading_lists_preview_save_dialog_title_hint">Title</string>
<string name="reading_lists_preview_save_dialog_cancel">Cancel</string>
<string name="reading_lists_preview_save_dialog_save">Save</string>
<string name="reading_lists_preview_saved_snackbar">Reading list saved</string>
<string name="reading_lists_preview_saved_snackbar_action">View</string>
<!-- /Reading lists -->
<!-- User options -->
<string name="user_option_sync_label">Preferences</string>
<!-- /User options -->
<!-- Notifications -->
<string name="notification_reverted_title">Reverted edit</string>
<string name="notification_channel_title">Downloading articles</string>
<string name="notification_channel_description">Download progress</string>
<string name="notification_syncing_pause_button">Pause</string>
<string name="notification_syncing_resume_button">Resume</string>
<string name="notification_syncing_cancel_button">Cancel</string>
<string name="notification_syncing_reading_list_channel_title">Syncing Reading Lists</string>
<string name="notification_syncing_reading_list_channel_description">Syncing Reading Lists progress</string>
<string name="notification_many_unread">You have %d unread notifications</string>
<plurals name="notification_channel_name">
<item quantity="one">Downloading article</item>
<item quantity="other">Downloading articles</item>
</plurals>
<plurals name="notification_syncing_title">
<item quantity="one">Downloading %1$d article…</item>
<item quantity="other">Downloading %1$d articles…</item>
</plurals>
<plurals name="notification_syncing_description">
<item quantity="one">%1$d article left</item>
<item quantity="other">%1$d articles left</item>
</plurals>
<plurals name="notification_syncing_reading_list_channel_name">
<item quantity="one">Syncing Reading List</item>
<item quantity="other">Syncing Reading Lists</item>
</plurals>
<string name="notification_syncing_reading_list_initial_title">Syncing lists</string>
<string name="notification_syncing_reading_list_initial_description">Starting sync…</string>
<plurals name="notification_syncing_reading_list_title">
<item quantity="one">Syncing %1$d list…</item>
<item quantity="other">Syncing %1$d lists…</item>
</plurals>
<plurals name="notification_syncing_reading_list_description">
<item quantity="one">%1$d list left</item>
<item quantity="other">%1$d lists left</item>
</plurals>
<string name="notification_echo_channel_description">Wikipedia notifications</string>
<string name="notifications_activity_title">Notifications</string>
<string name="notifications_activity_title_archived">Notifications (archived)</string>
<string name="notifications_search">Search notifications</string>
<string name="notifications_view_unread">View unread</string>
<string name="notifications_view_archived">View archived</string>
<string name="notifications_prefs">Notification preferences</string>
<string name="notifications_archive">Mark read and archive</string>
<plurals name="notification_archive_message">
<item quantity="one">Notification archived</item>
<item quantity="other">%d notifications archived</item>
</plurals>
<string name="notifications_poll_enable_title">Enable notifications</string>
<string name="notifications_poll_enable_positive">Enable</string>
<string name="notifications_poll_enable_negative">Not now</string>
<string name="notifications_empty_message">You\'re all caught up on notifications!</string>
<string name="notifications_view_archived_button_text">View archived notifications</string>
<string name="notification_preferences_title">Notification preferences</string>
<string name="notifications_mark_unread">Mark as unread</string>
<string name="notifications_mark_all_as_read">Mark all as read</string>
<string name="notifications_direct_reply_action">Reply</string>
<string name="notifications_direct_reply_progress">Posting reply to %s…</string>
<string name="notifications_direct_reply_success">Reply posted.</string>
<string name="notifications_direct_reply_error">Could not post reply automatically.</string>
<string name="notifications_mark_all_as_read_message">%d marked as read</string>
<string name="notifications_mark_all_as_unread_message">%d marked as unread</string>
<plurals name="notifications_mark_as_read_plural">
<item quantity="one">1 marked as read</item>
<item quantity="other">%d marked as read</item>
</plurals>
<plurals name="notifications_mark_as_unread_plural">
<item quantity="one">1 marked as unread</item>
<item quantity="other">%d marked as unread</item>
</plurals>
<string name="watchlist_title">Watchlist</string>
<string name="preference_title_notification_poll">Poll notifications</string>
<string name="preference_summary_notification_poll">Allow the app to use data to check for new notifications in the background.</string>
<string name="preference_category_notification_types">In-app notification types</string>
<string name="preference_title_notification_system">System</string>
<string name="preference_summary_notification_system">Messages from system</string>
<string name="preference_title_notification_milestone">Milestone</string>
<string name="preference_summary_notification_milestone">Certain edit counts are reached</string>
<string name="preference_title_notification_thanks">Thanks</string>
<string name="preference_summary_notification_thanks">Someone thanks you for an edit</string>
<string name="preference_title_notification_revert">Revert</string>
<string name="preference_summary_notification_revert">One of your contributions was reverted</string>
<string name="preference_title_notification_login_fail">Login</string>
<string name="preference_summary_notification_login_fail">Your log in activities</string>
<string name="preference_title_notification_mention">Mention</string>
<string name="preference_summary_notification_mention">Someone mentions you in a page</string>
<string name="preference_title_notification_user_talk">Talk page</string>
<string name="preference_summary_notification_user_talk">Messages and replies from talk pages</string>
<string name="preference_title_notification_email_user">Email received</string>
<string name="preference_summary_notification_email_user">Someone sent you an email through the wiki</string>
<string name="preference_title_notification_user_rights">User rights changes</string>
<string name="preference_summary_notification_user_rights">Received when your user rights change</string>
<string name="preference_title_notification_article_linked">Links to articles you created</string>
<string name="preference_summary_notification_article_linked">Received when a new link is made to a page you created</string>
<string name="preference_category_push_notifications">Push notifications</string>
<string name="preference_title_customize_push_notifications">Customize push notifications</string>
<string name="preference_category_display_settings">Display settings</string>
<string name="preference_title_hide_read_notifications">Hide read notifications</string>
<string name="notifications_channel_group_wikipedia_notifications_title">Wikipedia</string>
<string name="notifications_channel_group_wikipedia_notifications_description">Notifications from Wikipedia</string>
<string name="notifications_channel_group_other_title">Other</string>
<string name="notifications_channel_group_other_description">Other notifications from the app</string>
<string name="notifications_filter_label">Filter notifications</string>
<string name="notifications_filter_icon_content_description">Filter notifications</string>
<string name="notifications_filter_update_app_languages">Update app languages</string>
<string name="notifications_empty_search_message">Try removing %s to see more notifications</string>
<plurals name="notifications_number_of_filters">
<item quantity="one">%d filter</item>
<item quantity="other">%d filters</item>
</plurals>
<string name="notifications_select_all_filters">Select all filters</string>
<string name="notifications_tab_filter_all">All</string>
<string name="notifications_tab_filter_mentions">Mentions</string>
<string name="notifications_tab_filter_unread">(%s)</string>
<string name="notifications_search_bar_hint">Search or filter notifications</string>
<string name="notifications_search_bar_filter_hint">Notification filter</string>
<string name="notifications_menu_mark_as_read">Mark as read</string>
<string name="notifications_menu_mark_as_unread">Mark as unread</string>
<string name="notifications_swipe_action_read">Read</string>
<string name="notifications_swipe_action_unread">Unread</string>
<string name="notifications_menu_check_all">Check all items</string>
<string name="notifications_menu_uncheck_all">Uncheck all items</string>
<string name="notifications_wiki_filter_header">Wiki filter</string>
<string name="notifications_type_filter_header">Type filter</string>
<string name="notifications_all_wikis_text">All wikis</string>
<string name="notifications_all_types_text">All types</string>
<string name="notifications_menu_user_talk_page">%s\'s talk page</string>
<string name="notifications_offline_disable_message">The function is not available while offline.</string>
<!-- /Notifications -->
<!-- The Feed -->
<string name="view_because_you_read_card_title">Because you read</string>
<string name="view_random_card_title">Randomizer</string>
<string name="view_random_article_card_title">Random article</string>
<string name="view_random_article_card_action">More random articles</string>
<string name="view_top_read_card_title">Top read</string>
<string name="view_top_read_card_action">More top read</string>
<string name="view_top_read_card_pageviews_k_suffix">%d k</string>
<string name="view_top_read_card_pageviews_m_suffix">%d M</string>
<string name="view_next_random_article">Load another random article</string>
<string name="view_main_page_card_title">Today on Wikipedia</string>
<string name="view_main_page_card_action">View main page</string>
<string name="view_featured_image_card_title">Picture of the day</string>
<string name="view_featured_image_card_download">Download</string>
<string name="view_featured_image_card_share">Share</string>
<string name="menu_feed_card_dismiss">Hide this card</string>
<string name="menu_feed_card_dismissed">Card hidden.</string>
<string name="menu_feed_card_edit_card_languages">Edit card languages</string>
<string name="menu_feed_overflow_label">More options</string>
<string name="feed_featured_image_share_subject">Featured image from Wikimedia Commons</string>
<string name="feed">Explore</string>
<string name="home">Home</string>
<string name="view_static_card_icon_content_description">Card icon</string>
<string name="view_card_news_title">In the news</string>
<plurals name="view_continue_reading_card_subtitle">
<item quantity="one">yesterday</item>
<item quantity="other">%d days ago</item>
</plurals>
<string name="view_continue_reading_card_subtitle_today">today</string>
<string name="view_continue_reading_card_subtitle_read_date">Read %s</string>
<string name="view_announcement_card_negative_action">No thanks</string>
<string name="view_offline_card_text">Content cannot be loaded when offline.</string>
<string name="view_featured_article_card_title">Featured article</string>
<string name="view_static_card_save_button_label">Save</string>
<string name="feed_configure_activity_title">Customize the feed</string>
<string name="feed_configure_menu_reset">Restore default view</string>
<string name="feed_configure_menu_select_all">Show all</string>
<string name="feed_configure_menu_deselect_all">Hide all</string>
<string name="feed_configure_language_warning">Note that not all card types are available in all Wikipedia languages. Edit your selected languages in Settings.</string>
<string name="feed_item_type_news">Articles about current events</string>
<string name="feed_item_type_on_this_day">Events in history on this day</string>
<string name="feed_item_type_because_you_read">Suggestions based on a recently read article from your history</string>
<string name="feed_item_type_featured_article">Daily featured article on Wikipedia</string>
<string name="feed_item_type_trending">Daily most-viewed articles</string>
<string name="feed_item_type_featured_image">Daily featured image from Wikimedia Commons</string>
<string name="feed_item_type_main_page">Main page of Wikipedia with daily featured content</string>
<string name="feed_item_type_randomizer">Generate random articles to read</string>
<string name="feed_item_type_suggested_edits">Suggestions to add content to Wikipedia</string>
<string name="feed_item_type_places">Nearby articles based on the current location</string>
<string name="feed_empty_message">There\'s nothing on your Explore feed</string>
<string name="feed_configure_onboarding_action">Customize</string>
<string name="customize_lang_selection_dialog_ok_button_text">OK</string>
<string name="customize_lang_selection_dialog_cancel_button_text">Cancel</string>
<string name="feed_configure_onboarding_text"><![CDATA[<strong>Customize your Explore feed</strong><br /><br />You can now choose what to show on your feed, and also prioritize your favorite types of content.]]></string>
<string name="feed_lang_selection_dialog_ok_button_text">OK</string>
<string name="feed_lang_selection_dialog_cancel_button_text">Cancel</string>
<string name="feed_accessibility_card_text">You have reached the bottom of the feed.</string>
<string name="feed_accessibility_card_load_more_button">Load more</string>
<string name="feed_language_variants_removal_dialog_title">Select a regional language variant for an improved reading experience</string>
<string name="feed_language_variants_removal_dialog_message">You are currently using an unsupported generic Chinese language variant as your primary Wikipedia language</string>
<string name="feed_language_variants_removal_dialog_save">Save</string>
<string name="feed_language_variants_removal_secondary_dialog_title">Please update your secondary languages</string>
<string name="feed_language_variants_removal_secondary_dialog_message">You are currently using an unsupported generic Chinese language variant as a secondary language. Please go to your settings to select a new secondary language or to confirm your language list.</string>
<string name="feed_language_variants_removal_secondary_dialog_settings">Go to Settings</string>
<!-- /The Feed -->
<string name="top_read_activity_title">Top read on %s</string>
<string name="tabs_activity_title">Tabs</string>
<!-- Description editing -->
<string name="description_edit_text_hint">Article description</string>
<string name="description_edit_article_description_label">Article</string>
<string name="description_edit_translate_article_description_label_per_language">Article description (%s)</string>
<string name="description_edit_translate_article_description_hint_per_language">Article description (%s)</string>
<string name="description_edit_add_caption_label">Image description</string>
<string name="description_edit_add_caption_hint">Image caption</string>
<string name="description_edit_translate_caption_label_per_language">Image caption (%s)</string>
<string name="description_edit_translate_caption_hint_per_language">Image caption (%s)</string>
<string name="description_edit_save">Publish</string>
<string name="description_edit_read">Read</string>
<string name="description_edit_add_description">Add article description</string>
<string name="description_edit_translate_description">Translate article description</string>
<string name="description_edit_edit_description">Edit article description</string>
<string name="description_edit_add_image_caption">Add image caption</string>
<string name="description_edit_edit_image_caption">Edit image caption</string>
<string name="description_edit_translate_image_caption">Translate image caption</string>
<string name="description_edit_cancel_hint">Cancel</string>
<string name="description_edit_help_title">Info: Article descriptions</string>
<string name="description_edit_help_about_wikidata">About Wikidata</string>
<string name="description_edit_help_wikidata_guide">Wikidata guide for writing descriptions</string>
<string name="wikidata_description_guide_url">https://www.wikidata.org/wiki/Special:MyLanguage/Help:Description#Guidelines_for_descriptions_in_English</string>
<string name="description_edit_anon_limit">Thanks for your continued interest in editing article descriptions! To make additional edits, please log in to your Wikipedia account.</string>
<string name="description_edit_license_notice"><![CDATA[By changing the article description, I agree to the <a href="%1$s">Terms of Use</a> and to irrevocably release my contributions under the <a href="%2$s">Creative Commons CC0</a> license.]]></string>
<string name="description_edit_helper_text_lowercase_warning">usually begin with a lowercase letter</string>
<string name="description_edit_voice_input_description">Voice input</string>
<string name="description_edit_learn_more">Learn more about article descriptions</string>
<string name="description_edit_image_caption_learn_more">Learn more about image captions</string>
<string name="description_edit_description_learn_more_url">https://mediawiki.org/wiki/Special:MyLanguage/Wikimedia_Apps/Android_Suggested_edits#Article_descriptions</string>
<string name="description_edit_image_caption_learn_more_url">https://mediawiki.org/wiki/Special:MyLanguage/Wikimedia_Apps/Android_Suggested_edits#Image_captions</string>
<string name="description_too_short">The text is too short.</string>
<string name="description_too_long">Try to keep descriptions short so users can understand the article\'s subject at a glance</string>
<string name="description_ends_with_punctuation">The text must not end with punctuation.</string>
<string name="description_starts_with_article">Avoid starting with articles like “a” or “the”.</string>
<string name="description_starts_with_uppercase">Start with a lowercase letter unless the first word is a proper noun.</string>
<string name="description_starts_with_lowercase">Avoid starting with a lowercase letter.</string>
<string name="description_is_in_different_language">The text appears to be in an unexpected language. The language should be %s.</string>
<string name="description_verification_notice">Please verify your description is in %1$s. Feel free to ignore this warning if the description you\'ve written is in %2$s.</string>
<string name="description_edit_suggested_description_button_text">Show suggested descriptions</string>
<string name="description_edit_suggested_description_button_tooltip">Try machine-suggested article descriptions</string>
<!-- /Description editing -->
<!-- Description editing success -->
<string name="description_edit_success_saved">Article description published!</string>
<string name="description_edit_success_saved_snackbar">Article description published!</string>
<string name="description_edit_success_saved_in_lang_snackbar">Article description published! (%s)</string>
<string name="description_edit_success_saved_image_caption_snackbar">Image caption published!</string>
<string name="description_edit_success_saved_image_caption_in_lang_snackbar">Image caption published! (%s)</string>
<string name="description_edit_success_saved_image_tags_snackbar">Image tag(s) published!</string>
<string name="description_edit_success_se_general_feed_link_snackbar">Enjoyed that? Help us add more.</string>
<string name="description_edit_success_encouragement">You just made Wikipedia better for everyone</string>
<string name="description_edit_success_done">Done</string>
<string name="description_edit_success_did_you_know">Did you know?</string>
<string name="description_edit_success_article_edit_hint">You can also edit articles within this app. Try fixing typos and small sentences by clicking on the ^1 icon next time</string>
<!-- /Description editing success -->
<!-- Description editing tutorial -->
<string name="description_edit_tutorial_title_descriptions">Article descriptions</string>
<string name="description_edit_tutorial_title_descriptions_summary">Summarizes an article to help readers understand the subject at a glance</string>
<string name="description_edit_tutorial_keep_it_short">Keep it short</string>
<string name="description_edit_tutorial_keep_it_short_instructions">Ideally one line, between two to twelve words</string>
<string name="description_edit_tutorial_button_label_start_editing">Start editing</string>
<string name="description_edit_tutorial_promise">By starting, I promise not to misuse this feature.</string>
<string name="description_edit_tutorial_machine_suggestions_title">Machine suggestions</string>
<string name="description_edit_tutorial_machine_suggestions_description">The suggestions are generated by a machine, not volunteers or the Wikimedia Foundation</string>
<!-- /Description editing tutorial -->
<!-- Customize toolbar -->
<string name="customize_toolbar_title">Customize toolbar</string>
<string name="customize_toolbar_shortcut_description_text">Customize the bottom toolbar with 5 shortcuts you find most helpful.</string>
<string name="customize_toolbar_category_toolbar">Toolbar</string>
<string name="customize_toolbar_category_menu">Menu</string>
<string name="customize_toolbar_drag_and_drop_placeholder">Drag and drop your favorite items here 👋</string>
<string name="customize_toolbar_reset_to_default_button">Reset to default</string>
<string name="customize_toolbar_item_drag_handle_default_tooltip">Hold the drag icon to move the item</string>
<string name="customize_toolbar_item_default_tooltip">Press and drag an item to reposition it</string>
<!-- /Customize toolbar -->
<!-- Suggested edits -->
<string name="suggested_edits_describe_articles">Describe articles</string>
<string name="suggested_edits_caption_images">Caption images</string>
<string name="suggested_edits_tag_images">Tag images</string>
<string name="suggested_edits_edit_patrol">Edit patrol</string>
<string name="suggested_edits_edit_patrol_hint">Review recent edits and determine whether they are constructive or not.</string>
<string name="suggested_edits_edit_patrol_review">Review</string>
<string name="suggested_edits_review_description">Review article description</string>
<string name="suggested_edits_add_description_button">Add description</string>
<string name="suggested_edits_edit_description_button">Edit description</string>
<string name="suggested_edits_add_translation_button">Add translation</string>
<string name="suggested_edits_edit_translation_button">Edit translation</string>
<string name="suggested_edits_add_caption_button">Add caption</string>
<string name="suggested_edits_edit_caption_button">Edit caption</string>
<string name="suggested_edits_review_image_caption">Review image caption</string>
<string name="suggested_edits_my_contributions">My contributions</string>
<string name="suggested_edits_no_description">This file does not have a description</string>
<string name="suggested_edits_license_notice"><![CDATA[By adding the description, I agree to the <a href="%1$s">Terms of Use</a> and to irrevocably release my contributions under the <a href="%2$s">Creative Commons CC0</a> license.]]></string>
<string name="suggested_edits_image_caption_license_notice"><![CDATA[By adding the image caption, I agree to the <a href="%1$s">Terms of Use</a> and to irrevocably release my contributions under the <a href="%2$s">Creative Commons CC0</a> license.]]></string>
<string name="suggested_edits_menu_info">Info</string>
<string name="suggested_edits_task_add_description_title">Add article descriptions</string>