-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathstrings.xml
1033 lines (1032 loc) · 70.2 KB
/
strings.xml
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>
<string name="abc_action_bar_home_description">Navigate home</string>
<string name="abc_action_bar_up_description">Navigate up</string>
<string name="abc_action_menu_overflow_description">More options</string>
<string name="abc_action_mode_done">Done</string>
<string name="abc_activity_chooser_view_see_all">See all</string>
<string name="abc_activitychooserview_choose_application">Choose an app</string>
<string name="abc_capital_off">OFF</string>
<string name="abc_capital_on">ON</string>
<string name="abc_font_family_body_1_material">sans-serif</string>
<string name="abc_font_family_body_2_material">sans-serif-medium</string>
<string name="abc_font_family_button_material">sans-serif-medium</string>
<string name="abc_font_family_caption_material">sans-serif</string>
<string name="abc_font_family_display_1_material">sans-serif</string>
<string name="abc_font_family_display_2_material">sans-serif</string>
<string name="abc_font_family_display_3_material">sans-serif</string>
<string name="abc_font_family_display_4_material">sans-serif-light</string>
<string name="abc_font_family_headline_material">sans-serif</string>
<string name="abc_font_family_menu_material">sans-serif</string>
<string name="abc_font_family_subhead_material">sans-serif</string>
<string name="abc_font_family_title_material">sans-serif-medium</string>
<string name="abc_search_hint">Search…</string>
<string name="abc_searchview_description_clear">Clear query</string>
<string name="abc_searchview_description_query">Search query</string>
<string name="abc_searchview_description_search">Search</string>
<string name="abc_searchview_description_submit">Submit query</string>
<string name="abc_searchview_description_voice">Voice search</string>
<string name="abc_shareactionprovider_share_with">Share with</string>
<string name="abc_shareactionprovider_share_with_application">Share with %s</string>
<string name="abc_toolbar_collapse_description">Collapse</string>
<string name="account">Account</string>
<string name="account_and_cloud">Account</string>
<string name="action_item_add">Add to playlist</string>
<string name="action_item_add_song">Add to playlist</string>
<string name="action_item_add_to_current_playlist">Queue</string>
<string name="action_item_add_to_favorite_playlist">Favorites</string>
<string name="action_item_add_to_new_playlist">New</string>
<string name="action_item_as_ring">Set as ringtone</string>
<string name="action_item_cancel">Cancel</string>
<string name="action_item_delete">Delete</string>
<string name="action_item_download">Download</string>
<string name="action_item_download_all_cloud">Download all songs</string>
<string name="action_item_favorite">Favorite</string>
<string name="action_item_hide">Hide</string>
<string name="action_item_hifi">Headphones & audio effects</string>
<string name="action_item_modify_info">Modify info</string>
<string name="action_item_play_all">Play all</string>
<string name="action_item_play_next">Play later</string>
<string name="action_item_remove">Remove</string>
<string name="action_item_share">Share</string>
<string name="action_item_show_album">Album: %s</string>
<string name="action_item_show_artist">Artist: %s</string>
<string name="action_settings">Settings</string>
<string name="ad_close">Close</string>
<string name="ad_data_exception">Ad data error</string>
<string name="ad_details">View Details</string>
<string name="ad_downloading">Downloading</string>
<string name="ad_immediate_download">Download</string>
<string name="ad_immediate_open">Open</string>
<string name="ad_installing">Installing</string>
<string name="ad_mark">AD</string>
<string name="ad_recommend_for_you">Recommend</string>
<string name="add_shortcut">Add to Home screen</string>
<string name="add_shortcut_succeed">This Home screen shortcut already exists</string>
<string name="add_shortcut_success">Created Home screen shortcut successfully</string>
<string name="add_to_playlist_successful">Added successfully</string>
<string name="add_to_trust_device">This is a trusted devices</string>
<string name="added_next_play">Added to play next</string>
<string name="alaka_required">You should pay for this song to listen to it</string>
<string name="albun_publish_time">Released on %1$s</string>
<string name="alert_frequency_duplicate">This frequency already exists</string>
<string name="alert_invalid_frequency">Invalid frequency</string>
<string name="alert_message_delete_station">This preset will be deleted.</string>
<string name="all_comment">全部评论(%s条)</string>
<string name="all_downloads">All downloads</string>
<string name="all_fileter">All</string>
<string name="all_play">Play all</string>
<string name="all_tracks">All songs</string>
<string name="already_download">Downloading…</string>
<string name="already_favorited">Already favorited</string>
<string name="and"> and </string>
<string name="apk_filter">APK</string>
<string name="app_downloads">%s downloads</string>
<string name="app_label">Downloads</string>
<string name="app_name">FM Radio</string>
<string name="appbar_scrolling_view_behavior">android.support.design.widget.AppBarLayout$ScrollingViewBehavior</string>
<string name="artist_album">Albums</string>
<string name="artist_area_all">All</string>
<string name="artist_area_china">China</string>
<string name="artist_area_europe_usa">Europe/USA</string>
<string name="artist_area_japan">Japan</string>
<string name="artist_area_korea">Korea</string>
<string name="artist_gender_all">All</string>
<string name="artist_gender_female">Female</string>
<string name="artist_gender_group">Group</string>
<string name="artist_gender_male">Male</string>
<string name="artist_home_search_hint">Search for artists</string>
<string name="asset_sync_alert_not_now">Not now</string>
<string name="asset_sync_network_data_alert_message">Backing up songs using mobile data may generate additional mobile data fees. Back up anyway?</string>
<string name="asset_sync_network_data_alert_title">"You're using mobile data"</string>
<string name="asset_sync_network_unavailable_alert_message">Connect to the internet to back up songs</string>
<string name="asset_sync_network_unavailable_alert_title">"Couldn't connect to the network"</string>
<string name="asset_sync_power_alert_message">Connect charger to back up songs.</string>
<string name="asset_sync_power_alert_title">Low battery</string>
<string name="audio_recognition_setting_summary">Find album covers and lyrics for local songs automatically</string>
<string name="auth_activity_title">Xunlei Account</string>
<string name="author_other_albums">"Author's other albums"</string>
<string name="author_other_albums_empty">"The author hasn't uploaded any other album yet"</string>
<string name="auto_enter_nowplaying_setting_title">Show maximized player automatically</string>
<string name="auto_payment">Automatic renewal</string>
<string name="auto_payment_date">Next payment: %s</string>
<string name="auto_restart_under_wifi">File will be downloaded when the device is connected to Wi-Fi</string>
<string name="auto_upgrade">Update automatically</string>
<string name="available_playlist_name_format">New playlist %d</string>
<string name="back_confirm">Tap again to push the app to background</string>
<string name="backup_complete">All songs are backed up to Xiaomi Cloud</string>
<string name="backup_empty_button">No songs selected</string>
<string name="backup_immediate">Back up</string>
<string name="backup_song_title">Select songs to back up</string>
<string name="being_disable_auto_payment">Turning off…</string>
<string name="being_enable_auto_payment">Turning on…</string>
<string name="bind_sign_in_title">Bind to Mi Account</string>
<string name="bluetooth_device">Bluetooth audio device</string>
<string name="bottom_sheet_behavior">android.support.design.widget.BottomSheetBehavior</string>
<string name="buffering">Buffering…</string>
<string name="button_cancel_download">Cancel</string>
<string name="button_download_now">Download now</string>
<string name="button_queue_for_wifi">Queue</string>
<string name="button_sort_by_date">Sort by date</string>
<string name="button_sort_by_size">Sort by size</string>
<string name="button_wait_for_wifi">Wait</string>
<string name="can_heard_not_download">Songs can only be heard and cannot be downloaded…</string>
<string name="cancel">Cancel</string>
<string name="cancel_running_download">Cancel</string>
<string name="cannot_comment_try_scroll">This song can not be commented,try to scroll</string>
<string name="cannot_reply">"Can't reply to this comment now."</string>
<string name="change_download_quality">Change download quality</string>
<string name="channel_name_download">Download manager</string>
<string name="channel_name_file">File scanning</string>
<string name="channel_tip_text">More radio stations</string>
<string name="character_counter_pattern">%1$d / %2$d</string>
<string name="check_in_complete_text">Checked in</string>
<string name="check_in_label_text">Check in to get membership</string>
<string name="check_in_text">Check in</string>
<string name="check_in_vip_card_label1">You checked in 7 days in a row</string>
<string name="check_in_vip_card_label2">"Here's your membership!"</string>
<string name="check_pay_order_progress">Recharging...</string>
<string name="choose_download_quality">Choose download quality</string>
<string name="choose_stream_quality">Choose streaming quality</string>
<string name="choose_to_signin">Yes</string>
<string name="choose_to_signup">"No, I'll create one"</string>
<string name="click_login">Tap to sign in</string>
<string name="click_to_shuffle">Tap to shuffle</string>
<string name="cloud_empty_local_empty_button">No songs on this device</string>
<string name="cloud_empty_message">No songs in Xiaomi Cloud</string>
<string name="cloud_empty_summary">Back up songs to Xiaomi Cloud to access them from other devices</string>
<string name="cloud_enable">Sync music with the cloud</string>
<string name="cloud_loading_message">Searching for songs…</string>
<string name="cloud_music">Songs in Xiaomi Cloud</string>
<string name="cloud_state_cloud_space_full">Not enough Xiaomi Cloud storage. Paused backup.</string>
<string name="cloud_state_low_power">Connect charger to resume backup</string>
<string name="cloud_state_network_data">"Couldn't find Wi-Fi networks, paused backup"</string>
<string name="cloud_state_network_unavailable">"Couldn't connect to the network, paused backup"</string>
<string name="cloud_state_storage_full">Not enough phone storage, paused backup</string>
<string name="cloud_welcome_message">Back up songs</string>
<string name="cloud_welcome_summary">Back up your songs to Xiaomi Cloud and listen to them on other devices</string>
<string name="collect_to_desktop">Add to Home screen</string>
<string name="comment">Comment</string>
<string name="comment_action_title">"%s's comment"</string>
<string name="comment_count">%s条评论</string>
<string name="comment_delete_hint">Deleted successfully</string>
<string name="comment_empty">这些歌,唱着你心里怎样的故事?</string>
<string name="comment_format" formatted="false">%s: %s</string>
<string name="comment_input_empty">"Can't add empty comments."</string>
<string name="comment_input_hint">Enter comment</string>
<string name="comment_list_title">全部评论</string>
<string name="comment_trend_title">精彩评论</string>
<string name="confirm">OK</string>
<string name="confirm_delete_comment">Delete this comment?</string>
<string name="connecting_apk">Connecting…</string>
<string name="context_menu_item_delete">Delete</string>
<string name="context_menu_item_edit">Edit</string>
<string name="context_menu_item_favorite">Add to presets</string>
<string name="context_menu_item_unfavorite">Remove from presets</string>
<string name="context_menu_title">%s MHz</string>
<string name="continue_backup">Continue</string>
<string name="copy">Copy</string>
<string name="copy_success">Copied to clipboard successfully</string>
<string name="copyright_song_add">I want copyright</string>
<string name="copyright_song_count">(%1$s)</string>
<string name="copyright_song_ten_thousand">%1$sw</string>
<string name="cp_other_error">"This item isn't currently available due to copyright issues. Stay tuned!"</string>
<string name="create_order_fail">"Couldn't create order, try again."</string>
<string name="create_playlist">Create playlist</string>
<string name="create_playlist_failure">"Couldn't create playlist"</string>
<string name="current_version">Current version</string>
<string name="data_usage_warning">Data usage</string>
<string name="data_usage_warning_summary">Using your mobile data connection to stream high quality music may increase your data usage charges.</string>
<string name="date_format_str">MM-dd-yyyy</string>
<string name="default_songtab_name">Playlist categories</string>
<string name="delete">Delete</string>
<string name="delete_comment_failed">"Couldn't delete comment"</string>
<string name="delete_comment_successfully">Deleted comment successfully</string>
<string name="delete_download">Delete</string>
<string name="delete_downloads_records">Delete downloads</string>
<string name="delete_file_as_well">Permanently delete this song</string>
<string name="delete_file_end">Delete permanently</string>
<string name="delete_file_start">Delete selected files</string>
<string name="delete_single_fm_history">Delete this playback history record?</string>
<string name="delete_the_downloaded_file">Downloaded files will be deleted.</string>
<string name="deselect_all">Deselect all</string>
<string name="desktop_lyric_lock_toast">Locked. You can unlock Music in Notification shade.</string>
<string name="desktop_lyric_setting_title">Home screen lyrics</string>
<string name="detail">Details</string>
<string name="device_connected">Connected</string>
<string name="device_not_connected">Not connected</string>
<string name="dialog_cannot_resume">"Download interrupted. It can't be resumed."</string>
<string name="dialog_confirm_delete_checkbox_message">Delete local files as well</string>
<string name="dialog_failed_body">Try downloading later or remove the file from the queue?</string>
<string name="dialog_file_already_exists">"Can't download. This file already exists."</string>
<string name="dialog_file_missing_body">"Couldn't find the downloaded file."</string>
<string name="dialog_file_missing_title">"Can't open file"</string>
<string name="dialog_insufficient_space_on_cache">Not enough space on internal storage</string>
<string name="dialog_insufficient_space_on_external">Not enough space on external storage</string>
<string name="dialog_media_not_found">"Can't download. SD card isn't available."</string>
<string name="dialog_not_show_again">"Don't show again"</string>
<string name="dialog_queued_body">This file is queued for future download.</string>
<string name="dialog_show_more_backup">Back up local songs</string>
<string name="dialog_show_more_optimize_all">Optimize song info</string>
<string name="dialog_sleep_title">Set sleep timer</string>
<string name="dialog_song_sort_type">Sort songs</string>
<string name="dialog_song_sort_type_name">By name</string>
<string name="dialog_song_sort_type_playing_times">By the number of times played</string>
<string name="dialog_song_sort_type_time">By adding time</string>
<string name="dialog_song_view_type">Show local music</string>
<string name="dialog_song_view_type_album">By album</string>
<string name="dialog_song_view_type_artist">By artist</string>
<string name="dialog_song_view_type_folder">By folder</string>
<string name="dialog_song_view_type_song">By song</string>
<string name="dialog_title_delete_tracks">Delete</string>
<string name="dialog_title_name_playlist">Playlist name</string>
<string name="dialog_title_not_available">"Couldn't download"</string>
<string name="dialog_title_queued_body">File not yet available</string>
<string name="dialog_title_remove_tracks">Remove</string>
<string name="disable_auto_payment_fail">"Couldn't turn off"</string>
<string name="disable_auto_payment_fail_message">"Couldn't turn off automatic renewal"</string>
<string name="disable_auto_payment_success">Turned off</string>
<string name="disable_auto_payment_success_message">"Turned off automatic renewal. After your current subscription expires, you'll have to subscribe again to download songs."</string>
<string name="disallow_add_to_fm">"Can't add songs to FM radio"</string>
<string name="disallow_add_to_personal_radio">"Can't add songs to Personal radio"</string>
<string name="dislike_comment_success">Removed like</string>
<string name="doc_filter">Docs</string>
<string name="download">Download</string>
<string name="download_added_to_list">Added to download list</string>
<string name="download_allow_switch">Download using mobile data</string>
<string name="download_apk_desktop_installing">Installing</string>
<string name="download_apk_desktop_pause">Paused</string>
<string name="download_apk_desktop_pending">Pending</string>
<string name="download_apk_desktop_running">Downloading</string>
<string name="download_auto_after_favorite_title">Download favorites</string>
<string name="download_auto_cancel">Download favorites is off</string>
<string name="download_auto_message">"Songs that you favorite will be downloaded automatically when you're connected to Wi-Fi. You can change this in Settings."</string>
<string name="download_cloud_error_not_auth">Sign in to Mi Account and try again.</string>
<string name="download_cloud_error_retryable">Xiaomi Cloud server error. Wait a minute or two and try again.</string>
<string name="download_cloud_error_unknow">"Couldn't connect to Xiaomi Cloud"</string>
<string name="download_complete">Downloaded successfully</string>
<string name="download_complete_start_install">Installing…</string>
<string name="download_completed">Downloaded</string>
<string name="download_confirm_button_text">Install</string>
<string name="download_confirm_text">Mi Music will download and install %s</string>
<string name="download_error">Unsuccessful</string>
<string name="download_error_insufficient_space">Not enough space</string>
<string name="download_fail_to_fetch_info">"Couldn't download, try again"</string>
<string name="download_fee_alert_title">Downloading paid songs</string>
<string name="download_filesize_unknown">Unknown</string>
<string name="download_fm">Download</string>
<string name="download_in_process">DOWNLOADING</string>
<string name="download_info_start_deleted_tasks">Remove downloads</string>
<string name="download_list_get_free_vip">Xunlei trial</string>
<string name="download_list_get_hightspeed_flow_auto_open">Xunlei download acceleration is on</string>
<string name="download_list_get_hightspeed_flow_pay_ok">Payment complete</string>
<string name="download_list_get_hightspeed_flow_sucess_head">Xunlei trial session created</string>
<string name="download_list_get_hightspeed_flow_sucess_tail">Enjoy faster download speeds powered by Xunlei</string>
<string name="download_manage">Downloads</string>
<string name="download_manage_item_complete">COMPLETE</string>
<string name="download_more">Download more</string>
<string name="download_no_application_title">"Can't open file"</string>
<string name="download_paused">Download paused</string>
<string name="download_paused_in_power_save_mode">Downloads are paused when Battery saver is on</string>
<string name="download_pending">Download pending</string>
<string name="download_percent">%d%%</string>
<string name="download_queued">Queued</string>
<string name="download_running">In progress</string>
<string name="download_running_percent">In progress, %d%%</string>
<string name="download_service_running">Download management is running</string>
<string name="download_share_dialog">Share using</string>
<string name="download_space_state">Occupied: %1$s | Available: %2$s</string>
<string name="download_speed_null"/>
<string name="download_start">Starting to download…</string>
<string name="download_start_apk">Starting to download… View progress in the Notification shade.</string>
<string name="download_start_apk_black_shark">Starting to download… View progress in the Files.</string>
<string name="download_success">Complete</string>
<string name="download_times">Download times remaining: %d</string>
<string name="download_title_sorted_by_date">Downloads - Sorted by date</string>
<string name="download_title_sorted_by_size">Downloads - Sorted by size</string>
<string name="download_toast">Using mobile data to download songs</string>
<string name="download_toast_with_beyond_data">Using mobile data to download songs. Exceeded limit by %s</string>
<string name="download_toast_with_data">Using mobile data to download songs, %s remaining</string>
<string name="download_traffic_dialog_msg">You have %s of mobile data left. Use mobile data to download songs?</string>
<string name="download_traffic_dialog_msg_beyond">"You've already exceeded your mobile data limit by %s. Use mobile data to download songs?"</string>
<string name="download_traffic_dialog_msg_serious">You have only %s of mobile data left. Use mobile data to download songs?</string>
<string name="download_traffic_dialog_msg_without_data">"You're using mobile data to download songs. Download anyway?"</string>
<string name="download_traffic_dialog_negative_button">Wait for Wi-Fi</string>
<string name="download_traffic_dialog_position_button">Download</string>
<string name="download_traffic_dialog_position_button_serious">Still download</string>
<string name="download_traffic_dialog_title">Data usage warning</string>
<string name="download_traffic_dialog_title_beyond">Data usage exceeded</string>
<string name="download_traffic_dialog_title_serious">Too little mobile data left</string>
<string name="download_unknown_title"><Untitled></string>
<string name="download_update_time">Updated on %1$s</string>
<string name="download_wait_connect">Waiting to connect</string>
<string name="download_when_network_connected">Download when connected to the internet</string>
<string name="downloaded_empty">Empty</string>
<string name="downloading_apk">Downloading… View progress in the Notification shade.</string>
<string name="downloading_apk_black_shark">Downloading… View progress in the Files.</string>
<string name="downloading_empty">Empty</string>
<string name="downloading_pause_apk">Paused. Resume download in the Notification shade.</string>
<string name="downloads_operating">Working…</string>
<string name="drm_check_permission_error">Connect to the network to check whether this song is available to you.</string>
<string name="drm_login_message">Due to copyright restrictions, you must sign in to check whether this song is available to you.</string>
<string name="durationformatlong">%1$d:%3$02d:%5$02d</string>
<string name="durationformatlong_padding_with_0">%1$02d:%3$02d:%5$02d</string>
<string name="durationformatshort">%2$d:%5$02d</string>
<string name="durationformatshort_padding_with_0">%2$02d:%5$02d</string>
<string name="edit">Delete multiple items</string>
<string name="editmode_menu_delete">Delete</string>
<string name="editmode_menu_share">Share</string>
<string name="empty_page_no_album">No albums.</string>
<string name="empty_page_no_artist">No artists.</string>
<string name="empty_view_default_text">No content</string>
<string name="empty_view_download_text">No items here yet.</string>
<string name="empty_view_history_text">No items here yet.</string>
<string name="enable_auto_payment_fail">"Couldn't turn on"</string>
<string name="enable_auto_payment_fail_message">"Couldn't turn on automatic renewal"</string>
<string name="enable_auto_payment_success">Renew automatically</string>
<string name="enable_auto_payment_success_message">Turned on automatic renewal. Next payment due on %s.</string>
<string name="enabled">Enabled</string>
<string name="enter_garbage_clean">Clean up internal storage.</string>
<string name="exit_fm">Exit</string>
<string name="expired">Expired</string>
<string name="facebook_application_id"/>
<string name="facebook_login_protocol_scheme">com.xiaomi.passport.ui</string>
<string name="fail_to_play">"Can't play song"</string>
<string name="failure_no_network">Check your connection and try again.</string>
<string name="favorite_canceled">Removed from favorites</string>
<string name="favorite_playlist">Favorites</string>
<string name="favorite_songgroup">Favorite songgroup(%d)</string>
<string name="favorite_succeed">Added to favorites</string>
<string name="favorites">Favorites</string>
<string name="favourite">Favorite</string>
<string name="feed_favor_anchor_tip">Click to enjoy your customization</string>
<string name="feed_guide_tip">Enjoy your customization</string>
<string name="feed_header_tip">Your Customization</string>
<string name="feed_listitem_browse_count">%1$s</string>
<string name="feed_listitem_comment_count">%1$s</string>
<string name="feed_listitem_play_count">%1$s</string>
<string name="file_not_found">"File doesn't exist"</string>
<string name="filter_by_duration">By length</string>
<string name="filter_by_duration_format">%2$dm %5$2ds</string>
<string name="filter_by_duration_max">%d mins</string>
<string name="filter_by_duration_min">%d sec</string>
<string name="filter_by_duration_prefix">"Hide files shorter than "</string>
<string name="filter_by_duration_summary">Hide short audio files</string>
<string name="filter_by_folder">By folder</string>
<string name="filter_by_folder_summary">Choose folders to display</string>
<string name="filter_by_size">By size</string>
<string name="filter_by_size_max">%dMB</string>
<string name="filter_by_size_min">%dKB</string>
<string name="filter_by_size_prefix">"Hide files smaller than "</string>
<string name="filter_by_size_summary">Hide small audio files</string>
<string name="filter_size_unit">%dKB</string>
<string name="find_psw">Forgot password</string>
<string name="fm_browser_label">FM</string>
<string name="fm_has_turned_off">FM radio turned off</string>
<string name="fm_headline">News</string>
<string name="fm_history">Playback history</string>
<string name="fm_local_not_listening">"Haven't listened yet"</string>
<string name="fm_progress">Progress %1$s%%</string>
<string name="fm_progress_finish">Played</string>
<string name="fm_select_category">Select category</string>
<string name="fm_sort_hot">Popular</string>
<string name="fm_sort_new">New</string>
<string name="fmradio_clear_confirm_msg">All presets will be deleted.</string>
<string name="follow">Follow</string>
<string name="followed">Following</string>
<string name="font_family">miui</string>
<string name="format_unsupported_or_corrupted">"This format isn't supported or the file is corrupted"</string>
<string name="fragment_title_artist_album">Albums</string>
<string name="fragment_title_bill">Playlists</string>
<string name="fragment_title_songgroup_individuation">Recommend playlists</string>
<string name="frequency_mhz_fomart">%s MHz</string>
<string name="from_prefix">From %1$s</string>
<string name="garbage_cleanup">Cleaner</string>
<string name="get_ph_ticket">Get code</string>
<string name="global_search_app_name">Music</string>
<string name="global_search_description_entry">Enjoy music</string>
<string name="global_search_description_hot">Update weekly</string>
<string name="global_search_description_radar">Recognize good songs</string>
<string name="global_search_key_absolute">instrumental; soft music</string>
<string name="global_search_key_buddha">Buddhist music</string>
<string name="global_search_key_cantonese">cantonese songs</string>
<string name="global_search_key_child">Children songs</string>
<string name="global_search_key_classics">classical music</string>
<string name="global_search_key_entry">music;song;track</string>
<string name="global_search_key_fm">online fm</string>
<string name="global_search_key_hot">hot songs</string>
<string name="global_search_key_internet">Web charts</string>
<string name="global_search_key_movie">movie soundtracks</string>
<string name="global_search_key_prenatal">prenatal music</string>
<string name="global_search_key_radar">recognize music</string>
<string name="global_search_title_absolute">Instrumental</string>
<string name="global_search_title_buddha">Buddhist music</string>
<string name="global_search_title_cantonese">Cantonese songs</string>
<string name="global_search_title_child">"Children's songs"</string>
<string name="global_search_title_classics">Classical music</string>
<string name="global_search_title_entry">Music</string>
<string name="global_search_title_fm">Online FM</string>
<string name="global_search_title_hot">Hot song list</string>
<string name="global_search_title_internet">Web charts</string>
<string name="global_search_title_movie">Movie soundtracks</string>
<string name="global_search_title_prenatal">Prenatal music</string>
<string name="global_search_title_radar">Music recognition</string>
<string name="goto_sign_up">Create account</string>
<string name="group_favor">Presets</string>
<string name="group_other">Others</string>
<string name="guide_jump">Jump</string>
<string name="handle_later">Not now</string>
<string name="higher_quality_music">High quality audio</string>
<string name="hint_frequency">Frequency: %1$s ~ %2$s</string>
<string name="hint_label">Label</string>
<string name="history">History</string>
<string name="history_clear">Clear</string>
<string name="history_clear_fm">Clear radio playback history?</string>
<string name="history_clear_music">Clear music playback history?</string>
<string name="hot_icon_in_fast_indexer">H</string>
<string name="i_know">OK</string>
<string name="impunity_declaration_content">You must read and agree with our %1$s and %2$s before using this product.</string>
<string name="impunity_declaration_content_agreement">User Agreement</string>
<string name="impunity_declaration_content_html"><Data>Before using FM Radio, you must read and agree to our &lt;font color=#29b496&gt;&lt;a href=%1$s&gt;User Agreement&lt;/a&gt;&lt;/font&gt; and &lt;font color=#29b496&gt;&lt;a href=%2$s&gt;Privacy Policy&lt;/a&gt;&lt;/font&gt;. FM Radio also needs to connect to the internet and access your location info to work normally. Agree?</Data></string>
<string name="impunity_declaration_content_online">You must read and agree with our %1$s and %2$s before using online content.</string>
<string name="impunity_declaration_content_policy">Privacy Policy</string>
<string name="impunity_declaration_enjoy_now">Start</string>
<string name="impunity_declaration_negative_text">Cancel</string>
<string name="impunity_declaration_positive_text">Agree</string>
<string name="impunity_declaration_title">Terms of Service</string>
<string name="individuation_recommend_message">Turn on recommendations to receive personalized suggestions based on your preferences.</string>
<string name="individuation_recommend_title">Recommendations</string>
<string name="input_hint_prefix">Enter %1$s</string>
<string name="installing_apk">Installing…</string>
<string name="insufficient_space">"Not enough space on your device's internal storage"</string>
<string name="introduction">Introduction</string>
<string name="is_scanning">Checking storage…</string>
<string name="isornot_your_mi_account">Is this your Mi Account?</string>
<string name="karaoke_message">Download and install Karaoke plug-in to use this feature.</string>
<string name="karaoke_negative_text">Later</string>
<string name="karaoke_positive_text">OK</string>
<string name="karaoke_title">Introducing Karaoke</string>
<string name="keep_queued_download">Keep</string>
<string name="ktv_playlist">KTV playlist</string>
<string name="label_recording">Recording: %s</string>
<string name="latest_song">Play history (%d)</string>
<string name="like_comment_failed">"Couldn't like comment"</string>
<string name="like_comment_success">Liked</string>
<string name="list_item_play_all_tracks">Play all</string>
<string name="live_stream_error">"This item isn't currently available due to copyright issues."</string>
<string name="load_shuffle">Loading…</string>
<string name="loadercontainer_loading">Just a sec…</string>
<string name="loading_hint">Just a sec…</string>
<string name="local_music">Offline</string>
<string name="local_page_album_more">View all</string>
<string name="local_page_artist_more">More songs by %s</string>
<string name="local_page_music">Local music</string>
<string name="local_page_playlist">My playlists</string>
<string name="local_page_song_download_history">Downloads</string>
<string name="local_page_subscribe_radio">Listen to FM</string>
<string name="login">Sign in</string>
<string name="login_tip">Not signed in</string>
<string name="login_tips">Sign in to get relevant recommendations</string>
<string name="lrc_search_failed">"Couldn't find lyrics"</string>
<string name="lrc_searching">Searching…</string>
<string name="lyric_open_other_connect">Download lyrics using mobile network</string>
<string name="lyric_setting">Lyrics settings</string>
<string name="manager_cloud_space">Manage Xiaomi Cloud storage</string>
<string name="market_download_failure">Error,please try it again?</string>
<string name="max_count">999+</string>
<string name="max_message_count">99+</string>
<string name="max_sleep_time">%d</string>
<string name="media_filter">Media</string>
<string name="menu_all_task_pause">Pause all</string>
<string name="menu_all_task_start">Start all</string>
<string name="menu_enter_edit_mode">Editor</string>
<string name="menu_exit">Exit</string>
<string name="menu_headset">Switch to headset</string>
<string name="menu_label">Menu</string>
<string name="menu_new_station">Add</string>
<string name="menu_online_service">Online services</string>
<string name="menu_preferences">Download settings</string>
<string name="menu_privacy">Privacy Policy</string>
<string name="menu_record_list">Recordings</string>
<string name="menu_record_start">Start recording</string>
<string name="menu_record_stop">Stop recording</string>
<string name="menu_save_station_list">Add to presets</string>
<string name="menu_save_station_presets">Add to presets</string>
<string name="menu_scan_start">Scan</string>
<string name="menu_sleep">Sleep timer</string>
<string name="menu_sleep_cancel">Cancel sleep timer</string>
<string name="menu_speaker">Switch to speaker</string>
<string name="menu_title_pause_all">Pause all</string>
<string name="menu_title_resume_all">Start all</string>
<string name="menu_title_settings">Settings</string>
<string name="message">Notifications</string>
<string name="message_delete_playlist">Delete playlist %s?</string>
<string name="metered_alert">Data usage warning</string>
<string name="metered_alert_msg">"You're using mobile data to play songs"</string>
<string name="metered_allow">Play</string>
<string name="metered_allow_switch">Stream using mobile data</string>
<string name="metered_disallow">Not now</string>
<string name="metered_play_toast">Using mobile data to play songs</string>
<string name="metered_play_toast_with_beyond_data">Using mobile data to play songs. Exceeded limit by %s</string>
<string name="metered_play_toast_with_data">Using mobile data to play songs, %s remaining</string>
<string name="mi_fm">Mi FM</string>
<string name="milink_unavaliable_please_update">"Mi Link isn't available. Update MIUI."</string>
<string name="min_sleep_time">%d</string>
<string name="missing_title"><Unknown></string>
<string name="miui_music">Mi Music</string>
<string name="miui_music_description">Enjoy music</string>
<string name="miuishare_no_network">"Can't connect to the network."</string>
<string name="miuishare_publish">Send</string>
<string name="miuishare_share_editor_title">Share</string>
<string name="miuishare_title_more">More</string>
<string name="miuishare_title_share">Share</string>
<string name="miuishare_wechat_timeline_title">WeChat Moments</string>
<string name="mobile_recommended_title">Mobile data usage</string>
<string name="modify_lyric">Edit lyrics</string>
<string name="modify_progress">Change lyrics scroll speed</string>
<string name="modify_progress_helper">Swipe up or down to adjust lyrics progress.</string>
<string name="modify_song_info_success">Song info has been updated</string>
<string name="more">More</string>
<string name="more_add_song_list">Add to playlist</string>
<string name="more_milink_bluetooth">Mi Link and Bluetooth</string>
<string name="more_settings">Advanced settings</string>
<string name="more_settings_summary">Download settings, sleep timer, mobile data management, filters for files, etc.</string>
<string name="more_share">Share</string>
<string name="msg_do_not_support_fm">"This device doesn't support FM Radio"</string>
<string name="msg_fm_starting">Starting…</string>
<string name="msg_internalantenna_optimal">Connect earphones for best effect</string>
<string name="msg_noantenna_message">No headphones detected. Some functions may not be available.</string>
<string name="msg_try_plug_headset">Connect headphones and try again.</string>
<string name="multiple_select">Select</string>
<string name="multiply_prefix">X%1$s</string>
<string name="music_filter">Filter audio files</string>
<string name="my_account">Mi Account</string>
<string name="my_download">Downloads</string>
<string name="my_favorite">Favorites</string>
<string name="nav_online_billboard">Charts</string>
<string name="nav_online_playlist">Playlists</string>
<string name="network_error_and_retry">"Couldn't connect, tap to try again"</string>
<string name="network_failure">Check your connection and try again.</string>
<string name="network_request_error">"Can't connect to the network"</string>
<string name="network_settings_error">"Can't connect to the network"</string>
<string name="never_subscribe_radio">Remove this station from favorites/</string>
<string name="new_comment">最新评论(%s条)</string>
<string name="new_frequency">New frequency</string>
<string name="new_search_instant_title">Search:%1$s</string>
<string name="news_not_interest_positive">Not interested</string>
<string name="next_station">Next station</string>
<string name="next_time">Not now</string>
<string name="nick_name">Name</string>
<string name="no_album_info">No album info</string>
<string name="no_artist_info">No artist info</string>
<string name="no_comment">抢沙发</string>
<string name="no_copyright_song_hint_text">"This song isn't available due to copyright issues."</string>
<string name="no_copyright_song_recommend_hint_text">It’s better to try this one</string>
<string name="no_downloads">No downloads</string>
<string name="no_favorites_songs">Empty</string>
<string name="no_local_songs">Empty</string>
<string name="no_local_songs_selected">"Can't send songs because they haven't been downloaded"</string>
<string name="no_local_source_find">"Couldn't find song"</string>
<string name="no_online_song_selected">No songs selected</string>
<string name="no_results_return">No search results</string>
<string name="no_scanned_songs">No items here yet.</string>
<string name="no_song_downloaded">"Couldn't connect to server"</string>
<string name="noheadset_dialog_info">Looks like radio signal is poor now. You can listen to online radio instead.</string>
<string name="noheadset_dialog_insert">Connect your earphones</string>
<string name="noheadset_dialog_more">More radio stations</string>
<string name="normal_quality">Good</string>
<string name="not_login">Not signed in</string>
<string name="notif_text_engine_off">Xunlei accelerator is off.</string>
<string name="notif_text_engine_on">Accelerating…</string>
<string name="notif_title_file_size">%1$d total</string>
<string name="notif_title_single_downloading">Downloading %1$s</string>
<string name="notification_channel_play">play</string>
<string name="notification_comment_fav_title">Likes</string>
<string name="notification_comment_reply_title">Replies to comments</string>
<string name="notification_download_complete">Download complete</string>
<string name="notification_download_failed">"Couldn't download"</string>
<string name="notification_need_wifi_for_size">Download size requires Wi-Fi.</string>
<string name="notification_setting">Notification settings</string>
<string name="notification_settings_summary">Receive notifications about news and latest releases</string>
<string name="notification_settings_title">Push notifications</string>
<string name="nowplaying_bottom_bubble">Scroll to view more</string>
<string name="nowplaying_bottom_statu_view_error">Network not connected click retry</string>
<string name="nowplaying_bottom_statu_view_normal">Playing local songs</string>
<string name="nowplaying_circle_continue_play">Continue: %1$s</string>
<string name="nowplaying_menu_item_delete">Remove from queue</string>
<string name="nowplaying_playlist">Queue</string>
<string name="ok">OK</string>
<string name="online_account">Account</string>
<string name="online_bill">Charts</string>
<string name="online_broadcast">Broadcast</string>
<string name="online_fm">FM</string>
<string name="online_list_delete_message">All downloaded songs in this playlist will be deleted from internal storage.</string>
<string name="online_listen">Listen</string>
<string name="online_music_enabled_summary">Listen and download your favorite songs. View top songs and curated playlists wherever you go!</string>
<string name="online_music_enabled_title">Free streaming is here</string>
<string name="online_recommend">Audiobooks</string>
<string name="online_service_dialog_message">"You won't be able to receive content recommendations and sync items if you turn off online services. Turn off anyway?"</string>
<string name="online_service_dialog_title">Online services</string>
<string name="online_service_open_tip">Online music services are on</string>
<string name="online_service_switch">Online services</string>
<string name="online_service_title">Online services</string>
<string name="online_switch">Online content services</string>
<string name="online_switch_message">Turning off online services will affect VIP services and recommendations. Turn off anyway?</string>
<string name="online_switch_setting">Online content settings</string>
<string name="online_tip_text">Allow the app to connect to the internet to be able to listen to online radio</string>
<string name="open_download">Open</string>
<string name="open_online_service">You need to turn on online services to use this feature. Turn on now?</string>
<string name="open_online_service_tip">Turned on online services successfully</string>
<string name="open_service">Turn on</string>
<string name="optimize_all_until_optimized">Applying new cover and lyrics…</string>
<string name="optimize_all_until_scanned">Wait until Music finishes checking storage for songs.</string>
<string name="order_process_fail">"Couldn't authorize your account. Wait a few minutes and try again."</string>
<string name="other_filter">Other</string>
<string name="other_song_in_album">Other songs from this album</string>
<string name="package_filter">Packages</string>
<string name="passport_activate_token_expired">Verification expired, Please try again.</string>
<string name="passport_auth_title"/>
<string name="passport_bad_authentication">Invalid username or password</string>
<string name="passport_captcha_title">Captcha</string>
<string name="passport_close">Close</string>
<string name="passport_empty_password">"Password can't be empty"</string>
<string name="passport_empty_user_name">"Username can't be empty"</string>
<string name="passport_error_phone_error">Invalid phone number</string>
<string name="passport_error_user_name">Username you entered is invalid</string>
<string name="passport_international_phone_password_login_tip">(For users outside China, please enter the mobile phone number in the following format: + country code mobile phone number, example: +91 817282982)</string>
<string name="passport_log_detail">View log details</string>
<string name="passport_next_step">NEXT</string>
<string name="passport_oauth_sucess_tip">Authorized success</string>
<string name="passport_password_req_notice">Password must be 8-16 characters in length and include both numbers and letters (case sensitive).</string>
<string name="passport_privacy_policy">Privacy Policy</string>
<string name="passport_reload_ph_ticket">Send again</string>
<string name="passport_send_too_many_sms">Too many verification codes have been sent to this number. Wait 24 hours and try again.</string>
<string name="passport_set_password">Set password</string>
<string name="passport_sign_in">Sign in</string>
<string name="passport_sign_in_or_sign_up">Sign in/Create account</string>
<string name="passport_sms_phone_intro">Already send verification code to %1$s</string>
<string name="passport_timeout_network_error">Network request timeout</string>
<string name="passport_unknow_error">Sorry, An unknown error occurred</string>
<string name="passport_unknow_host_network_error">Check your network settings and try again</string>
<string name="passport_unknow_network_error">Sorry, A network error occurred</string>
<string name="passport_user_agreement">User Agreement</string>
<string name="passport_user_agreement_prefix">Agree to </string>
<string name="passport_user_id_intro">Sign in %1$s</string>
<string name="passport_v_code_error">Verification code is incorrect</string>
<string name="passport_wechat_not_install">WeChat is not installed</string>
<string name="password_toggle_content_description">Toggle password visibility</string>
<string name="path_password_eye">M12,4.5C7,4.5 2.73,7.61 1,12c1.73,4.39 6,7.5 11,7.5s9.27,-3.11 11,-7.5c-1.73,-4.39 -6,-7.5 -11,-7.5zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5zM12,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3z</string>
<string name="path_password_eye_mask_strike_through">M2,4.27 L19.73,22 L22.27,19.46 L4.54,1.73 L4.54,1 L23,1 L23,23 L1,23 L1,4.27 Z</string>
<string name="path_password_eye_mask_visible">M2,4.27 L2,4.27 L4.54,1.73 L4.54,1.73 L4.54,1 L23,1 L23,23 L1,23 L1,4.27 Z</string>
<string name="path_password_strike_through">M3.27,4.27 L19.74,20.74</string>
<string name="pause_download">Pause</string>
<string name="paused_by_app">Paused</string>
<string name="paused_in_power_save_mode">Paused when Battery saver is on</string>
<string name="paused_insufficient_space">Waiting</string>
<string name="paused_queued_for_wifi">Waiting for connection</string>
<string name="paused_unknown">Paused</string>
<string name="paused_waiting_for_network">Waiting for connection</string>
<string name="paused_waiting_to_pay">Waiting for payment</string>
<string name="paused_waiting_to_retry">Waiting to retry</string>
<string name="pay_now">Current service</string>
<string name="pending_apk">Pending…</string>
<string name="personal_radio_favorite">Favorited,recommend similar songs</string>
<string name="phone_bind_too_many">This phone has been associated with several Mi Accounts in a short period of time. Try using another phone number.</string>
<string name="phone_hint">Phone number</string>
<string name="phone_number">Phone number</string>
<string name="play_all"><Data>Play all &lt;font color=#999999&gt;(%1$d)&lt;/font&gt;</Data></string>
<string name="play_all_shuffle"><Data>Shuffle all&lt;font color=#999999&gt;(%1$d)&lt;/font&gt;</Data></string>
<string name="play_all_song">Play all</string>
<string name="play_continue"><Data>Continue playing &lt;font color=#999999&gt;(%1$d)&lt;/font&gt;</Data></string>
<string name="play_error_program_not_find">This item is no longer available.</string>
<string name="play_mode_circle">Circle Mode</string>
<string name="play_mode_shuffle">Shuffle Mode</string>
<string name="play_mode_single">Single Mode</string>
<string name="play_next">Play next</string>
<string name="play_song_continue">Continue playing</string>
<string name="play_speed">Play Speed</string>
<string name="playlist_empty">No playlists found.</string>
<string name="playlist_type_album">Albums</string>
<string name="playlist_type_artist">Artist</string>
<string name="playlist_type_billboard">Charts</string>
<string name="playlist_type_fm">FM</string>
<string name="playlist_type_my">My playlists</string>
<string name="playlist_type_recommend">Featured playlists</string>
<string name="please_download_first">You need to download this song before you can use it as a ringtone</string>
<string name="please_select_song">Choose a song first</string>
<string name="post_comment_failed">"Couldn't publish comment"</string>
<string name="post_comment_success">Published comment successfully</string>
<string name="power_save_mode_dialog_msg">Battery saver is on. Start downloading now?</string>
<string name="pre_station">Previous station</string>
<string name="pref_download_settings_title">Download size limit</string>
<string name="pref_summary_any_bytes_popup">Always wait for Wi-Fi connection to download files</string>
<string name="pref_summary_enable_max_bytes_popup">Show popup notification when using mobile data to download files</string>
<string name="pref_summary_max_bytes_limit_format">Wait for Wi-Fi if file size exceeds %s</string>
<string name="pref_summary_no_limit_popup">Unlimited</string>
<string name="pref_title_enable_max_bytes_popup">Show data usage prompt</string>
<string name="preferences_title">Settings</string>
<string name="preset_music_playlist">Mi Music playlist</string>
<string name="presonal_center">Account settings</string>
<string name="privacy_category">Privacy details</string>
<string name="privacy_notif_content">Tap to view details.</string>
<string name="privacy_notif_title">Xunlei Download Accelerator is on</string>
<string name="privacy_preference">Privacy policy</string>
<string name="privacy_tip_cancel">Cancel</string>
<string name="privacy_tip_content">"Use Xunlei Accelerator to speed up downloads? The URL of the download's host will be uploaded to Xunlei's servers. Your Mi Account details will also be uploaded to check if you have any active subscriptions to this service."</string>
<string name="privacy_tip_ok">OK</string>
<string name="privacy_tip_title">Use Xunlei Accelerator?</string>
<string name="program">Program</string>
<string name="program_title">Programs</string>
<string name="project_device">Mi Phone</string>
<string name="project_device_bs">My Black Shark</string>
<string name="psw_hint">Password</string>
<string name="psw_sign_in">Sign in using password</string>
<string name="pulluprefreshrecyclerview_loading_error">"Couldn't load"</string>
<string name="pulluprefreshrecyclerview_loading_finished">Loaded successfully</string>
<string name="pulluprefreshrecyclerview_loading_running">Loading…</string>
<string name="push_message_switch">Notify about new episodes</string>
<string name="qq_application_id"/>
<string name="qq_login_protocol_scheme">com.xiaomi.passport.ui</string>
<string name="radio_cancel_subscribe">Removed from favorites successfully</string>
<string name="radio_not_support">Radio not support</string>
<string name="radio_subscribe_success">Added to favorites successfully</string>
<string name="rank_list">Top charts</string>
<string name="recently_played">Recently played</string>
<string name="recently_played_songs">Recently played</string>
<string name="recognize_calling_network_error">"Couldn't connect to the network. Wait a minute or two and try again."</string>
<string name="recommended_file_size_download_in_mobile">Use %s of mobile data to download this file?</string>
<string name="recommended_no_file_size_download_in_mobile">Use your mobile data connection to download this file?</string>
<string name="remain_prefix">%1$s remaining</string>
<string name="remaining">Remaining this month:</string>
<string name="remove">Remove</string>
<string name="remove_download">Remove</string>
<string name="repeat_all_notif">Repeating all songs.</string>
<string name="repeat_current_notif">Repeating current song.</string>
<string name="reply_comment">Reply</string>
<string name="reply_comment_hint">Reply to %s:</string>
<string name="report">Report</string>
<string name="report_comment_success">"We'll review your report. Thanks for your feedback."</string>
<string name="restart_download">Restart</string>
<string name="restart_immediate">Restart</string>
<string name="resume_download">Resume</string>
<string name="retry">Retry</string>
<string name="retry_after_network_available">"Can't connect to the network. Check connection and try again."</string>
<string name="retry_download">Try again</string>
<string name="ringtone_not_support">"This song's format isn't supported"</string>
<string name="root_downloads">Downloads</string>
<string name="runtime_permission_ungranted">"Can't start record due to ungranted permissions"</string>
<string name="save">Save</string>
<string name="save_to_playlist">Save as playlist</string>
<string name="search_dialog_title">Scan stations</string>
<string name="search_empty">"Couldn't find any results"</string>
<string name="search_hint">Search for radio stations and programs</string>
<string name="search_hint_not_support_online">Search for artists, songs, and albums</string>
<string name="search_history_clear_all">Clear</string>
<string name="search_history_more">More</string>
<string name="search_history_shrink">Hide</string>
<string name="search_instant_online_music">Online</string>
<string name="search_localsearch_hint">Search for songs on this device</string>
<string name="search_menu_title">Search</string>
<string name="search_title">Search</string>
<string name="search_try_online">Search online</string>
<string name="second_symbol">s</string>
<string name="select_all">Select all</string>
<string name="select_chapter">Select</string>
<string name="select_device">Select device</string>
<string name="select_displayed_folders">Choose folders to display</string>
<string name="select_none">Deselect all</string>
<string name="select_operation_items">Choose items</string>
<string name="selected_broadcast">Featured</string>
<string name="selected_count">Selected %1$d out of %2$d</string>
<string name="send_comment">Comment</string>
<string name="send_to_title">Send to (%1$s)</string>
<string name="server_error">An error occurred, wait a minute or two and try again.</string>
<string name="service_and_settings">Service and settings</string>
<string name="set_as_ring">Set as ringtone</string>
<string name="set_id3_failed">"Couldn't save info"</string>
<string name="set_id3_not_have_read_or_write_permission">"You don't have permissions to edit this file."</string>
<string name="set_id3_not_support_format">"Can't edit this file format"</string>
<string name="set_id3_successful">Saved song info successfully</string>
<string name="set_ringtones_failed">"Couldn't set ringtone"</string>
<string name="set_ringtones_successful">%s set as ringtone</string>
<string name="setting_feature_setting">Feature settings</string>
<string name="setting_login_tips">Sign in to sync favorites</string>
<string name="settings">Settings</string>
<string name="settings_search_key_desktop_lyric">Home screen lyrics;Lyrics;Music;Songs</string>
<string name="settings_search_key_download_quality">Download quality;Quality;Music;Download;Songs</string>
<string name="settings_search_key_download_when_favorite">Download favorites;Download;Favorites;Music;Songs</string>
<string name="settings_search_key_main">Music;Songs;Song</string>
<string name="settings_search_key_notification">Music notifications;Music;Notifications;songs</string>
<string name="settings_search_key_vip_service">Premium songs;VIP;Song pack;Premium Song Pack;Member;Subscription;Music;Songs</string>
<string name="settings_search_path_advance">System apps/Music/Service and settings/Advanced settings</string>
<string name="settings_search_path_main">System apps/Music</string>
<string name="settings_search_path_normal">System apps/Music/Service and settings</string>
<string name="settings_search_title_desktop_lyric">Home screen lyrics</string>
<string name="settings_search_title_download_quality">Download quality</string>
<string name="settings_search_title_download_when_favorite">Download favorites</string>
<string name="settings_search_title_main">Music</string>
<string name="settings_search_title_notification">Music notifications</string>
<string name="settings_search_title_vip_service">Premium songs</string>
<string name="share_append_text">From @MIUI</string>
<string name="share_choice">Select</string>
<string name="share_chooser_title">Share using</string>
<string name="share_description">From Mi Music</string>
<string name="share_end_note">From Mi Music</string>
<string name="share_image_error">"Couldn't share image due to a download error"</string>
<string name="share_text_list">"Playlist from Mi Music: "</string>
<string name="share_text_song">"Song in Mi Music: "</string>
<string name="shortcut_name">Mi Music stations</string>
<string name="show_download_manager">Downloads</string>
<string name="show_more">Show %s more</string>
<string name="shuffle_music">Shuffle playback</string>
<string name="shuffle_off_notif">Shuffle is off.</string>
<string name="shuffle_on_notif">Shuffle is on.</string>
<string name="shut_down_sleep_mode">Shut down</string>
<string name="sign_in_title">Sign in with your Mi Account</string>
<string name="sleep_close">Close</string>
<string name="sleep_custom">Custom</string>
<string name="sleep_mode">Sleep timer</string>
<string name="sleep_mode_cancel">Cancel</string>
<string name="sleep_mode_canceled">Sleep mode turned off</string>
<string name="sleep_mode_close">Close</string>
<string name="sleep_mode_ok">Ok</string>
<string name="sleep_mode_one">played now</string>
<string name="sleep_mode_state">Sleep timer</string>
<string name="sleep_mode_three">played three songs</string>
<string name="sleep_mode_two">played two songs</string>
<string name="sleep_mode_warning">Player will stop after %1$d set</string>
<string name="sns_sign_in">Other way to sign in</string>
<string name="song_exist_in_playlist">This song is already in the queue</string>
<string name="song_group_float_save_picture">Save cover</string>
<string name="song_group_float_save_picture_success">Saved successfully</string>
<string name="song_group_float_to_save_picture">Saved to %1$s</string>
<string name="song_name">Song</string>
<string name="song_not_find">"This song isn't available."</string>
<string name="song_offline">This song is no longer available.</string>
<string name="song_playing">Playing</string>
<string name="sort">Sort</string>
<string name="sort_by_name">Name</string>
<string name="sort_by_time">Date</string>
<string name="spammy_contents">Spam</string>
<string name="speed">"Speed "</string>
<string name="splash_bottom_hint">by Xiaomi Music</string>
<string name="splash_skip_button">Skip</string>
<string name="start_to_download">Added to download queue successfully</string>
<string name="start_to_play">Play</string>
<string name="station_check_favorite">Add to presets</string>
<string name="stations_list">Station list</string>
<string name="stations_list_empty">No presets</string>
<string name="status_bar_notification_info_overflow">999+</string>
<string name="stop">Stop</string>
<string name="stop_backup">Stop</string>
<string name="storage_internal">Internal storage</string>
<string name="storage_sd_card">SD card</string>
<string name="storage_usb">USB storage</string>
<string name="subscribe_empty_hint">The items you add to favorites will appear here.</string>
<string name="subscribe_success_location">"You can view the item you've just added in \"Favorites\"."</string>
<string name="swipe_to_load_head_complete_fail">"Couldn't refresh. Try again."</string>
<string name="tab_album">Albums</string>
<string name="tab_artist">Artists</string>
<string name="tab_comment">Comments</string>
<string name="tab_fm">FM</string>
<string name="tab_folder">Folders</string>
<string name="tab_like">Likes</string>
<string name="tab_notification">Notifications</string>
<string name="tab_track">Songs</string>
<string name="tab_video_list">Videos</string>
<string name="talkback_album_cover">Album cover</string>
<string name="talkback_back">Go back</string>
<string name="talkback_close">Close</string>
<string name="talkback_cloud_setting">Settings</string>
<string name="talkback_comment">Comments</string>
<string name="talkback_comment_like">Like</string>
<string name="talkback_disabled">disabled</string>
<string name="talkback_download">Download</string>
<string name="talkback_enabled">enabled</string>
<string name="talkback_favorite">Like this song</string>
<string name="talkback_follow">Follow</string>
<string name="talkback_followed">Unfollow</string>
<string name="talkback_frame_list">Playlist</string>
<string name="talkback_header_search">"Search "</string>
<string name="talkback_like">Like</string>
<string name="talkback_login">Sign in</string>
<string name="talkback_mode_repeat_all">Loop mode</string>
<string name="talkback_mode_repeat_current">Repeat mode</string>
<string name="talkback_mode_repeat_shuffle">Shuffle mode</string>
<string name="talkback_more">More</string>
<string name="talkback_new_playlist">Create playlist</string>
<string name="talkback_next">Next song</string>
<string name="talkback_next_play">Play next</string>
<string name="talkback_nowplaying_bar">Play bar</string>
<string name="talkback_nowplaying_circle">Play circle</string>
<string name="talkback_pause">Pause</string>
<string name="talkback_play">Play</string>
<string name="talkback_pre">Previous song</string>
<string name="talkback_radar">Music recognition</string>
<string name="talkback_remove_list">Remove from playlist</string>
<string name="talkback_search">Search</string>
<string name="talkback_search_delete">delete</string>
<string name="talkback_search_radar_and_voice">Voice assistant and voice recognition</string>
<string name="talkback_share">Share</string>
<string name="talkback_sidemenu">Side menu</string>
<string name="talkback_sort_type">Sort songs by</string>
<string name="talkback_unlike">Unlike</string>
<string name="talkback_view_type">View songs by</string>
<string name="task_already_exist">Task already exists</string>
<string name="text_separator">|</string>
<string name="thanks_for_feedback">Thanks for your feedback!</string>
<string name="ticket_hint">Verification code</string>
<string name="ticket_invalid">The code you entered is incorrect</string>
<string name="ticket_sign_in">Sign in via SMS</string>
<string name="time_picker_hour">hours</string>
<string name="time_picker_min">minutes</string>
<string name="time_to_upgrade">Find a new version</string>
<string name="title_album_list">Album</string>
<string name="title_fm_list">FM</string>
<string name="title_online_fm_recommend">Featured FM</string>
<string name="title_online_recommend_similar">Similar playlists</string>
<string name="title_play_list">Playlist</string>
<string name="title_search_history">Search history</string>
<string name="to_be_downloaded">PENDING</string>
<string name="to_mi_pay">Mi Credits</string>
<string name="toast_added_to_list">Added to list</string>
<string name="toast_added_to_presets">Added to presets</string>
<string name="toast_download_error_by_count_limit">You have used up your download quota for this month.</string>
<string name="toast_download_error_by_not_login">Sign in to Mi Account and try again.</string>
<string name="toast_download_error_by_vip_required">Get Premium Song Pack to download this song.</string>
<string name="toast_download_in_process">Download in process</string>
<string name="toast_fm_error_startfailed">Recording error. Another app may be using the recording function.</string>
<string name="toast_fm_recorder_access_error">"Can't record while you're in Guest mode"</string>
<string name="toast_fm_recorder_internal_error">FM recording error</string>
<string name="toast_fm_recorder_storage_full">"Can't continue recording: not enough space"</string>
<string name="toast_fm_seeking">Tuning…</string>
<string name="toast_fm_starting">Starting…</string>
<string name="toast_new_playlist_name_no_enter">"Can't start a new paragraph"</string>
<string name="toast_new_playlist_name_too_long">Playlist name is too long</string>
<string name="toast_normal_songs_for_download">Downloading quality set to Standard</string>
<string name="toast_normal_songs_for_stream">Streaming quality set to Standard</string>
<string name="toast_removed_from_presets">Removed from presets</string>
<string name="toast_sleep_mode">Radio will stop playing in %s</string>
<string name="toast_sleep_mode_exit">Sleep timer canceled</string>
<string name="toast_uhd_songs_for_download">Downloading quality set to High</string>
<string name="toast_uhd_songs_for_stream">Streaming quality set to High</string>
<string name="topnews_refresh">Refresh</string>
<string name="turn_off_fm">Turn off FM</string>
<string name="turn_off_xunlei_tips">Xunlei download acceleration is off</string>
<string name="txt_divider">" | "</string>
<string name="txt_sleep_mode">Sleep mode</string>
<string name="ultra_high_quality">Highest</string>
<string name="unable_to_play">"Can't play"</string>
<string name="unknown_album_name">Unknown album</string>
<string name="unknown_artist_name">Unknown artist</string>
<string name="unknown_program_name">Unknown program</string>
<string name="unread_message_count">%s message unread</string>
<string name="update_now">Update now</string>
<string name="update_time">(%s)</string>
<string name="upgrade_music">Update Music</string>
<string name="upgrade_music_message">Updates are ready. Restart to update.</string>
<string name="user_id_hint">Email/Phone</string>
<string name="usercenter_store_button_text">Redeem</string>
<string name="usercenter_task_check_in">Check in task</string>
<string name="usercenter_task_complete_toast">Completed:%1$s</string>
<string name="usercenter_task_status_finished">Completed</string>
<string name="usercenter_task_status_start">Start</string>
<string name="usercenter_task_title">Missions</string>
<string name="using_recorder_cancel">Decline</string>
<string name="using_recorder_confirm">Allow</string>
<string name="using_recorder_dialog_message">"Radio needs access to your device's recording services to work normally."</string>
<string name="using_recorder_dialog_title">Permission required</string>
<string name="v_code_title">Enter 2-Step verification code</string>
<string name="version_info">Version</string>