-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDuiStringTable.xml
2045 lines (2045 loc) · 101 KB
/
DuiStringTable.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
<string>
<s id="1">The file from the phone</s>
<s id="10">Please select a file/Folder</s>
<s id="100">The computer's not on the phone?</s>
<s id="1000">Attribute</s>
<s id="1001">%d Files</s>
<s id="1002">%d folders</s>
<s id="1003">Type:</s>
<s id="1004">Location:</s>
<s id="1005">Size:</s>
<s id="1006">Contains:</s>
<s id="1007">Last revision date:</s>
<s id="1008">Calculating...</s>
<s id="1009">Computer failure, network anomaly</s>
<s id="101">Click on Me</s>
<s id="1010">%s file</s>
<s id="1011">File folder</s>
<s id="1012">Are all folders</s>
<s id="1013">Are %s files</s>
<s id="1014">Multiple types</s>
<s id="1015">All in %s</s>
<s id="1016">Different folders</s>
<s id="1017">Different folders</s>
<s id="1018">Unknown type</s>
<s id="1019">%4.4 d years %2.2 d months %2.2 d Days %2.2 d: %2.2 d</s>
<s id="102">Go to the cell phone</s>
<s id="1020">Counting files...</s>
<s id="1021">File Count failed, network exception</s>
<s id="1022">My netdisk</s>
<s id="1023">My App Data</s>
<s id="1024">Hidden Space</s>
<s id="1025">Computer failed. Server's busy</s>
<s id="1026">The file count failed and the server is busy</s>
<s id="1027">Online documentation</s>
<s id="103">The network connection failed to upload the file</s>
<s id="11">Send the file</s>
<s id="1100">Open immediately</s>
<s id="1101">Members are privileged to save %d historical versions of documents</s>
<s id="1102">Super members are privileged to save %d historical versions of documents</s>
<s id="1150">Distinguished Member, you can enjoy the privilege of saving the document %d historical version</s>
<s id="1151">The file has been modified. Do you want to save it to the network disk?</s>
<s id="1152">To view historical versions of this document, it is recommended to turn on historical versions of the document</s>
<s id="1153">Function.</s>
<s id="1154">No more reminders</s>
<s id="1155">Open document history version</s>
<s id="1156">Overwrite update</s>
<s id="1157">Save the document to the network disk</s>
<s id="1158">Document history version enabled</s>
<s id="1159">You can enable historical versions in your settings</s>
<s id="12">Transmission successful</s>
<s id="1200">Garbage file cleaning</s>
<s id="1202">Scanning for duplicate files</s>
<s id="1203">Scanning for Junk Video</s>
<s id="1204">Scanning Empty Folders</s>
<s id="1205">Multiple filtering methods to facilitate the cleaning of duplicate files</s>
<s id="1206">Clean up junk video and free up storage space</s>
<s id="1207">Clean out empty folders to make files more organized</s>
<s id="1208">Cumulative cleanup for you: %s duplicate files, %s junk video</s>
<s id="1209">Loading network disk file, please try again later!</s>
<s id="1210">We've run out of experiences today. Try Again Tomorrow</s>
<s id="1211">Clean Up</s>
<s id="1212">Quick clean up of %s ~</s>
<s id="1213">Look at all the</s>
<s id="1214">Too many scans. Try Again Tomorrow</s>
#REF!
<s id="1216">Super members, Please</s>
<s id="1217">This operation is too frequent. Please try again later</s>
<s id="1218">The server is AWOL. Please try again later</s>
<s id="1219">There are other tasks in progress, please try again later</s>
<s id="1223">Cancel the scan</s>
<s id="1224">Re-scan</s>
<s id="1225">Scan the whole disk</s>
<s id="1226">Select a different directory to scan</s>
<s id="1227">Try another way to clean up</s>
<s id="1228">Do you want to cancel the scan before it's finished?</s>
<s id="1229">Keep Scanning</s>
<s id="1230">Scan the specified directory</s>
<s id="1231">%s ~ Not Found</s>
<s id="1232">Scan failed</s>
<s id="1240">Quick Clean Up</s>
<s id="1241">Cancel selected</s>
<s id="1242">Intelligent selection</s>
<s id="1243">%i64D</s>
<s id="1244">%u selected</s>
<s id="1245">My Files</s>
<s id="1246">Picture</s>
<s id="1247">Documents</s>
<s id="1248">Video</s>
<s id="1249">Music</s>
<s id="1250">Seeds</s>
<s id="1251">Applications</s>
<s id="1252">In the news</s>
<s id="1253">File name</s>
<s id="1254">Size</s>
<s id="1255">Directory</s>
<s id="1256">Revision date</s>
<s id="1257">, account for %s</s>
<s id="1258">Duplicate file</s>
<s id="1259">It's Crap</s>
<s id="1260">Empty folder</s>
<s id="1261">Clean-up complete</s>
<s id="1262">This time, %s space was freed up and %s was cleaned up</s>
<s id="1263">A total of %s empty folders were cleaned for you this time</s>
<s id="1264">Play It</s>
<s id="1265">Appeal</s>
<s id="1266">Open the folder you belong to</s>
<s id="1267">After the appeal is submitted, if the verification is true, it will be unblocked for you; only the video that is mistakenly blocked can be successfully appealed.</s>
<s id="1268">Filing a complaint</s>
<s id="1269">Deleting file. Please wait...</s>
<s id="1270">Deletion successful</s>
<s id="1271">Deletion failed</s>
<s id="1272">The maximum number of documents for a single appeal is %u, please try to reduce some.</s>
<s id="1273">Filing a complaint...</s>
<s id="1274">Complaint filed</s>
<s id="1275">The appeal was unsuccessful</s>
<s id="1276">There are too many files. Please process the current load batch</s>
<s id="1278">Total %u items, the current page has already loaded %u items</s>
<s id="1279">%u entry loaded</s>
<s id="1280">List View</s>
<s id="1281">Thumbnail View</s>
<s id="1282">Press file name</s>
<s id="1283">Click on the Directory</s>
<s id="1284">By the date of modification</s>
<s id="1285">Short reserved name</s>
<s id="1286">Long-reserved</s>
<s id="1287">Keep the shorter ones</s>
<s id="1288">Keep a longer list</s>
<s id="1289">Newer</s>
<s id="1290">Older retained</s>
<s id="1291">Trying to load. Please hold...</s>
<s id="1292">Failed to load, please</s>
<s id="1293">You have all selected the group of files, clean up the group of files will be all deleted!</s>
<s id="1294">You can only batch when there are too many files</s>
<s id="1295">For the next batch</s>
<s id="1296">Too many files, please batch processing</s>
<s id="1297">If it worked</s>
<s id="1298">Congratulations, you have a super member</s>
<s id="1299">Super member failed to open, Please</s>
<s id="13">Documents</s>
<s id="1300">Super member upgrade failed, Please</s>
<s id="1301">Buy Again</s>
<s id="1302">Are you sure you want to delete the selected %u empty file? N</s>
<s id="1303">No duplicate %s file yet ~</s>
<s id="1304">%u file deletion failed</s>
<s id="1305">Please select the file to delete</s>
<s id="1306">Loading successful</s>
<s id="1307">Dear Super Member, do you want to delete all %s? n.</s>
<s id="1308">(can be restored through recycle bin within 30 days after deletion)</s>
<s id="1309">%u</s>
<s id="1310">One click clear</s>
<s id="1311">%u files have been selected. Deleting them will free N %s space.</s>
<s id="1312">There are other tasks in progress, please try again later</s>
<s id="1313">Please try again</s>
<s id="1314">Select delete item</s>
<s id="1341">Switching to video renderer now. Please be patient...</s>
<s id="1342">Switching the video renderer failed. Please try again later</s>
<s id="1343">Switch video renderer successful</s>
<s id="1344">Switching audio output mode, please be patient...</s>
<s id="1345">Switching audio output failed. Please try again later</s>
<s id="1346">Switching audio output successful</s>
<s id="1347">Video Renderer</s>
<s id="1348">Normal rendering</s>
<s id="1349">DIRECT3D9</s>
<s id="1350">Direct3D 11</s>
<s id="1351">OpenGL</s>
<s id="1352">Opengl ES 2</s>
<s id="1353">Audio output mode</s>
<s id="1354">Direct Sound</s>
<s id="1355">Winmm</s>
<s id="1356">WASAPI</s>
<s id="1357">Switching to decoding mode. Please be patient...</s>
<s id="1358">Switching decoding mode failed. Please try again later</s>
<s id="1359">Switch to decode successful</s>
<s id="1360">Hardware decoding</s>
<s id="1361">Software decoding</s>
<s id="1362">Decode setting</s>
<s id="1363">When decoded, it plays more smoothly</s>
<s id="1364">Video playback support Blu-ray and other high-definition quality of the original</s>
<s id="1365">The video is buffering...</s>
<s id="1366">Sharing disabled, please check</s>
<s id="1367">The group has been disbanded and the video can not be found</s>
<s id="1368">You are no longer in this group and can not find the video</s>
<s id="1369">File invalid, Please Check</s>
<s id="1370">If in doubt, ask for help with feedback</s>
<s id="1371">The contents of this file have been corrupted. We recommend that you try another file</s>
<s id="1372">If in doubt, you may lodge a complaint at the details page of the document</s>
<s id="1373">The file can not be played. Try a different file</s>
<s id="1374">There is not enough memory to play the video</s>
<s id="1375">System anomaly</s>
<s id="1376">The video component failed to load</s>
<s id="1377">2.5x</s>
<s id="1378">Open Super Member, unlock more rights</s>
<s id="1379">Customizing</s>
<s id="1380">3x</s>
<s id="1381">0.5x</s>
<s id="1382">1x</s>
<s id="1383">Network exception, Please Check Your Network and try again</s>
<s id="1384">No more hints</s>
<s id="1385">From old to new</s>
<s id="1386">The playlist is empty</s>
<s id="1387">The last one</s>
<s id="1388">Next</s>
<s id="1389">Is already the first</s>
<s id="1390">It's the last one</s>
<s id="1391">Confirm clearance</s>
<s id="1392">Cancels</s>
<s id="1393">Hint</s>
<s id="1394">Do you want to clear all the history? N delete only delete records, do not delete files</s>
<s id="1395">Clear the log</s>
<s id="1396">From new to Old</s>
<s id="1397">Default list</s>
<s id="1398">Historical Record</s>
<s id="1399">Play the next one</s>
<s id="14">Drag and drop to this transfer file</s>
<s id="1400">Baidu Cloud</s>
<s id="1401">Super members speed play, no waiting ></s>
<s id="1402">Flow</s>
<s id="1403">Original painting</s>
<s id="1404">See more</s>
<s id="1405">Play It Again</s>
<s id="1406">The network is too slow. Please switch the picture quality to smooth</s>
<s id="1407">The network is too slow, please pause for a moment...</s>
<s id="1408">The network is down. Please check the network and try again...</s>
<s id="1409">Successfully added to download list</s>
<s id="1410">Added to download list</s>
<s id="1411">I don't know what to say</s>
<s id="1412">Has been located to the last viewing location,</s>
<s id="1413">play it from the beginning</s>
<s id="1414">Switching</s>
<s id="1415">Select the network disk save path</s>
<s id="1416">00:00:00/00:00:00</s>
<s id="1417">Sat Dec 30 1899 00:36:36 GMT-0600 (CST)</s>
<s id="1418">0 %</s>
<s id="1419">Video playback</s>
<s id="1420">Super members, high-speed channels</s>
<s id="1421">Open immediately</s>
<s id="1422">Trying to load the video...</s>
<s id="1423">Fast Forward:</s>
<s id="1424">Back off:</s>
<s id="1425">Volume: %d %</s>
<s id="1426">There's been a mistake</s>
<s id="1427">Retry</s>
<s id="1428">Loading now, please wait...</s>
<s id="1429">Request timeout. Please try again</s>
<s id="1430">Unknown error. Video playback failed</s>
<s id="1431">There's been a playback error. Please try again</s>
<s id="1432">Playback of the current file format is not supported</s>
<s id="1433">Current subtitle</s>
<s id="1434">Schedule Adjustment</s>
<s id="1435">Caption size</s>
<s id="1436">Hey, Rog</s>
<s id="1437">Standards</s>
<s id="1438">Big</s>
<s id="1439">It's huge</s>
<s id="1440">%. 1 f seconds</s>
<s id="1441">No subtitles</s>
<s id="1442">Accessing subtitle now</s>
<s id="1443">Error code: %d</s>
<s id="1444">Failed to get subtitle</s>
<s id="1445">Setting subtitles now</s>
<s id="1446">Subtitle set successful</s>
<s id="1447">Subtitle setup failed</s>
<s id="1448">No match to subtitle</s>
<s id="1449">Speed up the subtitles</s>
<s id="1450">Slow down the subtitles</s>
<s id="1451">File resolution exception</s>
<s id="1452">Account unusual. Please log back in</s>
<s id="1453">Server exception, Please Try Again</s>
<s id="1454">The video is being transcoded. Please try again later</s>
<s id="1455">Current file playback is not supported at this time</s>
<s id="1456">The video has been removed or moved by the person sharing it</s>
<s id="1457">Double Speed</s>
<s id="1458">0.75x</s>
<s id="1459">Normal</s>
<s id="1460">1.25x</s>
<s id="1461">1.5x</s>
<s id="1462">2.0x</s>
<s id="1463">Open super members, enjoy speed play</s>
<s id="1464">Open immediately</s>
<s id="1465">You can try %d times for free</s>
<s id="1466">Super members only play twice as fast</s>
<s id="1467">Custom Speed</s>
<s id="1468">It's playing at a free rate...</s>
<s id="1469">Has been opened for you free of charge</s>
<s id="1470">Speed Play</s>
<s id="1471">It will be played free of charge</s>
<s id="1472">Speed</s>
<s id="1473">The double speed switch failed. Please try again</s>
<s id="1474">Open super members, enjoy video speed play</s>
<s id="1475">You can try %d super member video double play privilege</s>
<s id="1476">Open Super Members</s>
<s id="1477">Trial Speed</s>
<s id="1478">Free double-time</s>
<s id="1479">Upgrade Super Member, Enjoy Video Speed Play</s>
<s id="1480">To the next level</s>
<s id="1481">Upgrade now</s>
<s id="1482">Switching to double-speed...</s>
<s id="1483">Has been opened for You</s>
<s id="1484">It will be on when you play it</s>
<s id="1485">File path error, please check</s>
<s id="1486">This file is an audio file. Try changing the suffix to mp3 in file list-rename</s>
<s id="1487">Upgrade to super member, Enjoy double-time Playback</s>
<s id="1488">The video, Cottonwood?</s>
<s id="1489">Click on me for Feedback</s>
<s id="1490">Feedback has been submitted and we will strive to optimize our service</s>
<s id="1491">Play environment exception, please try again later</s>
<s id="1492">File exception, please check</s>
<s id="1493">Non-video files, modify the suffix in file list-rename</s>
<s id="1494">There was a server error</s>
<s id="1495">There was an error on the server. Please try again</s>
<s id="1496">Currently does not support playing the current file, please download and play</s>
<s id="1497">The violation of documents has been blocked in accordance with relevant laws and regulations</s>
<s id="1498">Invalid video file, Please Check</s>
<s id="1499">Play the last one</s>
<s id="15">The file was sent unsuccessfully, possibly because of the network</s>
<s id="1500">My netdisk</s>
<s id="1501">Transport List</s>
<s id="1502">Share with friends</s>
<s id="1503">Maximizes</s>
<s id="1504">Reduction</s>
<s id="1505">Membership Center</s>
<s id="1506">Message Alert</s>
<s id="1507">Set Up</s>
<s id="1508">Click Change Avatar</s>
<s id="1509">Super members now</s>
<s id="1510">To the next level</s>
<s id="1511">Premium membership</s>
<s id="1512">Personal Center</s>
<s id="1513">Help Center</s>
<s id="1514">Switching accounts</s>
<s id="1515">Quit</s>
<s id="1516">Open immediately</s>
<s id="1517">Super members enjoy 15 privileges</s>
<s id="1518">Premium membership</s>
<s id="1519">Maturities</s>
<s id="1520">Super member</s>
<s id="1521">Member</s>
<s id="1522">5t space</s>
<s id="1523">Top speed download</s>
<s id="1524">Video double speed</s>
<s id="1525">On-line decompression</s>
<s id="1526">Learn more</s>
<s id="1529">Today's Hot List</s>
<s id="1530">My Points</s>
<s id="1531">The gift of Redemption</s>
<s id="1532">You're not a super member yet</s>
<s id="1533">We're one step away from a 5-t</s>
<s id="1534">One click away from the speed download</s>
<s id="1535">Unlock Super Member 38 Privileges</s>
<s id="1536">38 privileges of a super-member</s>
<s id="1537">21 privileges of membership</s>
<s id="1538">38 privileges to retain a supermember</s>
<s id="1539">21 privileges to keep a member</s>
<s id="1540">Super members to:</s>
<s id="1541">Members to:</s>
<s id="1542">Membership Center</s>
<s id="1543">File Transfer</s>
<s id="1545">%d expires in days and will lose 21 privileges</s>
<s id="1546">%d expires in days and will lose 38 privileges</s>
<s id="1547">38 privileges for Super Members</s>
<s id="1548">Renewal Fee</s>
<s id="1549">Administration of automatic renewal</s>
<s id="1550">2t space</s>
<s id="1551">Download card for free to:</s>
<s id="1552">Work package to:</s>
<s id="1553">Enterprise certification</s>
<s id="1554">Switch to enterprise</s>
<s id="1555">Expired</s>
<s id="1556">Go to the arcade ></s>
<s id="1557">The Enterprise Edition is online</s>
<s id="1558">Click to switch to the enterprise version, now experience!</s>
<s id="1559">Oh, I See</s>
<s id="1561">Backup package to:</s>
<s id="1562">Entertainment packages to:</s>
<s id="1563">Authentication is about to expire</s>
<s id="16">Retry</s>
<s id="1600">Welcome to Baidu netdisk</s>
<s id="1650">Home</s>
<s id="1651">Transmission</s>
<s id="1652">Good Friends</s>
<s id="1653">Tools</s>
<s id="1654">A Moment</s>
<s id="17">A file is currently being transferred. Disconnecting will stop the transfer. is RN disconnected?</s>
<s id="1700">My share</s>
<s id="1701">Dilatancy</s>
<s id="1704">Open membership, enjoy more capacity</s>
<s id="1705">Buy a capacity package</s>
<s id="1708">File will not be deleted, but upload, decompression and other functions can not be used</s>
<s id="1709">Become a super member to enjoy 30 privileges such as 5t space, top speed download</s>
<s id="1710">Capacity will be full</s>
<s id="1711">Full Capacity</s>
<s id="1712">Your space has been reclaimed to 100G since you haven't logged in for more than a year</s>
<s id="1713">Check out the details</s>
<s id="1714">Space Recovery</s>
<s id="18">System prompt</s>
<s id="1800">Downloading now</s>
<s id="1801">Uploading now</s>
<s id="1802">Transfer complete</s>
<s id="1803">Push Task</s>
<s id="1804">-999</s>
<s id="1805">( %d)</s>
<s id="19">Cell phone disconnected</s>
<s id="1900">Device backup</s>
<s id="1901">Co-ownership</s>
<s id="1902">A picture,</s>
<s id="1903">video</s>
<s id="1904">Not backed up to Baidu Network Disk</s>
<s id="1905">One click backup</s>
<s id="1906">Select the photos you want to back up</s>
<s id="1907">All of them</s>
<s id="1908">None of it</s>
<s id="1909">Shut down</s>
<s id="1910">A Picture</s>
<s id="2">Waiting for the phone to connect</s>
<s id="20">Delete</s>
<s id="200">Connect the phone</s>
<s id="2000">File sharing</s>
<s id="2001">Share Time</s>
<s id="2002">Failure Time</s>
<s id="2003">Copy the Link</s>
<s id="2004">Unshare</s>
<s id="2005">Copy the link information</s>
<s id="2006">Unlink sharing</s>
<s id="2007">Duplicates</s>
<s id="2008">Number of views</s>
<s id="2009">Number of saves</s>
<s id="201">Mobile phone baidu disk found-mobile phone forgot to bring</s>
<s id="2010">Number of downloads</s>
<s id="2011">%d Times</s>
<s id="2012">9999</s>
<s id="2013">Extract code:</s>
<s id="2014">I'll Think About It</s>
<s id="2015">Success in unlinking links</s>
<s id="2016">UNSHARING failed. Please try again later</s>
<s id="2017">UNSHARING links will not work. Are you sure you don't want to share?</s>
<s id="2018">The link was copied</s>
<s id="2019">Link replication failed</s>
<s id="202">Connecting to the phone</s>
<s id="2020">Failed to get a share list</s>
<s id="2021">Oops! Gross question!</s>
<s id="2022">Good Things to share with your friends</s>
<s id="2023">Try Again</s>
<s id="2024">%d files/folders selected</s>
<s id="2025">%d Term</s>
<s id="203">Cell phone connection failed</s>
<s id="204">Retry</s>
<s id="205">Phone Records</s>
<s id="206">Text Message</s>
<s id="207">No calls in the last three days, so if there's any new calls, I'll Let You Know</s>
<s id="208">No text messages in the last three days, if there is new news disk will remind you in time Yo</s>
<s id="21">Open the file</s>
<s id="2100">The last one</s>
<s id="2101">Next Slide</s>
<s id="2102">Zoom in</s>
<s id="2103">Rotating picture</s>
<s id="2104">Share Pictures</s>
<s id="2105">Download</s>
<s id="2106">Delete</s>
<s id="2107">Details</s>
<s id="2108">%d/ %d sheet</s>
<s id="2109">Photo details</s>
<s id="211">Trying to load</s>
<s id="2110">Types</s>
<s id="2111">To the folder that you belong to</s>
<s id="2112">Size</s>
<s id="2113">Modification Time</s>
<s id="2114">Image Preview</s>
<s id="2115">%d year %02d month %02d day %02d: %02d</s>
<s id="2116">%s file</s>
<s id="2117">Share with friends</s>
<s id="2118">Deletion failed</s>
<s id="2119">Added to download list</s>
<s id="212">Load Failure</s>
<s id="2120">Source</s>
<s id="2121">Expand thumbnail</s>
<s id="2122">It's the first one</s>
<s id="2123">It's the last one</s>
<s id="2124">Previous</s>
<s id="2125">Next Page</s>
<s id="2126">It's page one</s>
<s id="2127">It's the last page</s>
<s id="2128">Cloud editing (testing)</s>
<s id="213">Disconnect</s>
<s id="214">Copy the text</s>
<s id="215">Message copied</s>
<s id="2150">Upload</s>
<s id="2151">Download</s>
<s id="2152">Share</s>
<s id="2153">Delete</s>
<s id="2154">New Folder</s>
<s id="2155">Download offline</s>
<s id="2156">Add a regular download</s>
<s id="2157">Adding bittorrent tasks</s>
<s id="2158">See the download list</s>
<s id="2159">More</s>
<s id="216">Switching phones</s>
<s id="2160">Move to</s>
<s id="2161">Push to device</s>
<s id="2162">Historical versions of documents</s>
<s id="2163">Add</s>
<s id="2164">Move to the network disk file</s>
<s id="2165">Uploading Local Files</s>
<s id="2166">Remove from hidden space</s>
<s id="2167">Lock it</s>
<s id="2168">Move into hidden space</s>
<s id="2169">File name</s>
<s id="217">Refresh</s>
<s id="2170">Size</s>
<s id="2171">Modification Time</s>
<s id="2172">Ascending order</s>
<s id="2173">Descending order</s>
<s id="2174">Switch to list mode</s>
<s id="2175">Switch to thumbnail mode</s>
<s id="2176">Sort</s>
<s id="2177">Hidden Space</s>
<s id="2178">Remaining %s/ %s</s>
<s id="2179">%s/ %s used</s>
<s id="2180">%d % %capacity exceeding limit</s>
<s id="2181">PDF to Word</s>
<s id="2182">Warning of exceeding quantity limit</s>
<s id="2183">Can convert the first 5 files for you, do you want to continue?</s>
<s id="2184">Cancels</s>
<s id="2185">Go On</s>
<s id="2186">Cell phone. Look</s>
<s id="2187">Create a new online document</s>
<s id="2188">Renaming</s>
<s id="2189">Copy to</s>
<s id="2190">Hidden Space %s/ %s used</s>
<s id="2191">Import online documents</s>
<s id="2192">Blank Document</s>
<s id="2193">More templates</s>
<s id="2194">Batch renaming</s>
<s id="2195">Cloud editing (testing)</s>
<s id="22">Open the folder</s>
<s id="220">Before use, please use</s>
<s id="2200">My netdisk</s>
<s id="2201">Hidden Space</s>
<s id="2202">Google's search results</s>
<s id="2203">Search my netdisk files</s>
<s id="2204">Search for files in hidden space</s>
<s id="2205">Search</s>
<s id="2206">/photo</s>
<s id="2207">/video</s>
<s id="2208">/music</s>
<s id="2209">/document</s>
<s id="221">To enable this feature</s>
<s id="2210">/applications</s>
<s id="2211">/others</s>
<s id="2212">/seeds</s>
<s id="2213">Refresh</s>
<s id="2214">Search synchronization space file</s>
<s id="222">(support for Android 7.4 or above on Baidu netdisk only)</s>
<s id="223">Go Back</s>
<s id="2250">Enable hidden space to save your private files</s>
<s id="2251">Enable hidden space</s>
<s id="2252">Enable hidden space in just two steps:</s>
<s id="2253">1. Use a partner account to bind your email/phone number to your web page</s>
<s id="2254">2. Log on to the network disk with a bound email/phone number</s>
<s id="2255">To Bind</s>
<s id="2256">What's the hidden space?</s>
<s id="2257">Hidden space locked</s>
<s id="2258">Password error</s>
<s id="2259">The hidden space has been locked. It is recommended that the password be recovered</s>
<s id="2260">Bad password, %d chance to enter</s>
<s id="2261">Please enter your password</s>
<s id="2262">Please Enter Your Authentication Code</s>
<s id="2263">Captcha error</s>
<s id="2264">Authentication failed. Please try again later</s>
<s id="2265">Network anomaly</s>
<s id="2266">Into the hidden space</s>
<s id="2267">Enter a level two password</s>
<s id="2268">Forget the password?</s>
<s id="2269">Enter the Authentication Code</s>
<s id="2270">Change It Up</s>
<s id="2271">Select the position to be removed</s>
<s id="2272">Tip: files in hidden space do not support sharing with friends</s>
<s id="2273">Network anomaly</s>
<s id="2274">Private files are safer here</s>
<s id="23">And upload it to my disk</s>
<s id="230">Forgot a reminder on my phone</s>
<s id="2300">Upload it to.</s>
<s id="2301">Copy %u files to</s>
<s id="2302">Move %u files to</s>
<s id="2303">File name</s>
<s id="2304">Size</s>
<s id="2305">Modification Time</s>
<s id="2306">Create share</s>
<s id="2307">Big Space Waiting for you to fill, come upload ~</s>
<s id="2308">There's no file on it</s>
<s id="2309">Private files are safer here</s>
<s id="231">Your account number has been logged on to another computer and you forgot your cell phone</s>
<s id="2310">Uploading files</s>
<s id="2311">Trying to load. Please hold...</s>
<s id="2312">Oops! Gross question!</s>
<s id="2313">Refresh and try again</s>
<s id="2314">The file no longer exists on the current page</s>
<s id="2315">Operation is too frequent ~ Please try again later</s>
<s id="2316">Open It</s>
<s id="2317">Editor</s>
<s id="2318">Open mode</s>
<s id="2319">The selection process...</s>
<s id="232">Mobile phone battery is too low, may be disconnected at any time off</s>
<s id="2320">Play it online</s>
<s id="2321">Download</s>
<s id="2322">Push to device</s>
<s id="2323">Upload</s>
<s id="2324">Refresh</s>
<s id="2325">Delete</s>
<s id="2326">Duplicates</s>
<s id="2327">Move to</s>
<s id="2328">Move into hidden space</s>
<s id="2329">Remove from hidden space</s>
<s id="233">The phone has been disconnected locally</s>
<s id="2330">Sheared</s>
<s id="2331">Pasting</s>
<s id="2332">Renaming</s>
<s id="2333">Share</s>
<s id="2334">Historical versions of documents</s>
<s id="2335">New Folder</s>
<s id="2336">Open the folder you belong to</s>
<s id="2337">Attribute</s>
<s id="2338">Thumbnails</s>
<s id="2339">Details</s>
<s id="2340">View mode</s>
<s id="2341">Become a super member</s>
<s id="2342">Sort mode</s>
<s id="2343">. is not supported as a file name</s>
<s id="2344">The folder name can not be empty</s>
<s id="2345">The file name can not be empty</s>
<s id="2346">/photo</s>
<s id="2347">/video</s>
<s id="2348">/music</s>
<s id="2349">/document</s>
<s id="2350">/applications</s>
<s id="2351">/others</s>
<s id="2352">/seeds</s>
<s id="2353">Here We Go</s>
<s id="2354">Time Out</s>
<s id="2355">Retry</s>
<s id="2356">All of them</s>
<s id="2357">Ascending order</s>
<s id="2358">Descending order</s>
<s id="2359">Name</s>
<s id="2360">Cancel the upload</s>
<s id="2361">PDF to Word</s>
<s id="2362">Cell phone. Look</s>
<s id="2363">Derived</s>
<s id="2364">File Type</s>
<s id="2365">Erase the record</s>
<s id="2366">Delete file</s>
<s id="2367">Recently</s>
<s id="2368">System prompt</s>
<s id="2369">When erasing, only delete record, do not delete file</s>
<s id="2370">No more hints</s>
<s id="2371">Confirm clearance</s>
<s id="2372">watching</s>
<s id="2373">The most recent videos are here</s>
<s id="2374">all</s>
<s id="2375">watch to</s>
<s id="2376">Recently, the module has added a "Now Watching" function!</s>
<s id="2377">The most recent videos are here!</s>
<s id="2378">There are no recently watched videos, go to</s>
<s id="2379">video page</s>
<s id="2380">Let's see</s>
<s id="2381">Only show the last 50 viewing records</s>
<s id="24">Currently there is a file being transferred, emptying will interrupt the transfer, do you want to clear it?</s>
<s id="2400">Manage shortcut function entry</s>
<s id="2401">The %d entry is selected</s>
<s id="2402">%d Term</s>
<s id="2403">Network anomaly</s>
<s id="2404">Automatic backup folder</s>
<s id="2405">Lock mesh disk</s>
<s id="2406">Speedometer</s>
<s id="2407">User Incentive Scheme</s>
<s id="2408">Has joined the user incentive scheme</s>
<s id="2409">%. 1F hours</s>
<s id="2410">99 + hours</s>
<s id="2411">Zero hours</s>
<s id="244">Please refresh and try again</s>
<s id="245">Login failed</s>
<s id="246">Please confirm the login on the mobile terminal</s>
<s id="247">Scan was successful</s>
<s id="248">please wait patiently</s>
<s id="249">logging in</s>
<s id="25">Clear out</s>
<s id="250">Shut down</s>
<s id="2500">Are you sure you want to delete %s?</s>
<s id="2501">Are you sure you want to delete this %d file or folder?</s>
<s id="2502">Deleted files can be retrieved from the recycle bin</s>
<s id="2503">Deleted files will not enter the Recycle Bin,</s>
<s id="2504">the file or folder already exists and the operation failed</s>
<s id="2505">The new folder failed to create. Please try again later</s>
<s id="2506">The network connection failed to upload the file</s>
<s id="2507">Hint</s>
<s id="2508">Download Path without write permission, please run Baidu Network disk in Administrator mode</s>
<s id="2509">Downloading now</s>
<s id="251">Minimizes</s>
<s id="2510">Network failure. Operation failed</s>
<s id="2511">The file or folder does not exist and the operation failed</s>
<s id="2512">Network disk space is full, operation failed</s>
<s id="2513">Operation failed</s>
<s id="2514">Please stand by while...</s>
<s id="2515">Select the position to be removed</s>
<s id="2516">Cancels</s>
<s id="2517">Move into hidden space</s>
<s id="2518">The third party file is included in the migration file. The third party will not be able to see the file after the migration. Do you want to move in?</s>
<s id="2519">Move in</s>
<s id="252">Network setup</s>
<s id="2520">Cancels</s>
<s id="2521">Single operation can not exceed %d, please select less points to operate</s>
<s id="2522">Do not support online browsing, please download to check</s>
<s id="2523">The File %s can not be moved to itself or its subdirectories</s>
<s id="253">Use a corporate account to log in</s>
<s id="254">Register your account number</s>
<s id="255">Register your Baidu account immediately</s>
<s id="256">Log In</s>
<s id="257">Sign in to Twitter</s>
<s id="258">QQ Login</s>
<s id="259">Sign in on wechat</s>
<s id="26">Cancels</s>
<s id="260">Remember the Code</s>
<s id="2600">Baidu web disk automatically updated</s>
<s id="2601">Open it now</s>
<s id="2602">V %s</s>
<s id="261">Automatic Login</s>
<s id="262">Forget the password?</s>
<s id="263">Delete account information</s>
<s id="264">Please enter your account number</s>
<s id="265">Please enter your password</s>
<s id="266">Change It</s>
<s id="267">How would you like to log in?</s>
<s id="268">Account Login</s>
<s id="269">Cell Phone Log-in</s>
<s id="27">The file has been added to my network disk transfer list</s>
<s id="270">Phone number/email address/username</s>
<s id="2700">There is not enough local space. Clean Up and try again</s>
<s id="2701">The file has been deleted</s>
<s id="2702">Network anomaly</s>
<s id="2703">The file has been unshared</s>
<s id="2704">No permission to download the directory</s>
<s id="2705">The local path is invalid</s>
<s id="2706">External link access code error</s>
<s id="271">******</s>
<s id="272">Please</s>
<s id="273">Bind the phone number</s>
<s id="274">Post login</s>
<s id="275">Wechat</s>
<s id="276">Uppercase lock open</s>
<s id="277">Clear the code</s>
<s id="278">Scan the log-in</s>
<s id="279">Account number, password, access</s>
<s id="28">Waiting for transmission...</s>
<s id="280">Please use</s>
<s id="2800">SMS quick login</s>
<s id="2801">Type in your phone number</s>
<s id="2802">Enter dynamic password</s>
<s id="2803">Get the dynamic password</s>
<s id="2804">%d resend in seconds</s>
<s id="2805">The phone number is formatted incorrectly</s>
<s id="2806">Dynamic passwords are being sent too often. Please try again later</s>
<s id="2807">Error entering CAPTCHA</s>
<s id="2808">Please Enter Your Authentication Code</s>
<s id="2809">Please enter your phone number</s>
<s id="281">Baidu netdisk App</s>
<s id="2810">Oops! Rude question! Please try again later...</s>
<s id="2811">Network exception, failed to get dynamic password</s>
<s id="2812">Erase the phone number</s>
<s id="2813">The dynamic password doesn't exist</s>
<s id="2814">Please enter your SMS dynamic password</s>
<s id="2815">Type in your phone number</s>
<s id="2816">Read and accept</s>
<s id="2817">Baidu user agreement</s>
<s id="282">Scan Code Login</s>
<s id="283">Refresh the QR Code</s>
<s id="284">Failed to load. Please refresh and try again</s>
<s id="285">Forgot my phone</s>
<s id="286">Data line</s>
<s id="287">Automatic backup</s>
<s id="288">Lock mesh disk</s>
<s id="289">Recycle Bin</s>
<s id="29">The local file path does not exist or is illegal</s>
<s id="290">All the Tools</s>
<s id="2900">Name</s>
<s id="2901">Time</s>
<s id="2902">Size</s>
<s id="2903">Erase the record</s>
<s id="2904">Share</s>
<s id="2905">Download</s>
<s id="2906">Delete</s>
<s id="2907">Documents</s>
<s id="2908">A Picture</s>
<s id="2909">Video</s>
<s id="291">Folder backup</s>
<s id="2910">%d images and %d videos</s>
<s id="2911">--</s>
<s id="2912">See more files ></s>
<s id="2913">Upload</s>
<s id="2914">Back Up</s>
<s id="2915">Transfer deposit</s>
<s id="2916">Check</s>
<s id="2917">Computer</s>
<s id="2918">iPhone</s>
<s id="2919">Cell Phone</s>
<s id="292">Easy to check incoming calls, text messages</s>
<s id="2920">Web page</s>
<s id="2921">See more in the catalog</s>
<s id="2922">No recently used files ~</s>
<s id="2923">iPad</s>
<s id="2924">Wechat app</s>
<s id="2925">Record cleaning failed</s>
<s id="2926">Failed to clear the log file</s>
<s id="2927">Just Now</s>
<s id="2928">Minutes Ago</s>
<s id="2929">Two hours earlier</s>
<s id="293">Cell phones and computers wirelessly</s>
<s id="2930">Yesterday</s>
<s id="2931">Play It</s>
<s id="2932">A picture and a video</s>
<s id="2933">More</s>
<s id="2934">There's no recent history of use</s>
<s id="2935">Source</s>
<s id="2936">Types</s>
<s id="2937">To the folder that you belong to</s>
<s id="294">One-click lock, privacy</s>
<s id="295">Automatic backup. Don't lose it</s>
<s id="296">To retrieve the deleted files</s>
<s id="297">Garbage file cleaning</s>
<s id="298">Clean up your files, save space</s>
<s id="299">Wechat QQ file backup</s>
<s id="3">Under the same network, please log on to the Android version of Baidu Network disk with the same account, go to more-> more tools-> Data line, connect</s>
<s id="30">The local file is occupied. Please close it and try again</s>
<s id="300">Release Cache Hint</s>
<s id="3000">User Incentive Scheme</s>
<s id="3001">Network connection failed</s>
<s id="3002">Retry</s>
<s id="3003">Cancels</s>
<s id="3004">I'm sure</s>
<s id="3005">Choose the incentive scheme path</s>
<s id="3006">Browse</s>
<s id="3007">Notification of withdrawal from the incentive scheme</s>
<s id="3008">I'll Think About It</s>
<s id="3009">Confirm exit</s>
<s id="301">If you have too many disk caches, cleaning up the disk frees up more space and speeds up the network disk load, do you want to free up the cache?</s>
<s id="3010">You will not be able to continue to receive bonus points after you exit the program. Points can be redeemed for the iqi R N VIP monthly card</s>
<s id="302">Cleanup in progress, %u % %complete</s>
<s id="3020">Anti-peeping n can be a key to lock the network disk</s>
<s id="3021">Auto Lock on ( %d Min) n to close please click</s>
<s id="3022">Set Up</s>
<s id="303">Release completed, the next time the use of Baidu network disk operation more smoothly.</s>
<s id="304">Release the cache</s>
<s id="305">Complete and exit</s>
<s id="31">Failed to open local file</s>
<s id="3100">Open immediately</s>
<s id="3101">Cancels</s>
<s id="315">Conversation</s>
<s id="316">Good Friends</s>
<s id="317">Groups</s>
<s id="318">Create groups</s>
<s id="319">Add Friends</s>
<s id="32">Local file reading failed</s>
<s id="320">Notes:</s>
<s id="3200">Open membership</s>
<s id="3201">Become a member, enjoy PDF to Word privilege</s>
<s id="3202">Open membership 10 yuan per month</s>
<s id="321">Nicknames:</s>
<s id="322">Baidu account:</s>
<s id="323">File sharing</s>
<s id="324">Delete Friends</s>
<s id="325">Join the Blacklist</s>
<s id="326">You haven't added any friends yet, start a group first and then invite your friends to join</s>
<s id="327">You Don't have a friend yet, add a friend to share a file</s>
<s id="328">You haven't joined the pack yet</s>
<s id="329">Choose your friends on the left and start sharing files</s>
<s id="33">The system limits the file size to 4G and can not receive</s>
<s id="330">After joining the blacklist, you will no longer receive messages from the other side. Do you want to continue? (can be unblacklisted at the end of the page)</s>
<s id="3300">Folder automatic backup function can now n free trial ~</s>
<s id="3301">Save 360P</s>
<s id="3302">Fluent 480P</s>
<s id="3303">HD 720P</s>
<s id="3304">Super Clear 1080P</s>
<s id="3305">Blue light 2k</s>
<s id="3306">The current video quality is:</s>
<s id="3307">To become a super member, you can unlock all the clarity of this movie:</s>
<s id="3308">%d:</s>
<s id="3309">Blue light 4K</s>
<s id="331">Click add comment</s>
<s id="3310">2K</s>
<s id="3311">4K</s>
<s id="3312">We're switching you over to</s>
<s id="3313">The clarity switch failed. Please try again</s>
<s id="3314">Switching definition successful</s>
<s id="3315">Clarity...</s>
<s id="3316">Save Current</s>
<s id="3317">Flow</s>
<s id="3318">High Definition</s>
<s id="3319">Super Clean</s>
<s id="332">Exit the group</s>
<s id="3320">2K</s>
<s id="3321">4K</s>
<s id="3322">High bit rate 1080P</s>
<s id="3323">High bit rate</s>
<s id="333">Delete the session list</s>
<s id="334">Are you sure you want to delete' %s'?</s>
<s id="335">Delete</s>
<s id="336">Blacklisted</s>
<s id="337">Deletion successful</s>
<s id="338">Deletion failed</s>
<s id="339">Failed to join the blacklist</s>
<s id="34">There is not enough local space. Clean Up and try again</s>
<s id="340">Deleting now</s>
<s id="3400">Save to Baidu netdisk</s>
<s id="3401">Uploading to [ %s ] folder</s>
<s id="3402">No more hints</s>
<s id="3403">Got It</s>
<s id="3404">Tip: keep the latest version of the file in the cloud only</s>
<s id="341">Joining the blacklist</s>
<s id="3410">This device has been logged out</s>
<s id="3411">This device has been logged out! If I do not operate, please change the password in time to avoid the loss of stored data.</s>
<s id="3412">I'm sure</s>
<s id="3414">The current account will remain open after the logon, if you want to close the operation in the settings.</s>
<s id="3415">Download speed up</s>
<s id="3416">[ download speed up ] is the computer side of the idle upload bandwidth set up a unique transmission channel, to use the computer side to download and enter the file transmission channel speed. The upload bandwidth will continue to optimize the quality of the transmission channel, the higher the channel quality, the more obvious the acceleration effect.</s>
<s id="3417">You've earned it</s>
<s id="3418">What you're offering</s>
<s id="3419">Files downloaded through this channel will be accelerated.</s>
<s id="342">Adding friends</s>
<s id="3420">Provide idle upload bandwidth to optimize download channel quality.</s>
<s id="3421">I have read and agreed</s>
<s id="3422">Download Speed Up function protocol</s>
<s id="3423">Speed up mode on</s>
<s id="3424">Please read and check the user agreement</s>
<s id="3428">The higher the transmission channel quality is, the more obvious the acceleration effect is.</s>
<s id="3429">Intelligent transmission control, does not affect the internet experience.</s>
<s id="343">Success with friending</s>
<s id="3430">Special note: By the network environment and file attributes and other factors, some files can not enter this transmission channel and get the effect of acceleration.</s>
<s id="3431">Turn on the download. Speed up</s>
<s id="3432">Permission granted and speed increased</s>
<s id="3433">No more hints</s>
<s id="3434">Open download speed up, download speed double</s>
<s id="3435">Equipment Management</s>
<s id="3436">Manage login devices and protect data</s>
<s id="3437">You set a limit on the number of visitors per link to %d</s>
<s id="3438">Number of links created</s>
<s id="3439">You can enter 1-10 numbers</s>
<s id="344">Failed to friend</s>
<s id="3440">Fill in at least one link</s>
<s id="3441">You have not filled in the number of links</s>
<s id="3442">You can only create a maximum of 10 links</s>
<s id="3443">Creating a batch link, please wait</s>
<s id="3444">Super member privilege, one click to create more than one link</s>
<s id="3445">Create bulk links</s>
<s id="345">Delete and exit the group</s>
<s id="3450">View the document</s>
<s id="3451">Viewing this type of file is not supported, you can view it after downloading</s>
<s id="3452">Download</s>
<s id="3453">Network failure</s>
<s id="3454">Retry</s>
<s id="346">Modify notes</s>
<s id="347">Modify the group name</s>
<s id="348">Are you sure you want to exit and delete the group?</s>
<s id="3480">Cloud editing</s>
<s id="3481">Network failure</s>
<s id="3482">Retry</s>
<s id="349">Exiting the group</s>
<s id="35">The file doesn't exist</s>
<s id="350">Retreat group failed</s>
<s id="3500">Scan your phone for code</s>
<s id="3501">Sweep it. Check your phone</s>
<s id="3502">Open It</s>
<s id="3503">File size: %s</s>
<s id="3504">Network connection failed</s>
<s id="3505">Connection failed</s>
<s id="3506">Click retry</s>
<s id="3507">Loading...</s>
<s id="3508">Baidu netdisk APP</s>
<s id="3509">Sweep It</s>
<s id="351">The retreat was successful</s>
<s id="3510">Do not support the computer online preview,</s>
<s id="3511">please use your phone to scan or download it</s>
<s id="3512">(please use version 10.1.60 or above)</s>
<s id="3513">Click Refresh</s>
<s id="352">Failed to create a group</s>
<s id="3520">Automatic folder backup</s>
<s id="3522">Files in the specified folder on your computer will be backed up to the network disk</s>
<s id="3523">New or modified files are automatically backed up</s>
<s id="3524">Delete computer files. netdisk files will not be deleted</s>
<s id="3525">10 gigabytes of uploads per month, unlimited backup of Super memberworkplans</s>
<s id="3526">Open folder backup</s>
<s id="3527">Local folders are automatically backed up to the network disk</s>
<s id="3528">Number of folders to backup: %d</s>
<s id="3529">Backup file size this month: %s</s>
<s id="353">Groups are created too frequently, and re-creation requires verification</s>
<s id="3530">You can enjoy an unlimited number of folders automatically backed up</s>
<s id="3531">You have the unlimited privilege of automatic backup</s>
<s id="3532">Traffic is up this month</s>
<s id="3533">0G/10G</s>
<s id="3534">Open super member backup unlimited ></s>
<s id="3535">Backup folder ( %d/5)</s>
<s id="3536">View backup progress ></s>
<s id="3537">Add a backup folder</s>