-
Notifications
You must be signed in to change notification settings - Fork 431
Expand file tree
/
Copy pathstrings.xml
More file actions
1147 lines (1125 loc) · 99.9 KB
/
strings.xml
File metadata and controls
1147 lines (1125 loc) · 99.9 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
<!--
~ Copyright (C) 2024-2026 OpenAni and contributors.
~
~ 此源代码的使用受 GNU AFFERO GENERAL PUBLIC LICENSE version 3 许可证的约束, 可以在以下链接找到该许可证.
~ Use of this source code is governed by the GNU AGPLv3 license, which can be found at the following link.
~
~ https://github.com/open-ani/ani/blob/main/LICENSE
-->
<!--@formatter:off-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="developer_list">Developers List</string>
<string name="acknowledgements">Acknowledgements</string>
<string name="settings">Settings</string>
<string name="settings_category_app_ui">App & UI</string>
<string name="settings_category_data_playback">Data Source & Playback</string>
<string name="settings_category_network_storage">Network & Storage</string>
<string name="settings_category_others">Others</string>
<string name="settings_debug_mode_enabled">Debug mode enabled</string>
<string name="settings_tab_appearance">Appearance</string>
<string name="settings_tab_theme">Theme & Colors</string>
<string name="settings_tab_player">Player & Danmaku Filter</string>
<string name="settings_tab_media_source">Data Source Management</string>
<string name="settings_tab_media_selector">Viewing Preferences</string>
<string name="settings_tab_danmaku">Server Region</string>
<string name="settings_tab_proxy">Proxy</string>
<string name="settings_tab_bt">BitTorrent</string>
<string name="settings_tab_cache">Auto Cache</string>
<string name="settings_tab_storage">Storage</string>
<string name="settings_tab_settings_backup">Settings Backup</string>
<string name="settings_tab_log">Logs</string>
<string name="settings_log_open_directory">Open log directory</string>
<string name="settings_tab_update">App Updates</string>
<string name="settings_tab_about">About</string>
<string name="settings_tab_debug">Debug</string>
<string name="settings_debug_status">Debug mode status</string>
<string name="settings_debug_mode">Debug mode</string>
<string name="settings_debug_mode_description">Debug mode is ON, click to disable</string>
<string name="settings_debug_episodes">Item Episode Selection</string>
<string name="settings_debug_show_all_episodes">Show all episodes</string>
<string name="settings_debug_show_all_episodes_description">Show all episodes, including SP, OP, ED, etc. Currently only supported by some online sources. Use with caution</string>
<string name="settings_debug_metered_network">Metered network information</string>
<string name="settings_debug_onboarding">New user guide settings</string>
<string name="settings_debug_enter_onboarding">Enter new user tutorial</string>
<string name="settings_debug_reset_onboarding">Reset new user guide status</string>
<string name="settings_debug_reset_onboarding_description">After reset, the next time you start the app, it will go through the new user guide</string>
<string name="settings_debug_reset_onboarding_toast">New user guide status has been reset</string>
<string name="settings_debug_others">Others</string>
<string name="settings_debug_get_bangumi_token">Obtain Bangumi access token</string>
<string name="settings_debug_get_ani_token">Obtain Ani access token</string>
<string name="settings_debug_copied">Copied: %1$s</string>
<string name="settings_help_qq">QQ</string>
<string name="settings_help_telegram">Telegram</string>
<string name="settings_help_github">GitHub</string>
<string name="settings_help_feedback">Send feedback</string>
<string name="settings_help_website">Ani official website</string>
<string name="settings_about_version">Version</string>
<string name="settings_about_release_notes">Release notes</string>
<string name="settings_about_website">Website</string>
<string name="settings_about_feedback">Feedback & suggestions</string>
<string name="settings_about_source_code">Source code</string>
<string name="settings_about_chat_groups">Chat groups</string>
<string name="settings_about_qq_group">QQ Group</string>
<string name="settings_about_icon_description">Animeko Icon</string>
<string name="settings_about_app_name">Animeko</string>
<string name="settings_about_app_description">A one-stop platform for searching, following, and watching anime with bullet comments</string>
<string name="settings_developers_main_contributors">Main contributors</string>
<string name="settings_developers_project_initiator">Project initiator</string>
<string name="settings_developers_daily_maintenance">Daily maintenance</string>
<string name="settings_developers_outstanding_contributors">Outstanding contributors (alphabetically)</string>
<string name="settings_developers_server_development">Server-side development</string>
<string name="settings_developers_bangumi_upstream">Bangumi upstream contributions</string>
<string name="settings_developers_icon_drawing">Icon design</string>
<string name="settings_developers_website_development">Official website development</string>
<string name="settings_developers_contributor">Contributor</string>
<string name="settings_developers_ml_research">Machine learning R&D</string>
<string name="settings_developers_organization">Organization</string>
<string name="settings_developers_view_more_on_github">View more on GitHub</string>
<!-- Comment -->
<string name="comment_empty_title">No comments yet</string>
<string name="settings_mediasource_selector_test_dummy_line">1\n2</string>
<string name="settings_mediasource_selector_test_dummy_tag">Dummy</string>
<string name="settings_mediasource_selector_test_dummy_url">https://example.com/example/example</string>
<string name="settings_mediasource_selector_test_empty_name"><Name is empty></string>
<string name="settings_mediasource_selector_test_title">Test data source</string>
<string name="settings_mediasource_selector_test_copy_link">Copy item link</string>
<string name="settings_mediasource_selector_test_copied">Copied</string>
<string name="settings_mediasource_selector_test_open_page">Open item page</string>
<string name="settings_mediasource_selector_test_channels">%1$d channels</string>
<string name="settings_mediasource_selector_step1">Step 1: Search for items</string>
<string name="settings_mediasource_selector_step2">Step 2: Search for episodes</string>
<string name="settings_mediasource_selector_step3">Step 3: Match videos</string>
<string name="settings_mediasource_selector_config_name">Name *</string>
<string name="settings_mediasource_selector_config_name_placeholder">Set the name shown in the list</string>
<string name="settings_mediasource_selector_config_icon_url">Icon URL</string>
<string name="settings_mediasource_selector_config_search_url">Search URL</string>
<string name="settings_mediasource_selector_config_search_url_placeholder">Example: https://www.nyacg.net/search.html?wd={keyword}</string>
<string name="settings_mediasource_selector_config_search_url_supporting">Replacement rules:\n{keyword} is replaced with the item (anime) name</string>
<string name="settings_mediasource_selector_config_base_url">Base URL (optional)</string>
<string name="settings_mediasource_selector_config_base_url_supporting">Optional. Used to build the item details (episode list) page URL and affects Step 2. By default it is derived automatically from the search URL</string>
<string name="settings_mediasource_selector_config_search_first_word">Use only the first word</string>
<string name="settings_mediasource_selector_config_search_first_word_description">Split by spaces and use only the first word for search. Useful when the source has poor search compatibility</string>
<string name="settings_mediasource_selector_config_search_remove_special">Remove special characters</string>
<string name="settings_mediasource_selector_config_search_remove_special_description">Remove special characters and words like "movie" to improve search success rate</string>
<string name="settings_mediasource_selector_config_search_subject_names_count">Number of item names to try</string>
<string name="settings_mediasource_selector_config_search_subject_names_count_description">How many item names to query with for each playback.\n1 uses only the primary name, 2 also uses the original Japanese title, and values above 2 also use other aliases. The number of aliases is not fixed.\nUsually 1 is enough. Using multiple names will significantly increase wait time during playback.</string>
<string name="settings_mediasource_selector_config_request_interval">Search request interval (ms)</string>
<string name="settings_mediasource_selector_config_request_interval_description">Controls how long to wait after sending each request before sending the next one</string>
<string name="settings_mediasource_selector_config_filter_settings">Filter settings</string>
<string name="settings_mediasource_selector_config_filter_by_subject_name">Filter by item name</string>
<string name="settings_mediasource_selector_config_filter_by_subject_name_description">Require the resource title to contain the item name. Useful when the source may return irrelevant results. This only works in versions before 4.4.0 and has no effect in other versions</string>
<string name="settings_mediasource_selector_config_filter_by_episode_sort">Filter by episode number</string>
<string name="settings_mediasource_selector_config_filter_by_episode_sort_description">Require the resource title to contain the episode number. Useful when the source may return irrelevant results. Usually recommended</string>
<string name="settings_mediasource_selector_config_default_resolution">Mark resolution</string>
<string name="settings_mediasource_selector_config_default_resolution_description">Mark all resources from this source with this resolution. This does not affect queries; it is only used as a preference and filter when selecting resources in the player</string>
<string name="settings_mediasource_selector_config_default_subtitle_language">Mark subtitle language</string>
<string name="settings_mediasource_selector_config_default_subtitle_language_description">Mark all resources from this source with this subtitle language. This does not affect queries; it is only used as a preference and filter when selecting resources in the player</string>
<string name="settings_mediasource_selector_config_player_select_resource">When selecting resources in the player</string>
<string name="settings_mediasource_selector_config_distinguish_subject_name">Distinguish item names</string>
<string name="settings_mediasource_selector_config_distinguish_subject_name_description">When off, all items found in Step 1 are treated as the same item, and episodes with the same title are deduplicated.\nWhen on, they are not deduplicated this way.\nThis does not affect test results. It affects results when selecting resources in the player.</string>
<string name="settings_mediasource_selector_config_distinguish_channel_name">Distinguish channel names</string>
<string name="settings_mediasource_selector_config_distinguish_channel_name_description">When off, episodes with the same title are deduplicated even if their channel names differ.\nWhen on, they are not deduplicated this way.\nThis does not affect test results. It affects results when selecting resources in the player.</string>
<string name="settings_mediasource_selector_config_video_playback">When playing videos</string>
<string name="settings_mediasource_selector_config_referer_description">Referer for HTTP requests made when playing videos. Can be left blank</string>
<string name="settings_mediasource_selector_config_user_agent_description">User-Agent for HTTP requests made when playing videos</string>
<string name="settings_mediasource_selector_config_subject_format_single_tag">Single tag</string>
<string name="settings_mediasource_selector_config_subject_format_multi_tag">Multiple tags</string>
<string name="settings_mediasource_selector_config_channel_format_no_channel">Do not distinguish channels</string>
<string name="settings_mediasource_selector_config_channel_format_grouped">Group by channels</string>
<string name="settings_mediasource_selector_enable_nested_link">Enable nested links</string>
<string name="settings_mediasource_selector_enable_nested_link_description">When a matching link is encountered, stop loading the parent page and jump to the matching link, then continue searching for video links in the nested page. Supports unlimited nesting</string>
<string name="settings_mediasource_selector_match_nested_link">Match nested links</string>
<string name="settings_mediasource_selector_match_nested_link_description">A regular expression to match the link that needs to be entered from all resource links loaded in the playback page. If the regex has a named group v, that group is used; otherwise, the entire URL is used</string>
<string name="settings_mediasource_selector_match_video_link">Match video link</string>
<string name="settings_mediasource_selector_match_video_link_description">A regular expression to match the video link from all resource links loaded in the playback page. If the regex has a named group v, that group is used; otherwise, the entire URL is used</string>
<string name="settings_mediasource_selector_cookies">Cookies (optional)</string>
<string name="settings_mediasource_selector_cookies_description">Cookies in key=value format, one per line. Leave blank to add none</string>
<string name="settings_mediasource_selector_test">Test</string>
<string name="settings_mediasource_selector_more">More</string>
<string name="settings_mediasource_selector_channel_format_index_grouped_description">First extract a list of channel names, then extract a list of episode panels, match them in order, and then extract episodes from each panel</string>
<string name="settings_mediasource_selector_channel_names_label">Extract the list of channel names from the page</string>
<string name="settings_mediasource_selector_channel_names_supporting">CSS selector expression. Expected to return some arbitrary elements, each corresponding to a channel, and their text will be read as the channel name</string>
<string name="settings_mediasource_selector_match_channel_name_label">Match channel name (optional)</string>
<string name="settings_mediasource_selector_match_channel_name_supporting">A regular expression to match the channel name from the extracted element text above. A group named ch is expected; if not found, the entire text is used.</string>
<string name="settings_mediasource_selector_episode_lists_label">Extract a list of episode panels from the page</string>
<string name="settings_mediasource_selector_episode_lists_supporting">CSS selector expression. Expected to return some <div> elements, each corresponding to an episode panel. The panel typically contains 1–12 episode buttons</string>
<string name="settings_mediasource_selector_episodes_from_list_label">Extract the episode list from each panel</string>
<string name="settings_mediasource_selector_episodes_from_list_supporting">CSS selector expression. Expected to return some elements, each of which will have its text used as the episode name.\nIf the element is <a>, its href will be read as the episode link by default. Alternatively, you can configure the following settings to extract the link in a different way.\nIf the element is not <a>, i.e. the name and link are not in the same element, you\'ll need to configure the following settings to extract the link.</string>
<string name="settings_mediasource_selector_episode_links_from_list_label">Extract a list of episode links from the panel (optional)</string>
<string name="settings_mediasource_selector_episode_links_from_list_supporting">An optional CSS selector expression. If the previously extracted episode elements are not <a>, you\'ll need to configure this to extract the links.</string>
<string name="settings_mediasource_selector_match_episode_sort_from_name_label">Match the episode number from the episode name</string>
<string name="settings_mediasource_selector_match_episode_sort_from_name_supporting">A regular expression search. A group named ep is expected, ideally numeric.</string>
<string name="settings_mediasource_selector_episodes_label">Extract the episode list</string>
<string name="settings_mediasource_selector_episodes_supporting">CSS selector expression. Expected to return some elements, each of which will have its text used as the episode name.\nIf the element is <a>, its href will be read as the episode link by default. Alternatively, you can configure the following settings to extract the link in a different way.\nIf the element is not <a>, you\'ll need to configure the following settings to extract the link.</string>
<string name="settings_mediasource_selector_episode_links_label">Extract the episode links (optional)</string>
<string name="settings_mediasource_selector_episode_links_supporting">An optional CSS selector expression. If the previously extracted episode elements are not <a>, you\'ll need to configure this to extract the link.</string>
<string name="settings_mediasource_selector_unsupported_format">This version does not support the configuration type: %1$s\n\nIt might be due to importing a config edited in a newer version.\nUpdate Ani or switch to another config type.</string>
<string name="settings_mediasource_test_keyword">Keyword</string>
<string name="settings_mediasource_test_random">Random</string>
<string name="settings_mediasource_test_episode_sort">Episode number</string>
<string name="settings_acknowledgements_bangumi">Bangumi</string>
<string name="settings_acknowledgements_bangumi_description">Item data & collection services</string>
<string name="settings_acknowledgements_dandanplay">DanDanPlay</string>
<string name="settings_acknowledgements_dandanplay_description">Danmaku aggregation</string>
<string name="settings_app_initial_page">Initial page</string>
<string name="settings_app_initial_page_description">The page that is shown when the app starts</string>
<string name="settings_app_search">Search</string>
<string name="settings_app_use_new_search_api">Use the new entry search API</string>
<string name="settings_app_use_new_search_api_description">Experimental API. May miss some entries. Use with caution</string>
<string name="settings_app_not_show_done_and_dropped_subjects">Do not show done and dropped subjects</string>
<string name="settings_app_nsfw_hide">Hide</string>
<string name="settings_app_nsfw_blur">Blur</string>
<string name="settings_app_nsfw_display">Show</string>
<string name="settings_app_nsfw_content">NSFW content</string>
<string name="settings_app_my_collections">My followed anime</string>
<string name="settings_app_list_animation">List scrolling animation</string>
<string name="settings_app_list_animation_description">If there are overlapping display issues, try turning this off</string>
<string name="settings_app_episode_playback">Episode playback</string>
<string name="settings_app_light_up_mode">Highlighting mode</string>
<string name="settings_app_light_up_mode_description">Highlight the episodes that have already been watched, instead of the ones about to be watched</string>
<string name="settings_app_language">Language</string>
<string name="settings_app_language_restart">Restart to take effect</string>
<string name="settings_update_software">Software update</string>
<string name="settings_update_current_version">Current version</string>
<string name="settings_update_view_changelog">View changelog</string>
<string name="settings_update_auto_check">Check for updates automatically</string>
<string name="settings_update_auto_check_description">Only shows an update icon, no automatic download</string>
<string name="settings_update_type">Update type</string>
<string name="settings_update_type_alpha">Daily builds (earliest access to new features)</string>
<string name="settings_update_type_beta">Beta (new features with some stability)</string>
<string name="settings_update_type_stable">Stable (most stable)</string>
<string name="settings_update_type_alpha_short">Daily build</string>
<string name="settings_update_type_beta_short">Beta</string>
<string name="settings_update_type_stable_short">Stable</string>
<string name="settings_update_in_app_download">In-app download</string>
<string name="settings_update_in_app_download_enabled">Skip the step of opening a browser</string>
<string name="settings_update_in_app_download_disabled">Disabled, will open an external browser to complete download</string>
<string name="settings_update_auto_download">Auto download updates</string>
<string name="settings_update_auto_download_description">You will be prompted when the download finishes, and installation will only proceed upon confirmation</string>
<string name="settings_update_manual_install_package_not_found">Installer package not found</string>
<string name="settings_update_manual_install_open_failed">Failed to open the file. Please install it manually: %1$s</string>
<string name="settings_update_manual_install_view_package">View installer package</string>
<string name="settings_update_manual_install_cancel">Cancel update</string>
<string name="settings_update_manual_install_title">Automatic installation failed. Please install manually</string>
<string name="settings_update_checking">Checking…</string>
<string name="settings_update_check_failed">Check failed</string>
<string name="settings_update_up_to_date">Up to date</string>
<string name="settings_update_new_version">New version available: %1$s</string>
<string name="settings_update_check">Check for updates</string>
<string name="settings_player">Player</string>
<string name="settings_player_fullscreen_always_show">Always show</string>
<string name="settings_player_fullscreen_auto_hide">Show for 5 seconds then hide</string>
<string name="settings_player_fullscreen_only_in_controller">Do not show</string>
<string name="settings_player_fullscreen_button">Show fullscreen button in portrait mode</string>
<string name="settings_player_fullscreen_button_description">Always show the fullscreen toggle button in the lower-right corner of the player, for easy switching</string>
<string name="settings_player_enable_regex_filter">Enable regex danmaku filter</string>
<string name="settings_player_pause_on_edit_danmaku">Automatically pause playback when sending a danmaku</string>
<string name="settings_player_auto_mark_done">Automatically mark as watched after 90% viewed</string>
<string name="settings_player_hide_selector_on_select">Automatically close the pop-up after selecting a data source</string>
<string name="settings_player_auto_fullscreen_on_landscape">Automatically go fullscreen on screen rotation</string>
<string name="settings_player_auto_play_next">Auto-play next episode</string>
<string name="settings_player_auto_skip_op_ed">Automatically skip OP and ED</string>
<string name="settings_player_auto_skip_op_ed_description">Only works for some resources from BT data sources</string>
<string name="settings_player_auto_switch_media_on_error">Automatically switch resources on playback failure</string>
<string name="settings_player_long_press_fast_forward_speed">Long-press fast-forward speed</string>
<string name="settings_player_long_press_fast_forward_speed_description">Speed when long-pressing to fast-forward</string>
<string name="settings_storage_title">Storage settings</string>
<string name="settings_storage_bt_cache_location">BT video cache location</string>
<string name="settings_storage_bt_cache_location_description">Changing this won\'t automatically migrate data nor delete old data.\nIf you want to remove old data, please click "Open BT cache directory" before making changes and remove all files in that directory.\n\nRestart required to take effect.</string>
<string name="settings_storage_choose_directory">Choose video save directory</string>
<string name="settings_storage_open_directory_chooser">Open directory chooser</string>
<string name="settings_storage_open_bt_cache_directory">Open BT cache directory</string>
<string name="settings_storage_directory_not_exist">This directory does not exist</string>
<string name="settings_storage_path_is_invalid">The path is invalid</string>
<string name="settings_storage_directory_create_failed">Failed to create the directory</string>
<string name="settings_storage_backup_title">Backup</string>
<string name="settings_storage_backup_op_backup_title">Copy app settings to clipboard</string>
<string name="settings_storage_backup_op_backup_description">Copy all app settings to the clipboard. You can import them after reinstall to retain all settings.\nWarning: contains sensitive account information; do not share the backup.</string>
<string name="settings_storage_backup_op_backup_error">Unable to export app settings; check logs for details</string>
<string name="settings_storage_backup_op_restore">Import app settings from clipboard</string>
<string name="settings_storage_backup_op_restore_description">Importing settings will overwrite all current app settings.</string>
<string name="settings_storage_backup_op_restore_warning">Importing settings will overwrite all app settings and cannot be undone. Proceed?</string>
<string name="settings_storage_backup_op_restore_error">Clipboard content is invalid or not a settings backup</string>
<string name="settings_storage_backup_op_restore_succees">Settings imported successfully</string>
<string name="settings_storage_danmaku_cache_strategy_title">Danmaku cache strategy</string>
<string name="settings_storage_danmaku_cache_strategy_description_do_not_cache">Don\'t cache danmakus, fetch from network on every play.</string>
<string name="settings_storage_danmaku_cache_strategy_description_cache_on_collection_doing_media_play">Cache danmakus on playing episodes which subject collection state is watching. Delete danmaku caches if subject collection state changed to others.</string>
<string name="settings_storage_danmaku_cache_strategy_description_cache_on_media_cache">Cache danmakus on caching the corresponding media to local. Delete danmaku caches if the media cache is deleted.</string>
<string name="settings_media_source_list">Data source list (%1$d)</string>
<string name="settings_media_source_list_description">Disabled data sources won\'t be automatically queried during playback, but can be manually enabled if needed. Note that the sorting will prioritize the server order, so manual sorting within the same data source subscription may be ineffective.</string>
<string name="settings_media_source_cancel_sort">Cancel sorting</string>
<string name="settings_media_source_add">Add data source</string>
<string name="settings_media_source_save_sort">Save sorting</string>
<string name="settings_media_source_sort">Sort</string>
<string name="settings_media_source_stop_test">Stop test</string>
<string name="settings_media_source_start_test">Start test</string>
<string name="settings_media_source_delete">Delete data source</string>
<string name="settings_media_source_delete_no_config">This data source has no special configuration. It can be re-added from a template after deletion. Confirm deletion?</string>
<string name="settings_media_source_delete_with_config">This data source has configurations. Deleting it will lose those configurations. They must be reconfigured when re-added from a template. Confirm deletion?</string>
<string name="settings_media_source_delete_confirm">Delete</string>
<string name="settings_media_source_cancel">Cancel</string>
<string name="settings_media_source_from_subscription">From subscription, cannot be edited</string>
<string name="settings_media_source_edit">Edit</string>
<string name="settings_media_source_start_sort">Start sorting</string>
<string name="settings_media_source_more">More</string>
<string name="settings_media_source_drag_sort">Drag to sort</string>
<string name="settings_media_source_disabled">(Disabled)</string>
<string name="settings_media_source_disable">Disable</string>
<string name="settings_media_source_enable">Enable</string>
<string name="settings_media_source_delete_can_readd">Delete (can re-add)</string>
<string name="settings_media_source_select_template">Select template</string>
<string name="settings_media_source_subscription">Data source subscription</string>
<string name="settings_media_source_subscription_description">You can add multiple data sources via subscription, which automatically updates on a schedule</string>
<string name="settings_media_source_subscription_add">Add</string>
<string name="settings_media_source_subscription_refresh_all">Refresh all</string>
<string name="settings_media_source_subscription_add_dialog">Add subscription</string>
<string name="settings_media_source_subscription_add_confirm">Add</string>
<string name="settings_media_source_subscription_paste">Paste</string>
<string name="settings_media_source_subscription_cancel">Cancel</string>
<string name="settings_media_source_subscription_url">URL (HTTP)</string>
<string name="settings_media_source_subscription_auto_update">Auto update every %1$s,</string>
<string name="settings_media_source_subscription_copy_link">Copy link</string>
<string name="settings_media_source_subscription_copied">Copied</string>
<string name="settings_media_source_subscription_export_all">Export all to clipboard</string>
<string name="settings_media_source_subscription_delete">Delete</string>
<string name="settings_media_source_subscription_delete_dialog">Delete data source subscription</string>
<string name="settings_media_source_subscription_delete_description">This will also delete all data sources from that subscription (total %1$d).</string>
<string name="settings_media_source_subscription_not_updated">Not yet updated</string>
<string name="settings_media_source_subscription_update_failed">Update failed:</string>
<string name="settings_media_source_subscription_update_success">Update successful, containing %1$d data sources</string>
<string name="settings_media_source_subscription_unknown_error">Unknown error</string>
<string name="settings_media_source_subscription_network_error">Network error, please check your connection</string>
<string name="settings_media_source_subscription_service_unavailable">Service is temporarily unavailable, please try again later</string>
<string name="settings_media_source_subscription_unauthorized">Access is denied, please contact the service provider</string>
<string name="settings_media_source_discard_changes">Discard changes?</string>
<string name="settings_media_source_discard">Discard</string>
<string name="settings_media_source_continue_editing">Continue editing</string>
<string name="settings_media_source_no_config">No configuration</string>
<string name="settings_media_source_add_button">Add</string>
<string name="settings_media_source_save_button">Save</string>
<string name="settings_mediasource_import_from_clipboard">Import configuration from clipboard</string>
<string name="settings_mediasource_import_title">Import configuration</string>
<string name="settings_mediasource_import_warning">This will overwrite the existing configuration and cannot be undone</string>
<string name="settings_mediasource_override">Override</string>
<string name="settings_mediasource_cancel">Cancel</string>
<string name="settings_mediasource_clipboard_empty">Clipboard is empty</string>
<string name="settings_mediasource_multiple_configs">The clipboard content contains multiple data source configurations, the current import function only supports a single configuration</string>
<string name="settings_mediasource_invalid_content">The clipboard content is invalid. Please check the data source type (Selector or RSS) and the Ani version used for export</string>
<string name="settings_mediasource_unsupported_factory">The data source type is not supported, please upgrade the software</string>
<string name="settings_mediasource_unsupported_version">The data source version is not supported, please upgrade the software</string>
<string name="settings_mediasource_close">Close</string>
<string name="settings_mediasource_export">Export configuration</string>
<string name="settings_mediasource_copied_to_clipboard">Copied to clipboard</string>
<string name="settings_mediasource_export_failed">Unable to export now, please try again later</string>
<string name="settings_mediasource_export_single">Export a single configuration (developer only)</string>
<string name="settings_mediasource_refresh">Refresh</string>
<string name="settings_mediasource_unauthorized">Unauthorized</string>
<string name="settings_mediasource_network_error">Network error</string>
<string name="settings_mediasource_rate_limited">Too many requests</string>
<string name="settings_mediasource_server_error">Server error</string>
<string name="settings_mediasource_unknown_error">Unknown error: %1$s</string>
<string name="settings_mediasource_invalid_config">Incomplete configuration</string>
<string name="settings_mediasource_error_title">Unknown error</string>
<string name="settings_mediasource_error_info">Error info</string>
<string name="settings_mediasource_copied">Copied</string>
<string name="settings_mediasource_copy">Copy</string>
<string name="settings_mediasource_retry">Retry</string>
<string name="settings_mediasource_rss_test_data_source">Test data source</string>
<string name="settings_mediasource_rss_details">Details</string>
<string name="settings_mediasource_rss_test">Test</string>
<string name="settings_mediasource_rss_more">More</string>
<string name="settings_mediasource_rss_name">Name*</string>
<string name="settings_mediasource_rss_name_placeholder">Set the name displayed in the list</string>
<string name="settings_mediasource_rss_icon_link">Icon link</string>
<string name="settings_mediasource_rss_query_settings">Search settings</string>
<string name="settings_mediasource_rss_search_link">Search link*</string>
<string name="settings_mediasource_rss_search_link_placeholder">Example: https://acg.rip/page/{page}.xml?term={keyword}</string>
<string name="settings_mediasource_rss_search_link_supporting_text">Replacement rules:\n{keyword} is replaced with the item (anime) name\n{page} is replaced with the page number. Ignore if no pagination is needed.</string>
<string name="settings_mediasource_rss_filter_by_episode">Use episode number filtering</string>
<string name="settings_mediasource_rss_filter_by_episode_description">Requires the resource title to contain the episode number. Useful if irrelevant content might be found from the data source.</string>
<string name="settings_mediasource_rss_filter_by_subject">Use item name filtering</string>
<string name="settings_mediasource_rss_filter_by_subject_description">Requires the resource title to contain the item name. Useful if irrelevant content might be found.\nThis feature only works for versions before 4.4.0 and is invalid for other versions.</string>
<string name="settings_mediasource_rss_auto_save_hint">Hint: changes are saved automatically</string>
<string name="settings_mediasource_rss_match_tag_match">Match</string>
<string name="settings_mediasource_rss_match_tag_not_match">No match</string>
<string name="settings_mediasource_rss_match_tag_missing">Missing</string>
<string name="settings_mediasource_rss_copied_to_clipboard">Copied to clipboard</string>
<string name="settings_mediasource_rss_copy">Copy</string>
<string name="settings_mediasource_rss_encoded_query_url">Encoded Query URL</string>
<string name="settings_mediasource_rss_query_url">Query URL</string>
<string name="settings_mediasource_rss_title">Title</string>
<string name="settings_mediasource_rss_description">Description</string>
<string name="settings_mediasource_rss_link">Link</string>
<string name="settings_mediasource_rss_item_count">RSS Item Count</string>
<string name="settings_mediasource_rss_parsed_media_count">Parsed Media Count</string>
<string name="settings_mediasource_rss_original_xml">Original XML</string>
<string name="settings_mediasource_rss_not_available">Unavailable</string>
<string name="settings_mediasource_rss_query_result">Search results</string>
<string name="settings_mediasource_rss_overview">Overview</string>
<string name="settings_mediasource_rss_rss_info">RSS Info</string>
<string name="settings_mediasource_rss_final_result">Final result</string>
<string name="settings_mediasource_rss_page_number">Page number</string>
<string name="settings_mediasource_rss_close">Close</string>
<string name="settings_mediasource_rss_copied">Copied</string>
<string name="settings_mediasource_rss_copy_content">Copy</string>
<string name="settings_mediasource_rss_open_link">Open link</string>
<string name="settings_mediasource_rss_episode_range">Episode range</string>
<string name="settings_mediasource_rss_unknown">Unknown</string>
<string name="settings_mediasource_rss_resolution">Resolution</string>
<string name="settings_mediasource_rss_subtitle_language">Subtitle language</string>
<string name="settings_mediasource_rss_publish_time">Publish time</string>
<string name="settings_mediasource_rss_link_label">link</string>
<string name="settings_mediasource_rss_guid">guid</string>
<string name="settings_mediasource_rss_enclosure_url">enclosure.url</string>
<string name="settings_mediasource_rss_enclosure_type">enclosure.type</string>
<!-- NewVersionPopupCard -->
<string name="settings_update_popup_new_version">New Version</string>
<string name="settings_update_popup_see_details">See details</string>
<string name="settings_update_popup_auto_update">Auto-update</string>
<string name="settings_update_popup_close">Close</string>
<string name="settings_update_popup_downloading">Downloading Update</string>
<string name="settings_update_popup_cancel_download">Cancel Download?</string>
<string name="settings_update_popup_cancel">Cancel</string>
<string name="settings_update_popup_continue_download">Continue Download</string>
<string name="settings_update_popup_restart_update">Restart to Update</string>
<string name="settings_update_popup_download_complete">Download Complete</string>
<!-- Version Expired Overlay -->
<string name="settings_update_version_expired_title">Version expired</string>
<string name="settings_update_version_expired_message">The current version is too old. For the best experience, please update to the latest version.\nThe latest version will be shown at the bottom-right; you can click to auto-update. If you cannot update, please download from the official website:</string>
<string name="settings_update_version_expired_message_with_latest">The current version is too old. For the best experience, please update to the latest version %1$s.\nThe latest version will be shown at the bottom-right; you can click to auto-update. If you cannot update, please download from the official website:</string>
<string name="settings_update_version_expired_import_settings_hint">If the new version requires importing settings, click:</string>
<string name="settings_update_version_expired_copied_to_clipboard">Copied to clipboard. In the new version, click Import</string>
<string name="settings_update_version_expired_export_settings">Export settings</string>
<!-- ExplorationScreen -->
<string name="exploration_title">Explore</string>
<string name="exploration_settings">Settings</string>
<string name="exploration_search">Search</string>
<string name="exploration_trending">Trending</string>
<string name="exploration_schedule">Anime Schedule</string>
<string name="exploration_schedule_view_details">View details</string>
<string name="exploration_schedule_episode">Ep. %1$s</string>
<string name="exploration_schedule_episode_ep_and_sort">Ep. %1$s (%2$s)</string>
<string name="exploration_schedule_weekday_monday">Mon</string>
<string name="exploration_schedule_weekday_tuesday">Tue</string>
<string name="exploration_schedule_weekday_wednesday">Wed</string>
<string name="exploration_schedule_weekday_thursday">Thu</string>
<string name="exploration_schedule_weekday_friday">Fri</string>
<string name="exploration_schedule_weekday_saturday">Sat</string>
<string name="exploration_schedule_weekday_sunday">Sun</string>
<string name="exploration_schedule_this_weekday">%1$s</string>
<string name="exploration_schedule_last_weekday">Last %1$s</string>
<string name="exploration_schedule_next_weekday">Next %1$s</string>
<string name="exploration_continue_watching">Continue Watching</string>
<string name="exploration_recommendations">Recommendations</string>
<string name="exploration_horizontal_scroll_tip">Hold Shift + mouse wheel to scroll horizontally</string>
<!-- MainScreenPage -->
<string name="main_screen_page_exploration">Explore</string>
<string name="main_screen_page_collection">Collection</string>
<string name="main_screen_page_cache_management">Cache</string>
<!-- ThemePreferences -->
<string name="settings_theme_title">Theme</string>
<string name="settings_theme_dynamic_colors">Dynamic Colors</string>
<string name="settings_theme_dynamic_colors_description">Use system accent color</string>
<string name="settings_theme_high_contrast">High Contrast Dark Theme</string>
<string name="settings_theme_high_contrast_description">Dark mode uses pure black background, which can save power on AMOLED screens</string>
<string name="settings_theme_always_dark_episode">Always Use Dark Theme in Playback Page</string>
<string name="settings_theme_always_dark_episode_description">Provides a more immersive playback experience</string>
<string name="settings_theme_dynamic_subject">Use Dynamic Theme in Item Detail Page</string>
<string name="settings_theme_dynamic_subject_description">Generate dynamic theme based on cover image</string>
<string name="settings_theme_palette">Color Palette</string>
<string name="settings_theme_mode_light">Light</string>
<string name="settings_theme_mode_dark">Dark</string>
<string name="settings_theme_mode_auto">Auto</string>
<!-- ServerSelectionGroup -->
<string name="settings_network_danmaku">Server Region</string>
<string name="settings_network_danmaku_global_acceleration">Global Acceleration</string>
<string name="settings_network_danmaku_global_acceleration_description">Improves speed when accessing global servers\nEnabling this within mainland China will slow it down</string>
<string name="settings_network_danmaku_connection_test">Connection Speed Test</string>
<string name="settings_network_danmaku_currently_using">Currently using</string>
<string name="settings_network_danmaku_recommended_other_regions">Recommended for other regions</string>
<string name="settings_network_danmaku_recommended_mainland_hk">Recommended for mainland China and Hong Kong</string>
<string name="settings_network_danmaku_global">Global</string>
<string name="settings_network_danmaku_mainland">Mainland China</string>
<string name="settings_network_danmaku_stop_test">Stop Test</string>
<string name="settings_network_danmaku_start_test">Start Test</string>
<!-- DanmakuRegexFilterGroup -->
<string name="settings_danmaku_regex_filter_group">Danmaku Regex Filter Management</string>
<string name="settings_danmaku_add_regex_filter">Add Regex Filter</string>
<string name="settings_danmaku_add_regex">Add Regex</string>
<string name="settings_danmaku_confirm">Confirm</string>
<string name="settings_danmaku_cancel">Cancel</string>
<string name="settings_danmaku_regex_expression">Regular Expression</string>
<string name="settings_danmaku_regex_invalid">Invalid regular expression syntax</string>
<string name="settings_danmaku_regex_description">Enter a regular expression for filtering, e.g.: \'.*sign.*\' will filter all danmaku containing the word \'sign\'.</string>
<!-- ConnectionTesterResultIndicator -->
<string name="settings_framework_timeout">Timeout</string>
<string name="settings_framework_not_enabled">Not enabled</string>
<string name="settings_framework_waiting_for_test">Waiting for test</string>
<!-- GlobalProxyGroup -->
<string name="settings_network_proxy_title">Global Proxy Settings</string>
<string name="settings_network_proxy_description">Applied to all data sources and Bangumi</string>
<string name="settings_network_proxy_type">Proxy Type</string>
<string name="settings_network_proxy_disabled">Disabled</string>
<string name="settings_network_proxy_system">System Proxy</string>
<string name="settings_network_proxy_custom">Custom</string>
<string name="settings_network_proxy_detection_result">Auto-detection Result</string>
<string name="settings_network_proxy_detecting">Detecting</string>
<string name="settings_network_proxy_overall_detecting">Checking connections. Please wait</string>
<string name="settings_network_proxy_overall_failed_not_proxied">Some services failed to connect. Consider enabling a proxy</string>
<string name="settings_network_proxy_overall_failed_proxied">Some services failed to connect. Try a different proxy mode or address</string>
<string name="settings_network_proxy_overall_success">All services connected successfully</string>
<string name="settings_network_proxy_not_detected">No system proxy detected</string>
<string name="settings_network_proxy_address">Proxy Address</string>
<string name="settings_network_proxy_address_example">Example: http://127.0.0.1:7890 or socks5://127.0.0.1:1080</string>
<string name="settings_network_proxy_username">Username</string>
<string name="settings_network_proxy_optional">Optional</string>
<string name="settings_network_proxy_none">None</string>
<string name="settings_network_proxy_password">Password</string>
<string name="settings_network_proxy_retest">Retest</string>
<string name="settings_network_proxy_service_danmaku">Danmaku service</string>
<string name="settings_network_proxy_service_collection">Collection data service</string>
<string name="settings_network_proxy_service_comment">Comment service</string>
<string name="settings_network_proxy_test_success">Connection successful</string>
<string name="settings_network_proxy_test_failed">Connection failed</string>
<string name="settings_network_proxy_current_disabled">Proxy disabled</string>
<string name="settings_network_proxy_current_using">Using %1$s</string>
<string name="settings_network_proxy_save_and_test">Save and test</string>
<!-- TorrentEngineGroup -->
<string name="settings_media_torrent_title">BT Settings</string>
<string name="settings_media_torrent_download_rate_limit">Download Speed Limit</string>
<string name="settings_media_torrent_sharing_settings">Sharing Settings</string>
<string name="settings_media_torrent_sharing_description">The BT network relies on sharing between users. The videos you watch come from other users\' sharing. Allow uploading to help maintain a healthy BT sharing environment.</string>
<string name="settings_media_torrent_upload_rate_limit">Upload Speed Limit</string>
<string name="settings_media_torrent_share_ratio_limit">Share Ratio Limit</string>
<string name="settings_media_torrent_share_ratio_description">Share ratio = Upload amount / Download amount. Greater than 1 means upload amount is greater than download amount. After reaching the share ratio limit, uploading will stop.</string>
<string name="settings_media_torrent_unlimited">Unlimited</string>
<string name="settings_media_torrent_speed_format">%1$s MB/s</string>
<string name="settings_media_torrent_limit_upload_on_metered">Limit Upload on Metered Network</string>
<string name="settings_media_torrent_limit_upload_on_metered_description">Limit upload speed to 1 KB/s on metered networks</string>
<string name="settings_media_torrent_peer_filter">Peer Filtering and Blocking Settings</string>
<string name="settings_media_torrent_peer_filter_description">Do not connect with blacklisted clients or those that match filter rules when downloading or uploading cached anime</string>
<!-- AutoCacheGroup -->
<string name="settings_media_auto_cache_title">Auto Cache</string>
<string name="settings_media_auto_cache_description">Automatically cache unwatched episodes in the \"Watching\" category</string>
<string name="settings_media_auto_cache_enable">Enable auto cache</string>
<string name="settings_media_auto_cache_max_count">Maximum auto cache episodes</string>
<string name="settings_media_auto_cache_max_count_description">If the number of manually cached episodes exceeds this value, auto cache will not be performed</string>
<string name="settings_media_auto_cache_space_warning">May use a lot of storage space</string>
<string name="settings_media_auto_cache_recent_only">Only cache recently watched anime</string>
<string name="settings_media_auto_cache_count">Cache count</string>
<string name="settings_media_auto_cache_count_description">Current setting: Only cache the most recent %d anime</string>
<string name="settings_media_auto_cache_manage">Manage cached episodes</string>
<string name="settings_debug_logout">Logout</string>
<string name="settings_debug_logged_out">Logged out</string>
<string name="settings_tab_account">Account</string>
<!-- Onboarding -->
<string name="onboarding_welcome_title">Welcome to Animeko</string>
<string name="onboarding_welcome_subtitle">A one-stop online anime platform with danmaku (Ani for short)</string>
<string name="onboarding_welcome_maintained">Ani is maintained by the OpenAni community and contributors. It is completely free and open source on GitHub.</string>
<string name="onboarding_welcome_goal">Ani aims to provide the simplest and most comfortable anime-watching experience possible.</string>
<string name="onboarding_welcome_continue">Continue</string>
<string name="onboarding_theme_settings">Theme Settings</string>
<string name="onboarding_network_settings">Network Settings</string>
<string name="onboarding_complete_welcome_with_nickname">Welcome, %1$s</string>
<string name="onboarding_complete_welcome">Welcome</string>
<string name="onboarding_complete_finish">Finish</string>
<string name="onboarding_theme_color">Colors</string>
<string name="onboarding_theme_dynamic_color">Dynamic Colors</string>
<string name="onboarding_theme_dynamic_color_desc">Use system accent colors</string>
<string name="onboarding_bittorrent_play_while_downloading">Ani supports streaming BT resources while downloading. BT speed depends on your network quality.</string>
<string name="onboarding_bittorrent_notification_permission_hint">Allow notification permission to view download progress while caching.</string>
<string name="onboarding_bittorrent_enable">Enable BitTorrent features</string>
<string name="onboarding_bittorrent_allow_notification">Allow notifications</string>
<string name="onboarding_bittorrent_notification_description">Show BT download progress, speed, and other information</string>
<string name="onboarding_bittorrent_authorized">Authorized</string>
<string name="onboarding_bittorrent_grant_permission">Grant permission</string>
<string name="onboarding_navigation_step_indicator">Step %1$d / %2$d</string>
<string name="onboarding_navigation_next">Next</string>
<string name="onboarding_navigation_previous">Previous</string>
<string name="onboarding_navigation_skip">Skip</string>
<string name="onboarding_navigation_choose_theme">Choose Theme</string>
<string name="onboarding_navigation_configure_proxy">Configure Proxy</string>
<string name="onboarding_navigation_bittorrent">BitTorrent Features</string>
<!-- Login -->
<string name="login_sign_in">Sign In</string>
<string name="login_sign_up">Sign Up</string>
<string name="login_sign_in_or_sign_up">Sign In / Sign Up</string>
<string name="login_bind_email">Bind Email</string>
<string name="login_change_email">Change Email</string>
<string name="login_email_address_title">Your Email Address</string>
<string name="login_email_address_description">We will send you a verification email</string>
<string name="login_email_label">Email</string>
<string name="login_clear">Clear</string>
<string name="login_continue">Continue</string>
<string name="login_email_already_used">This email address is already in use</string>
<string name="login_invalid_otp">The verification code is invalid or expired. Please resend it.</string>
<string name="login_verify_title">Enter Verification Code</string>
<string name="login_verify_check_email">Please check your email: %1$s</string>
<string name="login_verify_signing_in_existing">Signing in to your existing account</string>
<string name="login_verify_signing_up_new">Registering a new account</string>
<string name="login_verification_code">Verification Code</string>
<string name="login_six_digit_number">6 digits</string>
<string name="login_resend_otp">Resend verification code</string>
<string name="login_resend_after_seconds">Resend available in %1$d seconds</string>
<string name="login_other_methods">Other sign-in methods</string>
<!-- OAuth -->
<string name="oauth_bangumi_authorize_title">Authorize Bangumi Sign-In</string>
<string name="oauth_bangumi_description">Authorize your Bangumi account to sync your watch history to Bangumi or sign in to Ani more conveniently.</string>
<string name="oauth_bangumi_bind_account">Bind Bangumi Account</string>
<string name="oauth_bangumi_sign_in_or_sign_up">Sign In / Sign Up</string>
<string name="oauth_bangumi_waiting_result">Waiting for result</string>
<string name="oauth_bangumi_authorized">Authorized</string>
<string name="oauth_bangumi_cancel">Cancel</string>
<string name="oauth_bangumi_help_title">Help</string>
<string name="oauth_bangumi_help_bangumi_desc">What is Bangumi?</string>
<string name="oauth_bangumi_help_website_blocked">The browser says the website is blocked or inaccessible</string>
<string name="oauth_bangumi_help_register_choose">Which option should I choose when registering?</string>
<string name="oauth_bangumi_help_wrong_captcha">The site keeps saying the captcha is wrong during registration or sign-in</string>
<string name="oauth_bangumi_help_cant_receive_email">I can\'t receive the email verification code</string>
<string name="oauth_bangumi_help_activation_failed">Account activation keeps failing during registration</string>
<string name="oauth_bangumi_help_others">Other issues</string>
<string name="oauth_bangumi_help_bangumi_desc_content">Bangumi is a Chinese ACGN community website for sharing and discussion.\nBangumi provides anime indexes, collections, and watch progress tracking. Ani can sync your watch history to Bangumi.</string>
<string name="oauth_bangumi_help_website_blocked_content">Change your default browser in system settings. Google Chrome, Microsoft Edge, and Mozilla Firefox are recommended.</string>
<string name="oauth_bangumi_help_register_choose_content">Choose the option for managing ACG collections and watch progress, then sharing and discussing them.</string>
<string name="oauth_bangumi_help_wrong_captcha_content">If there is no captcha input box, try clicking the password box a few more times. If you entered the captcha incorrectly, refresh the page before signing in again.</string>
<string name="oauth_bangumi_help_cant_receive_email_content">Check your spam folder and try registering with a common email provider such as QQ Mail, NetEase Mail, or Outlook.</string>
<string name="oauth_bangumi_help_activation_failed_content">Delete the last character of the activation code, then type that character manually, or try another browser.</string>
<string name="oauth_bangumi_help_others_content">Can\'t solve your issue? You can also get help through the following channels.</string>
<!-- Video Player -->
<string name="video_player_aspect_fit">Fit</string>
<string name="video_player_aspect_stretch">Stretch</string>
<string name="video_player_aspect_crop">Crop</string>
<string name="video_player_auto">Auto</string>
<string name="video_player_audio_track">Audio</string>
<string name="video_player_off">Off</string>
<string name="video_player_subtitle">Subtitle</string>
<string name="video_player_disable_danmaku">Disable danmaku</string>
<string name="video_player_enable_danmaku">Enable danmaku</string>
<string name="video_player_mute">Mute</string>
<string name="video_player_volume">Volume</string>
<string name="video_player_next_episode">Next episode</string>
<string name="video_player_select_episode">Episodes</string>
<string name="video_player_send">Send</string>
<string name="video_player_speed">Speed</string>
<string name="video_player_skip_op_ed">Skipping OP or ED soon</string>
<string name="video_player_cancel">Cancel</string>
<string name="video_player_danmaku_placeholder_1">Send a danmaku~</string>
<string name="video_player_danmaku_placeholder_2">Careful, I\'m about to launch a danmaku!</string>
<string name="video_player_danmaku_placeholder_3">Every danmaku hides a secret</string>
<string name="video_player_danmaku_placeholder_4">Summon the danmaku spirit!</string>
<string name="video_player_danmaku_placeholder_5">Only you understand this moment best</string>
<string name="video_player_danmaku_placeholder_6">Make this danmaku different</string>
<string name="video_player_danmaku_placeholder_7">The gate to the danmaku world is open</string>
<string name="video_player_danmaku_placeholder_8">There are secrets hidden between the lines</string>
<string name="video_player_danmaku_placeholder_9">In the weave of light and shadow, your words are the only truth</string>
<string name="video_player_danmaku_placeholder_10">Interesting souls are one in a million</string>
<string name="video_player_danmaku_placeholder_11">Say something</string>
<string name="video_player_danmaku_placeholder_12">We\'re always collecting fun danmaku slogans</string>
<string name="video_player_danmaku_placeholder_13">Ad space for rent</string>
<string name="video_player_danmaku_placeholder_14">🤔</string>
<string name="video_player_danmaku_placeholder_15">Where dreams begin</string>
<string name="video_player_danmaku_placeholder_16">Thoughts take shape</string>
<string name="video_player_danmaku_placeholder_17">Send a danmaku and liven things up!</string>
<string name="video_player_danmaku_placeholder_18">How about a danmaku?</string>
<string name="video_player_danmaku_placeholder_19">Send a friendly danmaku!</string>
<string name="video_player_danmaku_placeholder_20">Can\'t help wanting to send a danmaku?</string>
<!-- Subject Collection -->
<string name="subject_collection_wish">Want to Watch</string>
<string name="subject_collection_doing">Watching</string>
<string name="subject_collection_done">Watched</string>
<string name="subject_collection_on_hold">On Hold</string>
<string name="subject_collection_dropped">Dropped</string>
<string name="subject_collection_delete">Unfollow</string>
<string name="subject_collection_collect">Follow</string>
<string name="subject_collection_current_wish">Marked Want to Watch</string>
<string name="subject_collection_current_doing">Marked Watching</string>
<string name="subject_collection_current_done">Marked Watched</string>
<string name="subject_collection_current_on_hold">Marked On Hold</string>
<string name="subject_collection_current_dropped">Marked Dropped</string>
<string name="subject_collection_not_collected">Not Followed</string>
<string name="subject_collection_delete_confirm_title">Unfollow</string>
<string name="subject_collection_delete_confirm_message">This will clear your watch progress and rating. This action cannot be undone. Are you sure you want to unfollow?</string>
<string name="subject_collection_delete_action">Delete</string>
<string name="subject_collection_cancel">Cancel</string>
<string name="subject_collection_set_all_episodes_watched">Mark all episodes as watched too?</string>
<string name="subject_collection_set">Set</string>
<string name="subject_collection_ignore">Ignore</string>
<string name="subject_collection_syncing">Syncing</string>
<string name="subject_collection_page_title">Following</string>
<string name="subject_collection_move_to_watched">Move to "Watched"</string>
<string name="subject_collection_uncollected">Uncollected</string>
<string name="subject_collection_guest_mode_tip">In guest mode, please search and watch directly, or sign in to use the collection feature.</string>
<string name="subject_details_collection_summary">%1$s follows / %2$s watching</string>
<string name="subject_details_collection_dropped"> / %1$s dropped</string>
<string name="subject_rendering_season_year_month">%1$s/%2$s</string>
<!-- Subject Episode -->
<string name="subject_episode_unwatch">Unmark Watched</string>
<string name="subject_episode_watched">Watched</string>
<string name="subject_episode_dropped">Dropped</string>
<string name="subject_episode_mark_watched">Mark Watched</string>
<string name="subject_episode_select_play">Episode Selection</string>
<string name="subject_episode_long_press_mark_watched">Long press to mark as watched</string>
<string name="subject_episode_details">Item Details</string>
<string name="subject_episode_close">Close</string>
<string name="subject_episode_cache">Cache</string>
<string name="cache_filter_collection_state">Collection State</string>
<string name="cache_filter_cache_type">Cache Type</string>
<string name="cache_filter_download_status">Download Status</string>
<string name="cache_filter_status_downloading">Downloading</string>
<string name="cache_filter_status_finished">Finished</string>
<string name="cache_filter_sort">Sort</string>
<string name="cache_filter_sort_newest">Newest Download</string>
<string name="cache_filter_sort_oldest">Oldest Download</string>
<string name="cache_filter_sort_subject_asc">Title A-Z</string>
<string name="cache_filter_sort_subject_desc">Title Z-A</string>
<string name="cache_filter_sort_episode_asc">Episode Ascending</string>
<string name="cache_filter_sort_episode_desc">Episode Descending</string>
<string name="cache_filter_collection_wish">Wish to Watch</string>
<string name="cache_filter_collection_doing">Watching</string>
<string name="cache_filter_collection_done">Watched</string>
<string name="cache_filter_collection_on_hold">On Hold</string>
<string name="cache_filter_collection_dropped">Dropped</string>
<string name="cache_filter_collection_not_collected">Not Collected</string>
<string name="cache_total_upload">Total Upload</string>
<string name="cache_total_download">Total Download</string>
<string name="cache_episode_cover">Cover</string>
<string name="cache_episode_resume_download">Resume Download</string>
<string name="cache_episode_pause_download">Pause Download</string>
<string name="cache_episode_manage_item">Manage Item</string>
<string name="cache_episode_download_completed">Download Completed</string>
<string name="cache_episode_download_failed">Download Failed</string>
<string name="cache_episode_downloading">Downloading</string>
<string name="cache_subject_episode_cache">Episode Cache</string>
<string name="cache_subject_delete">Delete</string>
<string name="cache_subject_cancel">Cancel</string>
<string name="cache_subject_cache">Cache</string>
<string name="cache_subject_select_storage">Select Storage Location</string>
<string name="cache_subject_manage_all">Manage All Cache</string>
<string name="cache_unknown">Unknown</string>
<string name="cache_management_select_item_for_details">Select an item to view cache details</string>
<string name="cache_management_selected_count">%1$d selected</string>
<string name="cache_management_exit_selection">Exit Selection</string>
<string name="cache_management_select_all">Select All</string>
<string name="cache_management_delete_selected">Delete Selected</string>
<string name="cache_management_enter_selection_mode">Enter Selection Mode</string>
<string name="cache_management_delete_cache_title">Delete Cache</string>
<string name="cache_management_delete_cache_confirmation">Deletion cannot be undone. Delete this cache?</string>
<string name="cache_management_finished_count">%1$d/%2$d completed</string>
<string name="cache_management_downloading_count">%1$d downloading</string>
<string name="cache_management_episode_label">Episode %1$d · %2$s</string>
<string name="cache_management_more_actions">More Actions</string>
<string name="cache_management_play">Play</string>
<string name="cache_management_invalid_cache_info">Cache information is invalid and cannot be played</string>
<string name="cache_management_streaming_not_supported">This resource does not support streaming while downloading. Please wait for the download to finish</string>
<string name="cache_management_more_info">More Info</string>
<string name="cache_details_title">Details</string>
<string name="cache_details_copied">Copied</string>
<string name="cache_details_copy">Copy</string>
<string name="cache_details_open_link">Open Link</string>
<string name="cache_details_open_file_failed">Failed to open file: %1$s</string>
<string name="cache_details_browse_file">Browse File</string>
<string name="cache_details_episode_range">Episode Range</string>
<string name="cache_details_source">Source</string>
<string name="cache_details_source_online">Online</string>
<string name="cache_details_source_local">Local</string>
<string name="cache_details_subtitle_group">Subtitle Group</string>
<string name="cache_details_subtitle_language">Subtitle Language</string>
<string name="cache_details_publish_time">Publish Time</string>
<string name="cache_details_resolution">Resolution</string>
<string name="cache_details_file_size">File Size</string>
<string name="cache_details_original_link">Original Link</string>
<string name="cache_details_file_type">File Type</string>
<string name="cache_details_original_download_link">Original Download Link</string>
<string name="cache_details_local_cache_path">Local Cache Path</string>
<string name="cache_details_total_segments">Total Segments</string>
<string name="cache_details_downloader_status">Downloader Internal Status</string>
<string name="cache_details_external_subtitle">External Subtitle %1$d</string>
<string name="settings_account_not_logged_in">Not Signed In</string>
<string name="settings_account_edit_profile">Edit Profile</string>
<string name="settings_account_login_register">Sign In / Sign Up</string>
<string name="settings_account_settings">Settings</string>
<string name="settings_account_logout">Logout</string>
<string name="settings_account_confirm_logout">Are you sure you want to sign out?</string>
<string name="settings_account_bangumi_manual_full_sync">Manual Full Sync</string>
<string name="settings_account_bangumi_redownload_all_data">Re-download All Bangumi Data</string>
<string name="settings_account_bangumi_redownload_all_data_description">Download Bangumi collection data into Animeko\'s collection service. You usually don\'t need to do this, since Animeko syncs automatically. Only run it if you notice data inconsistencies. This operation may take several minutes, and other features will be unavailable during sync. Note: full sync can only be performed once every 10 minutes.</string>
<string name="settings_account_bangumi_sync_queue">Sync Queue</string>
<string name="settings_account_bangumi_pending_sync_ops">Pending sync operations</string>
<string name="settings_account_bangumi_execute_all">Execute All</string>
<string name="settings_account_loading">Loading...</string>
<string name="settings_account_loading_placeholder">Loading... Loading... Loading...</string>
<string name="settings_account_bangumi_sync_update_collection">Update Collection: %1$d (%2$s)</string>
<string name="settings_account_bangumi_sync_delete_collection">Delete Collection: %1$d</string>
<string name="settings_account_bangumi_sync_mark_episode_unwatched">Mark Episode Unwatched: %1$d</string>
<string name="settings_account_bangumi_sync_mark_episode_watched">Mark Episode Watched: %1$d (%2$s)</string>
<string name="settings_account_bangumi_sync_unknown_op">Unknown operation (please update the app)</string>
<string name="settings_account_profile_nickname">Nickname</string>
<string name="settings_account_profile_not_set">Not Set</string>
<string name="settings_account_profile_nickname_hint">Up to 20 characters; Chinese, Japanese, English letters, numbers, and underscores only</string>
<string name="settings_account_profile_email">Email</string>
<string name="settings_account_profile_bind">Bind</string>
<string name="settings_account_profile_user_id">User ID</string>
<string name="settings_account_profile_third_party_accounts">Third-Party Accounts</string>
<string name="settings_account_profile_not_bound">Not Bound</string>
<string name="settings_account_profile_unbind">Unbind</string>
<string name="settings_account_profile_unbind_bangumi_confirmation">Unbind Bangumi? Watch history will no longer sync to Bangumi. You can bind it again later.</string>
<string name="settings_account_profile_select_avatar">Select Avatar</string>
<string name="settings_account_profile_done">Done</string>
<string name="settings_account_profile_upload_avatar">Upload Avatar</string>
<string name="settings_account_profile_select_file">Select File</string>
<string name="settings_account_profile_select_file_description">Supports JPEG/PNG/WebP, up to 1MB. Multiple uploads require a one-minute interval.</string>
<string name="settings_account_profile_select_file_description_desktop">Or drag a file here. Supports JPEG/PNG/WebP, up to 1MB. Multiple uploads require a one-minute interval.</string>
<string name="settings_account_profile_uploading_avatar">Uploading...</string>
<string name="settings_account_profile_avatar_size_exceeded">Image size exceeds 1MB</string>
<string name="settings_account_profile_avatar_invalid_format">Unsupported image format</string>
<string name="settings_account_profile_crop_and_upload">Crop and Upload</string>
<string name="settings_account_profile_crop_avatar">Crop Avatar</string>
<string name="settings_account_profile_crop_hint">Drag the selection to move it, or drag the corners to resize</string>
<string name="exploration_followed_collect_as_to_show_here">Follow an anime as "%1$s" and it will appear here</string>
<string name="subject_details_login_to_collect">Sign in to follow</string>
<string name="subject_details_coming_soon">Coming soon</string>
<string name="subject_details_write_review">Write Review</string>
<string name="subject_details_tab_details">Details</string>
<string name="subject_details_tab_comments">Reviews</string>
<string name="subject_details_tab_discussions">Discussions</string>
<string name="subject_details_characters">Characters</string>
<string name="subject_details_characters_with_count">Characters %1$d</string>
<string name="subject_details_staff">Staff</string>
<string name="subject_details_staff_with_count">Staff %1$d</string>
<string name="subject_details_related_subjects">Related titles</string>
<string name="subject_details_show_less">Show less</string>
<string name="subject_details_show_more">Show more</string>
<string name="subject_details_view_all">View all</string>
<string name="subject_details_relation_prequel">Prequel</string>
<string name="subject_details_relation_sequel">Sequel</string>
<string name="subject_details_relation_derived">Spin-off</string>
<string name="subject_details_relation_special">Special</string>
<string name="foundation_load_error_network">Network error</string>
<string name="foundation_load_error_rate_limited">You\'re doing that too fast. Please try again</string>
<string name="foundation_load_error_service_unavailable">Service unavailable</string>
<string name="foundation_load_error_no_results">No results</string>
<string name="foundation_load_error_requires_login">This feature requires sign-in</string>
<string name="foundation_load_error_unknown_with_message">Unknown error: %1$s</string>
<string name="foundation_load_error_no_details">No details</string>
<string name="foundation_load_error_request_error">Request error: %1$s</string>
<string name="foundation_load_error_copied_feedback">Copied. Please report it on GitHub issues or in the group chat</string>
<string name="foundation_load_error_unknown_feedback">An unknown error occurred. Please report it in Settings with logs attached</string>
<string name="foundation_error_dialog_default_message">Operation failed, please try again</string>
<string name="foundation_error_dialog_copy_prefix">Operation failed</string>
<string name="media_subtitle_kind_embedded">Embedded</string>
<string name="media_subtitle_kind_closed">Closed</string>
<string name="media_subtitle_kind_external_provided">External</string>
<string name="media_subtitle_kind_external_discovered">Unknown</string>
<string name="media_subtitle_kind_closed_or_external_discovered">Closed or Unknown</string>
<string name="media_subtitle_language_chinese_cantonese">Cantonese</string>
<string name="media_subtitle_language_chinese_simplified">Simplified Chinese</string>
<string name="media_subtitle_language_chinese_traditional">Traditional Chinese</string>
<string name="media_subtitle_language_japanese">Japanese</string>
<string name="media_subtitle_language_english">English</string>
<string name="media_selector_filter_resolution">Resolution</string>
<string name="media_selector_filter_subtitle">Subtitle</string>
<string name="media_selector_filter_alliance">Fansub</string>
<string name="media_selector_filter_expand">Expand</string>
<string name="media_selector_filter_clear">Clear filter</string>
<string name="media_selector_filter_selected">Selected</string>
<string name="media_selector_item_no_subtitle">No subtitles</string>
<string name="media_selector_item_single_episode_resource">Single-episode resource</string>
<string name="media_selector_item_unsupported_playback">Unsupported playback</string>
<string name="media_selector_item_season_mismatch">Season mismatch</string>
<string name="media_selector_item_subject_title_mismatch">Title mismatch</string>
<string name="mediafetch_request_editor_invalid_request">Invalid request. Please check it</string>
<string name="mediafetch_request_editor_save_and_refresh">Save and refresh</string>
<string name="mediafetch_request_editor_title">Edit request</string>
<string name="mediafetch_request_editor_primary_name">Primary search name</string>
<string name="mediafetch_request_editor_primary_name_supporting">Most data sources only use this name</string>
<string name="mediafetch_request_editor_secondary_names">Secondary search names</string>
<string name="mediafetch_request_editor_secondary_names_supporting">Online sources ignore these names</string>
<string name="mediafetch_request_editor_collapse">Collapse</string>
<string name="mediafetch_request_editor_expand">Expand</string>
<string name="mediafetch_request_editor_delete_name">Delete name %1$d</string>
<string name="mediafetch_request_editor_add_name">Add name</string>
<string name="mediafetch_request_editor_episode_info">Episode info</string>
<string name="mediafetch_request_editor_episode_info_supporting">A resource must match at least one of the following two pieces of information, otherwise it will not be shown. You can change only one of them</string>
<string name="mediafetch_request_editor_episode_sort">Series episode number</string>
<string name="mediafetch_request_editor_episode_sort_supporting">Assuming there are two seasons with 12 episodes each, the first episode of season 2 would be 13</string>
<string name="mediafetch_request_editor_episode_ep">Season episode number</string>
<string name="mediafetch_request_editor_episode_ep_supporting">The number within the current season, for example, the first episode of season 2 is 01</string>
<string name="mediafetch_request_editor_discard">Discard</string>
<string name="mediafetch_request_editor_continue_editing">Continue editing</string>
<string name="mediafetch_request_editor_discard_confirmation">You have unsaved changes. Discard them?</string>
<string name="media_selector_web_edit_query_prompt">Not right? </string>
<string name="media_selector_web_edit_query_action">Edit query</string>
<string name="media_selector_web_waiting_captcha">Waiting for captcha handling</string>
<string name="media_selector_summary_manual_select">Manual select</string>
<string name="media_selector_summary_change">Change</string>
<string name="media_selector_summary_auto_selecting">Automatically selecting a data source</string>
<string name="media_selector_summary_select_source">Please select a data source</string>
<string name="media_selector_summary_source">Data source</string>
<string name="media_selector_summary_searched">Searched:</string>
<string name="media_source_results_searching">Searching</string>
<string name="media_source_results_searched">Searched</string>
<string name="media_source_results_data_sources_count">%1$s %2$d/%3$d data sources</string>
<string name="media_source_results_help">Help</string>
<string name="media_source_results_settings">Settings</string>
<string name="media_source_results_temp_enable">Tap to enable temporarily</string>
<string name="media_source_results_failed">Query failed</string>
<string name="media_source_results_click_retry">Tap to retry</string>
<string name="media_source_results_captcha_required">Captcha required</string>
<string name="media_source_results_click_verify">Tap to verify</string>
<string name="media_source_results_success">Query succeeded</string>
<string name="media_source_results_verify">Verify</string>
<string name="media_selector_help_title">Data source help</string>
<string name="media_selector_help_source_types">Data source types</string>
<string name="media_selector_help_bt_description">Fetch resources from the BitTorrent network. Quality is usually higher and coverage is broader, but loading may be slower</string>
<string name="media_selector_help_web_description">Fetch resources from online video sites. Loading is usually faster, but quality is often lower</string>
<string name="media_selector_view_simple_mode">Simple mode</string>
<string name="media_selector_view_detailed_mode">Detailed mode</string>
<string name="media_selector_view_filtered_count">Filtered %1$d/%2$d resources</string>
<string name="media_selector_view_show_excluded">Show excluded resources (%1$d)</string>
<string name="settings_mediasource_selector_episode_open_link_failed">Unable to open the link</string>
<string name="settings_mediasource_selector_episode_open_original_link">Open original link %1$s</string>
<string name="settings_mediasource_selector_episode_edit_config">Edit configuration</string>
<string name="settings_mediasource_selector_episode_no_matched_video">Based on the Step 3 configuration, no playable link was matched from %1$d links. Please check the configuration</string>
<string name="settings_mediasource_selector_episode_single_matched_video">Based on the Step 3 configuration, %2$d playable link was matched from %1$d links</string>
<string name="settings_mediasource_selector_episode_multiple_matched_video">Based on the Step 3 configuration, %2$d playable links were matched from %1$d links. For better stability, adjust the rules so exactly one link is matched</string>
<string name="settings_mediasource_selector_episode_hide_images">Hide images</string>
<string name="settings_mediasource_selector_episode_hide_css">Hide CSS/fonts</string>
<string name="settings_mediasource_selector_episode_hide_scripts">Hide JS/WASM</string>
<string name="settings_mediasource_selector_episode_hide_data">Hide data</string>
<string name="settings_mediasource_selector_episode_actual_play_url">Actual playback: %1$s</string>
<string name="settings_mediasource_selector_episode_nested_link">Nested link</string>
<string name="settings_mediasource_selector_episode_matched">Matched</string>
<string name="settings_mediasource_selector_episode_not_matched">Not matched</string>
<string name="subject_episode_default_title">Episode %1$s</string>
<string name="subject_episode_cached">Cached</string>
<string name="subject_episode_danmaku_count">Danmaku count</string>
<string name="subject_episode_danmaku_disabled">Disabled</string>
<string name="subject_episode_danmaku_settings_for">Danmaku settings for %1$s</string>
<string name="subject_episode_danmaku_service_bilibili">Bilibili</string>
<string name="subject_episode_danmaku_service_dandanplay">Dandanplay</string>
<string name="subject_episode_danmaku_match_exact">Exact match</string>
<string name="subject_episode_danmaku_match_semi_fuzzy">Semi-fuzzy match</string>
<string name="subject_episode_danmaku_match_fuzzy">Fuzzy match</string>
<string name="subject_episode_danmaku_match_none">No match</string>
<string name="subject_episode_share_stream_link">stream link</string>
<string name="subject_episode_share_torrent_download_link">torrent download link</string>
<string name="subject_episode_share_local_file_link">local file link</string>
<string name="subject_episode_share_magnet_link">magnet link</string>
<string name="subject_episode_share_webpage_link">webpage link</string>
<string name="subject_episode_share_copy_link">Copy %1$s</string>
<string name="subject_episode_share_open_link">Open %1$s</string>
<string name="subject_episode_share_open_with_other_app">Open with another app</string>
<string name="subject_episode_share_copy_source_page">Copy source page link</string>
<string name="subject_episode_share_open_source_page">Open source page</string>
<string name="subject_episode_episode_list">Episode list</string>
<string name="subject_episode_view_more_episodes">View more episodes</string>
<string name="subject_progress_continue_watching">Continue watching %1$s</string>
<string name="subject_progress_done">Finished</string>
<string name="subject_progress_not_on_air">Not yet aired</string>
<string name="subject_progress_starts_on">Starts %1$s</string>
<string name="subject_progress_start_watching">Start watching</string>
<string name="subject_progress_updates_on">Updates %1$s</string>
<string name="subject_progress_watched">Watched %1$s</string>
<string name="subject_progress_unknown">Unknown</string>
<string name="subject_airing_upcoming">Not yet aired</string>
<string name="subject_airing_on_air">On air</string>
<string name="subject_airing_on_air_to">Up to %1$s</string>
<string name="subject_airing_completed">Completed</string>
<string name="subject_airing_total_episodes_completed">All %1$s eps</string>
<string name="subject_airing_total_episodes_scheduled">Planned %1$s eps</string>
<string name="episode_comments">Comments</string>
<string name="episode_comments_with_count">Comments %1$d</string>
<string name="episode_summary_share">Share</string>
<string name="episode_summary_download">Download</string>
<string name="episode_danmaku_match_change">Change danmaku</string>
<string name="episode_danmaku_match_loading_subjects">Loading episode list…</string>
<string name="episode_danmaku_match_loading_danmaku">Loading danmaku list…</string>
<string name="episode_danmaku_match_select_subject">Select subject</string>
<string name="episode_danmaku_match_select_episode">Select episode</string>
<string name="episode_send_danmaku">Send</string>
<string name="exploration_search_back_to_top">Back to top</string>
<string name="exploration_search_results_shown">%1$d results shown</string>
<string name="exploration_search_sort_match">Best match</string>
<string name="exploration_search_sort_collection">Most follows</string>
<string name="exploration_search_sort_rank">Highest rank</string>
<string name="exploration_search_staff_prefix">Staff: </string>
<string name="exploration_search_filter_audience">Audience</string>
<string name="exploration_search_filter_category">Category</string>
<string name="exploration_search_filter_character">Character</string>
<string name="exploration_search_filter_emotion">Emotion</string>
<string name="exploration_search_filter_genre">Genre</string>
<string name="exploration_search_filter_rating">Rating</string>
<string name="exploration_search_filter_region">Region</string>
<string name="exploration_search_filter_series">Series</string>
<string name="exploration_search_filter_setting">Setting</string>
<string name="exploration_search_filter_source">Source</string>
<string name="exploration_search_filter_technology">Technology</string>
<string name="exploration_search_filter_custom">Custom</string>
<string name="settings_app_background_running">Background running</string>
<string name="settings_app_background_running_description">Caching downloads require the app to keep running in the background</string>
<string name="settings_app_ignore_battery_optimizations">Ignore battery optimizations</string>
<string name="settings_app_ignore_battery_optimizations_description">Helps keep the app running in the background. May increase battery use</string>
<string name="settings_app_notification_settings">Notification settings</string>
<string name="settings_app_open_settings">Open settings</string>
<string name="settings_app_danmaku_refresh_rate">Danmaku refresh rate</string>
<string name="settings_log_share_today_log_file">Share today\'s log file</string>
<string name="settings_log_share_file">Share log file</string>
<string name="settings_log_copy_today_log_content">Copy today\'s log content (large)</string>
<string name="settings_log_file_not_found">Log file not found</string>
<string name="rating_requires_collection">Follow this anime before rating</string>
<string name="rating_discard_edit_title">Discard changes</string>
<string name="rating_discard_edit_message">Your rating has not been saved. Discard it?</string>
<string name="rating_discard">Discard</string>
<string name="rating_edit_title">Edit rating</string>
<string name="rating_comment_label">Comment</string>
<string name="rating_comment_hint">Say something...</string>
<string name="rating_comment_optional">Optional</string>
<string name="rating_private_only">Visible only to you</string>
<string name="rating_score_class_terrible_caution">Terrible (rate carefully)</string>
<string name="rating_score_class_very_bad">Very bad</string>