-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathRapidrive.vi.xlf
5202 lines (5198 loc) · 394 KB
/
Rapidrive.vi.xlf
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"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en-US" target-language="vi" original="RAPIDRIVE/PROPERTIES/RESOURCESABOUT.RESX" tool-id="MultilingualAppToolkit" product-name="n/a" product-version="n/a" build-num="n/a">
<header>
<tool tool-id="MultilingualAppToolkit" tool-name="Multilingual App Toolkit" tool-version="4.0.6921.0" tool-company="Microsoft" />
</header>
<body>
<group id="RAPIDRIVE/PROPERTIES/RESOURCESABOUT.RESX" datatype="resx">
<trans-unit id="CreditsAndContributors" translate="yes" xml:space="preserve">
<source>Credits and contributors</source>
<target state="translated">Người tài trợ và hỗ trợ</target>
</trans-unit>
<trans-unit id="DeactivateLicense" translate="yes" xml:space="preserve">
<source>Deactivate license</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Hủy kích hoạt giấy phép</target>
</trans-unit>
<trans-unit id="DLG_DeactivateLicenseConfirmation" translate="yes" xml:space="preserve">
<source>Are you sure you want to deactivate license? You will need to enter Pro License key to activate it again</source>
<target state="translated">Bạn có chắc chắn muốn hủy kích hoạt giấy phép không? Bạn sẽ cần nhập key Pro License để kích hoạt lại</target>
<note from="MultilingualBuild" annotates="source" priority="2">NOT USED</note>
</trans-unit>
<trans-unit id="Email" translate="yes" xml:space="preserve">
<source>Email</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Email</target>
</trans-unit>
<trans-unit id="EmailCopiedToClipboard" translate="yes" xml:space="preserve">
<source>Email address copied to clipboard</source>
<target state="translated">Địa chỉ email đã được sao chép vào khay nhớ tạm</target>
</trans-unit>
<trans-unit id="EnterLicense" translate="yes" xml:space="preserve">
<source>Enter license</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Nhập giấy phép</target>
</trans-unit>
<trans-unit id="ExeLocation" translate="yes" xml:space="preserve">
<source>Exe location</source>
<target state="translated">Thư mục file chạy</target>
</trans-unit>
<trans-unit id="Forum" translate="yes" xml:space="preserve">
<source>Forum</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Diễn đàn</target>
</trans-unit>
<trans-unit id="FullVersion" translate="yes" xml:space="preserve">
<source>Full version - PRO license</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Phiên bản đầy đủ - giấy phép PRO</target>
<note from="MultilingualBuild" annotates="source" priority="2">In about dialog</note>
</trans-unit>
<trans-unit id="KickstarterBackers" translate="yes" xml:space="preserve">
<source>The first version of this program has been funded thanks to these 406 Kickstarter backers (names shown as in the Kickstarter profile):</source>
<target state="translated">Phiên bản đầu tiên của chương trình này đã được tài trợ nhờ 406 người ủng hộ từ Kickstarter (tên được hiển thị như trong hồ sơ Kickstarter):</target>
</trans-unit>
<trans-unit id="LicenseAgreement" translate="yes" xml:space="preserve">
<source>License Agreement</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Thỏa thuận cấp phép</target>
</trans-unit>
<trans-unit id="LicensedTo" translate="yes" xml:space="preserve">
<source>Licensed to:</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Được cấp phép cho:</target>
<note from="MultilingualBuild" annotates="source" priority="2">Future type of named licenses</note>
</trans-unit>
<trans-unit id="NonCommercialUse" translate="yes" xml:space="preserve">
<source>Non-commercial use</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Sử dụng phi thương mại</target>
</trans-unit>
<trans-unit id="OpensWebBrowser" translate="yes" xml:space="preserve">
<source>Opens web browser</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Mở trình duyệt web</target>
</trans-unit>
<trans-unit id="ProLicenseRequired" translate="yes" xml:space="preserve">
<source>The Pro license is required for commercial use</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Cần có giấy phép Pro để sử dụng cho mục đích thương mại</target>
</trans-unit>
<trans-unit id="RateOnMicrosoftStore" translate="yes" xml:space="preserve">
<source>Rate on Microsoft Store</source>
<target state="translated">Đánh giá trên Microsoft Store</target>
</trans-unit>
<trans-unit id="ReadUserManual" translate="yes" xml:space="preserve">
<source>Before contacting support, please read the user manual</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Trước khi liên hệ với bộ phận hỗ trợ, vui lòng đọc hướng dẫn sử dụng</target>
</trans-unit>
<trans-unit id="SearchName" translate="yes" xml:space="preserve">
<source>Search name</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Tên tìm kiếm</target>
<note from="MultilingualBuild" annotates="source" priority="2">Textbox watermark in about dialog</note>
</trans-unit>
<trans-unit id="SettingsLocation" translate="yes" xml:space="preserve">
<source>Settings location</source>
<target state="translated">Thư mục cài đặt</target>
</trans-unit>
<trans-unit id="Shortcuts" translate="yes" xml:space="preserve">
<source>Shortcuts</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Phím tắt</target>
</trans-unit>
<trans-unit id="TabAbout" translate="yes" xml:space="preserve">
<source>About</source>
<target state="translated">Giới thiệu</target>
<note from="MultilingualBuild" annotates="source" priority="2">AboutWindow Tab</note>
</trans-unit>
<trans-unit id="TabBackers" translate="yes" xml:space="preserve">
<source>Backers</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Người ủng hộ</target>
<note from="MultilingualBuild" annotates="source" priority="2">AboutWindow Tab</note>
</trans-unit>
<trans-unit id="TabHelp" translate="yes" xml:space="preserve">
<source>Help</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Trợ giúp</target>
<note from="MultilingualBuild" annotates="source" priority="2">AboutWindow Tab</note>
</trans-unit>
<trans-unit id="TabLicenses" translate="yes" xml:space="preserve">
<source>Licenses</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Giấy phép</target>
<note from="MultilingualBuild" annotates="source" priority="2">AboutWindow Tab</note>
</trans-unit>
<trans-unit id="UserManual" translate="yes" xml:space="preserve">
<source>User Manual</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Hướng dẫn sử dụng</target>
</trans-unit>
<trans-unit id="UsingDlls" translate="yes" xml:space="preserve">
<source>OneCommander uses following DLLs (Libraries)</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">OneCommander sử dụng các DLL (Thư viện) sau</target>
</trans-unit>
<trans-unit id="Website" translate="yes" xml:space="preserve">
<source>Website</source>
<target state="translated">Website</target>
</trans-unit>
<trans-unit id="WindowAbout" translate="yes" xml:space="preserve">
<source>About / Help</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Giới thiệu / Trợ giúp</target>
<note from="MultilingualBuild" annotates="source" priority="2">About window title</note>
</trans-unit>
<trans-unit id="TipShortcutEditor" translate="yes" xml:space="preserve">
<source>See Shortcuts Editor in Settings 🡢 Advanced</source>
<target state="new">See Shortcuts Editor in Settings 🡢 Advanced</target>
<note from="MultilingualBuild" annotates="source" priority="2">Copy this arrow </note>
</trans-unit>
<trans-unit id="UpgradeToUserBasedLicense" translate="yes" xml:space="preserve">
<source>Upgrade to User-based license</source>
<target state="new">Upgrade to User-based license</target>
<note from="MultilingualBuild" annotates="source" priority="2">Shown in about dialog for users with Machine-Based license</note>
</trans-unit>
<trans-unit id="TransferLicense" translate="yes" xml:space="preserve">
<source>Transfer license from another PC</source>
<target state="new">Transfer license from another PC</target>
</trans-unit>
<trans-unit id="EduLicense" translate="yes" xml:space="preserve">
<source>Educational institution license</source>
<target state="new">Educational institution license</target>
</trans-unit>
<trans-unit id="ChangesLog" translate="yes" xml:space="preserve">
<source>Changes log / release notes</source>
<target state="new">Changes log / release notes</target>
<note from="MultilingualBuild" annotates="source" priority="2">We may end up using only one, both shown for now</note>
</trans-unit>
</group>
</body>
</file>
<file datatype="xml" source-language="en-US" target-language="vi" original="RAPIDRIVE/PROPERTIES/RESOURCESFVD.RESX" tool-id="MultilingualAppToolkit" product-name="n/a" product-version="n/a" build-num="n/a">
<header>
<tool tool-id="MultilingualAppToolkit" tool-name="Multilingual App Toolkit" tool-version="4.0.6921.0" tool-company="Microsoft" />
</header>
<body>
<group id="RAPIDRIVE/PROPERTIES/RESOURCESFVD.RESX" datatype="resx">
<trans-unit id="ApplyToCurrent" translate="yes" xml:space="preserve">
<source>Apply to current folder-pane and close (without saving)</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Áp dụng cho ngăn thư mục hiện tại và đóng (không lưu)</target>
</trans-unit>
<trans-unit id="CustomHeight" translate="yes" xml:space="preserve">
<source>Custom height</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Chiều cao tùy chỉnh</target>
</trans-unit>
<trans-unit id="CustomHeight_TT" translate="yes" xml:space="preserve">
<source>If you are using Thumbnail, make it the same height</source>
<target state="translated">Nếu bạn đang sử dụng Hình thu nhỏ, hãy để cùng chiều cao</target>
</trans-unit>
<trans-unit id="EditedView" translate="yes" xml:space="preserve">
<source>Edited view:</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Chế độ xem đã chỉnh sửa:</target>
</trans-unit>
<trans-unit id="Element" translate="yes" xml:space="preserve">
<source>Element</source>
<target state="translated">Phần tử</target>
</trans-unit>
<trans-unit id="ElementAlign" translate="yes" xml:space="preserve">
<source>Element align</source>
<target state="translated">Căn chỉnh phần tử</target>
</trans-unit>
<trans-unit id="FitText" translate="yes" xml:space="preserve">
<source>Fit text</source>
<target state="translated">Căn vừa văn bản</target>
</trans-unit>
<trans-unit id="FVDWindowTitle" translate="yes" xml:space="preserve">
<source>File view designer</source>
<target state="translated">Trình thiết kế chế độ xem tệp</target>
</trans-unit>
<trans-unit id="Height" translate="yes" xml:space="preserve">
<source>Height</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Chiều cao</target>
</trans-unit>
<trans-unit id="Icon" translate="yes" xml:space="preserve">
<source>Icon</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Biểu tượng</target>
</trans-unit>
<trans-unit id="ItemHeight" translate="yes" xml:space="preserve">
<source>Item height</source>
<target state="translated">Chiều cao mục</target>
</trans-unit>
<trans-unit id="Load" translate="yes" xml:space="preserve">
<source>Load</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Tải</target>
</trans-unit>
<trans-unit id="MinWidth" translate="yes" xml:space="preserve">
<source>Min.Width</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Chiều rộng tối thiểu</target>
</trans-unit>
<trans-unit id="On" translate="yes" xml:space="preserve">
<source>On</source>
<target state="translated">Bật</target>
<note from="MultilingualBuild" annotates="source" priority="2">As in state On/Off</note>
</trans-unit>
<trans-unit id="Padding" translate="yes" xml:space="preserve">
<source>Padding</source>
<target state="translated">Giãn dòng</target>
</trans-unit>
<trans-unit id="RemovalOrder" translate="yes" xml:space="preserve">
<source>Removal order</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Lệnh gỡ bỏ</target>
</trans-unit>
<trans-unit id="ResizeToVerifyRemovalOrder" translate="yes" xml:space="preserve">
<source>Resize to verify Removal Order</source>
<target state="translated">Thay đổi kích thước để xác minh Lệnh gỡ bỏ</target>
</trans-unit>
<trans-unit id="Save" translate="yes" xml:space="preserve">
<source>Save</source>
<target state="translated">Lưu</target>
</trans-unit>
<trans-unit id="SaveAs" translate="yes" xml:space="preserve">
<source>Save as</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Lưu dưới dạng</target>
</trans-unit>
<trans-unit id="SaveNotice" translate="yes" xml:space="preserve">
<source>Save as a custom View name to prevent restoring default views when program updates</source>
<target state="translated">Lưu dưới dạng tên tùy chỉnh để ngăn khôi phục chế độ xem mặc định khi phần mềm cập nhật</target>
</trans-unit>
<trans-unit id="SomeElementsAreHidden" translate="yes" xml:space="preserve">
<source>Some elements are hidden due to available size (according to Removal Order)</source>
<target state="translated">Một số thành phần bị ẩn do kích thước có sẵn (theo Lệnh gỡ bỏ)</target>
</trans-unit>
<trans-unit id="TextAlign" translate="yes" xml:space="preserve">
<source>Text align</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Căn chỉnh văn bản</target>
</trans-unit>
<trans-unit id="Thumbnail" translate="yes" xml:space="preserve">
<source>Thumbnail</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Thu nhỏ</target>
</trans-unit>
<trans-unit id="UpdatePreview" translate="yes" xml:space="preserve">
<source>Update preview</source>
<target state="translated">Xem trước bản cập nhật</target>
</trans-unit>
<trans-unit id="Width" translate="yes" xml:space="preserve">
<source>Width</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Chiều rộng</target>
</trans-unit>
<trans-unit id="XOffset" translate="yes" xml:space="preserve">
<source>X offset</source>
<target state="translated">X offset</target>
</trans-unit>
<trans-unit id="YOffset" translate="yes" xml:space="preserve">
<source>Y offset</source>
<target state="translated">Y offset</target>
</trans-unit>
</group>
</body>
</file>
<file datatype="xml" source-language="en-US" target-language="vi" original="RAPIDRIVE/PROPERTIES/RESOURCESLICENSING.RESX" tool-id="MultilingualAppToolkit" product-name="n/a" product-version="n/a" build-num="n/a">
<header>
<tool tool-id="MultilingualAppToolkit" tool-name="Multilingual App Toolkit" tool-version="4.0.6921.0" tool-company="Microsoft" />
</header>
<body>
<group id="RAPIDRIVE/PROPERTIES/RESOURCESLICENSING.RESX" datatype="resx">
<trans-unit id="AlreadyPurchased" translate="yes" xml:space="preserve">
<source>Already purchased?</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Bạn đã mua?</target>
</trans-unit>
<trans-unit id="AnonymizedHardwareID" translate="yes" xml:space="preserve">
<source>Machine ID:</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">ID máy:</target>
</trans-unit>
<trans-unit id="AnonymizedHardwareIDCopy" translate="yes" xml:space="preserve">
<source>Click to copy Hardware ID to clipboard and open OneCommander.com</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Nhấp để sao chép ID phần cứng vào khay nhớ tạm và mở OneCommander.com</target>
<note from="MultilingualBuild" annotates="source" priority="2">NOT USED</note>
</trans-unit>
<trans-unit id="AnonymizedHardwareIDGenerating" translate="yes" xml:space="preserve">
<source>Generating Anonymized Machine ID... </source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Tạo ID máy ẩn danh... </target>
</trans-unit>
<trans-unit id="DLG_LicenseCodeWrong" translate="yes" xml:space="preserve">
<source>The entered license key doesn't match this Machine ID. If you have purchased Pro license for another machine and would like to move it to this one, reply to the original purchase confirmation email and include the Machine ID from above.</source>
<target state="translated">Giấy phép đã nhập không khớp với ID máy này. Nếu bạn đã mua giấy phép Pro cho một máy khác và muốn chuyển nó sang máy này, hãy trả lời email xác nhận mua hàng ban đầu và bao gồm ID máy từ phía trên.</target>
</trans-unit>
<trans-unit id="DLG_ThankYou" translate="yes" xml:space="preserve">
<source>Thank you for the purchase and supporting program development. Please restart the program to enable all features</source>
<target state="translated">Cảm ơn bạn đã mua và hỗ trợ phát triển phần mềm. Vui lòng khởi động lại phần mềm để bật tất cả các tính năng</target>
</trans-unit>
<trans-unit id="GetOnMicrosoftStore" translate="yes" xml:space="preserve">
<source>Get it on Microsoft Store</source>
<target state="translated">Tải ứng dụng trên Microsoft Store</target>
</trans-unit>
<trans-unit id="LicenseCode" translate="yes" xml:space="preserve">
<source>License key:</source>
<target state="translated">Key giấy phép:</target>
</trans-unit>
<trans-unit id="LicenseCodeWrong" translate="yes" xml:space="preserve">
<source>Wrong license length</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Độ dài giấy phép sai</target>
</trans-unit>
<trans-unit id="LicenseSiteOpenError" translate="yes" xml:space="preserve">
<source>Couldn't open website. Open manually in web browser</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Không thể mở trang web. Mở thủ công trong trình duyệt web</target>
</trans-unit>
<trans-unit id="LicenseSiteOpenError2" translate="yes" xml:space="preserve">
<source>Windows refused to open default web browser to https://onecommander.com/license.html. Please open web browser manually and paste the Machine ID (it is already copied on the clipboard and ready to paste)</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Windows từ chối mở trình duyệt web mặc định cho https://onecommander.com/license.html. Vui lòng mở trình duyệt web theo cách thủ công và dán ID máy (nó đã được sao chép trên khay nhớ tạm và sẵn sàng để dán)</target>
</trans-unit>
<trans-unit id="MoreOptions" translate="yes" xml:space="preserve">
<source>More options</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Tùy chọn khác</target>
</trans-unit>
<trans-unit id="NetworkError" translate="yes" xml:space="preserve">
<source>Network error</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Lỗi mạng</target>
</trans-unit>
<trans-unit id="PortableLicenseInfo" translate="yes" xml:space="preserve">
<source>The license is valid for this computer only</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Giấy phép chỉ có giá trị cho máy tính này</target>
<note from="MultilingualBuild" annotates="source" priority="2">NOT USED</note>
</trans-unit>
<trans-unit id="ProLicenseInfo" translate="yes" xml:space="preserve">
<source>OneCommander is free for HOME use with a limited features set.
For commercial use, the PRO license is required, regardless if the user needs these additional features (labeled with PRO in Settings).</source>
<target state="translated">OneCommander miễn phí cho sử dụng CÁ NHÂN với một bộ tính năng hạn chế.
Để sử dụng cho mục đích thương mại, cần có giấy phép PRO, bất kể người dùng có cần các tính năng bổ sung này hay không (được gắn nhãn PRO trong Cài đặt).</target>
</trans-unit>
<trans-unit id="PurchaseOnWebsite" translate="yes" xml:space="preserve">
<source>Purchase on OneCommander.com</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Mua hàng trên OneCommander.com</target>
</trans-unit>
<trans-unit id="PurchaseStepsPart1" translate="yes" xml:space="preserve">
<source>1. Using the above button open the purchase page and paste the Hardware ID (it should already be on clipboard) and enter your email
2. After completing the purchase, you should receive an automatic email with activation code (check spam also)
3. Paste the license from the email into the field below</source>
<target state="translated">1. Sử dụng nút bên trên để mở trang mua hàng và dán ID phần cứng (nó đã có trên khay nhớ tạm) và nhập email của bạn
2. Sau khi hoàn tất mua hàng, bạn sẽ nhận được một email tự động có mã kích hoạt (kiểm tra thư mục spam)
3. Dán giấy phép từ email vào trường bên dưới</target>
<note from="MultilingualBuild" annotates="source" priority="2">NOT USED</note>
</trans-unit>
<trans-unit id="PurchaseStepsPart2" translate="yes" xml:space="preserve">
<source>4. Restart program to activate all features</source>
<target state="translated">4. Khởi động lại phần mềm để kích hoạt tất cả các tính năng</target>
<note from="MultilingualBuild" annotates="source" priority="2">NOT USED</note>
</trans-unit>
<trans-unit id="StoreErrorChecking" translate="yes" xml:space="preserve">
<source>Error checking Microsoft Store</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Lỗi kiểm tra Microsoft Store</target>
</trans-unit>
<trans-unit id="StoreLicenseInfo" translate="yes" xml:space="preserve">
<source>Before making a purchase, please make sure you are signed into Microsoft Store with an account that you'd like to associate with this purchase, so you can reinstall it in the future and on additional computers with the same account.
The license will be valid for up to 10 computers used with the same Microsoft Account (as defined in Microsoft Store policy)</source>
<target state="translated">Trước khi mua hàng, hãy đảm bảo bạn đã đăng nhập vào Microsoft Store bằng tài khoản mà bạn muốn liên kết với giao dịch mua này, để bạn có thể cài đặt lại trong tương lai và trên các máy tính khác có cùng tài khoản.
Giấy phép sẽ có hiệu lực cho tối đa 10 máy tính được sử dụng với cùng một Tài khoản Microsoft (như được định nghĩa trong chính sách Microsoft Store)</target>
</trans-unit>
<trans-unit id="StoreLicenseRequired" translate="yes" xml:space="preserve">
<source>Pro license is required to use in a commercial setting.[NEWLINE]Please test it for a couple of days but if you find the program useful please purchase the license from the Microsoft Store (through About dialog)</source>
<target state="needs-review-translation">Cần có giấy phép Pro để sử dụng trong thương mại; Vui lòng kiểm tra nó trong một vài ngày nhưng nếu bạn thấy phần mềm hữu ích, vui lòng mua giấy phép từ Microsoft Store (thông qua hộp thoại Giới thiệu)</target>
<note from="MultilingualUpdate" annotates="source" priority="2">Please verify the translation’s accuracy as the source string was updated after it was translated.</note>
</trans-unit>
<trans-unit id="StoreNoValidLicenseFound" translate="yes" xml:space="preserve">
<source>Couldn't find a valid license with the current Microsoft account. Please check your email for the original purchase receipt and then click the button below to log into the same account that was used to purchase the license.</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Không thể tìm thấy giấy phép hợp lệ với tài khoản Microsoft hiện tại. Vui lòng kiểm tra email của bạn để biết biên lai mua hàng ban đầu và sau đó nhấp vào nút bên dưới để đăng nhập vào cùng một tài khoản đã được sử dụng để mua giấy phép.</target>
</trans-unit>
<trans-unit id="StoreOpen" translate="yes" xml:space="preserve">
<source>Connect to Microsoft Store</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Kết nối với Microsoft Store</target>
</trans-unit>
<trans-unit id="StorePleaseWait" translate="yes" xml:space="preserve">
<source>Please wait for the Microsoft Store...</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Vui lòng đợi Microsoft Store...</target>
</trans-unit>
<trans-unit id="StorePurchaseVerified" translate="yes" xml:space="preserve">
<source>Existing purchase verified. Please restart program to unlock all features.</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Giao dịch mua hiện tại đã được xác minh. Vui lòng khởi động lại chương trình để mở khóa tất cả các tính năng.</target>
</trans-unit>
<trans-unit id="StoreStatusPurchaseNotComplete" translate="yes" xml:space="preserve">
<source>The purchase did not complete. You can complete the purchase anytime Microsoft Store is available.</source>
<target state="translated">Việc mua hàng không hoàn tất. Bạn có thể hoàn tất giao dịch mua bất cứ lúc nào khi Microsoft Store sẵn sàng.</target>
</trans-unit>
<trans-unit id="VolumeLicenseInfo" translate="yes" xml:space="preserve">
<source>Volume licenses (10+) available if purchased for domain:</source>
<target state="translated">Giấy phép số lượng lớn (10+) có sẵn nếu mua cho tên miền:</target>
<note from="MultilingualBuild" annotates="source" priority="2">NOT USED</note>
</trans-unit>
<trans-unit id="GetMSI" translate="yes" xml:space="preserve">
<source>Get Pro license without Microsoft account</source>
<target state="new">Get Pro license without Microsoft account</target>
</trans-unit>
<trans-unit id="TransferLicenseNotice" translate="yes" xml:space="preserve">
<source>Machine-based licenses are being discontinued. If your license was purchased less than [BOLD]1 year ago[/BOLD], you can transfer it by replying to the licensing email with Machine ID shown below. [NEWLINE]For a permanent option, upgrade to a lifetime user-based license by covering the price difference. Contact support or use the link "{0}" in the "About" dialog of the licensed machine to upgrade.</source>
<target state="new">Machine-based licenses are being discontinued. If your license was purchased less than [BOLD]1 year ago[/BOLD], you can transfer it by replying to the licensing email with Machine ID shown below. [NEWLINE]For a permanent option, upgrade to a lifetime user-based license by covering the price difference. Contact support or use the link "{0}" in the "About" dialog of the licensed machine to upgrade.</target>
</trans-unit>
</group>
</body>
</file>
<file datatype="xml" source-language="en-US" target-language="vi" original="RAPIDRIVE/PROPERTIES/RESOURCESFILEAUTOMATOR.RESX" tool-id="MultilingualAppToolkit" product-name="n/a" product-version="n/a" build-num="n/a">
<header>
<tool tool-id="MultilingualAppToolkit" tool-name="Multilingual App Toolkit" tool-version="4.0.6921.0" tool-company="Microsoft" />
</header>
<body>
<group id="RAPIDRIVE/PROPERTIES/RESOURCESFILEAUTOMATOR.RESX" datatype="resx">
<trans-unit id="AddRule" translate="yes" xml:space="preserve">
<source>Add rule</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Thêm quy tắc</target>
<note from="MultilingualBuild" annotates="source" priority="2">FA rule</note>
</trans-unit>
<trans-unit id="AddWatermark" translate="yes" xml:space="preserve">
<source>Add watermark</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Thêm hình mờ</target>
<note from="MultilingualBuild" annotates="source" priority="2">FA files list watermark</note>
</trans-unit>
<trans-unit id="Cancel" translate="yes" xml:space="preserve">
<source>Cancel</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Hủy</target>
<note from="MultilingualBuild" annotates="source" priority="2">FA button</note>
</trans-unit>
<trans-unit id="CaseExtension" translate="yes" xml:space="preserve">
<source>Extension letter case</source>
<target state="translated">Định dạng đuôi tệp</target>
</trans-unit>
<trans-unit id="CaseFileName" translate="yes" xml:space="preserve">
<source>File name letter case</source>
<target state="translated">Định dạng tên tệp</target>
</trans-unit>
<trans-unit id="ChangeColorProfile" translate="yes" xml:space="preserve">
<source>Change Color Profile to</source>
<target state="translated">Thay đổi màu cấu hình thành</target>
</trans-unit>
<trans-unit id="ChangeDPI" translate="yes" xml:space="preserve">
<source>Change DPI to</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Thay đổi DPI thành</target>
</trans-unit>
<trans-unit id="ChangeQuality" translate="yes" xml:space="preserve">
<source>Change quality</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Thay đổi chất lượng</target>
</trans-unit>
<trans-unit id="Clear" translate="yes" xml:space="preserve">
<source>Clear</source>
<target state="translated">Xoá</target>
<note from="MultilingualBuild" annotates="source" priority="2">FA button</note>
</trans-unit>
<trans-unit id="ColumnDestination" translate="yes" xml:space="preserve">
<source>Destination</source>
<target state="translated">Thư mục đích</target>
<note from="MultilingualBuild" annotates="source" priority="2">FA Column</note>
</trans-unit>
<trans-unit id="ColumnErrors_TT" translate="yes" xml:space="preserve">
<source>Number of errors. Click to sort.</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Số lỗi. Bấm để sắp xếp.</target>
<note from="MultilingualBuild" annotates="source" priority="2">FA Column</note>
</trans-unit>
<trans-unit id="ColumnFile" translate="yes" xml:space="preserve">
<source>File</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Tệp</target>
<note from="MultilingualBuild" annotates="source" priority="2">FA Column</note>
</trans-unit>
<trans-unit id="ColumnIsNameValid_TT" translate="yes" xml:space="preserve">
<source>Name validity</source>
<target state="translated">Tên hợp lệ</target>
<note from="MultilingualBuild" annotates="source" priority="2">FA Column</note>
</trans-unit>
<trans-unit id="ColumnNewName" translate="yes" xml:space="preserve">
<source>New file name</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Tên tệp mới</target>
<note from="MultilingualBuild" annotates="source" priority="2">FA Column</note>
</trans-unit>
<trans-unit id="ColumnOperation" translate="yes" xml:space="preserve">
<source>Operation</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Hoạt động</target>
<note from="MultilingualBuild" annotates="source" priority="2">FA Column</note>
</trans-unit>
<trans-unit id="ColumnSource" translate="yes" xml:space="preserve">
<source>Source</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Nguồn</target>
<note from="MultilingualBuild" annotates="source" priority="2">FA Column</note>
</trans-unit>
<trans-unit id="ColumnStatus" translate="yes" xml:space="preserve">
<source>Status</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Tình trạng</target>
<note from="MultilingualBuild" annotates="source" priority="2">FA Column</note>
</trans-unit>
<trans-unit id="ConvertHashtag" translate="yes" xml:space="preserve">
<source>Convert # into sequential number starting at</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Chuyển đổi # thành số tuần tự bắt đầu từ</target>
</trans-unit>
<trans-unit id="ConvertHashtag_TT" translate="yes" xml:space="preserve">
<source>Tip: To add 4 trailing zeros write #### in rule</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Mẹo: Để thêm 4 số không ở cuối, hãy viết #### trong quy tắc</target>
</trans-unit>
<trans-unit id="DateTimeDay" translate="yes" xml:space="preserve">
<source>Day</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Ngày</target>
</trans-unit>
<trans-unit id="DateTimeHour" translate="yes" xml:space="preserve">
<source>Hour</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Giờ</target>
</trans-unit>
<trans-unit id="DateTimeMinute" translate="yes" xml:space="preserve">
<source>Minute</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Phút</target>
</trans-unit>
<trans-unit id="DateTimeMonth" translate="yes" xml:space="preserve">
<source>Month</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Tháng</target>
</trans-unit>
<trans-unit id="DateTimeYear" translate="yes" xml:space="preserve">
<source>Year</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Năm</target>
</trans-unit>
<trans-unit id="Description" translate="yes" xml:space="preserve">
<source>Description</source>
<target state="translated">Mô tả</target>
</trans-unit>
<trans-unit id="DestinationDir" translate="yes" xml:space="preserve">
<source>Output folder defined by folder rules</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Thư mục đầu ra được xác định bởi các quy tắc thư mục</target>
<note from="MultilingualBuild" annotates="source" priority="2">FA Tooltip explanation of argument</note>
</trans-unit>
<trans-unit id="DestinationFile" translate="yes" xml:space="preserve">
<source>Output filename as result of folder and file rules</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Tên tệp đầu ra là kết quả của các quy tắc thư mục và tệp</target>
<note from="MultilingualBuild" annotates="source" priority="2">FA Tooltip explanation of argument</note>
</trans-unit>
<trans-unit id="DLG_Busy" translate="yes" xml:space="preserve">
<source>Please wait operation to finish before adding new items</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Vui lòng đợi thao tác kết thúc trước khi thêm các mục mới</target>
</trans-unit>
<trans-unit id="FileNamingRules" translate="yes" xml:space="preserve">
<source>File naming rules</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Quy tắc đặt tên tệp</target>
<note from="MultilingualBuild" annotates="source" priority="2">FA</note>
</trans-unit>
<trans-unit id="FolderRules" translate="yes" xml:space="preserve">
<source>Destination folder rules</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Quy tắc thư mục đích</target>
<note from="MultilingualBuild" annotates="source" priority="2">FA</note>
</trans-unit>
<trans-unit id="FolderSameAsSource" translate="yes" xml:space="preserve">
<source>Same as source folder</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Tương tự như thư mục nguồn</target>
</trans-unit>
<trans-unit id="ForcedExtension" translate="yes" xml:space="preserve">
<source>Forced new file extension</source>
<target state="translated">Áp đặt đuôi tệp mới</target>
<note from="MultilingualBuild" annotates="source" priority="2">FA</note>
</trans-unit>
<trans-unit id="ForcedExtension_TT" translate="yes" xml:space="preserve">
<source>Leave blank to keep the original extension</source>
<target state="translated">Để trống để giữ đuôi tệp gốc</target>
<note from="MultilingualBuild" annotates="source" priority="2">FA</note>
</trans-unit>
<trans-unit id="HeaderNaming" translate="yes" xml:space="preserve">
<source>Naming</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Đặt tên</target>
<note from="MultilingualBuild" annotates="source" priority="2">FA control group header</note>
</trans-unit>
<trans-unit id="HeaderOperation" translate="yes" xml:space="preserve">
<source>Operation</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Hoạt động</target>
</trans-unit>
<trans-unit id="IgnoreCase" translate="yes" xml:space="preserve">
<source>Ignore case</source>
<target state="translated">Bỏ qua chữ hoa / thường</target>
</trans-unit>
<trans-unit id="InvalidRegExSyntax" translate="yes" xml:space="preserve">
<source>Invalid RegEx syntax</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Cú pháp RegEx không hợp lệ</target>
</trans-unit>
<trans-unit id="Lowercase" translate="yes" xml:space="preserve">
<source>lowercase</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">chữ thường</target>
</trans-unit>
<trans-unit id="MSG_FileAlreadyExists" translate="yes" xml:space="preserve">
<source>File with this name already exists</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Tệp có tên này đã tồn tại</target>
</trans-unit>
<trans-unit id="MSG_FileNameConflict" translate="yes" xml:space="preserve">
<source>File name conflict</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Xung đột tên tệp</target>
<note from="MultilingualBuild" annotates="source" priority="2">Another file name exists with this name (for Automator rename)</note>
</trans-unit>
<trans-unit id="MSG_FileNameConflict2" translate="yes" xml:space="preserve">
<source>Another file will get the same name (check file name rules)</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Một tệp khác sẽ có cùng tên (kiểm tra quy tắc tên tệp)</target>
</trans-unit>
<trans-unit id="MSG_FileNameInvalidCharacters" translate="yes" xml:space="preserve">
<source>File contains invalid characters</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Tệp chứa các ký tự không hợp lệ</target>
</trans-unit>
<trans-unit id="MSG_FolderNameInvalidCharacters" translate="yes" xml:space="preserve">
<source>Folder name contains invalid characters</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Tên thư mục chứa các ký tự không hợp lệ</target>
</trans-unit>
<trans-unit id="MSG_NotImage" translate="yes" xml:space="preserve">
<source>Not image</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Không phải hình ảnh</target>
</trans-unit>
<trans-unit id="MSG_Processing" translate="yes" xml:space="preserve">
<source>Processing...</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Xử lý...</target>
</trans-unit>
<trans-unit id="MSG_RunningScript" translate="yes" xml:space="preserve">
<source>Running script...</source>
<target state="translated">Chạy tập lệnh...</target>
</trans-unit>
<trans-unit id="MSG_RunScript" translate="yes" xml:space="preserve">
<source>Run script</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Chạy tập lệnh</target>
</trans-unit>
<trans-unit id="MSG_SameName" translate="yes" xml:space="preserve">
<source>Same name</source>
<target state="translated">Trùng tên</target>
</trans-unit>
<trans-unit id="OperationConvert" translate="yes" xml:space="preserve">
<source>Convert to</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Chuyển đổi sang</target>
<note from="MultilingualBuild" annotates="source" priority="2">FA operation Convert to JPG</note>
</trans-unit>
<trans-unit id="OperationRename" translate="yes" xml:space="preserve">
<source>Rename</source>
<target state="translated">Đổi tên</target>
<note from="MultilingualBuild" annotates="source" priority="2">FA operation rename</note>
</trans-unit>
<trans-unit id="OperationRunScript" translate="yes" xml:space="preserve">
<source>Run script</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Chạy tập lệnh</target>
<note from="MultilingualBuild" annotates="source" priority="2">FA operation Run script operation</note>
</trans-unit>
<trans-unit id="ParentName" translate="yes" xml:space="preserve">
<source>Parent folder name</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Tên thư mục mẹ</target>
<note from="MultilingualBuild" annotates="source" priority="2">FA Tooltip explanation of argument</note>
</trans-unit>
<trans-unit id="Presets" translate="yes" xml:space="preserve">
<source>Presets</source>
<target state="translated">Cài đặt trước</target>
</trans-unit>
<trans-unit id="Preview" translate="yes" xml:space="preserve">
<source>Preview</source>
<target state="translated">Xem trước</target>
<note from="MultilingualBuild" annotates="source" priority="2">FA button</note>
</trans-unit>
<trans-unit id="Process" translate="yes" xml:space="preserve">
<source>Process</source>
<target state="translated">Xử lý</target>
<note from="MultilingualBuild" annotates="source" priority="2">FA button</note>
</trans-unit>
<trans-unit id="RegExEndOfString" translate="yes" xml:space="preserve">
<source>End of string</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Cuối chuỗi</target>
<note from="MultilingualBuild" annotates="source" priority="2">FA - in Regex tooltip</note>
</trans-unit>
<trans-unit id="RegExMatchNumbers" translate="yes" xml:space="preserve">
<source>Match numbers</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Số trùng khớp</target>
<note from="MultilingualBuild" annotates="source" priority="2">FA - in Regex tooltip</note>
</trans-unit>
<trans-unit id="RegExMatchWord" translate="yes" xml:space="preserve">
<source>Match word</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Khớp từ</target>
<note from="MultilingualBuild" annotates="source" priority="2">FA - in Regex tooltip</note>
</trans-unit>
<trans-unit id="RegExReplacePattern" translate="yes" xml:space="preserve">
<source>Replace pattern</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Thay thế mẫu</target>
<note from="MultilingualBuild" annotates="source" priority="2">FA - in Regex tooltip (NOT USED)</note>
</trans-unit>
<trans-unit id="RegExStartOfString" translate="yes" xml:space="preserve">
<source>Start of string</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Bắt đầu chuỗi</target>
<note from="MultilingualBuild" annotates="source" priority="2">FA - in Regex tooltip</note>
</trans-unit>
<trans-unit id="RegExWordToReplace" translate="yes" xml:space="preserve">
<source>Word to replace or RegEx pattern</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Word để thay thế hoặc mẫu RegEx</target>
<note from="MultilingualBuild" annotates="source" priority="2">FA - in Regex tooltip</note>
</trans-unit>
<trans-unit id="ReplaceInvalidChars" translate="yes" xml:space="preserve">
<source>Replace invalid characters with</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Thay thế các ký tự không hợp lệ bằng</target>
<note from="MultilingualBuild" annotates="source" priority="2">FA - follows with textbox</note>
</trans-unit>
<trans-unit id="Resize" translate="yes" xml:space="preserve">
<source>Resize</source>
<target state="translated">Thay đổi kích thước</target>
</trans-unit>
<trans-unit id="ResizeFilter" translate="yes" xml:space="preserve">
<source>Resize filter</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Thay đổi kích thước bộ lọc</target>
<note from="MultilingualBuild" annotates="source" priority="2">FA; as in image interpolation filter</note>
</trans-unit>
<trans-unit id="ResizeInterpolation" translate="yes" xml:space="preserve">
<source>Resize interpolation</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Nội suy thay đổi kích thước</target>
</trans-unit>
<trans-unit id="ResizeModeFitWithin" translate="yes" xml:space="preserve">
<source>Fit within</source>
<target state="translated">Căn vừa với</target>
<note from="MultilingualBuild" annotates="source" priority="2">Resizing mode</note>
</trans-unit>
<trans-unit id="ResizeModeFixedHeight" translate="yes" xml:space="preserve">
<source>Fixed height</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Chiều cao cố định</target>
<note from="MultilingualBuild" annotates="source" priority="2">Resizing mode</note>
</trans-unit>
<trans-unit id="ResizeModeFixedWidth" translate="yes" xml:space="preserve">
<source>Fixed width</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Chiều rộng cố định</target>
<note from="MultilingualBuild" annotates="source" priority="2">Resizing mode</note>
</trans-unit>
<trans-unit id="ResizeModeMinimumSize" translate="yes" xml:space="preserve">
<source>Minimum size</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Kích thước tối thiểu</target>
<note from="MultilingualBuild" annotates="source" priority="2">Resizing mode</note>
</trans-unit>
<trans-unit id="ResizeMoreOptions" translate="yes" xml:space="preserve">
<source>More options</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Tùy chọn khác</target>
<note from="MultilingualBuild" annotates="source" priority="2">Button to revel more resizing options</note>
</trans-unit>
<trans-unit id="ResizeShrinkOnly" translate="yes" xml:space="preserve">
<source>Shrink only</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Chỉ thu nhỏ</target>
<note from="MultilingualBuild" annotates="source" priority="2">Checkbox to only make images smaller</note>
</trans-unit>
<trans-unit id="Result_Done" translate="yes" xml:space="preserve">
<source>Done</source>
<target state="translated">Hoàn thành</target>
<note from="MultilingualBuild" annotates="source" priority="2">Status or operation that is finished</note>
</trans-unit>
<trans-unit id="Result_OperationError" translate="yes" xml:space="preserve">
<source>Error performing operation</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Lỗi thực hiện thao tác</target>
<note from="MultilingualBuild" annotates="source" priority="2">Status or operation</note>
</trans-unit>
<trans-unit id="Result_TaskCancelled" translate="yes" xml:space="preserve">
<source>Task cancelled</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Tác vụ đã hủy</target>
<note from="MultilingualBuild" annotates="source" priority="2">Status or operation</note>
</trans-unit>
<trans-unit id="Rotate" translate="yes" xml:space="preserve">
<source>Rotate</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Xoay</target>
</trans-unit>
<trans-unit id="RuleReplace" translate="yes" xml:space="preserve">
<source>Replace</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Thay thế</target>
<note from="MultilingualBuild" annotates="source" priority="2">FA rule type</note>
</trans-unit>
<trans-unit id="RuleTypeDocument" translate="yes" xml:space="preserve">
<source>Document</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Tài liệu</target>
<note from="MultilingualBuild" annotates="source" priority="2">FA rule type</note>
</trans-unit>
<trans-unit id="RuleTypeImage" translate="yes" xml:space="preserve">
<source>Image</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Ảnh</target>
<note from="MultilingualBuild" annotates="source" priority="2">FA rule type</note>
</trans-unit>
<trans-unit id="RuleTypeSimple" translate="yes" xml:space="preserve">
<source>Simple</source>
<target state="translated">Đơn giản</target>
<note from="MultilingualBuild" annotates="source" priority="2">FA rule type</note>
</trans-unit>
<trans-unit id="RuleTypeVideo" translate="yes" xml:space="preserve">
<source>Video</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Video</target>
<note from="MultilingualBuild" annotates="source" priority="2">FA rule type</note>
</trans-unit>
<trans-unit id="ScriptOptions" translate="yes" xml:space="preserve">
<source>Script Options</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Tùy chọn tập lệnh</target>
</trans-unit>
<trans-unit id="ScriptShowInStatus" translate="yes" xml:space="preserve">
<source>Show shell output in Status area (otherwise CMD window will open)</source>
<target state="translated">Hiển thị đầu ra trong khu vực Trạng thái (nếu không cửa sổ CMD sẽ mở)</target>
<note from="MultilingualBuild" annotates="source" priority="2">Checkbox text</note>
</trans-unit>
<trans-unit id="ScriptShowInStatus_TT" translate="yes" xml:space="preserve">
<source>Uncheck if you want it to be cancelable. Press Ctrl+C in CMD window to cancel operation</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Bỏ chọn nếu bạn muốn nó có thể hủy. Nhấn Ctrl + C trong cửa sổ CMD để hủy thao tác</target>
<note from="MultilingualBuild" annotates="source" priority="2">Checkbox text tooltip</note>
</trans-unit>
<trans-unit id="ShowSourceAndDestColumns" translate="yes" xml:space="preserve">
<source>Show Source and Destination columns in the files list</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Hiển thị cột Nguồn và Đích trong danh sách tệp</target>
<note from="MultilingualBuild" annotates="source" priority="2">Checkbox text</note>
</trans-unit>
<trans-unit id="SourceDir" translate="yes" xml:space="preserve">
<source>Source folder of the file</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Thư mục nguồn của tệp</target>
<note from="MultilingualBuild" annotates="source" priority="2">FA Tooltip explanation of argument</note>
</trans-unit>
<trans-unit id="SourceFile" translate="yes" xml:space="preserve">
<source>Full path to file</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Đường dẫn đầy đủ đến tệp</target>
<note from="MultilingualBuild" annotates="source" priority="2">FA Tooltip explanation of argument</note>
</trans-unit>
<trans-unit id="TT_Example" translate="yes" xml:space="preserve">
<source>Example</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Ví dụ</target>
<note from="MultilingualBuild" annotates="source" priority="2">Tooltip as in Example: File Name</note>
</trans-unit>
<trans-unit id="TT_ExampleOutput" translate="yes" xml:space="preserve">
<source>Out</source>
<target state="translated">Đầu ra</target>
<note from="MultilingualBuild" annotates="source" priority="2">Tooltip as in Out: File Name</note>
</trans-unit>
<trans-unit id="TT_OriginalFilename" translate="yes" xml:space="preserve">
<source>Original filename</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Tên tệp gốc</target>
</trans-unit>
<trans-unit id="TT_PreviousRuleOutput" translate="yes" xml:space="preserve">
<source>Output from previous rule</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Đầu ra từ quy tắc trước</target>
</trans-unit>
<trans-unit id="TT_SequentialNumber" translate="yes" xml:space="preserve">
<source>Seqential number</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Số tuần tự</target>
</trans-unit>
<trans-unit id="Unchanged" translate="yes" xml:space="preserve">
<source>Unchanged</source>
<target state="translated">Không đổi</target>
<note from="MultilingualBuild" annotates="source" priority="2">Option in dropdown</note>
</trans-unit>
<trans-unit id="Uppercase" translate="yes" xml:space="preserve">
<source>UPPERCASE</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">CHỮ HOA</target>
</trans-unit>
<trans-unit id="Watermark_DragFilesHereOrPaste" translate="yes" xml:space="preserve">
<source>Drag files here or paste with Ctrl+V</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Kéo tệp vào đây hoặc dán bằng Ctrl + V</target>
</trans-unit>
</group>
</body>
</file>
<file datatype="xml" source-language="en-US" target-language="vi" original="RAPIDRIVE/PROPERTIES/RESOURCESSETTINGS.RESX" tool-id="MultilingualAppToolkit" product-name="n/a" product-version="n/a" build-num="n/a">
<header>
<tool tool-id="MultilingualAppToolkit" tool-name="Multilingual App Toolkit" tool-version="4.0.6921.0" tool-company="Microsoft" />
</header>
<body>
<group id="RAPIDRIVE/PROPERTIES/RESOURCESSETTINGS.RESX" datatype="resx">
<trans-unit id="AccentColor" translate="yes" xml:space="preserve">
<source>Accent Color</source>
<target state="translated">Màu chủ đề</target>
</trans-unit>
<trans-unit id="AccentColorGetFromWindows" translate="yes" xml:space="preserve">
<source>Get from Windows</source>
<target state="translated">Lấy từ Windows</target>
</trans-unit>
<trans-unit id="AccentColorHexValue" translate="yes" xml:space="preserve">
<source>(HEX value in #RRGGBB format)</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">(Giá trị HEX ở định dạng #RRGGBB)</target>
</trans-unit>
<trans-unit id="AccentColorLocked" translate="yes" xml:space="preserve">
<source>Accent color can't be changed because this particular theme forces a certain accent color</source>
<target state="translated">Không thể thay đổi màu chủ đề vì chủ đề này đã mặc định một màu nhất định</target>
</trans-unit>
<trans-unit id="AddToEnvironmentPath" translate="yes" xml:space="preserve">
<source>Add to user PATH variable</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Thêm vào biến PATH người dùng</target>
<note from="MultilingualBuild" annotates="source" priority="2">PATH is Windows variable so it should stay untranslated (or keep in brackets)</note>
</trans-unit>
<trans-unit id="AddToEnvironmentPathInfo" translate="yes" xml:space="preserve">
<source>Adds program path to PATH Environment Variable (user) so it can be started from anywhere in command line</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Thêm đường dẫn chương trình vào Biến môi trường PATH (người dùng) để nó có thể được bắt đầu từ bất cứ đâu trong dòng lệnh</target>
<note from="MultilingualBuild" annotates="source" priority="2">PATH is Windows variable so it should stay untranslated (or keep in brackets)</note>
</trans-unit>
<trans-unit id="AdvancedInfo" translate="yes" xml:space="preserve">
<source>Rarely needed settings. Don't change unless absolutely necessary!</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Cài đặt hiếm khi cần thiết. Đừng thay đổi trừ khi thực sự cần thiết!</target>
</trans-unit>
<trans-unit id="AlignCenter" translate="yes" xml:space="preserve">
<source>Center</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Trung tâm</target>
</trans-unit>
<trans-unit id="AlignLeft" translate="yes" xml:space="preserve">
<source>Left</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Bên trái</target>
<note from="MultilingualBuild" annotates="source" priority="2">As in Alignment Left</note>
</trans-unit>
<trans-unit id="AlignRight" translate="yes" xml:space="preserve">
<source>Right</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Bên phải</target>
<note from="MultilingualBuild" annotates="source" priority="2">As in Alignment Right</note>
</trans-unit>
<trans-unit id="AnimationDuration" translate="yes" xml:space="preserve">
<source>Animation duration (ms)</source>
<target state="translated">Thời gian chuyển cảnh (ms)</target>
</trans-unit>
<trans-unit id="AnimationDurationTest" translate="yes" xml:space="preserve">
<source>Click to test animation duration</source>
<target state="translated">Nhấp để kiểm tra thời gian chuyển cảnh</target>
</trans-unit>
<trans-unit id="AutoSwitchToThumbView" translate="yes" xml:space="preserve">
<source>Auto-switch to thumbnail view</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Tự động chuyển sang chế độ xem hình thu nhỏ</target>
</trans-unit>
<trans-unit id="AutoSwitchToThumbViewInfo" translate="yes" xml:space="preserve">
<source>Program will check the first few files in a folder and if most are images or videos it will load thumbnail view. Views that are already saved won't be affected</source>
<target state="translated">Phần mềm sẽ kiểm tra một vài tệp đầu tiên trong một thư mục và nếu hầu hết là hình ảnh hoặc video, nó sẽ tải chế độ xem hình thu nhỏ. Các chế độ xem đã được lưu sẽ không bị ảnh hưởng</target>
</trans-unit>
<trans-unit id="Changed" translate="yes" xml:space="preserve">
<source>Changed</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Thay đổi</target>
<note from="MultilingualBuild" annotates="source" priority="2">Column header to show changed shortcut</note>
</trans-unit>
<trans-unit id="ClearHistoryOnClose" translate="yes" xml:space="preserve">
<source>Clear History on close</source>
<target state="translated">Xóa lịch sử khi đóng</target>
<note from="MultilingualBuild" annotates="source" priority="2">Checkbox in settings</note>
</trans-unit>
<trans-unit id="ClearThumbnailCache" translate="yes" xml:space="preserve">
<source>Clear Windows thumbnail cache</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Xóa bộ nhớ cache hình thu nhỏ Windows</target>
</trans-unit>
<trans-unit id="ClearThumbnailCacheInfo" translate="yes" xml:space="preserve">
<source>Clears Windows global thumbnail cache (for Explorer also)</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Xóa bộ nhớ cache hình thu nhỏ toàn cầu của Windows (cũng dành cho Explorer)</target>
</trans-unit>
<trans-unit id="ClipboardCheckText" translate="yes" xml:space="preserve">
<source>Check and notify when there is text on clipboard</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Kiểm tra và thông báo khi có văn bản trên khay nhớ tạm</target>
</trans-unit>
<trans-unit id="ClipboardCheckTextInfo" translate="yes" xml:space="preserve">
<source>Shows notifications offering to create a file from text by pressing Ctrl+V</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Hiển thị thông báo đề xuất tạo tệp từ văn bản bằng cách nhấn Ctrl+V</target>
</trans-unit>
<trans-unit id="ColorFileAge" translate="yes" xml:space="preserve">
<source>Color</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Màu</target>
<note from="MultilingualBuild" annotates="source" priority="2">Checkbox to enable using background color for file age</note>
</trans-unit>
<trans-unit id="ColorItemBackgroundToTagColor" translate="yes" xml:space="preserve">
<source>Color item background to tag color</source>
<target state="translated">Màu mục nền để gắn thẻ màu</target>
<note from="MultilingualBuild" annotates="source" priority="2">NOT USED</note>
</trans-unit>
<trans-unit id="ColorizeLargeFileSize" translate="yes" xml:space="preserve">
<source>Make size over 1 GB more prominent with a color</source>
<target state="translated">Làm cho tệp kích thước trên 1 GB nổi bật hơn với một màu</target>
<note from="MultilingualBuild" annotates="source" priority="2">Checkbox in settings</note>
</trans-unit>
<trans-unit id="ColorLuminosity_TT" translate="yes" xml:space="preserve">
<source>Color luminosity</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Độ sáng màu</target>
</trans-unit>
<trans-unit id="ColorSaturation_TT" translate="yes" xml:space="preserve">
<source>Color saturation</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Độ bão hòa màu</target>
</trans-unit>
<trans-unit id="ColumnAdvancedDelay" translate="yes" xml:space="preserve">
<source>Expand delay (ms)</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Mở rộng độ trễ (ms)</target>
</trans-unit>
<trans-unit id="ColumnAdvancedDelayInfo" translate="yes" xml:space="preserve">
<source>When cursor enters a folder column, program will wait for:</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Khi con trỏ vào một cột thư mục, chương trình sẽ đợi:</target>
</trans-unit>
<trans-unit id="ColumnAdvancedDuration" translate="yes" xml:space="preserve">
<source>Expand duration (ms)</source>
<target state="translated">Thời lượng mở rộng (ms)</target>
</trans-unit>
<trans-unit id="ColumnAdvancedDurationInfo" translate="yes" xml:space="preserve">
<source>and then animate expanding the column for:</source>
<target state="translated">và sau đó tạo hiệu ứng chuyển cảnh cho việc mở rộng cột cho:</target>
</trans-unit>
<trans-unit id="ColumnAdvancedExpandAnimateAll" translate="yes" xml:space="preserve">
<source>Set to max to animate all</source>
<target state="translated">Đặt thành tối đa để tạo hiệu ứng cho tất cả</target>
</trans-unit>
<trans-unit id="ColumnAdvancedExpandTriggerWidth" translate="yes" xml:space="preserve">
<source>Trigger width</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">Chiều rộng kích hoạt</target>
</trans-unit>
<trans-unit id="ColumnAdvancedExpandTriggerWidthInfo" translate="yes" xml:space="preserve">
<source>OneCommander only expands columns smaller than this:</source>
<target state="needs-review-translation" state-qualifier="mt-suggestion">OneCommander chỉ mở rộng các cột nhỏ hơn mức này:</target>
</trans-unit>