File: JabRef_vi.properties

package info (click to toggle)
jabref 2.7~beta1%2Bds-6
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 10,560 kB
  • sloc: java: 75,844; xml: 1,378; sh: 53; makefile: 14
file content (2179 lines) | stat: -rwxr-xr-x 116,838 bytes parent folder | download
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
#!
#! created/edited by Popeye version 0.54 (popeye.sourceforge.net)
#! encoding:ISO-8859-1

%0_contains_the_Regular_Expression_<b>%1</b>=%0%0&nbsp;ch\u1EE9a_bi\u1EC3u_th\u1EE9c_ch\u00EDnh_t\u1EAFc_<b>%1</b>

%0_contains_the_term_<b>%1</b>=%0&nbsp;ch\u1EE9a_thu\u1EADt_ng\u1EEF_<b>%1</b>

%0_doesn't_contain_the_Regular_Expression_<b>%1</b>=%0_kh\u00F4ng_ch\u1EE9a_bi\u1EC3u_th\u1EE9c_ch\u00EDnh_t\u1EAFc_<b>%1</b>

%0_doesn't_contain_the_term_<b>%1</b>=%0_kh\u00F4ng_ch\u1EE9a_thu\u1EADt_ng\u1EEF_<b>%1</b>

%0_doesn't_match_the_Regular_Expression_<b>%1</b>=%0_kh\u00F4ng_kh\u1EDBp_v\u1EDBi_bi\u1EC3u_th\u1EE9c_ch\u00EDnh_t\u1EAFc_<b>%1</b>

%0_doesn't_match_the_term_<b>%1</b>=%0_kh\u00F4ng_kh\u1EDBp_thu\u1EADt_ng\u1EEF_<b>%1</b>

%0_entries_found._To_reduce_server_load,_only_%1_will_be_downloaded._It_will_be_very_slow,_in_order_to_make_ACM_happy.=T\u00ECm_th\u1EA5y_%0_m\u1EE5c._\u0110\u1EC3_gi\u1EA3m_t\u1EA3i_cho_server,_ch\u1EC9_c\u00F3_%1_s\u1EBD_\u0111\u01B0\u1EE3c_n\u1EA1p._S\u1EBD_r\u1EA5t_ch\u1EADm,_\u0111\u1EC3_\u0111\u1EA3m_b\u1EA3o_ACM_"h\u00E0i_l\u00F2ng".

%0_export_successful=%0_xu\u1EA5t_th\u00E0nh_c\u00F4ng

%0_field_set=%0_tr\u01B0\u1EDDng_\u0111\u01B0\u1EE3c_thi\u1EBFt_l\u1EADp

%0_matches_the_Regular_Expression_<b>%1</b>=%0_kh\u1EDBp_bi\u1EC3u_th\u1EE9c_ch\u00EDnh_t\u1EAFc_<b>%1</b>

%0_matches_the_term_<b>%1</b>=%0_kh\u1EDBp_thu\u1EADt_ng\u1EEF_<b>%1</b>
%0_warnings=%0_c\u1EA3nh_b\u00E1o
,_includes_subgroups=,_k\u1EC3_c\u1EA3_c\u00E1c_nh\u00F3m_con
,_refines_supergroup=,_tinh_ch\u1EC9nh_l\u1EA1i_nh\u00F3m_l\u1EDBn
</b>_-_dynamic_group_(=</b>_-_nh\u00F3m_\u0111\u1ED9ng_(
</b>_-_dynamic_group_(<b>=</b>_-_nh\u00F3m_\u0111\u1ED9ng_(<b>
</b>_-_static_group=</b>_-_nh\u00F3m_t\u0129nh
</b>_contains_<b>=</b>_ch\u1EE9a_<b>
<b>All_Entries</b>_(this_group_cannot_be_edited_or_removed)=<b>T\u1EA5t_c\u1EA3_c\u00E1c_m\u1EE5c</b>_(kh\u00F4ng_th\u1EC3_ch\u1EC9nh_s\u1EEDa_ho\u1EB7c_lo\u1EA1i_b\u1ECF_nh\u00F3m_n\u00E0y)

<field_name>=<t\u00EAn_tr\u01B0\u1EDDng>
<HTML>Could_not_find_file_'%0'<BR>linked_from_entry_'%1'</HTML>=<HTML>Kh\u00F4ng_th\u1EC3_t\u00ECm_th\u1EA5y_t\u1EADp_tin_'%0'<BR>\u0111\u01B0\u1EE3c_li\u00EAn_k\u1EBFt_t\u1EEB_m\u1EE5c_'%1'</HTML>

<no_field>=<kh\u00F4ng_c\u00F3_tr\u01B0\u1EDDng>

<select>=<ch\u1ECDn>

<select_word>=<ch\u1ECDn_t\u1EEB>

_on_entry_number_=_d\u1EF1a_tr\u00EAn_s\u1ED1_hi\u1EC7u_m\u1EE5c_

A_CiteSeer_fetch_operation_is_currently_in_progress.=M\u1ED9t_l\u1EC7nh_l\u1EA5y_v\u1EC1_t\u1EEB_CiteSeer_hi\u1EC7n_\u0111ang_ch\u1EA1y.

A_CiteSeer_import_operation_is_currently_in_progress.=M\u1ED9t_l\u1EC7nh_nh\u1EADp_t\u1EEB_CiteSeer_hi\u1EC7n_\u0111ang_ch\u1EA1y.
A_newer_version_of_this_plugin_is_already_installed.=M\u1ED9t_phi\u00EAn_b\u1EA3n_m\u1EDBi_h\u01A1n_c\u1EE7a_ph\u1EA7n_m\u1EDF_r\u1ED9ng_n\u00E0y_\u0111\u00E3_\u0111\u01B0\u1EE3c_c\u00E0i_\u0111\u1EB7t.
A_string_with_that_label_already_exists=M\u1ED9t_chu\u1ED7i_v\u1EDBi_nh\u00E3n_\u0111\u00F3_\u0111\u00E3_c\u00F3
Abbreviate_journal_names_of_the_selected_entries_(ISO_abbreviation)=Vi\u1EBFt_t\u1EAFt_t\u00EAn_t\u1EA1p_ch\u00ED_c\u1EE7a_c\u00E1c_m\u1EE5c_\u0111\u01B0\u1EE3c_ch\u1ECDn_(vi\u1EBFt_t\u1EAFt_ki\u1EC3u_ISO)
Abbreviate_journal_names_of_the_selected_entries_(MEDLINE_abbreviation)=Vi\u1EBFt_t\u1EAFt_t\u00EAn_t\u1EA1p_ch\u00ED_c\u1EE7a_c\u00E1c_m\u1EE5c_\u0111\u01B0\u1EE3c_ch\u1ECDn_(vi\u1EBFt_t\u1EAFt_ki\u1EC3u_MEDLINE)

Abbreviate_names=Vi\u1EBFt_t\u1EAFt_c\u00E1c_t\u00EAn
Abbreviated_%0_journal_names.=%0_t\u00EAn_t\u1EA1p_ch\u00ED_\u0111\u01B0\u1EE3c_vi\u1EBFt_t\u1EAFt.

Abbreviation=Vi\u1EBFt_t\u1EAFt

About_JabRef=N\u00F3i_v\u1EC1_JabRef

Abstract=T\u00F3m_t\u1EAFt

Accept=Ch\u1EA5p_nh\u1EADn

Accept_change=Ch\u1EA5p_nh\u1EADn_thay_\u0111\u1ED5i

Action=H\u00E0nh_\u0111\u1ED9ng

Add=Th\u00EAm

Add_a_(compiled)_custom_ImportFormat_class_from_a_class_path._\nThe_path_need_not_be_on_the_classpath_of_JabRef.=Th\u00EAm_m\u1ED9t_l\u1EDBp_\u0110\u1ECBnhd\u1EA1ngNh\u1EADp_t\u00F9y_bi\u1EBFn_(\u0111\u01B0\u1EE3c_bi\u00EAn_d\u1ECBch)_t\u1EEB_\u0111\u01B0\u1EDDng_d\u1EABn_l\u1EDBp._\n\u0110\u01B0\u1EDDng_d\u1EABn_kh\u00F4ng_\u0111\u01B0\u1EE3c_tr\u00F9ng_v\u1EDBi_\u0111\u01B0\u1EDDng_d\u1EABn_l\u1EDBp_c\u1EE7a_JabRef.

Add_a_(compiled)_custom_ImportFormat_class_from_a_Zip-archive.\nThe_Zip-archive_need_not_be_on_the_classpath_of_JabRef.=Th\u00EAm_m\u1ED9t_l\u1EDBp_\u0110\u1ECBnhd\u1EA1ngNh\u1EADp_t\u00F9y_bi\u1EBFn_(\u0111\u01B0\u1EE3c_bi\u00EAn_d\u1ECBch)_t\u1EEB_m\u1ED9t_t\u1EADp_tin-zip._\nT\u1EADp_tin-zip_kh\u00F4ng_\u0111\u01B0\u1EE3c_tr\u00F9ng_v\u1EDBi_\u0111\u01B0\u1EDDng_d\u1EABn_l\u1EDBp_c\u1EE7a_JabRef.

add_entries_to_group=th\u00EAm_c\u00E1c_m\u1EE5c_v\u00E0o_nh\u00F3m

Add_entry_selection_to_this_group=Th\u00EAm_ph\u00E9p_ch\u1ECDn_m\u1EE5c_v\u00E0o_nh\u00F3m_n\u00E0y

Add_from_folder=Th\u00EAm_t\u1EEB_th\u01B0_m\u1EE5c

Add_from_jar=Th\u00EAm_t\u1EEB_t\u1EADp_tin_jar

add_group=th\u00EAm_nh\u00F3m

Add_Group=Th\u00EAm_nh\u00F3m

Add_new=Th\u00EAm_m\u1EDBi

Add_Subgroup=Th\u00EAm_nh\u00F3m_con

Add_to_group=Th\u00EAm_v\u00E0o_nh\u00F3m

Added_group_"%0".=Nh\u00F3m_\u0111\u01B0\u1EE3c_th\u00EAm_"%0".

Added_new=M\u1EDBi_\u0111\u01B0\u1EE3c_th\u00EAm

Added_string=Chu\u1ED7i_\u0111\u01B0\u1EE3c_th\u00EAm

Additionally,_entries_whose_<b>%0</b>_field_does_not_contain_<b>%1</b>_can_be_assigned_manually_to_this_group_by_selecting_them_then_using_either_drag_and_drop_or_the_context_menu._This_process_adds_the_term_<b>%1</b>_to_each_entry's_<b>%0</b>_field._Entries_can_be_removed_manually_from_this_group_by_selecting_them_then_using_the_context_menu._This_process_removes_the_term_<b>%1</b>_from_each_entry's_<b>%0</b>_field.=Ngo\u00E0i_ra,_nh\u1EEFng_m\u1EE5c_n\u00E0o_c\u00F3_tr\u01B0\u1EDDng_<b>%0</b>_kh\u00F4ng_ch\u1EE9a_<b>%1</b>&nbsp;c\u00F3_th\u1EC3_\u0111\u01B0\u1EE3c_g\u00E1n_th\u1EE7_c\u00F4ng_v\u00E0o_nh\u00F3m_n\u00E0y_b\u1EB1ng_c\u00E1ch_ch\u1ECDn_ch\u00FAng_r\u1ED3i_k\u00E9o_th\u1EA3_ho\u1EB7c_d\u00F9ng_menu_ng\u1EEF_c\u1EA3nh._Qu\u00E1_tr\u00ECnh_n\u00E0y_th\u00EAm_thu\u1EADt_ng\u1EEF_<b>%1</b>&nbsp;v\u00E0o_tr\u01B0\u1EDDng_<b>%0</b>_c\u1EE7a_m\u1ED7i_m\u1EE5c._C\u00E1c_m\u1EE5c_c\u00F3_th\u1EC3_\u0111\u01B0\u1EE3c_lo\u1EA1i_b\u1ECF_th\u1EE7_c\u00F4ng_kh\u1ECFi_nh\u00F3m_n\u00E0y_b\u1EB1ng_c\u00E1ch_ch\u1ECDn_ch\u00FAng_r\u1ED3i_d\u00F9ng_menu_ng\u1EEF_c\u1EA3nh._Qu\u00E1_tr\u00ECnh_n\u00E0y_lo\u1EA1i_b\u1ECF_thu\u1EADt_ng\u1EEF_<b>%1</b>&nbsp;kh\u1ECFi_tr\u01B0\u1EDDng_<b>%0</b>_c\u1EE7a_m\u1ED7i_m\u1EE5c.

Advanced=N\u00E2ng_cao
All_custom_file_types_will_be_lost._Proceed?=T\u1EA5t_c\u1EA3_ki\u1EC3u_t\u1EADp_tin_t\u1EF1_t\u1EA1o_s\u1EBD_m\u1EA5t._V\u1EABn_ti\u1EBFp_t\u1EE5c?

All_Entries=T\u1EA5t_c\u1EA3_c\u00E1c_M\u1EE5c

All_entries=T\u1EA5t_c\u1EA3_c\u00E1c_m\u1EE5c
All_entries_of_this_type_will_be_declared_typeless._Continue?=T\u1EA5t_c\u1EA3_c\u00E1c_m\u1EE5c_thu\u1ED9c_ki\u1EC3u_n\u00E0y_s\u1EBD_\u0111\u01B0\u1EE3c_\u0111\u1ED5i_th\u00E0nh_kh\u00F4ng_c\u00F3_ki\u1EC3u._Ti\u1EBFp_t\u1EE5c_kh\u00F4ng?

All_fields=T\u1EA5t_c\u1EA3_c\u00E1c_tr\u01B0\u1EDDng

All_subgroups_(recursively)=T\u1EA5t_c\u1EA3_c\u00E1c_nh\u00F3m_con_(\u0111\u1EC7_quy)

Allow_editing_in_table_cells=Cho_ph\u00E9p_ch\u1EC9nh_s\u1EEDa_trong_\u00F4_c\u1EE7a_b\u1EA3ng
An_Error_occurred_while_fetching_from_OAI2_source_(%0)\:=M\u1ED9t_l\u1ED7i_x\u1EA3y_ra_khi_\u0111ang_l\u1EA5y_v\u1EC1_t\u1EEB_ngu\u1ED3n_OAI2_(%0):
An_Error_occurred_while_fetching_from_SPIRES_source_(%0)\:=M\u1ED9t_l\u1ED7i_x\u1EA3y_ra_khi_\u0111ang_l\u1EA5y_v\u1EC1_t\u1EEB_ngu\u1ED3n_SPIRES_(%0)\:
An_Exception_ocurred_while_accessing_'%0'=M\u1ED9t_l\u1ED7i_x\u1EA3y_ra_khi_\u0111ang_truy_c\u1EADp_'%0'
An_SAXException_ocurred_while_parsing_'%0'\:=M\u1ED9t_l\u1ED7i_SAXException_x\u1EA3y_ra_khi_\u0111ang_ph\u00E2n_t\u00E1ch_'%0':

and=&nbsp;v\u00E0
and_inside_the_JabRef-jar\:=v\u00E0_trong_JabRef-jar:

and_the_class_must_be_available_in_your_classpath_next_time_you_start_JabRef.=v\u00E0_l\u1EDBp_ph\u1EA3i_c\u00F3_trong_\u0111\u01B0\u1EDDng_d\u1EABn_l\u1EDBp_l\u1EA7n_sau_khi_b\u1EA1n_kh\u1EDFi_\u0111\u1ED9ng_JabRef.

any_field_that_matches_the_regular_expression_<b>%0</b>=b\u1EA5t_k\u1EF3_tr\u01B0\u1EDDng_n\u00E0o_kh\u1EDBp_Bi\u1EC3u_th\u1EE9c_Ch\u00EDnh_t\u1EAFc_<b>%0</b>

Appearance=Di\u1EC7n_m\u1EA1o

Append=N\u1ED1i
Append_contents_from_a_BibTeX_database_into_the_currently_viewed_database=N\u1ED1i_n\u1ED9i_dung_t\u1EEB_m\u1ED9t_CSDL_BibTeX_v\u00E0o_CSDL_\u0111ang_xem_hi\u1EC7n_t\u1EA1i

Append_database=N\u1ED1i_CSDL

append_the_selected_text_to_bibtex_key=n\u1ED1i_n\u1ED9i_dung_\u0111\u01B0\u1EE3c_ch\u1ECDn_v\u00E0o_kh\u00F3a_bibtex
Application=\u1EE8ng_d\u1EE5ng

Apply=\u00C1p_d\u1EE5ng

Arguments_passed_on_to_running_JabRef_instance._Shutting_down.=C\u00E1c_\u0111\u1ED1i_s\u1ED1_\u0111\u01B0\u1EE3c_truy\u1EC1n_cho_phi\u00EAn_JabRef_\u0111ang_ch\u1EA1y._\u0110ang_t\u1EAFt.

Assign_entry_selection_exclusively_to_this_group=G\u00E1n_ph\u00E9p_ch\u1ECDn_m\u1EE5c_ch\u1EC9_cho_nh\u00F3m_n\u00E0y

Assign_exclusively_to_group=Ch\u1EC9_g\u00E1n_v\u00E0o_nh\u00F3m

Assign_new_file=G\u00E1n_t\u1EADp_tin_m\u1EDBi

Assign_the_original_group's_entries_to_this_group?=G\u00E1n_c\u00E1c_m\u1EE5c_c\u1EE7a_nh\u00F3m_ban_\u0111\u1EA7u_v\u00E0o_nh\u00F3m_n\u00E0y?

Assigned_%0_entries_to_group_"%1".=\u0110\u00E3_g\u00E1n_%0_m\u1EE5c_v\u00E0o_nh\u00F3m_"%1".

Assigned_1_entry_to_group_"%0".=\u0110\u00E3_g\u00E1n_1_m\u1EE5c_v\u00E0o_nh\u00F3m_"%0".
At_least_the_plug-in_'net.sf.jabref.core'_should_be_there.=T\u1ED1i_thi\u1EC3u_ph\u1EA3i_c\u00F3_ph\u1EA7n_m\u1EDF_r\u1ED9ng_'net.sf.jabref.core'.

Attach_%0_file=G\u1EAFn_%0_t\u1EADp_tin

Attach_URL=G\u1EAFn_URL

Attempt_to_autoset_%0_links_for_your_entries._Autoset_works_if_a_%0_file_in_your_%0_directory_or_a_subdirectory<BR>is_named_identically_to_an_entry's_BibTeX_key,_plus_extension.=C\u1ED1_g\u1EAFng_thi\u1EBFt_l\u1EADp_t\u1EF1_\u0111\u1ED9ng_%0_li\u00EAn_k\u1EBFt_v\u00E0o_c\u00E1c_m\u1EE5c._Thi\u1EBFt_l\u1EADp_t\u1EF1_\u0111\u1ED9ng_ch\u1EA1y_\u0111\u01B0\u1EE3c_n\u1EBFu_m\u1ED9t_t\u1EADp_tin_%0_\u1EDF_trong_th\u01B0_m\u1EE5c_ho\u1EB7c_th\u01B0_m\u1EE5c_con_%0_c\u1EE7a_b\u1EA1n<BR>\u0111\u01B0\u1EE3c_\u0111\u1EB7t_t\u00EAn_gi\u1ED1ng_h\u1EC7t_m\u1ED9t_kh\u00F3a_BibTeX_c\u1EE7a_m\u1EE5c,_c\u1ED9ng_v\u1EDBi_ph\u1EA7n_m\u1EDF_r\u1ED9ng.
Attempting_SQL_export...=\u0110ang_c\u1ED1_xu\u1EA5t_ra_SQL...
Attempting_SQL_import...=\u0110ang_c\u1ED1_nh\u1EADp_SQL...

Auto=T\u1EF1_\u0111\u1ED9ng

Autodetect_format=T\u1EF1_\u0111\u1ED9ng_ph\u00E1t_hi\u1EC7n_\u0111\u1ECBnh_d\u1EA1ng

Autogenerate_BibTeX_key=T\u1EF1_\u0111\u1ED9ng_t\u1EA1o_kh\u00F3a_BibTeX
Autogenerate_BibTeX_keys=T\u1EF1_\u0111\u1ED9ng_t\u1EA1o_c\u00E1c_kh\u00F3a_BibTeX

Autogenerate_groups=T\u1EF1_\u0111\u1ED9ng_t\u1EA1o_c\u00E1c_nh\u00F3m

autogenerate_keys=t\u1EF1_\u0111\u1ED9ng_t\u1EA1o_c\u00E1c_kh\u00F3a
Autolink_files_with_names_starting_with_the_BibTeX_key=T\u1EF1_\u0111\u1ED9ng_li\u00EAn_k\u1EBFt_v\u1EDBi_c\u00E1c_t\u00EAn_b\u1EAFt_\u0111\u1EA7u_b\u1EB1ng_kh\u00F3a_BibTeX

Autolink_only_files_that_match_the_BibTeX_key=Ch\u1EC9_t\u1EF1_\u0111\u1ED9ng_li\u00EAn_k\u1EBFt_c\u00E1c_t\u1EADp_tin_n\u00E0o_kh\u1EDBp_kh\u00F3a_BibTeX

Automatically_create_groups=T\u1EF1_\u0111\u1ED9ng_t\u1EA1o_c\u00E1c_nh\u00F3m

Automatically_create_groups_for_database.=T\u1EF1_\u0111\u1ED9ng_t\u1EA1o_c\u00E1c_nh\u00F3m_d\u00F9ng_cho_CSDL.

Automatically_created_groups=C\u00E1c_nh\u00F3m_\u0111\u01B0\u1EE3c_t\u1EA1o_ra_t\u1EF1_\u0111\u1ED9ng

Automatically_hide_groups_interface_when_switching_to_a_database_that_contains_no_groups=T\u1EF1_\u0111\u1ED9ng_\u1EA9n_\u0111i_giao_di\u1EC7n_nh\u00F3m_khi_chuy\u1EC3n_qua_m\u1ED9t_CSDL_kh\u00F4ng_ch\u1EE9a_nh\u00F3m

Automatically_remove_exact_duplicates=T\u1EF1_\u0111\u1ED9ng_lo\u1EA1i_b\u1ECF_c\u00E1c_m\u1EE5c_tr\u00F9ng_nhau

Automatically_set_file_links_for_this_entry=T\u1EF1_\u0111\u1ED9ng_thi\u1EBFt_l\u1EADp_c\u00E1c_li\u00EAn_k\u1EBFt_t\u1EADp_tin_cho_m\u1EE5c_n\u00E0y

Automatically_show_groups_interface_when_switching_to_a_database_that_contains_groups=T\u1EF1_\u0111\u1ED9ng_hi\u1EC3n_th\u1ECB_giao_di\u1EC7n_nh\u00F3m_khi_chuy\u1EC3n_qua_m\u1ED9t_CSDL_ch\u1EE9a_nh\u00F3m

Autosave=L\u01B0u_t\u1EF1_\u0111\u1ED9ng
Autosave_interval_(minutes)=Kho\u1EA3ng_th\u1EDDi_gian_t\u1EF1_\u0111\u1ED9ng_l\u01B0u_(ph\u00FAt)
Autosave_of_file_'%0'=L\u01B0u_t\u1EF1_\u0111\u1ED9ng_t\u1EADp_tin_'%0'

Autoset=T\u1EF1_\u0111\u1ED9ng_thi\u1EBFt_l\u1EADp

Autoset_%0_field=T\u1EF1_\u0111\u1ED9ng_thi\u1EBFt_l\u1EADp_%0_tr\u01B0\u1EDDng

Autoset_%0_links._Allow_overwriting_existing_links.=T\u1EF1_\u0111\u1ED9ng_thi\u1EBFt_l\u1EADp_%0_li\u00EAn_k\u1EBFt._Cho_ph\u00E9p_ghi_\u0111\u00E8_c\u00E1c_li\u00EAn_k\u1EBFt_hi\u1EC7n_c\u00F3.

Autoset_%0_links._Do_not_overwrite_existing_links.=T\u1EF1_\u0111\u1ED9ng_thi\u1EBFt_l\u1EADp_%0_li\u00EAn_k\u1EBFt._Kh\u00F4ng_ghi_\u0111\u00E8_c\u00E1c_li\u00EAn_k\u1EBFt_hi\u1EC7n_c\u00F3.
Autoset_external_links=T\u1EF1_\u0111\u1ED9ng_thi\u1EBFt_l\u1EADp_c\u00E1c_li\u00EAn_k\u1EBFt_ngo\u00E0i
Autosetting_links=T\u1EF1_\u0111\u1ED9ng_thi\u1EBFt_l\u1EADp_li\u00EAn_k\u1EBFt

AUX_file_import=Nh\u1EADp_t\u1EADp_tin_AUX

Available_export_formats=C\u00E1c_\u0111\u1ECBnh_d\u1EA1ng_xu\u1EA5t_d\u00F9ng_\u0111\u01B0\u1EE3c

Available_fields=C\u00E1c_tr\u01B0\u1EDDng_BibTeX_d\u00F9ng_\u0111\u01B0\u1EE3c

Available_import_formats=C\u00E1c_\u0111\u1ECBnh_d\u1EA1ng_nh\u1EADp_d\u00F9ng_\u0111\u01B0\u1EE3c
Back=Lui

Background_color_for_optional_fields=M\u00E0u_n\u1EC1n_cho_c\u00E1c_tr\u01B0\u1EDDng_t\u00F9y_ch\u1ECDn

Background_color_for_required_fields=M\u00E0u_n\u1EC1n_cho_c\u00E1c_tr\u01B0\u1EDDng_b\u1EAFt_bu\u1ED9c

Backup_old_file_when_saving=Sao_l\u1EA1i_t\u1EADp_tin_c\u0169_khi_l\u01B0u

Bad_Request_'%0'.=Y\u00EAu_c\u1EA7u_sai_'%0'.
Before_saving,_please_edit_any_strings_containing_the_#_character.=Tr\u01B0\u1EDBc_khi_l\u01B0u,_vui_l\u00F2ng_ch\u1EC9nh_s\u1EEDa_t\u1EA5t_c\u1EA3_c\u00E1c_chu\u1ED7i_ch\u1EE9a_k\u00FD_t\u1EF1__#.
Beta_version=Phi\u00EAn_b\u1EA3n_Beta

Bibkey_to_filename_conversion=Ph\u00E9p_chuy\u1EC3n_Bibkey_th\u00E0nh_t\u00EAn_t\u1EADp_tin
BibO_RDF=BibO_RDF
BibTeX_importer=Tr\u00ECnh_nh\u1EADp_BibTeX

BibTeX_key=Kh\u00F3a_BibTeX

BibTeX_key_generator=Tr\u00ECnh_t\u1EA1o_kh\u00F3a_BibTeX

BibTeX_key_is_unique.=Kh\u00F3a_BibTeX_kh\u00F4ng_\u0111\u01B0\u1EE3c_tr\u00F9ng.

BibTeX_key_not_set._Enter_a_name_for_the_downloaded_file=Kh\u00F3a_BibTeX_ch\u01B0a_thi\u1EBFt_l\u1EADp._Nh\u1EADp_t\u00EAn_cho_t\u1EADp_tin_t\u1EA3i_v\u1EC1

BibTeX_source=Ngu\u1ED3n_BibTeX

BibTeXML=BibTeXML

Binding=G\u1EAFn_k\u1EBFt
Broken_link=Li\u00EAn_k\u1EBFt_b\u1ECB_\u0111\u1EE9t

Browse=Duy\u1EC7t

by=theo

Calling_external_viewer...=\u0110ang_g\u1ECDi_tr\u00ECnh_xem_ngo\u00E0i...

Cancel=H\u1EE7y

Cannot_add_entries_to_group_without_generating_keys._Generate_keys_now?=Kh\u00F4ng_th\u1EC3_th\u00EAm_c\u00E1c_m\u1EE5c_v\u00E0o_nh\u00F3m_m\u00E0_kh\u00F4ng_t\u1EA1o_kh\u00F3a._C\u00F3_t\u1EA1o_kh\u00F3a_kh\u00F4ng?
Cannot_connect_to_SQL_server_at_the_specified_host.=Kh\u00F4ng_th\u1EC3_k\u1EBFt_n\u1ED1i_v\u00E0o_server_SQL_t\u1EA1i_host_\u0111\u01B0\u1EE3c_ch\u1EC9_\u0111\u1ECBnh.

Cannot_merge_this_change=Kh\u00F4ng_th\u1EC3_g\u1ED9p_thay_\u0111\u1ED5i_n\u00E0y

Cannot_move_group_"%0"_down.=Kh\u00F4ng_th\u1EC3_chuy\u1EC3n_nh\u00F3m_"%0"_xu\u1ED1ng.

Cannot_move_group_"%0"_left.=Kh\u00F4ng_th\u1EC3_chuy\u1EC3n_nh\u00F3m_"%0"_qua_tr\u00E1i.

Cannot_move_group_"%0"_right.=Kh\u00F4ng_th\u1EC3_chuy\u1EC3n_nh\u00F3m_"%0"_qua_ph\u1EA3i.

Cannot_move_group_"%0"_up.=Kh\u00F4ng_th\u1EC3_chuy\u1EC3n_nh\u00F3m_"%0"_l\u00EAn_tr\u00EAn.

Cannot_use_port_%0_for_remote_operation;_another_application_may_be_using_it._Try_specifying_another_port.=Kh\u00F4ng_th\u1EC3_d\u00F9ng_c\u1ED5ng_%0_cho_l\u1EC7nh_ch\u1EA1y_t\u1EEB_xa;_m\u1ED9t_\u1EE9ng_d\u1EE5ng_kh\u00E1c_c\u00F3_th\u1EC3_\u0111ang_d\u00F9ng_n\u00F3._H\u00E3y_th\u1EED_ch\u1EC9_\u0111\u1ECBnh_m\u1ED9t_c\u1ED5ng_kh\u00E1c.

case_insensitive=kh\u00F4ng_ph\u00E2n_bi\u1EC7t_ch\u1EEF_hoa/th\u01B0\u1EDDng

case_sensitive=ph\u00E2n_bi\u1EC7t_ch\u1EEF_hoa/th\u01B0\u1EDDng

Case_sensitive=Ph\u00E2n_bi\u1EC7t_ch\u1EEF_hoa/th\u01B0\u1EDDng

change_assignment_of_entries=\u0111\u1ED5i_ph\u00E9p_g\u00E1n_c\u00E1c_m\u1EE5c

Change_case=\u0110\u1ED5i_ch\u1EEF_hoa/th\u01B0\u1EDDng

Change_entry_type=\u0110\u1ED5i_ki\u1EC3u_c\u1EE7a_m\u1EE5c
Change_file_type=\u0110\u1ED5i_ki\u1EC3u_t\u1EADp_tin

change_key=\u0111\u1ED5i_kh\u00F3a

Change_of_Grouping_Method=\u0110\u1ED5i_Ph\u01B0\u01A1ng_ph\u00E1p_G\u1ED9p_nh\u00F3m

change_preamble=\u0111\u1ED5i_ph\u1EA7n_m\u1EDF_\u0111\u1EA7u

change_string_content=\u0111\u1ED5i_n\u1ED9i_dung_chu\u1ED7i

change_string_name=\u0111\u1ED5i_t\u00EAn_chu\u1ED7i
Change_table_column_and_General_fields_settings_to_use_the_new_feature=\u0110\u1ED5i_c\u1ED9t_c\u1EE7a_b\u1EA3ng_v\u00E0_c\u00E1c_thi\u1EBFt_l\u1EADp_tr\u01B0\u1EDDng_t\u1ED5ng_qu\u00E1t_\u0111\u1EC3_d\u00F9ng_t\u00EDnh_ch\u1EA5t_m\u1EDBi

change_type=\u0111\u1ED5i_ki\u1EC3u

changed_=\u0111\u01B0\u1EE3c_thay_\u0111\u1ED5i_

Changed_font_settings=C\u00E1c_thi\u1EBFt_l\u1EADp_ph\u00F4ng_\u0111\u01B0\u1EE3c_thay_\u0111\u1ED5i

Changed_language_settings=C\u00E1c_thi\u1EBFt_l\u1EADp_ng\u00F4n_ng\u1EEF_\u0111\u01B0\u1EE3c_thay_\u0111\u1ED5i

Changed_look_and_feel_settings=C\u00E1c_thi\u1EBFt_l\u1EADp_di\u1EC7n_m\u1EA1o_\u0111\u01B0\u1EE3c_thay_\u0111\u1ED5i

Changed_preamble=Ph\u1EA7n_m\u1EDF_\u0111\u1EA7u_\u0111\u01B0\u1EE3c_thay_\u0111\u1ED5i

Changed_type_to=Ki\u1EC3u_\u0111\u01B0\u1EE3c_\u0111\u1ED5i_th\u00E0nh
Changes_have_been_made_to_the_following_metadata_elements=C\u00E1c_thay_\u0111\u1ED5i_\u0111\u00E3_\u0111\u01B0\u1EE3c_th\u1EF1c_hi\u1EC7n_cho_nh\u1EEFng_th\u00E0nh_ph\u1EA7n_\u0111\u1EB7c_t\u1EA3_CSDL_sau

Characters_to_ignore=C\u00E1c_k\u00FD_t\u1EF1_b\u1ECF_qua

Check_existing_%0_links=Ki\u1EC3m_tra_%0_li\u00EAn_k\u1EBFt_hi\u1EC7n_c\u00F3

Check_links=Ki\u1EC3m_tra_c\u00E1c_li\u00EAn_k\u1EBFt

Choose_the_URL_to_download._The_default_value_points_to_a_list_provided_by_the_JabRef_developers.=Ch\u1ECDn_URL_\u0111\u1EC3_t\u1EA3i_v\u1EC1._Gi\u00E1_tr\u1ECB_hi\u1EC7n_t\u1EA1i_tr\u1ECF_\u0111\u1EBFn_m\u1ED9t_danh_s\u00E1ch_do_c\u00E1c_nh\u00E0_ph\u00E1t_tri\u1EC3n_JabRef_cung_c\u1EA5p.
Cite_command=L\u1EC7nh_tr\u00EDch_d\u1EABn

CiteSeer_Error=L\u1ED7i_CiteSeer

CiteSeer_Fetch_Error=L\u1ED7i_l\u1EA5y_v\u1EC1_t\u1EEB_CiteSeer

CiteSeer_Import_Fields=C\u00E1c_tr\u01B0\u1EDDng_nh\u1EADp_t\u1EEB_CiteSeer

CiteSeer_Transfer=Chuy\u1EC3n_t\u1EEB_CiteSeer

Class_name=T\u00EAn_l\u1EDBp

Clear=X\u00F3a

clear_all_groups=x\u00F3a_t\u1EA5t_c\u1EA3_c\u00E1c_nh\u00F3m

Clear_field=X\u00F3a_tr\u01B0\u1EDDng
Clear_fields=X\u00F3a_c\u00E1c_tr\u01B0\u1EDDng

Clear_highlight=X\u00F3a_ph\u1EA7n_l\u00E0m_n\u1ED5i

Clear_inputarea=X\u00F3a_trong_v\u00F9ng_nh\u1EADp_li\u1EC7u

Close=\u0110\u00F3ng

Close_dialog=\u0110\u00F3ng_h\u1ED9p_tho\u1EA1i

Close_the_current_database=\u0110\u00F3ng_CSDL_hi\u1EC7n_t\u1EA1i

Close_the_help_window=\u0110\u00F3ng_c\u1EEDa_s\u1ED5_tr\u1EE3_gi\u00FAp

Close_window=\u0110\u00F3ng_c\u1EEDa_s\u1ED5

Closed_database=CSDL_\u0111\u01B0\u1EE3c_\u0111\u00F3ng

Collapse_subtree=Thu_s\u01A1_\u0111\u1ED3_ph\u1EE5_h\u00ECnh_c\u00E2y_l\u1EA1i

Color_codes_for_required_and_optional_fields=\u0110\u00E1nh_m\u00E3_m\u00E0u_c\u00E1c_tr\u01B0\u1EDDng_b\u1EAFt_bu\u1ED9c_v\u00E0_t\u00F9y_ch\u1ECDn

Color_for_marking_incomplete_entries=M\u00E0u_\u0111\u1EC3_\u0111\u00E1nh_d\u1EA5u_c\u00E1c_m\u1EE5c_ch\u01B0a_ho\u00E0n_t\u1EA5t

Column_width=Chi\u1EC1u_r\u1ED9ng_c\u1ED9t

Command_line_id=Ch\u1EC9_s\u1ED1_(id)_c\u1EE7a_d\u00F2ng_l\u1EC7nh

Complete_record=Ho\u00E0n_t\u1EA5t_b\u1EA3n_ghi

Completed_Import_Fields_from_CiteSeer.=Ho\u00E0n_t\u1EA5t_nh\u1EADp_c\u00E1c_tr\u01B0\u1EDDng_nh\u1EADp_t\u1EEB_CiteSeer
Connect=K\u1EBFt_n\u1ED1i
Connect_to_external_SQL_database=K\u1EBFt_n\u1ED1i_\u0111\u1EBFn_CSDL__SQL_ngo\u00E0i
Connect_to_SQL_database=K\u1EBFt_n\u1ED1i_\u0111\u1EBFn_CSDL_SQL
Connect_to_SQL_Database=K\u1EBFt_n\u1ED1i_\u0111\u1EBFn_CSDL_SQL
Connection_error_when_trying_to_find_full_text_document.=L\u1ED7i_k\u1EBFt_n\u1ED1i_khi_\u0111ang_c\u1ED1_t\u00ECm_t\u00E0i_li\u1EC7u_\u0111\u1EA7y_\u0111\u1EE7.
Connection_to_ACM_Portal_failed=K\u1EBFt_n\u1ED1i_\u0111\u1EBFn_ACM_Portal_th\u1EA5t_b\u1EA1i
Connection_to_IEEEXplore_failed=K\u1EBFt_n\u1ED1i_\u0111\u1EBFn_IEEEXplore_th\u1EA5t_b\u1EA1i

Contained_in=Ch\u1EE9a_trong

Content=N\u1ED9i_dung

Copied=\u0110\u01B0\u1EE3c_ch\u00E9p

Copied_cell_contents=N\u1ED9i_dung_\u00F4_\u0111\u01B0\u1EE3c_ch\u00E9p

Copied_key=Kh\u00F3a_\u0111\u01B0\u1EE3c_ch\u00E9p

Copied_keys=C\u00E1c_kh\u00F3a_\u0111\u01B0\u1EE3c_ch\u00E9p

Copy=Ch\u00E9p

Copy_BibTeX_key=Ch\u00E9p_kh\u00F3a_BibTeX
Copy_file_to_file_directory.=Ch\u00E9p_t\u1EADp_tin_v\u00E0o_th\u01B0_m\u1EE5c_t\u1EADp_tin.
Copy_files_to_file_directory.=Ch\u00E9p_c\u00E1c_t\u1EADp_tin_v\u00E0o_th\u01B0_m\u1EE5c_t\u1EADp_tin.

Copy_to_clipboard=Ch\u00E9p_v\u00E0o_b\u1ED9_nh\u1EDB_t\u1EA1m

Could_not_call_executable=Kh\u00F4ng_th\u1EC3_g\u1ECDi_ch\u01B0\u01A1ng_tr\u00ECnh

Could_not_connect_to_a_running_gnuserv_process._Make_sure_that_Emacs_or_XEmacs_is_running,<BR>and_that_the_server_has_been_started_(by_running_the_command_'gnuserv-start').=Kh\u00F4ng_th\u1EC3_k\u1EBFt_n\u1ED1i_\u0111\u1EBFn_m\u1ED9t_ti\u1EBFn_tr\u00ECnh_gnuserv_\u0111ang_ch\u1EA1y._H\u00E3y_\u0111\u1EA3m_b\u1EA3o_r\u1EB1ng_Emacs_ho\u1EB7c_XEmacs_\u0111ang_ch\u1EA1y,<BR>v\u00E0_r\u1EB1ng_server_\u0111\u00E3_\u0111\u01B0\u1EE3c_kh\u1EDFi_\u0111\u1ED9ng_(b\u1EB1ng_c\u00E1ch_ch\u1EA1y_l\u1EC7nh_'gnuserv-start').

Could_not_connect_to_host=Kh\u00F4ng_th\u1EC3_k\u1EBFt_n\u1ED1i_\u0111\u1EBFn_host

Could_not_connect_to_host_=Kh\u00F4ng_th\u1EC3_k\u1EBFt_n\u1ED1i_\u0111\u1EBFn_host_
Could_not_connect_to_Vim_server._Make_sure_that_Vim_is_running<BR>with_correct_server_name.=Kh\u00F4ng_th\u1EC3_k\u1EBFt_n\u1ED1i_\u0111\u1EBFn_server_Vim._H\u00E3y_\u0111\u1EA3m_b\u1EA3o_r\u1EB1ng_Vim_\u0111ang_ch\u1EA1y<BR>v\u1EDBi_t\u00EAn_server_\u0111\u00FAng.
Could_not_determine_exception_message.=Kh\u00F4ng_th\u1EC3_x\u00E1c_\u0111\u1ECBnh_th\u00F4ng_b\u00E1o_ngo\u1EA1i_l\u1EC7.
Could_not_determine_version_of_=Kh\u00F4ng_th\u1EC3_x\u00E1c_\u0111\u1ECBnh_phi\u00EAn_b\u1EA3n_c\u1EE7a_

Could_not_export_entry_types=Kh\u00F4ng_th\u1EC3_xu\u1EA5t_c\u00E1c_ki\u1EC3u_c\u1EE7a_m\u1EE5c

Could_not_export_file=Kh\u00F4ng_th\u1EC3_xu\u1EA5t_t\u1EADp_tin

Could_not_export_preferences=Kh\u00F4ng_th\u1EC3_xu\u1EA5t_c\u00E1c_t\u00F9y_th\u00EDch

Could_not_find_a_suitable_import_format.=Kh\u00F4ng_t\u00ECm_th\u1EA5y_\u0111\u1ECBnh_d\u1EA1ng_nh\u1EADp_ph\u00F9_h\u1EE3p.
Could_not_find_directory_for_%0-files\:_%1=Kh\u00F4ng_t\u00ECm_th\u1EA5y_th\u01B0_m\u1EE5c_d\u00F9ng_cho_%0-t\u1EADp_tin:_%1
Could_not_find_fetcher_'%0'=Kh\u00F4ng_th\u1EC3_t\u00ECm_th\u1EA5y_tr\u00ECnh_l\u1EA7y_v\u1EC1_'%0'
Could_not_find_file_'%0'.=Kh\u00F4ng_t\u00ECm_th\u1EA5y_t\u1EADp_tin_'%0'.
Could_not_find_image_file=Kh\u00F4ng_t\u00ECm_th\u1EA5y_t\u1EADp_tin_\u1EA3nh

Could_not_find_layout_file=Kh\u00F4ng_t\u00ECm_th\u1EA5y_t\u1EADp_tin_tr\u00ECnh_b\u00E0y

Could_not_import_entry_types=Kh\u00F4ng_th\u1EC3_nh\u1EADp_c\u00E1c_ki\u1EC3u_m\u1EE5c

Could_not_import_preferences=Kh\u00F4ng_th\u1EC3_nh\u1EADp_c\u00E1c_t\u00F9y_th\u00EDch

Could_not_instantiate_%0_%1=Kh\u00F4ng_th\u1EC3_t\u1EA1o_\u0111\u1ED1i_t\u01B0\u1EE3ng_%0_%1

Could_not_instantiate_%0_%1._Have_you_chosen_the_correct_package_path?=Kh\u00F4ng_th\u1EC3_t\u1EA1o_\u0111\u1ED1i_t\u01B0\u1EE3ng_%0_%1._B\u1EA1n_\u0111\u00E3_ch\u1ECDn_\u0111\u01B0\u1EDDng_d\u1EABn_g\u00F3i_\u0111\u00FAng_ch\u01B0a?
Could_not_move_file=Kh\u00F4ng_th\u1EC3_chuy\u1EC3n_t\u1EADp_tin
Could_not_open_link=Kh\u00F4ng_th\u1EC3_m\u1EDF_li\u00EAn_k\u1EBFt

Could_not_parse_number_of_hits=Kh\u00F4ng_th\u1EC3_ph\u00E2n_t\u00E1ch_s\u1ED1_l\u1EA7n_g\u1EB7p
Could_not_print_preview=Kh\u00F4ng_th\u1EC3_in_ph\u1EA7n_xem_tr\u01B0\u1EDBc

Could_not_resolve_import_format=Kh\u00F4ng_th\u1EC3_gi\u1EA3i_\u0111\u1ECBnh_d\u1EA1ng_nh\u1EADp

Could_not_run_the_'gnuclient'_program._Make_sure_you_have_the_gnuserv/gnuclient_programs_installed.=Kh\u00F4ng_th\u1EC3_ch\u1EA1y_ch\u01B0\u01A1ng_tr\u00ECnh_'gnuclient'._H\u00E3y_\u0111\u1EA3m_b\u1EA3o_r\u1EB1ng_b\u1EA1n_c\u00F3_c\u00E0i_\u0111\u1EB7t_c\u00E1c_ch\u01B0\u01A1ng_tr\u00ECnh_gnuserv/gnuclient.
Could_not_run_the_'vim'_program.=Kh\u00F4ng_th\u1EC3_ch\u1EA1y_ch\u01B0\u01A1ng_tr\u00ECnh_'vim'.
Could_not_save,_file_locked_by_another_JabRef_instance.=Kh\u00F4ng_th\u1EC3_l\u01B0u,_t\u1EADp_tin_b\u1ECB_kh\u00F3a_b\u1EDFi_m\u1ED9t_phi\u00EAn_l\u00E0m_vi\u1EC7c_kh\u00E1c_c\u1EE7a_JabRef_\u0111ang_ch\u1EA1y.

Could_not_save_file=Kh\u00F4ng_th\u1EC3_l\u01B0u_t\u1EADp_tin
Could_not_save_file._Character_encoding_'%0'_is_not_supported.=Kh\u00F4ng_th\u1EC3_l\u01B0u_t\u1EADp_tin._M\u00E3_h\u00F3a_k\u00FD_t\u1EF1_'%0'_kh\u00F4ng_\u0111\u01B0\u1EE3c_h\u1ED7_tr\u1EE3.

Couldn't_find_an_entry_associated_with_this_URL=Kh\u00F4ng_th\u1EC3_t\u00ECm_th\u1EA5y_m\u1EE5c_n\u00E0o_li\u00EAn_quan_\u0111\u1EBFn_URL_n\u00E0y

Couldn't_parse_the_'citeseerurl'_field_of_the_following_entries=Kh\u00F4ng_th\u1EC3_ph\u00E2n_t\u00E1ch_tr\u01B0\u1EDDng_'citeseerurl'_c\u1EE7a_c\u00E1c_m\u1EE5c_sau

Create_group=T\u1EA1o_nh\u00F3m

Created_groups.=C\u00E1c_nh\u00F3m_\u0111\u01B0\u1EE3c_t\u1EA1o_ra.

crossreferenced_entries_included=c\u00E1c_m\u1EE5c_c\u00F3_tham_chi\u1EBFu_ch\u00E9o_\u0111\u01B0\u1EE3c_\u0111\u01B0a_v\u00E0o

Current_content=N\u1ED9i_dung_hi\u1EC7n_t\u1EA1i
Current_tmp_value=Gi\u00E1_tr\u1ECB_tmp_hi\u1EC7n_t\u1EA1i

Current_value=Gi\u00E1_tr\u1ECB_hi\u1EC7n_t\u1EA1i

Custom_entry_types=Ki\u1EC3u_m\u1EE5c_t\u00F9y_ch\u1EC9nh

Custom_entry_types_found_in_file=Ki\u1EC3u_m\u1EE5c_t\u00F9y_ch\u1EC9nh_\u0111\u01B0\u1EE3c_t\u00ECm_th\u1EA5y_trong_t\u1EADp_tin
Custom_icon_theme=S\u1EAFc_th\u00E1i_bi\u1EC3u_t\u01B0\u1EE3ng_t\u00F9y_ch\u1EC9nh
Custom_icon_theme_file=T\u1EADp_tin_s\u1EAFc_th\u00E1i_bi\u1EC3u_t\u01B0\u1EE3ng_t\u00F9y_ch\u1EC9nh

Custom_importers=C\u00E1c_tr\u00ECnh_nh\u1EADp_t\u00F9y_ch\u1EC9nh

Customize_entry_types=T\u00F9y_ch\u1EC9nh_c\u00E1c_ki\u1EC3u_m\u1EE5c

Customize_key_bindings=T\u00F9y_ch\u1EC9nh_t\u1ED5_h\u1EE3p_ph\u00EDm

Cut=C\u1EAFt

cut_entries=c\u1EAFt_c\u00E1c_m\u1EE5c

cut_entry=c\u1EAFt_m\u1EE5c

Cut_pr=C\u1EAFt_pr
Database_\:=CSDL:

Database_encoding=M\u00E3_h\u00F3a_CSDL

Database_has_changed._Do_you_want_to_save_before_closing?=CSDL_\u0111\u00E3_thay_\u0111\u1ED5i._B\u1EA1n_c\u00F3_mu\u1ED1n_l\u01B0u_tr\u01B0\u1EDBc_khi_\u0111\u00F3ng_kh\u00F4ng?

Database_is_protected._Cannot_save_until_external_changes_have_been_reviewed.=CSDL_\u0111\u01B0\u1EE3c_b\u1EA3o_v\u1EC7._Kh\u00F4ng_th\u1EC3_l\u01B0u_cho_\u0111\u1EBFn_khi_nh\u1EEFng_thay_\u0111\u1ED5i_ngo\u00E0i_\u0111\u01B0\u1EE3c_xem_x\u00E9t.

Database_properties=T\u00EDnh_ch\u1EA5t_c\u1EE7a_CSDL
Database_protection=B\u1EA3o_v\u1EC7_CSDL

Date_format=\u0110\u1ECBnh_d\u1EA1ng_ng\u00E0y

Default=M\u1EB7c_\u0111\u1ECBnh

Default_encoding=M\u00E3_h\u00F3a_m\u1EB7c_\u0111\u1ECBnh

Default_grouping_field=Tr\u01B0\u1EDDng_g\u1ED9p_nh\u00F3m_m\u1EB7c_\u0111\u1ECBnh

Default_look_and_feel=Di\u1EC7n_m\u1EA1o_m\u1EB7c_\u0111\u1ECBnh

Default_pattern=Ki\u1EC3u_m\u1EB7c_\u0111\u1ECBnh

Default_sort_criteria=C\u00E1c_ti\u00EAu_chu\u1EA9n_ph\u00E2n_lo\u1EA1i_m\u1EB7c_\u0111\u1ECBnh
Define_'%0'=\u0110\u1ECBnh_ngh\u0129a_'%0'

defined.=\u0111\u01B0\u1EE3c_\u0111\u1ECBnh_ngh\u0129a.

Delete=X\u00F3a

Delete_custom=X\u00F3a_t\u00F9y_ch\u1ECDn

Delete_custom_format=X\u00F3a_\u0111\u1ECBnh_d\u1EA1ng_t\u00F9y_ch\u1ECDn

delete_entries=x\u00F3a_c\u00E1c_m\u1EE5c

Delete_entry=X\u00F3a_m\u1EE5c

delete_entry=x\u00F3a_m\u1EE5c

Delete_multiple_entries=X\u00F3a_nhi\u1EC1u_m\u1EE5c
Delete_plugin=X\u00F3a_ph\u1EA7n_m\u1EDF_r\u1ED9ng
Delete_plugins=X\u00F3a_c\u00E1c_ph\u1EA7n_m\u1EDF_r\u1ED9ng

Delete_rows=X\u00F3a_h\u00E0ng

Delete_strings=X\u00F3a_chu\u1ED7i
Delete_the_%0_selected_plugins?=X\u00F3a_%0_ph\u1EA7n_m\u1EDF_r\u1ED9ng_\u0111\u01B0\u1EE3c_ch\u1ECDn?
Delete_the_selected_plugin?=X\u00F3a_ph\u1EA7n_m\u1EDF_r\u1ED9ng_\u0111\u01B0\u1EE3c_ch\u1ECDn?

Deleted=B\u1ECB_x\u00F3a

Delimit_fields_with_semicolon,_ex.=Ph\u00E2n_c\u00E1ch_c\u00E1c_tr\u01B0\u1EDDng_b\u1EB1ng,_v\u00ED_d\u1EE5_nh\u01B0,_d\u1EA5u_ch\u1EA5m_ph\u1EA9y.
Derby=Derby

Descending=Gi\u1EA3m_d\u1EA7n

Description=M\u00F4_t\u1EA3

Deselect_all=Kh\u1EED_ch\u1ECDn_t\u1EA5t_c\u1EA3
Deselect_all_duplicates=Kh\u1EED_ch\u1ECDn_t\u1EA5t_c\u1EA3_c\u00E1c_m\u1EE5c_l\u1EB7p

Details=Chi_ti\u1EBFt

Disable_entry_editor_when_multiple_entries_are_selected=T\u1EAFt_tr\u00ECnh_ch\u1EC9nh_s\u1EEDa_m\u1EE5c_khi_nhi\u1EC1u_m\u1EE5c_\u0111\u01B0\u1EE3c_ch\u1ECDn

Disable_file_renaming_in_non-native_file_dialog=B\u1EA5t_ho\u1EA1t_vi\u1EC7c_\u0111\u1ED5i_t\u00EAn_trong_h\u1ED9p_tho\u1EA1i_t\u1EADp_tin_kh\u00F4ng_ph\u1EA3i_thu\u1ED9c_ch\u01B0\u01A1ng_tr\u00ECnh

Disable_this_confirmation_dialog=T\u1EAFt_h\u1ED9p_tho\u1EA1i_x\u00E1c_nh\u1EADn_n\u00E0y

Disable_this_warning_dialog=T\u1EAFt_h\u1ED9p_tho\u1EA1i_c\u1EA3nh_b\u00E1o_n\u00E0y

Display_all_entries_belonging_to_one_or_more_of_the_selected_groups.=Tr\u00ECnh_b\u00E0y_t\u1EA5t_c\u1EA3_c\u00E1c_m\u1EE5c_thu\u1ED9c_v\u1EC1_m\u1ED9t_ho\u1EB7c_nhi\u1EC1u_nh\u00F3m_\u0111\u01B0\u1EE3c_ch\u1ECDn.

Display_all_error_messages=Tr\u00ECnh_b\u00E0y_t\u1EA5t_c\u1EA3_th\u00F4ng_b\u00E1o_l\u1ED7i

Display_help_on_command_line_options=Tr\u00ECnh_b\u00E0y_tr\u1EE3_gi\u00FAp_\u1EDF_c\u00E1c_t\u00F9y_ch\u1ECDn_d\u00F2ng_l\u1EC7nh

Display_imported_entries_in_an_inspection_window_before_they_are_added.=Tr\u00ECnh_b\u00E0y_c\u00E1c_m\u1EE5c_nh\u1EADp_v\u00E0o_trong_c\u1EEDa_s\u1ED5_xem_x\u00E9t_tr\u01B0\u1EDBc_khi_th\u00EAm_ch\u00FAng.

Display_only_entries_belonging_to_all_selected_groups.=Ch\u1EC9_tr\u00ECnh_b\u00E0y_c\u00E1c_m\u1EE5c_thu\u1ED9c_v\u1EC1_t\u1EA5t_c\u1EA3_c\u00E1c_nh\u00F3m_\u0111\u01B0\u1EE3c_ch\u1ECDn.
Display_version=Tr\u00ECnh_b\u00E0y_phi\u00EAn_b\u1EA3n

Displaying_no_groups=Kh\u00F4ng_tr\u00ECnh_b\u00E0y_c\u00E1c_nh\u00F3m

Do_not_abbreviate_names=Kh\u00F4ng_vi\u1EBFt_t\u1EAFt_t\u00EAn

Do_not_autoset=Kh\u00F4ng_thi\u1EBFt_l\u1EADp_t\u1EF1_\u0111\u1ED9ng

Do_not_import_entry=Kh\u00F4ng_nh\u1EADp_m\u1EE5c

Do_not_open_any_files_at_startup=Kh\u00F4ng_m\u1EDF_t\u1EADp_tin_n\u00E0o_l\u00FAc_kh\u1EDFi_\u0111\u1ED9ng

Do_not_overwrite_existing_keys=Kh\u00F4ng_ghi_\u0111\u00E8_c\u00E1c_kh\u00F3a_hi\u1EC7n_c\u00F3
Do_not_show_splash_window_at_startup=Kh\u00F4ng_hi\u1EC3n_th\u1ECB_m\u00E0n_h\u00ECnh_gi\u1EDBi_thi\u1EC7u_l\u00FAc_kh\u1EDFi_\u0111\u1ED9ng
Do_not_show_these_options_in_the_future=Kh\u00F4ng_hi\u1EC3n_th\u1ECB_nh\u1EEFng_t\u00F9y_ch\u1ECDn_n\u00E0y_trong_t\u01B0\u01A1ng_lai

Do_not_wrap_the_following_fields_when_saving=Kh\u00F4ng_'b\u1ECDc'_nh\u1EEFng_tr\u01B0\u1EDDng_d\u01B0\u1EDBi_\u0111\u00E2y_khi_l\u01B0u
Do_not_write_the_following_fields_to_XMP_Metadata\:=Kh\u00F4ng_ghi_nh\u1EEFng_tr\u01B0\u1EDDng_d\u01B0\u1EDBi_\u0111\u00E2y_v\u00E0o_\u0111\u1EB7c_t\u1EA3_d\u1EEF_li\u1EC7u_XMP:

Do_you_want_JabRef_to_do_the_following_operations?=B\u1EA1n_c\u00F3_mu\u1ED1n_JabRef_th\u1EF1c_hi\u1EC7n_nh\u1EEFng_l\u1EC7nh_sau?
Do_you_want_to_override_the_file_lock?=B\u1EA1n_c\u00F3_mu\u1ED1n_b\u1ECF_qua_kh\u00F3a_t\u1EADp_tin?
Do_you_want_to_recover_the_database_from_the_autosave_file?=B\u1EA1n_c\u00F3_mu\u1ED1n_ph\u1EE5c_h\u1ED3i_l\u1EA1i_CSDL_t\u1EEB_m\u1ED9t_t\u1EADp_tin_l\u01B0u_t\u1EF1_\u0111\u1ED9ng?

Docbook=Docbook

Done=Xong

Down=Xu\u1ED1ng

Download=T\u1EA3i_xu\u1ED1ng

Download_completed=T\u1EA3i_xu\u1ED1ng_ho\u00E0n_t\u1EA5t

Download_file=T\u1EA3i_xu\u1ED1ng_t\u1EADp_tin
Download_plugin=T\u1EA3i_v\u1EC1_ph\u1EA7n_m\u1EDF_r\u1ED9ng

Downloading...=\u0110ang_t\u1EA3i...
Drag_and_Drop_Error=L\u1ED7i_k\u00E9o_v\u00E0_th\u1EA3
Drop_%0=Th\u1EA3_%0

duplicate_BibTeX_key=tr\u00F9ng_kh\u00F3a_BibTeX

Duplicate_BibTeX_key.=Tr\u00F9ng_kh\u00F3a_BibTeX.

Duplicate_BibTeX_key._Grouping_may_not_work_for_this_entry.=Tr\u00F9ng_kh\u00F3a_BibTeX._Vi\u1EC7c_g\u1ED9p_nh\u00F3m_c\u00F3_th\u1EC3_kh\u00F4ng_l\u00E0m_\u0111\u01B0\u1EE3c_v\u1EDBi_m\u1EE5c_n\u00E0y.

Duplicate_Key_Warning=C\u1EA3nh_b\u00E1o_tr\u00F9ng_kh\u00F3a

Duplicate_pairs_found=C\u00E1c_c\u1EB7p_b\u1ECB_tr\u00F9ng_\u0111\u01B0\u1EE3c_t\u00ECm_th\u1EA5y

duplicate_removal=lo\u1EA1i_b\u1ECF_tr\u00F9ng

Duplicate_string_name=Tr\u00F9ng_t\u00EAn_chu\u1ED7i

Duplicates_found=T\u00ECm_th\u1EA5y_c\u00E1c_m\u1EE5c_tr\u00F9ng

Duplicates_removed=C\u00E1c_m\u1EE5c_tr\u00F9ng_b\u1ECB_lo\u1EA1i_b\u1ECF

Dynamic_groups=C\u00E1c_nh\u00F3m_\u0111\u1ED9ng

Dynamically_group_entries_by_a_free-form_search_expression=G\u1ED9p_nh\u00F3m_\u0111\u1ED9ng_c\u00E1c_m\u1EE5c_b\u1EB1ng_bi\u1EC3u_th\u1EE9c_t\u00ECm_ki\u1EBFm_d\u1EA1ng_t\u1EF1_do

Dynamically_group_entries_by_searching_a_field_for_a_keyword=G\u1ED9p_nh\u00F3m_\u0111\u1ED9ng_c\u00E1c_m\u1EE5c_b\u1EB1ng_c\u00E1ch_t\u00ECm_tr\u01B0\u1EDDng_ho\u1EB7c_t\u1EEB_kh\u00F3a

Each_line_must_be_on_the_following_form=M\u1ED7i_d\u00F2ng_ph\u1EA3i_c\u00F3_d\u1EA1ng_sau

Edit=Ch\u1EC9nh_s\u1EEDa

Edit_custom_export=Ch\u1EC9nh_s\u1EEDa_vi\u1EC7c_xu\u1EA5t_t\u00F9y_ch\u1ECDn
Edit_entry=Ch\u1EC9nh_s\u1EEDa_m\u1EE5c
Edit_file_link=Ch\u1EC9nh_s\u1EEDa_li\u00EAn_k\u1EBFt_t\u1EADp_tin
Edit_file_type=Ch\u1EC9nh_s\u1EEDa_ki\u1EC3u_t\u1EADp_tin

Edit_group=Ch\u1EC9nh_s\u1EEDa_nh\u00F3m

Edit_journal=Ch\u1EC9nh_s\u1EEDa_t\u1EA1p_ch\u00ED

Edit_preamble=Ch\u1EC9nh_s\u1EEDa_ph\u1EA7n_m\u1EDF_\u0111\u1EA7u
Edit_strings=Ch\u1EC9nh_s\u1EEDa_c\u00E1c_chu\u1ED7i
Editor_options=C\u00E1c_t\u00F9y_ch\u1ECDn_tr\u00ECnh_ch\u1EC9nh_s\u1EEDa

empty_BibTeX_key=kh\u00F3a_BibTeX_r\u1ED7ng

Empty_BibTeX_key.=Kh\u00F3a_BibTeX_r\u1ED7ng

Empty_BibTeX_key._Grouping_may_not_work_for_this_entry.=Kh\u00F3a_BibTeX_r\u1ED7ng._Vi\u1EC7c_g\u1ED9p_nh\u00F3m_c\u00F3_th\u1EC3_kh\u00F4ng_l\u00E0m_\u0111\u01B0\u1EE3c_v\u1EDBi_m\u1EE5c_n\u00E0y.

empty_database=CSDL_r\u1ED7ng

Enable_source_editing=B\u1EADt_ch\u1EC9nh_s\u1EEDa_ngu\u1ED3n
Enable_word/name_autocompletion=B\u1EADt_ch\u1EE9c_n\u0103ng_t\u1EF1_ho\u00E0n_t\u1EA5t_t\u1EEB/t\u00EAn

Endnote=Endnote
Enforce_legal_characters_in_BibTeX_keys=Bu\u1ED9c_ph\u1EA3i_d\u00F9ng_nh\u1EEFng_k\u00FD_t\u1EF1_h\u1EE3p_l\u1EC7_trong_kh\u00F3a_BibTeX
Enter_download_URL=Nh\u1EADp_URL_t\u1EA3i_v\u1EC1

Enter_URL=Nh\u1EADp_URL

Enter_URL_to_download=Nh\u1EADp_URL_\u0111\u1EC3_t\u1EA3i_v\u1EC1

entries=c\u00E1c_m\u1EE5c

Entries_cannot_be_manually_assigned_to_or_removed_from_this_group.=Kh\u00F4ng_th\u1EC3_g\u00E1n_th\u1EE7_c\u00F4ng_hay_lo\u1EA1i_b\u1ECF_c\u00E1c_m\u1EE5c_kh\u1ECFi_nh\u00F3m_n\u00E0y.

Entries_exported_to_clipboard=C\u00E1c_m\u1EE5c_\u0111\u01B0\u1EE3c_xu\u1EA5t_ra_b\u1ED9_nh\u1EDB_t\u1EA1m

entries_have_undefined_BibTeX_key=c\u00E1c_m\u1EE5c_c\u00F3_kh\u00F3a_BibTeX_kh\u00F4ng_\u0111\u01B0\u1EE3c_\u0111\u1ECBnh_ngh\u0129a

entries_into_new_database=c\u00E1c_m\u1EE5c_v\u00E0o_CSDL_m\u1EDBi

entry=m\u1EE5c

Entry_editor=Tr\u00ECnh_ch\u1EC9nh_s\u1EEDa_m\u1EE5c

Entry_in_current_database=M\u1EE5c_trong_CSDL_hi\u1EC7n_t\u1EA1i

Entry_in_import=M\u1EE5c_trong_ph\u1EA7n_nh\u1EADp

Entry_preview=Xem_tr\u01B0\u1EDBc_m\u1EE5c

Entry_table=B\u1EA3ng_nh\u1EADp_v\u00E0o

Entry_table_columns=C\u00E1c_c\u1ED9t_c\u1EE7a_b\u1EA3ng_nh\u1EADp_v\u00E0o

Entry_type=Ki\u1EC3u_c\u1EE7a_m\u1EE5c

Entry_type_names_are_not_allowed_to_contain_white_space_or_the_following_characters=Ki\u1EC3u_c\u1EE7a_m\u1EE5c_kh\u00F4ng_\u0111\u01B0\u1EE3c_ph\u00E9p_ch\u1EE9a_kho\u1EA3ng_tr\u1EAFng_ho\u1EB7c_c\u00E1c_k\u00FD_t\u1EF1_sau

Entry_types=C\u00E1c_ki\u1EC3u_c\u1EE7a_m\u1EE5c

Error=L\u1ED7i
Error\:_=L\u1ED7i:_
Error_converting_Bibtex_to_XMP:_%0=L\u1ED7i_chuy\u1EC3n_\u0111\u1ED5i_Bibtex_th\u00E0nh_XMP:_%0
Error_converting_Bibtex_to_XMP\:_%0=L\u1ED7i_chuy\u1EC3n_\u0111\u1ED5i_Bibtex_th\u00E0nh_XMP:_%0
Error_converting_XMP_to_'%0'...=L\u1ED7i_chuy\u1EC3n_\u0111\u1ED5i_XMP_th\u00E0nh_'%0'...
Error_exporting_to_clipboard=L\u1ED7i_xu\u1EA5t_ra_b\u1ED9_nh\u1EDB_t\u1EA1m
Error_fetching_from_Citeseer\:\\n=L\u1ED7i_l\u1EA5y_v\u1EC1_t\u1EEB_Citeseer\:\\n
Error_fetching_from_Citeseer\:\n=L\u1ED7i_khi_\u0111ang_l\u1EA5y_v\u1EC1_t\u1EEB_Citeseer:\n

##Error:_check_your_External_viewer_settings_in_Preferences=Error:_check_your_External_viewer_settings_in_Preferences
Error_in_field=L\u1ED7i_trong_tr\u01B0\u1EDDng
Error_in_starting_plug-in_system._Starting_without,_but_some_functionality_may_be_missing.=L\u1ED7i_kh\u1EDFi_\u0111\u1ED9ng_ph\u1EA7n_m\u1EDF_r\u1ED9ng_c\u1EE7a_h\u1EC7_th\u1ED1ng._Kh\u1EDFi_\u0111\u1ED9ng_kh\u00F4ng_c\u00F3_n\u00F3,_m\u1ED9t_s\u1ED1_ch\u1EE9c_n\u0103ng_c\u00F3_th\u1EC3_b\u1ECB_thi\u1EBFu.

Error_initializing_custom_export_format_from_string_'%0'=L\u1ED7i_khi_kh\u1EDFi_t\u1EA1o_\u0111\u1ECBnh_d\u1EA1ng_xu\u1EA5t_t\u00F9y_ch\u1ECDn_t\u1EEB_chu\u1ED7i_'%0'
Error_occured_when_parsing_entry=L\u1ED7i_x\u1EA3y_ra_khi_\u0111ang_ph\u00E2n_t\u00E1ch_m\u1EE5c
Error_opening_autosave_of_'%0'._Trying_to_load_'%0'_instead.=L\u1ED7i_khi_m\u1EDF_t\u1EADp_tin_l\u01B0u_t\u1EF1_\u0111\u1ED9ng_'%0'._C\u1ED1_g\u1EAFng_n\u1EA1p_'%0'_\u0111\u1EC3_thay_th\u1EBF.

Error_opening_file=L\u1ED7i_khi_\u0111ang_m\u1EDF_t\u1EADp_tin
Error_opening_file_'%0'.=L\u1ED7i_m\u1EDF_t\u1EADp_tin_'%0'.

Error_setting_field=L\u1ED7i_thi\u1EBFt_l\u1EADp_tr\u01B0\u1EDDng
Error_while_converting_BibtexEntry_to_XMP_%0=L\u1ED7i_khi_chuy\u1EC3n_\u0111\u1ED5i_m\u1EE5c_Bibtex_th\u00E0nh_XMP_%0
Error_while_downloading_file\:=L\u1ED7i_khi_\u0111ang_t\u1EA3i_t\u1EADp_tin:
Error_while_fetching_from_JSTOR=L\u1ED7i_khi_l\u1EA5y_v\u1EC1_t\u1EEB_JSTOR
Error_while_fetching_from_OIA2=L\u1ED7i_khi_\u0111ang_l\u1EA5y_v\u1EC1_t\u1EEB_OIA2
Error_while_fetching_from_ScienceDirect=L\u1ED7i_khi_\u0111ang_l\u1EA5y_v\u1EC1_d\u1EEF_li\u1EC7u_t\u1EEB_ScienceDirect
Error_while_fetching_from_Spires\:_=L\u1ED7i_khi_\u0111ang_l\u1EA5y_v\u1EC1_t\u1EEB_Spires\:_
Error_while_writing=L\u1ED7i_khi_\u0111ang_ghi
Error_writing_to_%0_file(s).=L\u1ED7i_khi_\u0111ang_ghi_v\u00E0o_t\u1EADp_tin_%0.
Error_writing_XMP_to_file\:_%0=L\u1ED7i_khi_\u0111ang_ghi_XMP_v\u00E0o_t\u1EADp_tin:_%0


Establishing_SQL_connection...=\u0110ang_thi\u1EBFt_l\u1EADp_k\u1EBFt_n\u1ED1i_SQL...
Exceptions=C\u00E1c_ngo\u1EA1i_l\u1EC7

Existing_file=T\u1EADp_tin_hi\u1EC7n_c\u00F3
exists._Overwrite?=\u0111\u00E3_c\u00F3._Ghi_\u0111\u00E8_kh\u00F4ng?

exists._Overwrite_file?=\u0111\u00E3_c\u00F3._Ghi_\u0111\u00E8_t\u1EADp_tin_kh\u00F4ng?

Expand_subtree=M\u1ED5_r\u1ED9ng_s\u01A1_\u0111\u1ED3_c\u00E2y_ph\u1EE5

#previousentrynottranslated.Toviewit,openGroupinterfaceandclickonthe"newgroup"button
Export=Xu\u1EA5t
Export_entries_in_their_original_order=Xu\u1EA5t_ra_c\u00E1c_m\u1EE5c_theo_th\u1EE9_t\u1EF1_g\u1ED1c_c\u1EE7a_ch\u00FAng

Export_entry_types=Xu\u1EA5t_c\u00E1c_ki\u1EC3u_m\u1EE5c
Export_in_current_table_sort_order=Xu\u1EA5t_ra_theo_tr\u00ECnh_t\u1EF1_x\u1EBFp_th\u1EE9_t\u1EF1_c\u1EE7a_b\u1EA3ng_hi\u1EC7n_t\u1EA1i

Export_name=Xu\u1EA5t_t\u00EAn
Export_ordered_by_author/editor/year=Xu\u1EA5t_ra_theo_th\u1EE9_t\u1EF1_t\u00E1c_gi\u1EA3/bi\u00EAn_t\u1EADp/n\u0103m

Export_preferences=Xu\u1EA5t_c\u00E1c_t\u00F9y_th\u00EDch

Export_preferences_to_file=Xu\u1EA5t_c\u00E1c_t\u00F9y_th\u00EDch_ra_t\u1EADp_tin

Export_properties=C\u00E1c_t\u00EDnh_ch\u1EA5t_xu\u1EA5t

Export_to_clipboard=Xu\u1EA5t_ra_b\u1ED9_nh\u1EDB_t\u1EA1m
Export_to_external_SQL_database=Xu\u1EA5t_ra_CSDL_SQL_ngo\u00E0i
Export_to_SQL_database=Xu\u1EA5t_ra_CSDL_SQL

Exporting=\u0110ang_xu\u1EA5t
Extension=\u0110u\u00F4i_m\u1EDF_r\u1ED9ng

External_changes=C\u00E1c_thay_\u0111\u1ED5i_ngo\u00E0i

External_file_links=C\u00E1c_li\u00EAn_k\u1EBFt_t\u1EADp_tin_ngo\u00E0i

External_files=C\u00E1c_t\u1EADp_tin_ngo\u00E0i

External_programs=C\u00E1c_ch\u01B0\u01A1ng_tr\u00ECnh_ngo\u00E0i

External_viewer_called=Tr\u00ECnh_xem_ngo\u00E0i_\u0111\u01B0\u1EE3c_g\u1ECDi

Failed_to_read_groups_data_(unsupported_version:_%0)=Th\u1EA5t_b\u1EA1i_khi_\u0111\u1ECDc_d\u1EEF_li\u1EC7u_nh\u00F3m_(phi\u00EAn_b\u1EA3n_kh\u00F4ng_\u0111\u01B0\u1EE3c_h\u1ED7_tr\u1EE3:_%0)

Fetch=L\u1EA5y_v\u1EC1

Fetch_Articles_Citing_your_Database=L\u1EA5y_v\u1EC1_c\u00E1c_b\u00E0i_b\u00E1o_tr\u00EDch_d\u1EABn_CSDL_c\u1EE7a_b\u1EA1n

Fetch_CiteSeer=L\u1EA5y_v\u1EC1_CiteSeer
Fetch_Citeseer=L\u1EA5y_v\u1EC1_t\u1EEB_Citeseer

Fetched_all_citations_from_target_database.=L\u1EA5y_v\u1EC1_t\u1EA5t_c\u1EA3_c\u00E1c_tr\u00EDch_d\u1EABn_t\u1EEB_CSDL_\u0111\u00EDch.

Fetching_Citations=\u0110ang_l\u1EA5y_v\u1EC1_c\u00E1c_tr\u00EDch_d\u1EABn

Fetching_Identifiers=\u0110ang_l\u1EA5y_v\u1EC1_c\u00E1c_k\u00FD_hi\u1EC7u_nh\u1EADn_di\u1EC7n

Fetching_Medline_by_id...=L\u1EA5y_v\u1EC1_t\u1EEB_Medline_theo_id...

Fetching_Medline_by_term...=L\u1EA5y_v\u1EC1_t\u1EEB_Medline_theo_thu\u1EADt_ng\u1EEF...

Field=Tr\u01B0\u1EDDng

field=tr\u01B0\u1EDDng

#Integritycheckisaprocessthatchecksforindicationsofwronglyfilledoutbibtexfields."Scan"isthebuttonthatstartsthecheck.
Field_content=N\u1ED9i_dung_tr\u01B0\u1EDDng

Field_name=T\u00EAn_tr\u01B0\u1EDDng
Field_names_are_not_allowed_to_contain_white_space_or_the_following_characters=T\u00EAn_tr\u01B0\u1EDDng_kh\u00F4ng_\u0111\u01B0\u1EE3c_ph\u00E9p_ch\u1EE9a_kho\u1EA3ng_tr\u1EAFng_ho\u1EB7c_c\u00E1c_k\u00FD_t\u1EF1_sau

Field_sizes=C\u00E1c_k\u00EDch_th\u01B0\u1EDBc_tr\u01B0\u1EDDng
Field_to_filter=Tr\u01B0\u1EDDng_c\u1EA7n_l\u1ECDc

Field_to_group_by=Tr\u01B0\u1EDDng_g\u1ED9p_nh\u00F3m_theo

Fields=C\u00E1c_tr\u01B0\u1EDDng

File=T\u1EADp_tin

file=t\u1EADp_tin

File_'%0'_is_already_open.=T\u1EADp_tin_'%0'_\u0111\u00E3_m\u1EDF.

File_'%0'_not_found=Kh\u00F4ng_t\u00ECm_th\u1EA5y_t\u1EADp_tin_'%0'

File_changed=T\u1EADp_tin_b\u1ECB_thay_\u0111\u1ED5i
File_dialog=H\u1ED9p_tho\u1EA1i_T\u1EADp_tin
File_directory=Th\u01B0_m\u1EE5c_t\u1EADp_tin
File_directory_is_'%0'\:=Th\u01B0_m\u1EE5c_t\u1EADp_tin_l\u00E0_'%0':

File_directory_is_not_set_or_does_not_exist!=Th\u01B0_m\u1EE5c_t\u1EADp_tin_kh\u00F4ng_\u0111\u01B0\u1EE3c_thi\u1EBFt_l\u1EADp_ho\u1EB7c_kh\u00F4ng_t\u1ED3n_t\u1EA1i!

File_directory_is_not_set_or_does_not_exist.=Th\u01B0_m\u1EE5c_t\u1EADp_tin_kh\u00F4ng_\u0111\u01B0\u1EE3c_thi\u1EBFt_l\u1EADp_ho\u1EB7c_kh\u00F4ng_t\u1ED3n_t\u1EA1i.
File_download=T\u1EA3i_v\u1EC1_t\u1EADp_tin
File_exists=T\u1EADp_tin_\u0111\u00E3_c\u00F3

File_extension=\u0110u\u00F4i_m\u1EDF_r\u1ED9ng_t\u1EADp_tin
File_has_been_updated_externally._What_do_you_want_to_do?=T\u1EADp_tin_\u0111\u00E3_\u0111\u01B0\u1EE3c_c\u1EADp_nh\u1EADt_\u1EDF_ngo\u00E0i_ch\u01B0\u01A1ng_tr\u00ECnh._B\u1EA1n_mu\u1ED1n_l\u00E0m_g\u00EC?
File_is_locked_by_another_JabRef_instance.=T\u1EADp_tin_b\u1ECB_kh\u00F3a_b\u1EDFi_m\u1ED9t_phi\u00EAn_l\u00E0m_vi\u1EC7c_kh\u00E1c_c\u1EE7a_JabRef.
File_locked=T\u1EADp_tin_b\u1ECB_kh\u00F3a
File_moved=T\u1EADp_tin_b\u1ECB_di_chuy\u1EC3n

File_not_found=Kh\u00F4ng_th\u1EA5y_t\u1EADp_tin
File_type=Ki\u1EC3u_t\u1EADp_tin

File_updated_externally=T\u1EADp_tin_\u0111\u01B0\u1EE3c_c\u1EADp_nh\u1EADt_ngo\u00E0i_ch\u01B0\u01A1ng_tr\u00ECnh

filename=t\u00EAn_t\u1EADp_tin

Files_opened=C\u00E1c_t\u1EADp_tin_\u0111\u00E3_m\u1EDF

Filter=L\u1ECDc

Finished_autosetting_external_links.=Thi\u1EBFt_l\u1EADp_t\u1EF1_\u0111\u1ED9ng_c\u00E1c_li\u00EAn_k\u1EBFt_ngo\u00E0i_ho\u00E0n_t\u1EA5t.
Finished_downloading_full_text_document=T\u1EA3i_v\u1EC1_t\u00E0i_li\u1EC7u_\u0111\u1EA7y_\u0111\u1EE7_ho\u00E0n_t\u1EA5t

Finished_synchronizing_%0_links._Entries_changed%c_%1.=\u0110\u1ED3ng_b\u1ED9_h\u00F3a_%0_li\u00EAn_k\u1EBFt_ho\u00E0n_t\u1EA5t._C\u00E1c_m\u1EE5c_thay_\u0111\u1ED5i%c_%1.
Finished_writing_XMP-metadata._Wrote_to_%0_file(s).=Ghi_\u0111\u1EB7c_t\u1EA3_d\u1EEF_li\u1EC7u_XMP_ho\u00E0n_t\u1EA5t._\u0110\u00E3_ghi_v\u00E0o_%0_t\u1EADp_tin.
Finished_writing_XMP_for_%0_file_(%1_skipped,_%2_errors).=K\u1EBFt_th\u00FAc_ghi_XMP_cho_%0_t\u1EADp_tin_(b\u1ECF_qua_%1,_%2_l\u1ED7i).

First_select_the_entries_you_want_keys_to_be_generated_for.=Tr\u01B0\u1EDBc_ti\u00EAn_h\u00E3y_ch\u1ECDn_c\u00E1c_m\u1EE5c_m\u00E0_b\u1EA1n_mu\u1ED1n_t\u1EA1o_kh\u00F3a.

Fit_table_horizontally_on_screen=L\u00E0m_cho_b\u1EA3ng_kh\u00EDt_chi\u1EC1u_ngang_m\u00E0n_h\u00ECnh

Float=Float
Float_marked_entries=C\u00E1c_m\u1EE5c_\u0111\u01B0\u1EE3c_\u0111\u00E1nh_d\u1EA5u_l\u00E0_Float
Follow_DOI_or_URL_link_and_try_to_locate_PDF_full_text_document=Theo_li\u00EAn_k\u1EBFt_URL_ho\u1EB7c_DOI_v\u00E0_c\u1ED1_g\u1EAFng_\u0111\u1ECBnh_v\u1ECB_t\u00E0i_li\u1EC7u_PDF_\u0111\u1EA7y_\u0111\u1EE7

Font_Family=H\u1ECD_ph\u00F4ng_ch\u1EEF

Font_Preview=Xem_tr\u01B0\u1EDBc_ph\u00F4ng_ch\u1EEF

Font_Size=C\u1EE1_ph\u00F4ng_ch\u1EEF

Font_Style=Ki\u1EC3u_ph\u00F4ng_ch\u1EEF

FontSelector=Tr\u00ECnh_ch\u1ECDn_ph\u00F4ng_ch\u1EEF

for=d\u00F9ng_cho

Format_of_author_and_editor_names=\u0110\u1ECBnh_d\u1EA1ng_t\u00EAn_t\u00E1c_gi\u1EA3_v\u00E0_ng\u01B0\u1EDDi_bi\u00EAn_t\u1EADp
Format_String=\u0110\u1ECBnh_d\u1EA1ng_chu\u1ED7i

Format_used=\u0110\u1ECBnh_d\u1EA1ng_\u0111\u01B0\u1EE3c_d\u00F9ng
Formatter_Name=T\u00EAn_tr\u00ECnh_\u0111\u1ECBnh_d\u1EA1ng

Formatter_not_found=Kh\u00F4ng_th\u1EA5y_tr\u00ECnh_\u0111\u1ECBnh_d\u1EA1ng
Formatter_not_found\:_%0=Kh\u00F4ng_t\u00ECm_th\u1EA5y_tr\u00ECnh_\u0111\u1ECBnh_d\u1EA1ng\:_%0

Forward=T\u1EDBi

found=t\u00ECm_th\u1EA5y
Found_%0_plugin(s)=T\u00ECm_th\u1EA5y_%0_ph\u1EA7n_m\u1EDF_r\u1ED9ng

found_in_aux_file=t\u00ECm_th\u1EA5y_trong_t\u1EADp_tin_aux
Found_pdf_link,_but_received_the_wrong_MIME_type._This_could_indicate_that_you_don't_have_access_to_the_fulltext_article.=T\u00ECm_th\u1EA5y_li\u00EAn_k\u1EBFt_pdf,_nh\u01B0ng_l\u1EA1i_nh\u1EADn_\u0111\u01B0\u1EE3c_ki\u1EC3u_MIME_sai._\u0110i\u1EC1u_c\u00F3_th\u1EC3_ch\u1EC9_ra_r\u1EB1ng_b\u1EA1n_kh\u00F4ng_c\u00F3_quy\u1EC1n_truy_c\u1EADp_v\u00E0o_b\u00E0i_vi\u1EBFt_\u0111\u1EA7y_\u0111\u1EE7.

Full_name=T\u00EAn_\u0111\u1EA7y_\u0111\u1EE7
Full_text_article_download_failed=Vi\u1EC7c_t\u1EA3i_v\u1EC1_b\u00E0i_vi\u1EBFt_\u0111\u1EA7y_\u0111\u1EE7_th\u1EA5t_b\u1EA1i

General=T\u1ED5ng_qu\u00E1t

General_fields=C\u00E1c_tr\u01B0\u1EDDng_t\u1ED5ng_qu\u00E1t

Generate=T\u1EA1o

Generate_BibTeX_key=T\u1EA1o_kh\u00F3a_BibTeX

Generate_groups_for_author_last_names=T\u1EA1o_c\u00E1c_nh\u00F3m_cho_h\u1ECD_c\u1EE7a_t\u00E1c_gi\u1EA3
Generate_groups_for_editor_last_names=T\u1EA1o_c\u00E1c_nh\u00F3m_cho_t\u00EAn_h\u1ECD_c\u1EE7a_ng\u01B0\u1EDDi_bi\u00EAn_t\u1EADp
Generate_groups_from_keywords_in_a_BibTeX_field=T\u1EA1o_c\u00E1c_nh\u00F3m_theo_t\u1EEB_kh\u00F3a_trong_m\u1ED9t_tr\u01B0\u1EDDng_BibTex

Generate_keys=T\u1EA1o_c\u00E1c_kh\u00F3a

Generate_keys_before_saving_(for_entries_without_a_key)=T\u1EA1o_c\u00E1c_kh\u00F3a_tr\u01B0\u1EDBc_khi_l\u01B0u_(cho_c\u00E1c_m\u1EE5c_kh\u00F4ng_c\u00F3_kh\u00F3a)
Generate_keys_for_imported_entries=T\u1EA1o_kh\u00F3a_cho_c\u00E1c_m\u1EE5c_\u0111\u01B0\u1EE3c_nh\u1EADp_v\u00E0o

Generate_now=T\u1EA1o_b\u00E2y_gi\u1EDD

Generated_BibTeX_key_for=Kh\u00F3a_BibTeX_\u0111\u01B0\u1EE3c_t\u1EA1o_ra_cho

Generating_BibTeX_key_for=\u0110ang_t\u1EA1o_kh\u00F3a_BibTeX_cho
Global_search=T\u00ECm_to\u00E0n_c\u1EE5c

Grab=L\u1EA5y

Gray_out_entries_not_in_group_selection=T\u00F4_x\u00E1m_c\u00E1c_m\u1EE5c_kh\u00F4ng_thu\u1ED9c_ph\u00E9p_ch\u1ECDn_nh\u00F3m

Gray_out_non-hits=T\u00F4_x\u00E1m_c\u00E1c_m\u1EE5c_kh\u00F4ng_g\u1EB7p

Gray_out_non-matching_entries=T\u00F4_x\u00E1m_c\u00E1c_m\u1EE5c_kh\u00F4ng_kh\u1EDBp

Group_properties=Thu\u1ED9c_t\u00EDnh_c\u1EE7a_nh\u00F3m

grouping_may_not_work_for_this_entry=Vi\u1EC7c_g\u1ED9p_nh\u00F3m_c\u00F3_th\u1EC3_kh\u00F4ng_ch\u1EA1y_\u0111\u01B0\u1EE3c_v\u1EDBi_m\u1EE5c_n\u00E0y

Groups=C\u00E1c_nh\u00F3m

Harvard_RTF=Harvard_RTF

Have_you_chosen_the_correct_package_path?=B\u1EA1n_\u0111\u00E3_ch\u1ECDn_\u0111\u01B0\u1EDDng_d\u1EABn_g\u00F3i_\u0111\u00FAng_ch\u01B0a?

Help=Tr\u1EE3_gi\u00FAp

Help_contents=N\u1ED9i_dung_tr\u1EE3_gi\u00FAp

Help_on_groups=Tr\u1EE3_gi\u00FAp_v\u1EC1_nh\u00F3m

Help_on_key_patterns=Tr\u1EE3_gi\u00FAp_v\u1EC1_c\u00E1c_ki\u1EC3u_kh\u00F3a
Help_on_Preview_Settings=Tr\u1EE3_gi\u00FAp_v\u1EC1_c\u00E1c_thi\u1EBFt_l\u1EADp_xem_tr\u01B0\u1EDBc
Help_on_Regular_Expression_Search=Tr\u1EE3_gi\u00FAp_v\u1EC1_t\u00ECm_ki\u1EBFm_b\u1EB1ng_bi\u1EC3u_th\u1EE9c_ch\u00EDnh_t\u1EAFc

Hide_non-hits=\u1EA8n_c\u00E1c_m\u1EE5c_kh\u00F4ng_g\u1EB7p

Hide_non-matching_entries=\u1EA8n_c\u00E1c_m\u1EE5c_kh\u00F4ng_kh\u1EDBp

Hierarchical_context=Ng\u1EEF_c\u1EA3nh_c\u00F3_c\u1EA5p_b\u1EADc

Highlight=T\u00F4_s\u00E1ng
Highlight_groups_matching_all_selected_entries=T\u00F4_s\u00E1ng_nh\u1EEFng_nh\u00F3m_kh\u1EDBp_t\u1EA5t_c\u1EA3_c\u00E1c_m\u1EE5c_\u0111\u01B0\u1EE3c_ch\u1ECDn
Highlight_groups_matching_any_selected_entry=T\u00F4_s\u00E1ng_c\u00E1c_nh\u00F3m_kh\u1EDBp_b\u1EA5t_k\u1EF3_m\u1EE5c_\u0111\u01B0\u1EE3c_ch\u1ECDn_n\u00E0o

Highlight_overlapping_groups=T\u00F4_s\u00E1ng_c\u00E1c_nh\u00F3m_g\u1ED1i_nhau

Hint%c_To_search_specific_fields_only,_enter_for_example%c<p><tt>author%esmith_and_title%eelectrical</tt>=G\u1EE3i_\u00FD%c_\u0110\u1EC3_ch\u1EC9_t\u00ECm_ki\u1EBFm_c\u00E1c_tr\u01B0\u1EDDng_\u0111\u1EB7c_th\u00F9,_nh\u1EADp,_v\u00ED_d\u1EE5_nh\u01B0%c<p><tt>author%esmith_and_title%eelectrical</tt>

HTML=HTML
HTML_parser=Tr\u00ECnh_ph\u00E2n_t\u00E1ch_HTML
HTML_table=B\u1EA3ng_HTML
HTML_table_(with_Abstract_&_BibTeX)=B\u1EA3ng_HTML_(v\u1EDBi_T\u00F3m_t\u1EAFt_&_BibTeX)
Icon=Bi\u1EC3u_t\u01B0\u1EE3ng

Ignore=B\u1ECF_qua

Illegal_type_name=T\u00EAn_ki\u1EC3u_kh\u00F4ng_h\u1EE3p_l\u1EC7

Immediate_subgroups=C\u00E1c_nh\u00F3m_con_s\u00E1t_nhau

Import=Nh\u1EADp

Import_and_keep_old_entry=Nh\u1EADp_v\u00E0_gi\u1EEF_m\u1EE5c_c\u0169

Import_and_remove_old_entry=Nh\u1EADp_v\u00E0_lo\u1EA1i_b\u1ECF_m\u1EE5c_c\u0169
Import_canceled_by_user=Vi\u1EC7c_nh\u1EADp_b\u1ECB_ng\u01B0\u1EDDi_d\u00F9ng_h\u1EE7y

Import_Data_from_CiteSeer_Database=Nh\u1EADp_d\u1EEF_li\u1EC7u_t\u1EEB_CSDL_CiteSeer

Import_entries=Nh\u1EADp_c\u00E1c_m\u1EE5c

Import_entry_types=Nh\u1EADp_c\u00E1c_ki\u1EC3u_m\u1EE5c

Import_failed=Vi\u1EC7c_nh\u1EADp_th\u1EA5t_b\u1EA1i

Import_Fields_from_CiteSeer_Database=Nh\u1EADp_c\u00E1c_tr\u01B0\u1EDDng_t\u1EEB_CSDL_CiteSeer

Import_file=Nh\u1EADp_t\u1EADp_tin

Import_group_definitions=Nh\u1EADp_c\u00E1c_\u0111\u1ECBnh_ngh\u0129a_nh\u00F3m

Import_name=Nh\u1EADp_t\u00EAn

Import_preferences=Nh\u1EADp_c\u00E1c_t\u00F9y_th\u00EDch

Import_preferences_from_file=Nh\u1EADp_c\u00E1c_t\u00F9y_th\u00EDch_t\u1EEB_t\u1EADp_tin

Import_strings=Nh\u1EADp_c\u00E1c_chu\u1ED7i

Import_to_open_tab=Nh\u1EADp_v\u00E0o_th\u1EBB_\u0111ang_m\u1EDF

Import_word_selector_definitions=Nh\u1EADp_c\u00E1c_\u0111\u1ECBnh_ngh\u0129a_tr\u00ECnh_ch\u1ECDn_t\u1EEB

Imported_database=CSDL_\u0111\u01B0\u1EE3c_nh\u1EADp

Imported_entries=C\u00E1c_m\u1EE5c_\u0111\u01B0\u1EE3c_nh\u1EADp

Imported_entry_types=C\u00E1c_ki\u1EC3u_m\u1EE5c_\u0111\u01B0\u1EE3c_nh\u1EADp

Imported_from_database=\u0111\u01B0\u1EE3c_nh\u1EADp_t\u1EEB_CSDL

ImportFormat_class=L\u1EDBp_\u0110\u1ECBnhd\u1EA1ngNh\u1EADp

Importing=\u0110ang_nh\u1EADp

Importing_in_unknown_format=Nh\u1EADp_v\u00E0o_th\u00E0nh_\u0111\u1ECBnh_d\u1EA1ng_kh\u00F4ng_r\u00F5

In_JabRef,_use_pairs_of_#_characters_to_indicate_a_string.=Trong_JabRef,_d\u00F9ng_c\u00E1c_c\u1EB7p_k\u00FD_t\u1EF1_#_\u0111\u1EC3_ch\u1EC9_r\u1EB1ng_\u0111\u00F3_l\u00E0_m\u1ED9t_chu\u1ED7i.

Include_abstracts=\u0110\u01B0a_v\u00E0o_c\u1EA3_ph\u1EA7n_t\u00F3m_t\u1EAFt
Include_entries=\u0110\u01B0a_v\u00E0o_c\u00E1c_m\u1EE5c

Include_subgroups\:_When_selected,_view_entries_contained_in_this_group_or_its_subgroups=\u0110\u01B0a_v\u00E0o_c\u00E1c_nh\u00F3m_con\:_Khi_\u0111\u01B0\u1EE3c_ch\u1ECDn,_xem_c\u00E1c_m\u1EE5c_ch\u1EE9a_trong_nh\u00F3m_n\u00E0y_ho\u1EB7c_c\u00E1c_nh\u00F3m_ph\u1EE5_c\u1EE7a_n\u00F3

Incremental=T\u0103ng_d\u1EA7n

Incremental_search=T\u00ECm_t\u0103ng_d\u1EA7n

Incremental_search_failed._Repeat_to_search_from_top.=Ph\u00E9p_t\u00ECm_t\u0103ng_d\u1EA7n_th\u1EA5t_b\u1EA1i._L\u1EB7p_l\u1EA1i_\u0111\u1EC3_t\u00ECm_ki\u1EBFm_t\u1EEB_\u0111\u1EA7u.

Independent_group\:_When_selected,_view_only_this_group's_entries=Nh\u00F3m_\u0111\u1ED9c_l\u1EADp\:_Khi_\u0111\u01B0\u1EE3c_ch\u1ECDn,_ch\u1EC9_xem_c\u00E1c_m\u1EE5c_c\u1EE7a_nh\u00F3m_n\u00E0y

Initially_show_groups_tree_expanded=Ban_\u0111\u1EA7u_hi\u1EC3n_th\u1ECB_c\u00E2y_s\u01A1_\u0111\u1ED3_nh\u00F3m_d\u1EA1ng_m\u1EDF_r\u1ED9ng

Input=C\u00E1c_t\u00F9y_ch\u1ECDn_l\u00E0m_vi\u1EC7c

Input_error=L\u1ED7i_\u0111\u1EA7u_v\u00E0o

Insert=Ch\u00E8n

Insert_rows=Ch\u00E8n_h\u00E0ng

Insert_selected_citations_into_LyX/Kile=Ch\u00E8n_c\u00E1c_tr\u00EDch_d\u1EABn_\u0111\u01B0\u1EE3c_ch\u1ECDn_v\u00E0o_LyX/Kile
Insert_selected_citations_into_Vim=Ch\u00E8n_c\u00E1c_tr\u00EDch_d\u1EABn_\u0111\u01B0\u1EE3c_ch\u1ECDn_v\u00E0o_Vim

Insert_selected_citations_into_WinEdt=Ch\u00E8n_c\u00E1c_tr\u00EDch_d\u1EABn_\u0111\u01B0\u1EE3c_ch\u1ECDn_v\u00E0o_WinEdt

insert_string_=ch\u00E8n_chu\u1ED7i_

Insert_URL=Ch\u00E8n_URL
Install_anyway?=C\u1EE9_c\u00E0i_\u0111\u1EB7t?


Install_plugin=C\u00E0i_\u0111\u1EB7t_ph\u1EA7n_m\u1EDF_r\u1ED9ng

integrity=t\u00EDnh_to\u00E0n_v\u1EB9n

#Integritycheckisaprocessthatchecksforindicationsofwronglyfilledoutbibtexfields."Scan"isthebuttonthatstartsthecheck.
Integrity_check=ki\u1EC3m_tra_t\u00EDnh_to\u00E0n_v\u1EB9n

Intersection=Giao_nhau

Invalid_BibTeX_key=Kh\u00F3a_BibTeX_kh\u00F4ng_h\u1EE3p_l\u1EC7

Invalid_date_format=\u0110\u1ECBnh_d\u1EA1ng_ng\u00E0y_kh\u00F4ng_h\u1EE3p_l\u1EC7

Invalid_URL=URL_kh\u00F4ng_h\u1EE3p_l\u1EC7

Inverted=\u0110\u1EA3o_ng\u01B0\u1EE3c

is_a_standard_type.=l\u00E0_m\u1ED9t_ki\u1EC3u_chu\u1EA9n.

ISO_abbreviation=Vi\u1EBFt_t\u1EAFt_ki\u1EC3u_ISO

Item_list_for_field=Danh_s\u00E1ch_h\u1EA1ng_m\u1EE5c_d\u00F9ng_cho_tr\u01B0\u1EDDng
jabref=jabref

JabRef_help=Tr\u1EE3_gi\u00FAp_JabRef

JabRef_preferences=C\u00E1c_t\u00F9y_th\u00EDch_JabRef

Journal_abbreviations=C\u00E1c_vi\u1EBFt_t\u1EAFt_t\u00EAn_t\u1EA1p_ch\u00ED

Journal_list_preview=Xem_tr\u01B0\u1EDBc_danh_s\u00E1ch_t\u1EA1p_ch\u00ED

Journal_name=T\u00EAn_t\u1EA1p_ch\u00ED

Keep=Gi\u1EEF

Keep_both=Gi\u1EEF_c\u1EA3

Keep_lower=Gi\u1EEF_m\u1EE5c_d\u01B0\u1EDBi

Keep_upper=Gi\u1EEF_m\u1EE5c_tr\u00EAn

Key_bindings=C\u00E1c_t\u1ED5_h\u1EE3p_ph\u00EDm

Key_bindings_changed=C\u00E1c_t\u1ED5_h\u1EE3p_ph\u00EDm_thay_\u0111\u1ED5i

Key_generator_settings=C\u00E1c_thi\u1EBFt_l\u1EADp_tr\u00ECnh_t\u1EA1o_kh\u00F3a

Key_pattern=Ki\u1EC3u_m\u1EABu_kh\u00F3a

keys_in_database=c\u00E1c_kh\u00F3a_trong_CSDL

#nottranslated.Toviewit,usemenu"Tools|NewBibTeXfilefromAUxfile",andlaunchtheactiononanon-existantauxfile.
Keyword=T\u1EEB_kh\u00F3a

CiteSeer_Import_Error=L\u1ED7i_nh\u1EADp_CiteSeer

Label=Nh\u00E3n

Language=Ng\u00F4n_ng\u1EEF

Last_modified=Thay_\u0111\u1ED5i_l\u1EA7n_sau_c\u00F9ng

LaTeX_AUX_file=T\u1EADp_tin_LaTeX_AUX
Leave_file_in_its_current_directory.=Gi\u1EEF_t\u1EADp_tin_trong_th\u01B0_m\u1EE5c_hi\u1EC7n_t\u1EA1i_c\u1EE7a_n\u00F3.
Leave_files_in_their_current_directory.=Gi\u1EEF_c\u00E1c_t\u1EADp_tin_trong_th\u01B0_m\u1EE5c_hi\u1EC7n_t\u1EA1i_c\u1EE7a_ch\u00FAng.

Left=Tr\u00E1i
Legacy_file_fields=C\u00E1c_tr\u01B0\u1EDDng_t\u1EADp_tin_c\u0169_c\u00F2n_\u0111\u1EC3_l\u1EA1i

License=Gi\u1EA5y_ph\u00E9p

Limit_to_fields=Gi\u1EDBi_h\u1EA1n_theo_c\u00E1c_tr\u01B0\u1EDDng

Limit_to_selected_entries=Gi\u1EDBi_h\u1EA1n_theo_c\u00E1c_m\u1EE5c_\u0111\u01B0\u1EE3c_ch\u1ECDn
Line_%0\:_Found_corrupted_BibTeX-key.=D\u00F2ng_%0\:_T\u00ECm_th\u1EA5y_kh\u00F3a-BibTeX_b\u1ECB_l\u1ED7i.
Line_%0\:_Found_corrupted_BibTeX-key_(comma_missing).=D\u00F2ng_%0\:_T\u00ECm_th\u1EA5y_kh\u00F3a-BibTeX_b\u1ECB_l\u1ED7i_(thi\u1EBFu_d\u1EA5u_ph\u1EA9y).
Line_%0\:_Found_corrupted_BibTeX-key_(contains_whitespaces).=D\u00F2ng_%0\:_T\u00ECm_th\u1EA5y_kh\u00F3a-BibTeX_b\u1ECB_l\u1ED7i_(ch\u1EE9a_kho\u1EA3ng_tr\u1EAFng).

Link=Li\u00EAn_k\u1EBFt
Link_local_file=Li\u00EAn_k\u1EBFt_t\u1EADp_tin_c\u1EE5c_b\u1ED9
Link_to_file_%0=Li\u00EAn_k\u1EBFt_\u0111\u1EBFn_t\u1EADp_tin_%0

Listen_for_remote_operation_on_port=L\u1EAFng_nghe_l\u1EC7nh_ch\u1EA1y_t\u1EEB_xa_t\u1EA1i_c\u1ED5ng
Load_and_Save_preferences_from/to_jabref.xml_on_start-up_(memory_stick_mode)=N\u1EA1p_v\u00E0_l\u01B0u_c\u00E1c_t\u00F9y_th\u00EDch_t\u1EEB/\u0111\u1EBFn_t\u1EADp_tin_jabref.xml_khi_kh\u1EDFi_\u0111\u1ED9ng_(ch\u1EBF_\u0111\u1ED9_th\u1EBB_nh\u1EDB)

Load_session=N\u1EA1p_phi\u00EAn_l\u00E0m_vi\u1EC7c
Loaded=\u0110\u00E3_\u0111\u01B0\u1EE3c_n\u1EA1p

Loading_session...=\u0110ang_n\u1EA1p_phi\u00EAn_l\u00E0m_vi\u1EC7c...
localhost=localhost

Look_and_feel=H\u00ECnh_th\u1EE9c

Looking_for_full_text_document...=\u0110ang_t\u00ECm_t\u00E0i_li\u1EC7u_\u0111\u1EA7y_\u0111\u1EE7...
Looking_for_pdf...=\u0110ang_t\u00ECm_pdf...
lower=c\u1EADn_d\u01B0\u1EDBi
Main_file_directory=Th\u01B0_m\u1EE5c_t\u1EADp_tin_ch\u00EDnh

Main_layout_file=T\u1EADp_tin_tr\u00ECnh_b\u00E0y_ch\u00EDnh

Main_PDF_directory=Th\u01B0_m\u1EE5c_PDF_ch\u00EDnh

Main_PS_directory=Th\u01B0_m\u1EE5c_PS_ch\u00EDnh

Manage=Qu\u1EA3n_l\u00FD

Manage_custom_exports=Qu\u1EA3n_l\u00FD_c\u00E1c_ph\u00E9p_xu\u1EA5t_t\u00F9y_ch\u1ECDn

Manage_custom_imports=Qu\u1EA3n_l\u00FD_c\u00E1c_ph\u00E9p_nh\u1EADp_t\u00F9y_ch\u1ECDn
Manage_external_file_types=Qu\u1EA3n_l\u00FD_c\u00E1c_ki\u1EC3u_t\u1EADp_tin_ngo\u00E0i

Manage_journal_abbreviations=Qu\u1EA3n_l\u00FD_c\u00E1c_vi\u1EBFt_t\u1EAFt_t\u00EAn_t\u1EA1p_ch\u00ED

Mark_entries=\u0110\u00E1nh_d\u1EA5u_c\u00E1c_m\u1EE5c

Mark_entries_imported_into_an_existing_database=\u0110\u00E1nh_d\u1EA5u_c\u00E1c_m\u1EE5c_\u0111\u01B0\u1EE3c_nh\u1EADp_v\u00E0o_CSDL_hi\u1EC7n_c\u00F3

Mark_entry=\u0110\u00E1nh_d\u1EA5u_m\u1EE5c

Mark_new_entries_with_addition_date=\u0110\u00E1nh_d\u1EA5u_c\u00E1c_m\u1EE5c_m\u1EDBi_v\u1EDBi_ng\u00E0y_\u0111\u01B0\u1EE3c_th\u00EAm_v\u00E0o

Mark_new_entries_with_owner_name=\u0110\u00E1nh_d\u1EA5u_c\u00E1c_m\u1EE5c_m\u1EDBi_c\u00F9ng_v\u1EDBi_t\u00EAn_ng\u01B0\u1EDDi_s\u1EDF_h\u1EEFu

Marked_selected=Ph\u1EA7n_\u0111\u00E1nh_d\u1EA5u_\u0111\u01B0\u1EE3c_ch\u1ECDn
Medline_import_canceled=Vi\u1EC7c_nh\u1EADp_t\u1EEB_Medline_b\u1ECB_h\u1EE7y
Memory_Stick_Mode=Ch\u1EBF_\u0111\u1ED9_th\u1EBB_nh\u1EDB

Menu_and_label_font_size=C\u1EE1_ph\u00F4ng_ch\u1EEF_tr\u00ECnh_\u0111\u01A1n_v\u00E0_nh\u00E3n

Merged_external_changes=C\u00E1c_thay_\u0111\u1ED5i_ngo\u00E0i_\u0111\u01B0\u1EE3c_g\u1ED9p_l\u1EA1i

Messages=C\u00E1c_th\u00F4ng_b\u00E1o

Messages_and_Hints=C\u00E1c_th\u00F4ng_b\u00E1o_v\u00E0_g\u1EE3i_\u00FD
Metadata_change=Thay_\u0111\u1ED5i_\u0111\u1EB7c_t\u1EA3_d\u1EEF_li\u1EC7u
MIME_type=Ki\u1EC3u_MIME

Modification_of_field=S\u1EF1_\u0111i\u1EC1u_ch\u1EC9nh_c\u1EE7a_tr\u01B0\u1EDDng

Modified_group_"%0".=Nh\u00F3m_"%0"_\u0111\u01B0\u1EE3c_\u0111i\u1EC1u_ch\u1EC9nh.

Modified_groups=C\u00E1c_nh\u00F3m_\u0111\u01B0\u1EE3c_\u0111i\u1EC1u_ch\u1EC9nh

Modified_string=Chu\u1ED7i_\u0111\u01B0\u1EE3c_\u0111i\u1EC1u_ch\u1EC9nh

Modify=\u0110i\u1EC1u_ch\u1EC9nh

modify_group=\u0111i\u1EC1u_ch\u1EC9nh_nh\u00F3m

MODS=MODS

Move=Chuy\u1EC3n
Move/Rename_file=Chuy\u1EC3n/\u0110\u1EB7t_l\u1EA1i_t\u00EAn_t\u1EADp_tin
Move/rename_file=Chuy\u1EC3n/\u0111\u1EB7t_l\u1EA1i_t\u00EAn_t\u1EADp_tin
Move_contents_of_a_field_into_a_field_with_a_different_name=Di_chuy\u1EC3n_n\u1ED9i_dung_c\u1EE7a_m\u1ED9t_tr\u01B0\u1EDDng_sang_m\u1ED9t_tr\u01B0\u1EDDng_c\u00F3_t\u00EAn_kh\u00E1c

Move_down=Chuy\u1EC3n_xu\u1ED1ng

Move_entries_in_group_selection_to_the_top=Chuy\u1EC3n_c\u00E1c_m\u1EE5c_trong_nh\u00F3m_\u0111\u01B0\u1EE3c_ch\u1ECDn_l\u00EAn_tr\u00EAn_c\u00F9ng
Move_external_links_to_'file'_field=Chuy\u1EC3n_c\u00E1c_li\u00EAn_k\u1EBFt_ngo\u00E0i_v\u00E0o_tr\u01B0\u1EDDng_'file'
Move_file_failed=Vi\u1EC7c_chuy\u1EC3n_t\u1EADp_tin_th\u1EA5t_b\u1EA1i
Move_file_to_file_directory.=Di_chuy\u1EC3n_t\u1EADp_tin_v\u00E0o_th\u01B0_m\u1EE5c_t\u1EADp_tin.
Move_file_to_file_directory?=Di_chuy\u1EC3n_t\u1EADp_tin_v\u00E0o_th\u01B0_m\u1EE5c_t\u1EADp_tin?
Move_files_to_file_directory.=Chuy\u1EC3n_c\u00E1c_t\u1EADp_tin_v\u00E0o_th\u01B0_m\u1EE5c_t\u1EADp_tin

move_group=chuy\u1EC3n_nh\u00F3m

Move_string_down=Chuy\u1EC3n_chu\u1ED7i_xu\u1ED1ng

Move_string_up=Chuy\u1EC3n_chu\u1ED7i_l\u00EAn

Move_the_keyboard_focus_to_the_entry_table=Chuy\u1EC3n_tr\u1ECDng_t\u00E2m_b\u00E0n_ph\u00EDm_sang_b\u1EA3ng_ch\u1EE9a_m\u1EE5c
Move_to_file_directory=Di_chuy\u1EC3n_v\u00E0o_th\u01B0_m\u1EE5c_t\u1EADp_tin

Move_up=Chuy\u1EC3n_l\u00EAn

Moved_group_"%0".=\u0110\u00E3_chuy\u1EC3n_nh\u00F3m_"%0".
MS_Office_2007=MS_Office_2007
MySQL=MySQL
MySQL_database=CSDL_MySQL

Name=T\u00EAn
Name_formatter=Tr\u00ECnh_\u0111\u1ECBnh_d\u1EA1ng_t\u00EAn

Natbib_style=Ki\u1EC3u_Natbib

nested_aux_files=c\u00E1c_t\u1EADp_tin_aux_l\u1ED3ng_nhau

New=M\u1EDBi

new=m\u1EDBi

New_BibTeX_database=CSDL_BibTeX_m\u1EDBi

New_BibTeX_entry=M\u1EE5c_BibTeX_m\u1EDBi

New_BibTeX_subdatabase=CSDL_con_BibTeX_m\u1EDBi

New_content=N\u1ED9i_dung_m\u1EDBi

New_database_created.=CSDL_m\u1EDBi_\u0111\u01B0\u1EE3c_tao_ra.
New_field_value=Gi\u00E1_tr\u1ECB_tr\u01B0\u1EDDng_m\u1EDBi

New_file=T\u1EADp_tin_m\u1EDBi
New_file_link_(INSERT)=Li\u00EAn_k\u1EBFt_t\u1EADp_tin_m\u1EDBi_(INSERT)

New_group=Nh\u00F3m_m\u1EDBi

New_string=Chu\u1ED7i_m\u1EDBi

Next_entry=M\u1EE5c_ti\u1EBFp

No_%0_found=Kh\u00F4ng_t\u00ECm_th\u1EA5y_%0

No_actual_changes_found.=Kh\u00F4ng_th\u1EA5y_thay_\u0111\u1ED5i_th\u1EF1c_s\u1EF1_n\u00E0o.

no_base-bibtex-file_specified=t\u1EADp_tin_ki\u1EC3u-bibtex_kh\u00F4ng_\u0111\u01B0\u1EE3c_ch\u1EC9_\u0111\u1ECBnh!

no_database_generated=Kh\u00F4ng_c\u00F3_CSDL_n\u00E0o_\u0111\u01B0\u1EE3c_t\u1EA1o_ra

No_duplicates_found=Kh\u00F4ng_t\u00ECm_th\u1EA5y_c\u00E1c_m\u1EE5c_tr\u00F9ng
No_entries_found._It_looks_like_you_do_not_have_access_to_search_JStor.=Kh\u00F4ng_t\u00ECm_th\u1EA5y_m\u1EE5c_n\u00E0o._C\u00F3_v\u1EBB_nh\u01B0_b\u1EA1n_kh\u00F4ng_c\u00F3_quy\u1EC1n_truy_c\u1EADp_\u0111\u1EC3_t\u00ECm_ki\u1EBFm_trong_JStor.

No_entries_found._Please_make_sure_you_are_using_the_correct_import_filter.=Kh\u00F4ng_t\u00ECm_th\u1EA5y_m\u1EE5c_n\u00E0o._H\u00E3y_\u0111\u1EA3m_b\u1EA3o_r\u1EB1ng_b\u1EA1n_\u0111ang_d\u00F9ng_b\u1ED9_l\u1ECDc_nh\u1EADp_\u0111\u00FAng.


No_entries_found_for_the_search_string_'%0'=Kh\u00F4ng_t\u00ECm_th\u1EA5y_m\u1EE5c_n\u00E0o_v\u1EDBi_chu\u1ED7i_t\u00ECm_ki\u1EBFm_'%0'

No_entries_imported.=Kh\u00F4ng_m\u1EE5c_n\u00E0o_\u0111\u01B0\u1EE3c_nh\u1EADp.

No_entries_or_multiple_entries_selected.=Kh\u00F4ng_c\u00F3_m\u1EE5c_ho\u1EB7c_c\u00E1c_m\u1EE5c_n\u00E0o_\u0111\u01B0\u1EE3c_nh\u1EADp.

No_entries_selected=Kh\u00F4ng_c\u00F3_m\u1EE5c_n\u00E0o_\u0111\u01B0\u1EE3c_ch\u1ECDn
No_entries_selected.=Kh\u00F4ng_c\u00F3_m\u1EE5c_n\u00E0o_\u0111\u01B0\u1EE3c_ch\u1ECDn.

No_exceptions_have_ocurred.=Kh\u00F4ng_x\u1EA3y_ra_ngo\u1EA1i_l\u1EC7_n\u00E0o.
No_files_found.=Kh\u00F4ng_t\u00ECm_th\u1EA5y_t\u1EADp_tin_n\u00E0o.

No_GUI._Only_process_command_line_options.=Kh\u00F4ng_c\u00F3_GD\u0110H._Ch\u1EC9_x\u1EED_l\u00FD_c\u00E1c_t\u00F9y_ch\u1ECDn_d\u00F2ng_l\u1EC7nh.

No_journal_names_could_be_abbreviated.=Kh\u00F4ng_c\u00F3_t\u00EAn_t\u1EA1p_ch\u00ED_n\u00E0o_c\u00F3_th\u1EC3_vi\u1EBFt_t\u1EAFt.

No_journal_names_could_be_unabbreviated.=Kh\u00F4ng_c\u00F3_t\u00EAn_t\u1EA1p_ch\u00ED_n\u00E0o_c\u00F3_th\u1EC3_vi\u1EBFt_\u0111\u1EA7y_\u0111\u1EE7.
No_PDF_linked=Kh\u00F4ng_c\u00F3_t\u1EADp_tin_PDF_n\u00E0o_\u0111\u01B0\u1EE3c_li\u00EAn_k\u1EBFt

No_pdf_or_ps_defined,_and_no_file_matching_Bibtex_key_found=Kh\u00F4ng_c\u00F3_t\u1EADp_tin_PDF_ho\u1EB7c_PS_n\u00E0o_\u0111\u01B0\u1EE3c_\u0111\u1ECBnh_ngh\u0129a,_v\u00E0_kh\u00F4ng_t\u00ECm_th\u1EA5y_kh\u00F3a_Bibtex_n\u00E0o_kh\u1EDBp
No_plugins_were_found_in_the_following_folders\:=Kh\u00F4ng_t\u00ECm_th\u1EA5y_ph\u1EA7n_m\u1EDF_r\u1ED9ng_n\u00E0o_trong_th\u01B0_m\u1EE5c_sau:

No_references_found=Kh\u00F4ng_t\u00ECm_th\u1EA5y_t\u00E0i_li\u1EC7u_tham_kh\u1EA3o_n\u00E0o

No_saved_session_found.=Kh\u00F4ng_t\u00ECm_th\u1EA5y_phi\u00EAn_l\u00E0m_vi\u1EC7c_\u0111\u01B0\u1EE3c_l\u01B0u_n\u00E0o.

No_url_defined=Kh\u00F4ng_c\u00F3_url_n\u00E0o_\u0111\u01B0\u1EE3c_\u0111\u1ECBnh_ngh\u0129a
No_XMP_metadata_found_in_=Kh\u00F4ng_t\u00ECm_th\u1EA5y_\u0111\u1EB7c_t\u1EA3_d\u1EEF_li\u1EC7u_XMP_n\u00E0o_trong_

not=kh\u00F4ng

not_found=kh\u00F4ng_t\u00ECm_th\u1EA5y
Not_loaded=Kh\u00F4ng_\u0111\u01B0\u1EE3c_n\u1EA1p

Not_saved_(empty_session)=Kh\u00F4ng_\u0111\u01B0\u1EE3c_l\u01B0u_(phi\u00EAn_l\u00E0m_vi\u1EC7c_r\u1ED7ng)

Note_that_the_entry_causing_the_problem_has_been_selected.=L\u01B0u_\u00FD_r\u1EB1ng_m\u1EE5c_g\u00E2y_ra_tr\u1EE5c_tr\u1EB7c_\u0111\u00E3_\u0111\u01B0\u1EE3c_ch\u1ECDn.
Note_that_these_settings_are_used_for_the_legacy_<b>pdf</b>_and_<b>ps</b>_fields_only.<br>For_most_users,_setting_the_<b>Main_file_directory</b>_above_should_be_sufficient.=L\u01B0u_\u00FD_r\u1EB1ng_nh\u1EEFng_thi\u1EBFt_l\u1EADp_n\u00E0y_ch\u1EC9_\u0111\u01B0\u1EE3c_d\u00F9ng_cho_c\u00E1c_tr\u01B0\u1EDDng_<b>pdf</b>_v\u00E0_<b>ps</b>_c\u0169_c\u00F2n_gi\u1EEF_l\u1EA1i.<br>\u0110\u1ED1i_v\u1EDBi_h\u1EA7u_h\u1EBFt_ng\u01B0\u1EDDi_d\u00F9ng,_thi\u1EBFt_l\u1EADp_<b>Th\u01B0_m\u1EE5c_t\u1EADp_tin_ch\u00EDnh</b>_nh\u01B0_tr\u00EAn_l\u00E0_\u0111\u1EE7.

Note_that_you_must_specify_the_fully_qualified_class_name_for_the_look_and_feel,=L\u01B0u_\u00FD_r\u1EB1ng_b\u1EA1n_ph\u1EA3i_ch\u1EC9_\u0111\u1ECBnh_t\u00EAn_l\u1EDBp_\u0111\u1EE7_\u0111i\u1EC1u_ki\u1EC7n_d\u00F9ng_cho_di\u1EC7n_m\u1EA1o,

Nothing_to_redo=Kh\u00F4ng_c\u00F3_l\u1EC7nh_n\u00E0o_\u0111\u1EC3_l\u1EB7p_l\u1EA1i

Nothing_to_undo=Kh\u00F4ng_c\u00F3_l\u1EC7nh_n\u00E0o_\u0111\u1EC3_quay_ng\u01B0\u1EE3c_l\u1EA1i
Number_of_entries_successfully_imported=S\u1ED1_m\u1EE5c_\u0111\u01B0\u1EE3c_nh\u1EADp_v\u00E0o_th\u00E0nh_c\u00F4ng

#Thenextisusedlikein"Referencesfound:1Numberofreferencestofetch?"
Number_of_references_to_fetch?=S\u1ED1_l\u01B0\u1EE3ng_t\u00E0i_li\u1EC7u_tham_kh\u1EA3o_c\u1EA7n_l\u1EA5y_v\u1EC1?

occurences=c\u00E1c_l\u1EA7n_xu\u1EA5t_hi\u1EC7n

OK=\u0110\u1ED3ng_\u00FD

Ok=\u0110\u1ED3ng_\u00FD
Old_plugin_versions_will_be_deleted_next_time_JabRef_starts_up.=Phi\u00EAn_b\u1EA3n_c\u00E1c_ph\u1EA7n_m\u1EDF_r\u1ED9ng_c\u0169_s\u1EBD_b\u1ECB_x\u00F3a_\u1EDF_l\u1EA7n_kh\u1EDFi_\u0111\u1ED9ng_sau_c\u1EE7a_JabRef.
Old_versions_deleted_successfully.=C\u00E1c_phi\u00EAn_b\u1EA3n_c\u0169_\u0111\u01B0\u1EE3c_x\u00F3a_th\u00E0nh_c\u00F4ng.
One_or_more_file_links_are_of_the_type_'%0',_which_is_undefined._What_do_you_want_to_do?=M\u1ED9t_ho\u1EB7c_nhi\u1EC1u_li\u00EAn_k\u1EBFt_thu\u1ED9c_ki\u1EC3u_'%0',_t\u1EE9c_l\u00E0_lo\u1EA1i_kh\u00F4ng_x\u00E1c_\u0111\u1ECBnh._B\u1EA1n_mu\u1ED1n_l\u00E0m_g\u00EC?

One_or_more_keys_will_be_overwritten._Continue?=M\u1ED9t_ho\u1EB7c_nhi\u1EC1u_kh\u00F3a_s\u1EBD_b\u1ECB_ghi_\u0111\u00E8._C\u00F3_ti\u1EBFp_t\u1EE5c_kh\u00F4ng?
One_or_more_older_versions_of_this_plugin_is_installed._Delete_old_versions?=M\u1ED9t_ho\u1EB7c_nhi\u1EC1u_phi\u00EAn_b\u1EA3n_c\u0169_h\u01A1n_c\u1EE7a_ph\u1EA7n_m\u1EDF_r\u1ED9ng_n\u00E0y_\u0111\u00E3_\u0111\u01B0\u1EE3c_c\u00E0i_\u0111\u1EB7t._C\u00F3_x\u00F3a_c\u00E1c_phi\u00EAn_b\u1EA3n_c\u0169_kh\u00F4ng?
Only_one_item_is_supported=Ch\u1EC9_c\u00F3_m\u1ED9t_h\u1EA1ng_m\u1EE5c_\u0111\u01B0\u1EE3c_h\u1ED7_tr\u1EE3

Open=M\u1EDF

Open_BibTeX_database=M\u1EDF_CSDL_BibTeX

Open_database=M\u1EDF_CSDL

Open_editor_when_a_new_entry_is_created=M\u1EDF_tr\u00ECnh_bi\u00EAn_t\u1EADp_khi_m\u1ED9t_m\u1EE5c_m\u1EDBi_\u0111\u01B0\u1EE3c_tao

Open_file=M\u1EDF_t\u1EADp_tin

Open_last_edited_databases_at_startup=M\u1EDF_CSDL_ch\u1EC9nh_s\u1EEDa_l\u1EA7n_cu\u1ED1i_khi_kh\u1EDFi_\u0111\u1ED9ng

Open_PDF_or_PS=M\u1EDF_PDF_ho\u1EB7c_PS

Open_right-click_menu_with_Ctrl+left_button=M\u1EDF_tr\u00ECnh_\u0111\u01A1n_nh\u1EAFp_chu\u1ED9t_ph\u1EA3i_b\u1EB1ng_t\u1ED5_h\u1EE3p_ph\u00EDm_Ctrl+left
Open_SPIRES_entry=M\u1EDF_m\u1EE5c_SPIRES

Open_URL_or_DOI=M\u1EDF_URL_ho\u1EB7c_DOI
OpenDocument_Spreadsheet=T\u00E0i.li\u1EC7u.v\u0103n.b\u1EA3n.m\u1EDF_B\u1EA3ng.t\u00EDnh

Opened_database=CSDL_\u0111\u01B0\u1EE3c_m\u1EDF

Opening=\u0110ang_m\u1ECF

Opening_preferences...=\u0110ang_m\u1EDF_c\u00E1c_t\u00F9y_th\u00EDch...

OpenOffice_Calc=OpenOffice_Calc
OpenOffice_CSV=OpenOffice_CSV
Operation_canceled.\n=L\u1EC7nh_b\u1ECB_h\u1EE7y.\n
Operation_not_supported=L\u1EC7nh_kh\u00F4ng_\u0111\u01B0\u1EE3c_h\u1ED7_tr\u1EE3

Optional_fields=C\u00E1c_tr\u01B0\u1EDDng_t\u00F9y_ch\u1ECDn

Options=T\u00F9y_ch\u1ECDn

or=ho\u1EB7c

out_of=ngo\u00E0i
Output=\u0110\u1EA7u_ra

Output_or_export_file=\u0110\u1EA7u_ra_ho\u1EB7c_t\u1EADp_tin_xu\u1EA5t

Override=Ghi_\u0111\u00E8

Override_default_file_directories=Ghi_\u0111\u00E8_c\u00E1c_th\u01B0_m\u1EE5c_t\u1EADp_tin_m\u1EB7c_\u0111\u1ECBnh

Override_default_font_settings=Ghi_\u0111\u00E8_c\u00E1c_thi\u1EBFt_l\u1EADp_ph\u00F4ng_ch\u1EEF_m\u1EB7c_\u0111\u1ECBnh
Override_legacy_file_fields=Ghi_\u0111\u00E8_c\u00E1c_tr\u01B0\u1EDDng_t\u1EADp_tin_(c\u0169)_c\u00F2n_s\u00F3t_l\u1EA1i

override_the_bibtex_key_by_the_selected_text=ghi_\u0111\u00E8_kh\u00F3a_bibtex_b\u1EB1ng_ch\u1EEF_\u0111\u01B0\u1EE3c_ch\u1ECDn


Overwrite=Ghi_\u0111\u00E8
Overwrite_existing_field_values=Ghi_\u0111\u00E8_c\u00E1c_gi\u00E1_tr\u1ECB_tr\u01B0\u1EDDng_hi\u1EC7n_c\u00F3

Overwrite_keys=Ghi_\u0111\u00E8_c\u00E1c_kh\u00F3a

pairs_processed=c\u00E1c_c\u1EB7p_\u0111\u01B0\u1EE3c_x\u1EED_l\u00FD
Password_\:=M\u1EADt_m\u00E3:

Paste=D\u00E1n

paste_entries=d\u00E1n_c\u00E1c_m\u1EE5c

paste_entry=d\u00E1n_m\u1EE5c
Paste_from_clipboard=D\u00E1n_t\u1EEB_b\u1ED9_nh\u1EDB_t\u1EA1m

Pasted=\u0110\u01B0\u1EE3c_d\u00E1n

Path_to_%0_not_defined=\u0110\u01B0\u1EDDng_d\u1EABn_\u0111\u1EBFn_%0_kh\u00F4ng_\u0111\u01B0\u1EE3c_\u0111\u1ECBnh_ngh\u0129a

Path_to_LatexEditor_(LEd.exe)=\u0110\u01B0\u1EDDng_d\u1EABn_\u0111\u1EBFn_tr\u00ECnh_bi\u00EAn_t\u1EADp_Latex_(LEd.exe)

Path_to_LyX_pipe=\u0110\u01B0\u1EDDng_d\u1EABn_\u0111\u1EBFn_\u1ED1ng_d\u1EABn_LyX

Path_to_Vim=\u0110\u01B0\u1EDDng_d\u1EABn_\u0111\u1EBFn_Vim

Path_to_WinEdt.exe=\u0110\u01B0\u1EDDng_d\u1EABn_\u0111\u1EBFn_WinEdt.exe

PDF_directory=Th\u01B0_m\u1EE5c_PDF
PDF_does_not_exist=PDF_kh\u00F4ng_t\u1ED3n_t\u1EA1i

Personal_journal_list=Danh_s\u00E1ch_t\u1EA1p_ch\u00ED_ri\u00EAng

Plain_text_import=Nh\u1EADp_v\u0103n_b\u1EA3n_tr\u01A1n

Please_check_your_network_connection_to_this_machine.=Vui_l\u00F2ng_ki\u1EC3m_tra_k\u1EBFt_n\u1ED1i_m\u1EA1ng_\u0111\u1EBFn_m\u00E1y_n\u00E0y.
Please_enter_a_comma_separated_list_of_Medline_IDs_(numbers)_or_search_terms.=Vui_l\u00F2ng_nh\u1EADp_m\u1ED9t_danh_s\u00E1ch_c\u00E1c_id_Medline_(con_s\u1ED1),_c\u00E1ch_nhau_b\u1EDFi_d\u1EA5u_ph\u1EA9y,_ho\u1EB7c_nh\u1EADp_thu\u1EADt_ng\u1EEF_c\u1EA7n_t\u00ECm.

Please_enter_a_name_for_the_group.=Vui_l\u00F2ng_nh\u1EADp_t\u00EAn_cho_nh\u00F3m.

Please_enter_a_search_term._For_example,_to_search_all_fields_for_<b>Smith</b>,_enter%c<p><tt>smith</tt><p>To_search_the_field_<b>Author</b>_for_<b>Smith</b>_and_the_field_<b>Title</b>_for_<b>electrical</b>,_enter%c<p><tt>author%esmith_and_title%eelectrical</tt>=Vui_l\u00F2ng_nh\u1EADp_m\u1ED9t_thu\u1EADt_ng\u1EEF_t\u00ECm_ki\u1EBFm._V\u00ED_d\u1EE5,_\u0111\u1EC3_t\u00ECm_t\u1EEB_<b>Smith</b>_trong_t\u1EA5t_c\u1EA3_c\u00E1c_tr\u01B0\u1EDDng,_nh\u1EADp%c<p><tt>smith</tt><p>._\u0110\u1EC3_t\u00ECm_t\u1EEB_<b>Smith</b>_trong_tr\u01B0\u1EDDng_<b>Author</b>_v\u00E0_t\u1EEB_<b>electrical</b>_trong_tr\u01B0\u1EDDng_<b>Title</b>,_nh\u1EADp%c<p><tt>author%esmith_v\u00E0_title%eelectrical</tt>
Please_enter_a_valid_number=Vui_l\u00F2ng_nh\u1EADp_m\u1ED9t_con_s\u1ED1_h\u1EE3p_l\u1EC7

Please_enter_the_field_to_search_(e.g._<b>keywords</b>)_and_the_keyword_to_search_it_for_(e.g._<b>electrical</b>).=Vui_l\u00F2ng_nh\u1EADp_tr\u01B0\u1EDDng_c\u1EA7n_t\u00ECm_(v\u00ED_d\u1EE5:_<b>t\u1EEB_kho\u00E1</b>)_v\u00E0_t\u1EEB_kh\u00F3a_c\u1EA7n_t\u00ECm_ki\u1EBFm_trong_tr\u01B0\u1EDDng_\u0111\u00F3_(v\u00ED_d\u1EE5:_<b>electrical</b>).

Please_enter_the_string's_label=Vui_l\u00F2ng_nh\u1EADp_nh\u00E3n_c\u1EE7a_chu\u1ED7i
Please_refer_to_the_JabRef_help_manual_on_using_the_CiteSeer_tools=Vui_l\u00F2ng_xem_h\u01B0\u1EDBng_d\u1EABn_s\u1EED_d\u1EE5ng_JabRef_v\u1EC1_ph\u1EA7n_s\u1EED_d\u1EE5ng_c\u00E1c_c\u00F4ng_c\u1EE5_CiteSeer

Please_refer_to_the_JabRef_help_manual_on_using_the_CiteSeer_tools.=Vui_l\u00F2ng_xem_h\u01B0\u1EDBng_d\u1EABn_s\u1EED_d\u1EE5ng_JabRef_v\u1EC1_ph\u1EA7n_s\u1EED_d\u1EE5ng_c\u00E1c_c\u00F4ng_c\u1EE5_CiteSeer.

Please_select_an_importer=Vui_l\u00F2ng_ch\u1ECDn_m\u1ED9t_tr\u00ECnh_nh\u1EADp

Please_select_an_importer.=Vui_l\u00F2ng_ch\u1ECDn_m\u1ED9t_tr\u00ECnh_nh\u1EADp.

Please_select_exactly_one_group_to_move.=Vui_l\u00F2ng_ch\u1ECDn_ch\u00EDnh_x\u00E1c_m\u1ED9t_nh\u00F3m_c\u1EA7n_di_chuy\u1EC3n
Please_specify_the_=Vui_l\u00F2ng_ch\u1EC9_\u0111\u1ECBnh_
Please_wait!=Vui_l\u00F2ng_ch\u1EDD!

Please_wait_until_it_has_finished.=Vui_l\u00F2ng_ch\u1EDD_\u0111\u1EBFn_khi_l\u1EC7nh_k\u1EBFt_th\u00FAc.
Plugin_installation_failed.=C\u00E0i_\u0111\u1EB7t_ph\u1EA7n_m\u1EDF_r\u1ED9ng_th\u1EA5t_b\u1EA1i.
Plugin_installed_successfully._You_must_restart_JabRef_to_load_the_new_plugin.=Ph\u1EA7n_m\u1EDF_r\u1ED9ng_\u0111\u01B0\u1EE3c_c\u00E0i_\u0111\u1EB7t_th\u00E0nh_c\u00F4ng._B\u1EA1n_ph\u1EA3i_kh\u1EDFi_\u0111\u1ED9ng_l\u1EA1i_JabRef_\u0111\u1EC3_n\u1EA1p_ph\u1EA7n_m\u1EDF_r\u1ED9ng_m\u1EDBi.

Plugin_installer=Tr\u00ECnh_c\u00E0i_\u0111\u1EB7t_ph\u1EA7n_m\u1EDF_r\u1ED9ng
Plugin_manager=Tr\u00ECnh_qu\u1EA3n_l\u00FD_ph\u1EA7n_m\u1EDF_r\u1ED9ng
Plugin_name=T\u00EAn_ph\u1EA7n_m\u1EDF_r\u1ED9ng
Plugin_will_be_deleted_next_time_JabRef_starts_up.=Ph\u1EA7n_m\u1EDF_r\u1ED9ng_s\u1EBD_\u0111\u01B0\u1EE3c_x\u00F3a_trong_l\u1EA7n_kh\u1EDFi_\u0111\u1ED9ng_sau_c\u1EE7a_JabRef.
Plugins_installed_in_other_locations\:=C\u00E1c_ph\u1EA7n_m\u1EDF_r\u1ED9ng_\u0111\u01B0\u1EE3c_c\u00E0i_\u0111\u1EB7t_\u1EDF_v\u1ECB_tr\u00ED_kh\u00E1c:


Plugins_installed_in_your_user_plugin_directory_(%0)\:=C\u00E1c_ph\u1EA7n_m\u1EDF_r\u1ED9ng_\u0111\u01B0\u1EE3c_c\u00E0i_\u0111\u1EB7t_trong_th\u01B0_m\u1EE5c_ph\u1EA7n_m\u1EDF_r\u1ED9ng_thu\u1ED9c_ng\u01B0\u1EDDi_d\u00F9ng_c\u1EE7a_b\u1EA1n_(%0):
Plugins_will_be_deleted_next_time_JabRef_starts_up.=Ph\u1EA7n_m\u1EDF_r\u1ED9ng_s\u1EBD_\u0111\u01B0\u1EE3c_x\u00F3a_trong_l\u1EA7n_kh\u1EDFi_\u0111\u1ED9ng_sau_c\u1EE7a_JabRef.

Possible_duplicate_entries=C\u00E1c_m\u1EE5c_c\u00F3_th\u1EC3_b\u1ECB_tr\u00F9ng

Possible_duplicate_of_existing_entry._Click_to_resolve.=C\u00F3_th\u1EC3_m\u1EE5c_hi\u1EC7n_c\u00F3_b\u1ECB_tr\u00F9ng._Nh\u1EAFp_chu\u1ED9t_\u0111\u1EC3_gi\u1EA3i.

Preamble=Ph\u1EA7n_m\u1EDF_\u0111\u1EA7u

Preferences=C\u00E1c_t\u00F9y_th\u00EDch

Preferences_recorded.=C\u00E1c_t\u00F9y_th\u00EDch_\u0111\u01B0\u1EE3c_ghi_l\u1EA1i.

Preview=Xem_tr\u01B0\u1EDBc

Previous_entry=M\u1EE5c_tr\u01B0\u1EDBc_\u0111\u00F3

Primary_sort_criterion=Ti\u00EAu_chu\u1EA9n_x\u1EBFp_th\u1EE9_t\u1EF1_ch\u00EDnh
Print_Preview=Xem_tr\u01B0\u1EDBc_khi_in
Printing_Entry_Preview=Xem_tr\u01B0\u1EDBc_ph\u1EA7n_in_m\u1ED9t_m\u1EE5c

Problem_with_parsing_entry=Tr\u1EE5c_tr\u1EB7c_khi_ph\u00E2n_t\u00E1ch_m\u1EE5c
Processing_=\u0110ang_x\u1EED_l\u00FD_
Program_output=\u0110\u1EA7u_ra_c\u1EE7a_ch\u01B0\u01A1ng_tr\u00ECnh
Progress:_%0_of_%1=Ti\u1EBFn_tr\u00ECnh:_%0_of_%1
Prompt_before_recovering_a_database_from_an_autosave_file=Nh\u1EAFc_tr\u01B0\u1EDBc_khi_ph\u1EE5c_h\u1ED3i_l\u1EA1i_m\u1ED9t_CSDL_t\u1EEB_m\u1ED9t_t\u1EADp_tin_l\u01B0u_t\u1EF1_\u0111\u1ED9ng
Protected_database=CSDL_\u0111\u01B0\u1EE3c_b\u1EA3o_v\u1EC7

PS_directory=Th\u01B0_m\u1EE5c_PS
Push_entries_to_external_application_(%0)=\u0110\u01B0a_c\u00E1c_m\u1EE5c_ra_\u1EE9ng_d\u1EE5ng_ngo\u00E0i_(%0)

Push_selection_to_Emacs=\u0110\u01B0a_c\u00E1c_m\u1EE5c_ra_Emacs

Push_selection_to_LyX/Kile=\u0110\u01B0a_c\u00E1c_m\u1EE5c_ra_LyX/Kile
Push_selection_to_Vim=\u0110\u01B0a_ra_m\u1EE5c_ra_Vim

Push_selection_to_WinEdt=\u0110\u01B0a_c\u00E1c_m\u1EE5c_ra_WinEdt

Push_to_LatexEditor=\u0110\u01B0a_c\u00E1c_m\u1EE5c_ra_tr\u00ECnh_bi\u00EAn_t\u1EADp_Latex
Pushed_citations_to_%0=C\u00E1c_tr\u00EDch_d\u1EABn_\u0111\u00E3_\u0111\u01B0\u1EE3c_\u0111\u01B0a_qua_%0

Pushed_citations_to_Emacs=C\u00E1c_tr\u00EDch_d\u1EABn_\u0111\u00E3_\u0111\u01B0\u1EE3c_\u0111\u01B0a_qua_Emacs
Pushed_citations_to_Vim=C\u00E1c_tr\u00EDch_d\u1EABn_\u0111\u00E3_\u0111\u01B0\u1EE3c_\u0111\u01B0a_qua_Vim

Pushed_citations_to_WinEdt=C\u00E1c_tr\u00EDch_d\u1EABn_\u0111\u00E3_\u0111\u01B0\u1EE3c_\u0111\u01B0a_qua_WinEdt

Pushed_the_citations_for_the_following_rows_to=\u0110\u00E3_\u0111\u01B0a_c\u00E1c_tr\u00EDch_d\u1EABn_c\u1EE7a_nh\u1EEFng_h\u00E0ng_sau_qua
Query_'%0'_with_fetcher_'%1'_did_not_return_any_results.=Ph\u00E9p_truy_v\u1EA5n_'%0'_b\u1EB1ng_tr\u00ECnh_l\u1EA5y_v\u1EC1_'%1'_kh\u00F4ng_tr\u1EA3_l\u1EA1i_k\u1EBFt_qu\u1EA3_n\u00E0o.

Quit_JabRef=Tho\u00E1t_JabRef

Quit_synchronization=Th\u00F4i_\u0111\u1ED3ng_b\u1ED9_h\u00F3a

Raw_source=Ngu\u1ED3n_th\u00F4

Really_delete_the_selected=Th\u1EF1c_s\u1EF1_x\u00F3a_ph\u1EA7n_ch\u1ECDn

Rearrange_tabs_alphabetically_by_title=X\u1EBFp_l\u1EA1i_c\u00E1c_th\u1EBB_theo_th\u1EE9_t\u1EF1_ABC_theo_ti\u00EAu_\u0111\u1EC1
Recover_from_autosave=Ph\u1EE5c_h\u1ED3i_t\u1EF1_l\u1EC7nh_l\u01B0u_t\u1EF1_\u0111\u1ED9ng

Redo=L\u1EB7p_l\u1EA1i_l\u1EC7nh

Reference_database=CSDL_tham_kh\u1EA3o

#Thenexttwolinesareusedlikein"Referencesfound:1Numberofreferencestofetch?"
References_found=C\u00E1c_t\u00E0i_li\u1EC7u_tham_kh\u1EA3o_\u0111\u01B0\u1EE3c_t\u00ECm_th\u1EA5y

Refine_supergroup\:_When_selected,_view_entries_contained_in_both_this_group_and_its_supergroup=Tinh_ch\u1EC9nh_nh\u00F3m_l\u1EDBn:_Khi_\u0111\u01B0\u1EE3c_ch\u1ECDn,_xem_c\u00E1c_m\u1EE5c_ch\u1EE9a_c\u00E1c_trong_nh\u00F3m_n\u00E0y_v\u00E0_nh\u00F3m_l\u1EDBn_c\u1EE7a_n\u00F3

Refresh_view=L\u00E0m_t\u01B0\u01A1i_l\u1EA1i_ph\u1EA7n_xem
Refuse_to_save_the_database_before_external_changes_have_been_reviewed.=T\u1EEB_ch\u1ED1i_l\u01B0u_CSDL_tr\u01B0\u1EDBc_khi_nh\u1EEFng_thay_\u0111\u1ED5i_ngo\u00E0i_\u0111\u01B0\u1EE3c_xem_x\u00E9t.

Regular_Expression=Bi\u1EC3u_th\u1EE9c_ch\u00EDnh_t\u1EAFc

Remember_these_entry_types?=Nh\u1EDB_c\u00E1c_ki\u1EC3u_m\u1EE5c_n\u00E0y?

Remote_operation=L\u1EC7nh_t\u1EEB_xa

Remote_server_port=C\u1ED5ng_m\u00E1y_ch\u1EE7_t\u1EEB_xa

Remove=Lo\u1EA1i_b\u1ECF

Remove_all?=Lo\u1EA1i_b\u1ECF_t\u1EA5t_c\u1EA3?

Remove_all_broken_links=Lo\u1EA1i_b\u1ECF_t\u1EA5t_c\u1EA3_c\u00E1c_li\u00EAn_k\u1EBFt_b\u1ECB_\u0111\u1EE9t

Remove_all_subgroups=Lo\u1EA1i_b\u1ECF_t\u1EA5t_c\u1EA3_c\u00E1c_nh\u00F3m_con

Remove_all_subgroups_of_"%0"?=Lo\u1EA1i_b\u1ECF_t\u1EA5t_c\u1EA3_c\u00E1c_nh\u00F3m_con_c\u1EE7a_"%0"?

Remove_double_braces_around_BibTeX_fields_when_loading.=Lo\u1EA1i_b\u1ECF_c\u00E1c_d\u1EA5u_ngo\u1EB7c_m\u00F3c_\u0111\u00F4i_quanh_c\u00E1c_tr\u01B0\u1EDDng_BibTeX_khi_n\u1EA1p.

Remove_duplicates=Lo\u1EA1i_b\u1ECF_c\u00E1c_m\u1EE5c_b\u1ECB_tr\u00F9ng

Remove_entry_from_import=Lo\u1EA1i_b\u1ECF_m\u1EE5c_kh\u1ECFi_l\u1EC7nh_nh\u1EADp

Remove_entry_selection_from_this_group=Lo\u1EA1i_b\u1ECF_ph\u00E9p_ch\u1ECDn_m\u1EE5c_kh\u1ECFi_nh\u00F3m_n\u00E0y

Remove_entry_type=Lo\u1EA1i_b\u1ECF_ki\u1EC3u_m\u1EE5c
Remove_file_link_(DELETE)=Lo\u1EA1i_b\u1ECF_li\u00EAn_k\u1EBFt_t\u1EADp_tin_(X\u00D3A)

remove_from_group=lo\u1EA1i_b\u1ECF_kh\u1ECFi_nh\u00F3m

Remove_from_group=Lo\u1EA1i_b\u1ECF_kh\u1ECFi_nh\u00F3m

Remove_group=Lo\u1EA1i_b\u1ECF_nh\u00F3m

Remove_group,_keep_subgroups=Lo\u1EA1i_b\u1ECF_nh\u00F3m,_gi\u1EEF_l\u1EA1i_c\u00E1c_nh\u00F3m_con

Remove_group_"%0"?=Lo\u1EA1i_b\u1ECF_nh\u00F3m_"%0"?

Remove_group_"%0"_and_its_subgroups?=Lo\u1EA1i_b\u1ECF_nh\u00F3m_"%0"_v\u00E0_c\u00E1c_nh\u00F3m_con_c\u1EE7a_n\u00F3?

remove_group_(keep_subgroups)=lo\u1EA1i_b\u1ECF_nh\u00F3m_(gi\u1EEF_c\u00E1c_nh\u00F3m_con)

remove_group_and_subgroups=lo\u1EA1i_b\u1ECF_nh\u00F3m_v\u00E0_c\u00E1c_nh\u00F3m_con

Remove_group_and_subgroups=Lo\u1EA1i_b\u1ECF_nh\u00F3m_v\u00E0_c\u00E1c_nh\u00F3m_con

Remove_link=Lo\u1EA1i_b\u1ECF_li\u00EAn_k\u1EBFt

Remove_old_entry=Lo\u1EA1i_b\u1ECF_m\u1EE5c_c\u0169

Remove_selected_strings=Lo\u1EA1i_b\u1ECF_c\u00E1c_chu\u1ED7i_\u0111\u01B0\u1EE3c_ch\u1ECDn

remove_string_=lo\u1EA1i_b\u1ECF_chu\u1ED7i_

Removed_entry_type.=Ki\u1EC3u_m\u1EE5c_b\u1ECB_lo\u1EA1i_b\u1ECF.

Removed_group_"%0".=\u0110\u00E3_lo\u1EA1i_b\u1ECF_nh\u00F3m_"%0".

Removed_group_"%0"_and_its_subgroups.=\u0110\u00E3_lo\u1EA1i_b\u1ECF_nh\u00F3m_"%0"_v\u00E0_c\u00E1c_nh\u00F3m_con_c\u1EE7a_n\u00F3.

Removed_string=\u0110\u00E3_lo\u1EA1i_b\u1ECF_chu\u1ED7i

Rename_field=\u0110\u1ED5i_t\u00EAn_tr\u01B0\u1EDDng
Rename_field_to\:=\u0110\u1ED5i_t\u00EAn_tr\u01B0\u1EDDng_th\u00E0nh_\:
Rename_file_to=\u0110\u1ED5i_t\u00EAn_t\u1EADp_tin_th\u00E0nh
Rename_to_'%0'=\u0110\u1ED5i_t\u00EAn_th\u00E0nh_'%0'

Renamed_string=Chu\u1ED7i_\u0111\u01B0\u1EE3c_\u0111\u1EB7t_t\u00EAn_l\u1EA1i

Replace=Thay_th\u1EBF

Replace_(regular_expression)=Thay_th\u1EBF_(bi\u1EC3u_th\u1EE9c_ch\u00EDnh_t\u1EAFc)
Replace_comma_by_and_where_appropriate=Thay_th\u1EBF_d\u1EA5u_ph\u1EA9y_b\u1EB1ng_v\u00E0_\u1EDF_ch\u1ED7_th\u00EDch_h\u1EE3p

Replace_string=Thay_th\u1EBF_chu\u1ED7i

Replace_with=Thay_th\u1EBF_b\u1EDFi

Replaced=B\u1ECB_thay_th\u1EBF

Required_fields=C\u00E1c_tr\u01B0\u1EDDng_c\u1EA7n_c\u00F3
Reset=Thi\u1EBFt_l\u1EADp_l\u1EA1i

Reset_all=Thi\u1EBFt_l\u1EADp_l\u1EA1i_t\u1EA5t_c\u1EA3
Reset_file_type_definitons=Thi\u1EBFt_l\u1EADp_l\u1EA1i_c\u00E1c_\u0111\u1ECBnh_ngh\u0129a_ki\u1EC3u_t\u1EADp_tin

Resolve_strings_for_all_fields_except=Gi\u1EA3i_c\u00E1c_chu\u1ED7i_cho_t\u1EA5t_c\u1EA3_c\u00E1c_tr\u01B0\u1EDDng_ngo\u1EA1i_tr\u1EEB
Resolve_strings_for_standard_BibTeX_fields_only=Ch\u1EC9_gi\u1EA3i_c\u00E1c_chu\u1ED7i_cho_c\u00E1c_tr\u01B0\u1EDDng_BibTeX

resolved=\u0111\u01B0\u1EE3c_gi\u1EA3i

Results=C\u00E1c_k\u1EBFt_qu\u1EA3

Revert_to_original_source=Tr\u1EA3_ng\u01B0\u1EE3c_l\u1EA1i_ngu\u1ED3n_ban_\u0111\u1EA7u

Review=Xem_x\u00E9t_l\u1EA1i

Review_changes=Xem_x\u00E9t_l\u1EA1i_c\u00E1c_thay_\u0111\u1ED5i

Right=Ph\u1EA3i
RIS=RIS
root=root
Run_Fetcher,_e.g._"--fetch=Medline\:cancer"=Run_Fetcher,_e.g._"--fetch=Medline\:cancer"
Running_Query_'%0'_with_fetcher_'%1'.=\u0110ang_ch\u1EA1y_truy_v\u1EA5n_'%0'_v\u1EDBi_tr\u00ECnh_l\u1EA5y_v\u1EC1_'%1'.

Save=L\u01B0u
Save_all_finished.=L\u01B0u_t\u1EA5t_c\u1EA3_\u0111\u00E3_ho\u00E0n_t\u1EA5t.

Save_all_open_databases=L\u01B0u_t\u1EA5t_c\u1EA3_c\u00E1c_CSDL_\u0111ang_m\u1EDF

Save_before_closing=L\u01B0u_tr\u01B0\u1EDBc_khi_\u0111\u00F3ng

Save_database=L\u01B0u_CSDL
Save_database_as_...=L\u01B0u_CSDL_th\u00E0nh_...

Save_entries_in_their_original_order=L\u01B0u_c\u00E1c_m\u1EE5c_theo_th\u1EE9_t\u1EF1_g\u1ED1c_c\u1EE7a_ch\u00FAng

Save_failed=Vi\u1EC7c_l\u01B0u_th\u1EA5t_b\u1EA1i

Save_failed_during_backup_creation=Vi\u1EC7c_l\u01B0u_th\u1EA5t_b\u1EA1i_khi_\u0111ang_t\u1EA1o_b\u1EA3n_sao_l\u01B0u

Save_failed_while_committing_changes=Vi\u1EC7c_l\u01B0u_th\u1EA5t_b\u1EA1i_khi_\u0111ang_th\u1EF1c_hi\u1EC7n_nh\u1EEFng_thay_\u0111\u1ED5i

Save_in_current_table_sort_order=L\u01B0u_trong_tr\u00ECnh_t\u1EF1_x\u1EBFp_th\u1EE9_t\u1EF1_c\u1EE7a_b\u1EA3ng_hi\u1EC7n_t\u1EA1i

Save_ordered_by_author/editor/year=L\u01B0u_x\u1EBFp_th\u1EE9_t\u1EF1_theo_t\u00E1c_gi\u1EA3/bi\u00EAn_t\u1EADp/n\u0103m
Save_selected_as_...=L\u01B0u_ph\u1EA7n_ch\u1ECDn_th\u00E0nh_...

Save_without_backup?=L\u01B0u_kh\u00F4ng_c\u00F3_b\u1EA3n_d\u1EF1_ph\u00F2ng?

Saved_database=\u0110\u00E3_l\u01B0u_CSDL

Saved_selected_to=\u0110\u00E3_l\u01B0u_ph\u1EA7n_ch\u1ECDn_v\u00E0o

Saved_session=\u0110\u00E3_l\u01B0u_phi\u00EAn_l\u00E0m_vi\u1EC7c

Saving=\u0110ang_l\u01B0u
Saving_all_databases...=\u0110ang_l\u01B0u_t\u1EA5t_c\u1EA3_CSDL...

Saving_database=\u0110ang_l\u01B0u_CSDL

Scan=Qu\u00E9t

Search=T\u00ECm
Search_ACM_Portal=T\u00ECm_tr\u00EAn_ACM_Portal

Search_All_Fields=T\u00ECm_t\u1EA5t_c\u1EA3_c\u00E1c_tr\u01B0\u1EDDng

Search_all_fields=T\u00ECm_t\u1EA5t_c\u1EA3_c\u00E1c_tr\u01B0\u1EDDng

Search_error=L\u1ED7i_t\u00ECm_ki\u1EBFm

Search_expression=Bi\u1EC3u_th\u1EE9c_t\u00ECm_ki\u1EBFm
search_expression\:_<b>=bi\u1EC3u_th\u1EE9c_t\u00ECm:_<b>

Search_for=T\u00ECm

Search_general_fields=T\u00ECm_c\u00E1c_tr\u01B0\u1EDDng_t\u1ED5ng_qu\u00E1t

Search_IEEEXplore=T\u00ECm_tr\u00EAn_IEEEXplore
Search_IEEExplore=T\u00ECm_tr\u00EAn_IEEExplore
Search_JSTOR=T\u00ECm_tr\u00EAn_JSTOR

Search_optional_fields=T\u00ECm_c\u00E1c_tr\u01B0\u1EDDng_t\u00F9y_ch\u1ECDn

Search_required_fields=T\u00ECm_c\u00E1c_tr\u01B0\u1EDDng_b\u1EAFt_bu\u1ED9c
Search_results=K\u1EBFt_qu\u1EA3_t\u00ECm_ki\u1EBFm

Search_ScienceDirect=T\u00ECm_tr\u00EAn_ScienceDirect

Search_Specified_Field(s)=T\u00ECm_c\u00E1c_tr\u01B0\u1EDDng_\u0111\u01B0\u1EE3c_ch\u1EC9_\u0111\u1ECBnh

Searched_database._Global_number_of_hits=\u0110\u00E3_t\u00ECm_trong_CSDL._S\u1ED1_l\u1EA7n_g\u1EB7p_to\u00E0n_c\u1EE5c

Searched_database._Number_of_hits=\u0110\u00E3_t\u00ECm_trong_CSDL._S\u1ED1_l\u1EA7n_g\u1EB7p

Searching_for_%0_file=\u0110ang_t\u00ECm_%0_t\u1EADp_tin

Searching_for_duplicates...=\u0110ang_t\u00ECm_c\u00E1c_m\u1EE5c_b\u1ECB_l\u1EB7p...

Searching_for_files=\u0110ang_t\u00ECm_c\u00E1c_t\u1EADp_tin

Secondary_sort_criterion=Ti\u00EAu_chu\u1EA9n_ph\u00E2n_lo\u1EA1i_th\u1EE9_c\u1EA5p

Select=Ch\u1ECDn

Select_a_Zip-archive=Ch\u1ECDn_m\u1ED9t_t\u1EADp_tin_Zip

Select_action=Ch\u1ECDn_h\u00E0nh_\u0111\u1ED9ng

Select_all=Ch\u1ECDn_t\u1EA5t_c\u1EA3

Select_Classpath_of_New_Importer=Ch\u1ECDn_\u0111\u01B0\u1EDDng_d\u1EABn_l\u1EDBp_c\u1EE7a_tr\u00ECnh_nh\u1EADp_m\u1EDBi

Select_encoding=Ch\u1ECDn_b\u1ED9_m\u00E3_h\u00F3a

Select_entries_in_group_selection=Ch\u1ECDn_c\u00E1c_m\u1EE5c_trong_ph\u00E9p_ch\u1ECDn_nh\u00F3m

Select_entry_type=Ch\u1ECDn_ki\u1EC3u_m\u1EE5c
Select_external_application=Ch\u1ECDn_\u1EE9ng_d\u1EE5ng_ngo\u00E0i

Select_file_from_ZIP-archive=Ch\u1ECDn_t\u1EADp_tin_t\u1EEB_t\u1EADp_tin_Zip

Select_format=Ch\u1ECDn_\u0111\u1ECBnh_d\u1EA1ng
Select_icon=Ch\u1ECDn_bi\u1EC3u_t\u01B0\u1EE3ng

Select_matches=Ch\u1ECDn_c\u00E1c_m\u1EE5c_kh\u1EDBp

Select_new_ImportFormat_Subclass=Ch\u1ECDn_L\u1EDBp.ph\u1EE5_\u0110\u1ECBnh.d\u1EA1ng.nh\u1EADp_m\u1EDBi

Select_the_tree_nodes_to_view_and_accept_or_reject_changes=Ch\u1ECDn_c\u00E1c_n\u1ED1t_tr\u00EAn_s\u01A1_\u0111\u1ED3_h\u00ECnh_c\u00E2y_\u0111\u1EC3_xem_v\u00E0_ch\u1EA5p_nh\u1EADn_ho\u1EB7c_t\u1EEB_ch\u1ED1i_thay_\u0111\u1ED5i
Selected_entries=C\u00E1c_m\u1EE5c_\u0111\u01B0\u1EE3c_ch\u1ECDn

Selector_enabled_fields=C\u00E1c_tr\u01B0\u1EDDng_\u0111\u01B0\u1EE3c_k\u00EDch_ho\u1EA1t_b\u1EDFi_tr\u00ECnh_ch\u1ECDn
Server_Hostname_\:=T\u00EAn_Server-host:
Server_Type_\:=Ki\u1EC3u_Server:
Set/clear/rename_fields=Thi\u1EBFt_l\u1EADp/x\u00F3a/\u0111\u1ED5i_t\u00EAn_tr\u01B0\u1EDDng
Set_field=Thi\u1EBFt_l\u1EADp_tr\u01B0\u1EDDng
Set_fields=Thi\u1EBFt_l\u1EADp_c\u00E1c_tr\u01B0\u1EDDng

Set_general_fields=Thi\u1EBFt_l\u1EADp_c\u00E1c_tr\u01B0\u1EDDng_t\u1ED5ng_qu\u00E1t
Set_main_external_file_directory=Thi\u1EBFt_l\u1EADp_th\u01B0_m\u1EE5c_t\u1EADp_tin_ngo\u00E0i_ch\u00EDnh

Set_table_font=Ch\u1ECDn_b\u1EA3ng_ph\u00F4ng_ch\u1EEF

Settings=C\u00E1c_thi\u1EBFt_l\u1EADp
Settings_for_%0=C\u00E1c_thi\u1EBFt_l\u1EADp_d\u00F9ng_cho_%0

Setup_selectors=C\u00E0i_\u0111\u1EB7t_c\u00E1c_tr\u00ECnh_ch\u1ECDn

Short_form=Bi\u1EC3u_m\u1EABu_d\u1EA1ng_ng\u1EAFn_g\u1ECDn

Shortcut=Ph\u00EDm_t\u1EAFt

Show/edit_BibTeX_source=Hi\u1EC3n_th\u1ECB/Ch\u1EC9nh_s\u1EEDa_ngu\u1ED3n_BibTeX

Show_'Firstname_Lastname'=Hi\u1EC3n_th\u1ECB_'T\u00EAn.g\u1ECDi_H\u1ECD'

Show_'Lastname,_Firstname'=Hi\u1EC3n_th\u1ECB_T\u00EAn.g\u1ECDi,_H\u1ECD'

Show_BibTeX_source_by_default=Hi\u1EC3n_th\u1ECB_ngu\u1ED3n_BibTeX_theo_m\u1EB7c_\u0111\u1ECBnh

Show_BibTeX_source_panel=Hi\u1EC3n_th\u1ECB_b\u1EA3ng_\u0111i\u1EC1u_khi\u1EC3n_ngu\u1ED3n_BibTeX

Show_CiteSeer_column=Hi\u1EC3n_th\u1ECB_c\u1ED9t_CiteSeer

Show_confirmation_dialog_when_deleting_entries=Hi\u1EC3n_th\u1ECB_h\u1ED9p_tho\u1EA1i_x\u00E1c_nh\u1EADn_khi_x\u00F3a_c\u00E1c_m\u1EE5c

Show_description=Hi\u1EC3n_th\u1ECB_m\u00F4_t\u1EA3

Show_dynamic_groups_in_<i>italics</i>=Hi\u1EC3n_th\u1ECB_c\u00E1c_nh\u00F3m_\u0111\u1ED9ng_\u1EDF_d\u1EA1ng_<i>ch\u1EEF_nghi\u00EAng</i>

Show_entries_*not*_in_group_selection=Hi\u1EC3n_th\u1ECB_c\u00E1c_m\u1EE5c_*kh\u00F4ng*_\u1EDF_trong_ph\u00E9p_ch\u1ECDn_nh\u00F3m

Show_file_column=Hi\u1EC3n_th\u1ECB_c\u1ED9t_t\u1EADp_tin

Show_icons_for_groups=Hi\u1EC3n_th\u1ECB_c\u00E1c_bi\u1EC3u_t\u01B0\u1EE3ng_c\u1EE7a_nh\u00F3m
Show_last_names_only=Ch\u1EC9_hi\u1EC3n_th\u1ECB_H\u1ECD

Show_names_unchanged=Hi\u1EC3n_th\u1ECB_c\u00E1c_t\u00EAn_kh\u00F4ng_b\u1ECB_thay_\u0111\u1ED5i

Show_one_less_rows=Hi\u1EC3n_th\u1ECB_\u00EDt_h\u01A1n_m\u1ED9t_h\u00E0ng

Show_one_more_row=Hi\u1EC3n_th\u1ECB_th\u00EAm_m\u1ED9t_h\u00E0ng

Show_optional_fields=Hi\u1EC3n_th\u1ECB_c\u00E1c_tr\u01B0\u1EDDng_t\u00F9y_ch\u1ECDn

Show_PDF/PS_column=Hi\u1EC3n_th\u1ECB_c\u1ED9t_PDF/PS

Show_required_fields=Hi\u1EC3n_th\u1ECB_c\u00E1c_tr\u01B0\u1EDDng_c\u1EA7n_c\u00F3

Show_results_in_dialog=Hi\u1EC3n_th\u1ECB_c\u00E1c_k\u1EBFt_qu\u1EA3_trong_h\u1ED9p_tho\u1EA1i
Show_search_results_in_a_window=Hi\u1EC3n_th\u1ECB_k\u1EBFt_qu\u1EA3_t\u00ECm_trong_m\u1ED9t_c\u1EEDa_s\u1ED5

Show_URL/DOI_column=Hi\u1EC3n_th\u1ECB_c\u1ED9t_URL/DOI

Show_warning_dialog_when_a_duplicate_BibTeX_key_is_entered=Hi\u1EC3n_th\u1ECB_m\u1ED9t_h\u1ED9p_tho\u1EA1i_c\u1EA3nh_b\u00E1o_khi_m\u1ED9t_kh\u00F3a_BibTeX_b\u1ECB_tr\u00F9ng_\u0111\u01B0\u1EE3c_nh\u1EADp_v\u00E0o

Show_warning_dialog_when_an_empty_BibTeX_key_is_entered=Hi\u1EC3n_th\u1ECB_m\u1ED9t_h\u1ED9p_tho\u1EA1i_c\u1EA3nh_b\u00E1o_khi_m\u1ED9t_kh\u00F3a_BibTeX_r\u1ED7ng_\u0111\u01B0\u1EE3c_nh\u1EADp_v\u00E0o

Simple_HTML=HTML_d\u1EA1ng_\u0111\u01A1n_gi\u1EA3n

Size=K\u00EDch_th\u01B0\u1EDBc

Skip=B\u1ECF_qua
Skipped_-_No_PDF_linked=B\u1ECB_b\u1ECF_qua_-_Kh\u00F4ng_c\u00F3_t\u1EADp_tin_PDF_\u0111\u01B0\u1EE3c_li\u00EAn_k\u1EBFt
Skipped_-_PDF_does_not_exist=B\u1ECF_qua_-_t\u1EADp_tin_PDF_kh\u00F4ng_t\u1ED3n_t\u1EA1i

Skipped_entry.=M\u1EE5c_b\u1ECB_b\u1ECF_qua.

Sort_alphabetically=X\u1EBFp_theo_th\u1EE9_t\u1EF1_ABC

Sort_Automatically=X\u1EBFp_th\u1EE9_t\u1EF1_t\u1EF1_\u0111\u1ED9ng

Sort_order=Tr\u1EADt_t\u1EF1_x\u1EBFp_th\u1EE9_t\u1EF1

sort_subgroups=X\u1EBFp_th\u1EE9_t\u1EF1_c\u00E1c_nh\u00F3m_con
Sort_the_following_fields_as_numeric_fields=X\u1EBFp_th\u1EE9_t\u1EF1_c\u00E1c_tr\u01B0\u1EDDng_sau_nh\u01B0_th\u1EC3_ch\u00FAng_l\u00E0_c\u00E1c_tr\u01B0\u1EDDng_ki\u1EC3u_s\u1ED1

Sorted_all_subgroups_recursively.=X\u1EBFp_th\u1EE9_t\u1EF1_t\u1EA5t_c\u1EA3_c\u00E1c_nh\u00F3m_con_theo_c\u00E1ch_\u0111\u1EC7_quy.

Sorted_immediate_subgroups.=C\u00E1c_nh\u00F3m_con_c\u1EA1nh_nhau_\u0111\u01B0\u1EE3c_x\u1EBFp_th\u1EE9_t\u1EF1.

source_edit=ch\u1EC9nh_s\u1EEDa_ngu\u1ED3n
Special_Name_Formatters=C\u00E1c_tr\u00ECnh_\u0111\u1ECBnh_d\u1EA1ng_t\u00EAn_\u0111\u1EB7c_bi\u1EC7t

Special_table_columns=C\u00E1c_c\u1ED9t_b\u1EA3ng_\u0111\u1EB7c_bi\u1EC7t
SQL_connection_established.=K\u1EBFt_n\u1ED1i_SQL_\u0111\u01B0\u1EE3c_thi\u1EBFt_l\u1EADp

Start_incremental_search=B\u1EAFt_\u0111\u1EA7u_t\u00ECm_ki\u1EBFm_t\u0103ng_d\u1EA7n

Start_search=B\u1EAFt_\u0111\u1EA7u_t\u00ECm_ki\u1EBFm
Starting_import=\u0110ang_b\u1EAFt_\u0111\u1EA7u_nh\u1EADp

Statically_group_entries_by_manual_assignment=G\u1ED9p_nh\u00F3m_c\u00E1c_m\u1EE5c_theo_c\u00E1ch_t\u0129nh_b\u1EB1ng_ph\u00E9p_g\u00E1n_th\u1EE7_c\u00F4ng

Status=Tr\u1EA1ng_th\u00E1i

Stop=D\u1EEBng

Store=L\u01B0u_tr\u1EEF

Store_journal_abbreviations=L\u01B0u_tr\u1EEF_vi\u1EBFt_t\u1EAFt_c\u00E1c_t\u1EA1p_ch\u00ED

Store_string=L\u01B0u_tr\u1EEF_chu\u1ED7i

Store_the_following_fields_with_braces_around_capital_letters=L\u01B0u_tr\u1EEF_c\u00E1c_tr\u01B0\u1EDDng_sau_v\u1EDBi_ngo\u1EB7c_m\u00F3c_quanh_c\u00E1c_ch\u1EEF_hoa

Stored_definition_for_type=\u0110\u1ECBnh_ngh\u0129a_ki\u1EC3u_\u0111\u01B0\u1EE3c_l\u01B0u_tr\u1EEF

Stored_entry=M\u1EE5c_\u0111\u01B0\u1EE3c_l\u01B0u_tr\u1EEF

Strings=C\u00E1c_chu\u1ED7i

Strings_for_database=C\u00E1c_chu\u1ED7i_d\u00F9ng_cho_CSDL

Subdatabase_from_aux=CSDL_con_t\u1EEB_aux

Suggest=\u0110\u1EC1_ngh\u1ECB

Switches_between_full_and_abbreviated_journal_name_if_the_journal_name_is_known.=Chuy\u1EC3n_\u0111\u1ED5i_gi\u1EEFa_t\u00EAn_\u0111\u1EA7y_\u0111\u1EE7_v\u00E0_t\u00EAn_vi\u1EBFt_t\u1EAFt_t\u1EA1p_ch\u00ED_n\u1EBFu_bi\u1EBFt_t\u00EAn_t\u1EA1p_ch\u00ED_\u0111\u00F3.

Synchronize_%0_links=\u0110\u1ED3ng_b\u1ED9_h\u00F3a_%0_li\u00EAn_k\u1EBFt
Synchronize_file_links=\u0110\u1ED3ng_b\u1ED9_h\u00F3a_c\u00E1c_li\u00EAn_k\u1EBFt_t\u1EADp_tin

Synchronizing_%0_links...=\u0110ang_\u0111\u1ED3ng_b\u1ED9_h\u00F3a_%0_li\u00EAn_k\u1EBFt...

Table_appearance=Di\u1EC7n_m\u1EA1o_c\u1EE7a_b\u1EA3ng

Table_background_color=M\u00E0u_n\u1EC1n_c\u1EE7a_b\u1EA3ng

Table_grid_color=M\u00E0u_l\u01B0\u1EDBi_c\u1EE7a_b\u1EA3ng

Table_text_color=M\u00E0u_ch\u1EEF_c\u1EE7a_b\u1EA3ng

Tabname=T\u00EAn_b\u1EA3ng
Target_file_cannot_be_a_directory.=T\u1EADp_tin_\u0111\u00EDch_kh\u00F4ng_\u0111\u01B0\u1EE3c_ph\u00E9p_l\u00E0_m\u1ED9t_th\u01B0_m\u1EE5c.

Tertiary_sort_criterion=Ti\u00EAu_chu\u1EA9n_ph\u00E2n_lo\u1EA1i_c\u1EA5p_ba

Test=Ki\u1EC3m_tra

Text_Input_Area=V\u00F9ng_nh\u1EADp_ch\u1EEF

The_#_character_is_not_allowed_in_BibTeX_fields=K\u00FD_t\u1EF1_#_kh\u00F4ng_\u0111\u01B0\u1EE3c_ph\u00E9p_d\u00F9ng_trong_c\u00E1c_tr\u01B0\u1EDDng_BibTeX
The_#_character_is_not_allowed_in_BibTeX_strings_unless_escaped_as_in_'\\#'.=K\u00FD_t\u1EF1_#_kh\u00F4ng_\u0111\u01B0\u1EE3c_ph\u00E9p_d\u00F9ng_trong_c\u00E1c_chu\u1ED7i_BibTeX,_tr\u1EEB_khi_c\u00F3_d\u1EA5u_tho\u00E1t,_v\u00ED_d\u1EE5_nh\u01B0_'\\#'.

The_ACM_Digital_Library=Th\u01B0_vi\u1EC7n_s\u1ED1_ACM

The_chosen_date_format_for_new_entries_is_not_valid=\u0110\u1ECBnh_d\u1EA1ng_ng\u00E0y_\u0111\u01B0\u1EE3c_ch\u1ECDn_cho_c\u00E1c_m\u1EE5c_m\u1EDBi_kh\u00F4ng_h\u1EE3p_l\u1EC7

The_chosen_encoding_'%0'_could_not_encode_the_following_characters\:_=M\u00E3_h\u00F3a_\u0111\u00E3_ch\u1ECDn_'%0'_kh\u00F4ng_th\u1EC3_m\u00E3_h\u00F3a_\u0111\u01B0\u1EE3c_c\u00E1c_k\u00FD_t\u1EF1_sau:_

The_CiteSeer_fetch_operation_returned_zero_results.=L\u1EC7nh_l\u1EA5y_v\u1EC1_t\u1EEB_CiteSeer_tr\u1EA3_v\u1EC1_0_k\u1EBFt_qu\u1EA3.


The_current_version_features_a_new_way_of_handling_links_to_external_files.<br>To_take_advantage_of_this,_your_links_must_be_changed_into_the_new_format,_and<br>JabRef_must_be_configured_to_show_the_new_links.=Phi\u00EAn_b\u1EA3n_hi\u1EC7n_t\u1EA1i_c\u00F3_m\u1ED9t_c\u00E1ch_m\u1EDBi_\u0111\u1EC3_qu\u1EA3n_l\u00FD_c\u00E1c_li\u00EAn_k\u1EBFt_\u0111\u1EBFn_t\u1EADp_tin_ngo\u00E0i.<br>\u0110\u1EC3_s\u1EED_d\u1EE5ng_\u0111\u01B0\u1EE3c_\u0111\u1EB7c_\u0111i\u1EC3m_n\u00E0y,_li\u00EAn_k\u1EBFt_c\u1EE7a_b\u1EA1n_ph\u1EA3i_\u0111\u01B0\u1EE3c_\u0111\u1ED5i_sang_\u0111\u1ECBnh_d\u1EA1ng_m\u1EDBi,_v\u00E0<br>JabRef_ph\u1EA3i_\u0111\u01B0\u1EE3c_c\u1EA5u_h\u00ECnh_\u0111\u1EC3_hi\u1EC3n_th\u1ECB_c\u00E1c_li\u00EAn_k\u1EBFt_m\u1EDBi.

the_field_<b>%0</b>=tr\u01B0\u1EDDng_<b>%0</b>

The_file<BR>'%0'<BR>has_been_modified<BR>externally!=T\u1EADp_tin<BR>'%0'<BR>\u0111\u00E3_b\u1ECB_thay_\u0111\u1ED5i<BR>ngo\u00E0i_ch\u01B0\u01A1ng_tr\u00ECnh!


The_following_fetchers_are_available\:=C\u00E1c_tr\u00ECnh_l\u1EA5y_v\u1EC1_sau_c\u00F3_th\u1EC3_d\u00F9ng_\u0111\u01B0\u1EE3c:
The_following_formatters_could_not_be_found=Kh\u00F4ng_th\u1EC3_t\u00ECm_th\u1EA5y_c\u00E1c_tr\u00ECnh_\u0111\u1ECBnh_d\u1EA1ng_sau

The_group_"%0"_already_contains_the_selection.=Nh\u00F3m_"%0"_\u0111\u00E3_ch\u1EE9a_ph\u00E9p_ch\u1ECDn.
The_Guide_to_Computing_Literature=H\u01B0\u1EDBng_d\u1EABn_v\u1EC1_t\u00E0i_li\u1EC7u_m\u00E1y_t\u00EDnh

The_label_of_the_string_can_not_be_a_number.=Nh\u00E3n_c\u1EE7a_chu\u1ED7i_kh\u00F4ng_\u0111\u01B0\u1EE3c_l\u00E0_m\u1ED9t_con_s\u1ED1.

The_label_of_the_string_can_not_contain_spaces.=Nh\u00E3n_c\u1EE7a_chu\u1ED7i_kh\u00F4ng_\u0111\u01B0\u1EE3c_ch\u1EE9a_kho\u1EA3ng_tr\u1EAFng.

The_label_of_the_string_can_not_contain_the_'#'_character.=Nh\u00E3n_c\u1EE7a_chu\u1ED7i_kh\u00F4ng_\u0111\u01B0\u1EE3c_ch\u1EE9a_k\u00FD_t\u1EF1_'#'.

The_output_option_depends_on_a_valid_import_option.=T\u00F9y_ch\u1ECDn_\u0111\u1EA7u_ra_ph\u1EE5_thu\u1ED9c_v\u00E0o_m\u1ED9t_t\u00F9y_ch\u1ECDn_nh\u1EADp_h\u1EE3p_l\u1EC7.
The_PDF_contains_one_or_several_bibtex-records.\nDo_you_want_to_import_these_as_new_entries_into_the_current_database?=T\u1EADp_tin_PDF_ch\u1EE9a_m\u1ED9t_ho\u1EB7c_nhi\u1EC1u_b\u1EA3n_ghi_bibtex.\nB\u1EA1n_c\u00F3_mu\u1ED1n_nh\u1EADp_ch\u00FAng_v\u00E0o_th\u00E0nh_c\u00E1c_m\u1EE5c_m\u1EDBi_trong_CSDL_hi\u1EC7n_t\u1EA1i?

The_regular_expression_<b>%0</b>_is_invalid%c=Bi\u1EC3u_th\u1EE9c_ch\u00EDnh_t\u1EAFc_<b>%0</b>_kh\u00F4ng_h\u1EE3p_l\u1EC7%c
The_same_version_of_this_plugin_is_already_installed.=C\u00F9ng_phi\u00EAn_b\u1EA3n_ph\u1EA7n_m\u1EDF_r\u1ED9ng_n\u00E0y_\u0111\u00E3_\u0111\u01B0\u1EE3c_c\u00E0i_\u0111\u1EB7t.

The_search_is_case_insensitive.=Ph\u00E9p_t\u00ECm_kh\u00F4ng_ph\u00E2n_bi\u1EC7t_ch\u1EEF_hoa/th\u01B0\u1EDDng

The_search_is_case_sensitive.=Ph\u00E9p_t\u00ECm_c\u00F3_ph\u00E2n_bi\u1EC7t_ch\u1EEF_hoa/th\u01B0\u1EDDng.

The_string_has_been_removed_locally=Chu\u1ED7i_n\u00E0y_\u0111\u00E3_b\u1ECB_lo\u1EA1i_b\u1ECF_c\u1EE5c_b\u1ED9

The_type_name_can_not_contain_spaces.=Ki\u1EC3u_t\u00EAn_kh\u00F4ng_\u0111\u01B0\u1EE3c_ch\u1EE9a_kho\u1EA3ng_tr\u1EAFng.

The_URL_field_appears_to_be_empty_on_entry_number_=Tr\u01B0\u1EDDng_URL_b\u1ECB_r\u1ED7ng_s\u1ED1_hi\u1EC7u_m\u1EE5c_

There_are_possible_duplicates_(marked_with_a_'D'_icon)_that_haven't_been_resolved._Continue?=C\u00F3_th\u1EC3_c\u00F3_c\u00E1c_m\u1EE5c_b\u1ECB_tr\u00F9ng_(\u0111\u01B0\u1EE3c_\u0111\u00E1nh_d\u1EA5u_b\u1EB1ng_bi\u1EC3u_t\u01B0\u1EE3ng_'D')_ch\u01B0a_\u0111\u01B0\u1EE3c_gi\u1EA3i_quy\u1EBFt._C\u00F3_ti\u1EBFp_t\u1EE5c_kh\u00F4ng?

There_is_no_entry_type=Kh\u00F4ng_c\u00F3_ki\u1EC3u_m\u1EE5c

this_button_will_update=n\u00FAt_l\u1EC7nh_n\u00E0y_s\u1EBD_c\u1EADp_nh\u1EADt
This_database_was_written_using_an_older_version_of_JabRef.=CSDL_n\u00E0y_\u0111\u01B0\u1EE3c_ghi_b\u1EB1ng_c\u00E1ch_d\u00F9ng_phi\u00EAn_b\u1EA3n_JabRef_c\u0169_h\u01A1n.

This_entry_has_no_BibTeX_key._Generate_key_now?=M\u1EE5c_n\u00E0y_kh\u00F4ng_c\u00F3_kh\u00F3a_BibTeX._T\u1EA1o_kh\u00F3a_b\u00E2y_gi\u1EDD?

This_entry_is_incomplete=M\u1EE5c_n\u00E0y_ch\u01B0a_\u0111\u1EA7y_\u0111\u1EE7
This_entry_provides_no_URL_or_DOI_links.=M\u1EE5c_n\u00E0y_kh\u00F4ng_cung_c\u1EA5p_li\u00EAn_k\u1EBFt_URL_ho\u1EB7c_DOI.

This_entry_type_cannot_be_removed.=Kh\u00F4ng_th\u1EC3_lo\u1EA1i_b\u1ECF_ki\u1EC3u_m\u1EE5c_n\u00E0y.

This_external_link_is_of_the_type_'%0',_which_is_undefined._What_do_you_want_to_do?=Li\u00EAn_k\u1EBFt_ngo\u00E0i_c\u00F3_ki\u1EC3u_'%0',_thu\u1ED9c_lo\u1EA1i_kh\u00F4ng_\u0111\u01B0\u1EE3c_\u0111\u1ECBnh_ngh\u0129a._B\u1EA1n_mu\u1ED1n_l\u00E0m_g\u00EC?

This_feature_lets_new_files_be_opened_or_imported_into_an_already_running_instance_of_JabRef<BR>instead_of_opening_a_new_instance._For_instance,_this_is_useful_when_you_open_a_file_in_JabRef<br>from_your_web_browser.<BR>Note_that_this_will_prevent_you_from_running_more_than_one_instance_of_JabRef_at_a_time.=T\u00EDnh_ch\u1EA5t_n\u00E0y_cho_ph\u00E9p_c\u00E1c_t\u1EADp_tin_m\u1EDBi_c\u00F3_th\u1EC3_\u0111\u01B0\u1EE3c_m\u1EDF_ho\u1EB7c_nh\u1EADp_v\u00E0o_m\u1ED9t_phi\u00EAn_JabRef_\u0111ang_ch\u1EA1y<BR>thay_v\u00EC_ph\u1EA3i_m\u1EDF_m\u1ED9t_phi\u00EAn_l\u00E0m_vi\u1EC7c_m\u1EDBi._\u0110i\u1EC1u_n\u00E0y_c\u00F3_\u00EDch,_v\u00ED_d\u1EE5_nh\u01B0_khi_b\u1EA1n_m\u1EDF_m\u1ED9t_t\u1EADp_tin_trong_JabRef<br>t\u1EEB_tr\u00ECnh_duy\u1EC7t_web_c\u1EE7a_m\u00ECnh.<BR>L\u01B0u_\u00FD_r\u1EB1ng_\u0111i\u1EC1u_n\u00E0y_s\u1EBD_kh\u00F4ng_cho_ph\u00E9p_b\u1EA1n_ch\u1EA1y_nhi\u1EC1u_h\u01A1n_m\u1ED9t_phi\u00EAn_l\u00E0m_vi\u1EC7c_c\u1EE7a_JabRef_c\u00F9ng_l\u00FAc.

This_group_contains_entries_based_on_manual_assignment._Entries_can_be_assigned_to_this_group_by_selecting_them_then_using_either_drag_and_drop_or_the_context_menu._Entries_can_be_removed_from_this_group_by_selecting_them_then_using_the_context_menu._Every_entry_assigned_to_this_group_must_have_a_unique_key._The_key_may_be_changed_at_any_time_as_long_as_it_remains_unique.=Nh\u00F3m_n\u00E0y_ch\u1EE9a_c\u00E1c_m\u1EE5c_c\u0103n_c\u1EE9_tr\u00EAn_ph\u00E9p_g\u00E1n_th\u1EE7_c\u00F4ng._C\u00E1c_m\u1EE5c_c\u00F3_th\u1EC3_\u0111\u01B0\u1EE3c_g\u00E1n_v\u00E0o_nh\u00F3m_n\u00E0y_b\u1EB1ng_c\u00E1ch_ch\u1ECDn_ch\u00FAng_r\u1ED3i_d\u00F9ng_c\u00E1ch_k\u00E9o_th\u1EA3_ho\u1EB7c_tr\u00ECnh_\u0111\u01A1n_ng\u1EEF_c\u1EA3nh._C\u00E1c_m\u1EE5c_c\u00F3_th\u1EC3_b\u1ECB_lo\u1EA1i_b\u1ECF_kh\u1ECFi_nh\u00F3m_n\u00E0y_b\u1EB1ng_c\u00E1ch_ch\u1ECDn_ch\u00FAng_r\u1ED3i_d\u00F9ng_tr\u00ECnh_\u0111\u01A1n_ng\u1EEF_c\u1EA3nh._M\u1ED7i_m\u1EE5c_\u0111\u01B0\u1EE3c_g\u00E1n_v\u00E0o_nh\u00F3m_n\u00E0y_ph\u1EA3i_c\u00F3_m\u1ED9t_kh\u00F3a_kh\u00F4ng_tr\u00F9ng._C\u00F3_th\u1EC3_thay_\u0111\u1ED5i_kh\u00F3a_n\u00E0y_b\u1EA5t_k\u1EF3_l\u00FAc_n\u00E0o_n\u1EBFu_n\u00F3_v\u1EABn_kh\u00F4ng_b\u1ECB_tr\u00F9ng.

This_group_contains_entries_in_which=Nh\u00F3m_n\u00E0y_ch\u1EE9a_c\u00E1c_m\u1EE5c_m\u00E0

This_group_contains_entries_in_which_any_field_contains_the_regular_expression_<b>%0</b>=Nh\u00F3m_n\u00E0y_ch\u1EE9a_c\u00E1c_m\u1EE5c_m\u00E0_b\u1EA5t_k\u1EF3_tr\u01B0\u1EDDng_n\u00E0o_c\u0169ng_c\u00F3_Bi\u1EC3u_th\u1EE9c_ch\u00EDnh_t\u1EAFc_<b>%0</b>&nbsp;

This_group_contains_entries_in_which_any_field_contains_the_term_<b>%0</b>=Nh\u00F3m_n\u00E0y_ch\u1EE9a_c\u00E1c_m\u1EE5c_m\u00E0_b\u1EA5t_k\u1EF3_tr\u01B0\u1EDDng_n\u00E0o_c\u0169ng_ch\u1EE9a_thu\u1EADt_ng\u1EEF_<b>%0</b>&nbsp;

This_group_contains_entries_whose_<b>%0</b>_field_contains_the_keyword_<b>%1</b>=Nh\u00F3m_n\u00E0y_ch\u1EE9a_c\u00E1c_m\u1EE5c_c\u00F3_tr\u01B0\u1EDDng_<b>%0</b>_ch\u1EE9a_t\u1EEB_kh\u00F3a_<b>%1</b>&nbsp;

This_group_contains_entries_whose_<b>%0</b>_field_contains_the_regular_expression_<b>%1</b>=Nh\u00F3m_n\u00E0y_ch\u1EE9a_c\u00E1c_m\u1EE5c_c\u00F3_tr\u01B0\u1EDDng_<b>%0</b>_ch\u1EE9a_bi\u1EC3u_th\u1EE9c_ch\u00EDnh_t\u1EAFc_<b>%1</b>&nbsp;

This_is_a_simple_copy_and_paste_dialog_for_import_some_fields_from_normal_text.=\u0110\u00E2y_l\u00E0_m\u1ED9t_h\u1ED9p_tho\u1EA1i_sao_ch\u00E9p_v\u00E0_d\u00E1n_\u0111\u01A1n_gi\u1EA3n_\u0111\u1EC3_nh\u1EADp_m\u1ED9t_s\u1ED1_tr\u01B0\u1EDDng_t\u1EEB_d\u1EA1ng_ch\u1EEF_\u0111\u01A1n_gi\u1EA3n.

This_makes_JabRef_look_up_each_%0_extension_and_check_if_the_file_exists._If_not,_you_will_be_given_options<BR>to_resolve_the_problem.=\u0110i\u1EC1u_n\u00E0y_khi\u1EBFn_JabRef_t\u00ECm_m\u1ED7i_ph\u1EA7n_m\u1EDF_r\u1ED9ng_trong_t\u1ED5ng_s\u1ED1_%0_v\u00E0_ki\u1EC3m_tra_xem_t\u1EADp_tin_c\u00F3_t\u1ED3n_t\u1EA1i_kh\u00F4ng._N\u1EBFu_kh\u00F4ng,_b\u1EA1n_s\u1EBD_\u0111\u01B0\u1EE3c_cung_c\u1EA5p_c\u00E1c_t\u00F9y_ch\u1ECDn<BR>\u0111\u1EC3_gi\u1EA3i_quy\u1EBFt_v\u1EA5n_\u0111\u1EC1_n\u00E0y.
This_makes_JabRef_look_up_each_%0_link_and_check_if_the_file_exists._If_not,_you_will_be_given_options<BR>to_resolve_the_problem.=\u0110i\u1EC1u_n\u00E0y_khi\u1EBFn_cho_JabRef_t\u00ECm_t\u1EEBng_li\u00EAn_k\u1EBFt_trong_t\u1ED5ng_s\u1ED1_%0_v\u00E0_ki\u1EC3m_tra_xem_t\u1EADp_tin_c\u00F3_t\u1ED3n_t\u1EA1i_kh\u00F4ng._N\u1EBFu_kh\u00F4ng_b\u1EA1n_s\u1EBD_\u0111\u01B0\u1EE3c_cung_c\u1EA5p_c\u00E1c_t\u00F9y_ch\u1ECDn<BR>\u0111\u1EC3_gi\u1EA3i_quy\u1EBFt_tr\u1EE5c_tr\u1EB7c.

This_operation_requires_all_selected_entries_to_have_BibTex_keys_defined.=L\u1EC7nh_n\u00E0y_y\u00EAu_c\u1EA7u_t\u1EA5t_c\u1EA3_c\u00E1c_m\u1EE5c_\u0111\u01B0\u1EE3c_ch\u1ECDn_ph\u1EA3i_c\u00F3_kh\u00F3a_BibTex.
This_operation_requires_at_least_one_entry.=L\u1EC7nh_n\u00E0y_y\u00EAu_c\u1EA7u_ph\u1EA3i_c\u00F3_\u00EDt_nh\u1EA5t_m\u1ED9t_m\u1EE5c.

This_operation_requires_one_or_more_entries_to_be_selected.=L\u1EC7nh_n\u00E0y_y\u00EAu_c\u1EA7u_ph\u1EA3i_ch\u1ECDn_tr\u01B0\u1EDBc_m\u1ED9t_ho\u1EB7c_nhi\u1EC1u_m\u1EE5c.

This_will_move_all_external_links_from_the_'pdf'_and_'ps'_fields_into_the_'%0'_field._Proceed?=L\u1EC7nh_n\u00E0y_s\u1EBD_di_chuy\u1EC3n_t\u1EA5t_c\u1EA3_c\u00E1c_li\u00EAn_k\u1EBFt_ngo\u00E0i_t\u1EEB_c\u00E1c_tr\u01B0\u1EDDng_'pdf'_v\u00E0_'ps'_v\u00E0o_tr\u01B0\u1EDDng_'%0'._C\u00F3_ti\u1EBFn_h\u00E0nh_kh\u00F4ng?

To_set_up,_go_to_<B>Tools_->_Manage_journal_abbreviations</B>=\u0110\u1EC3_c\u00E0i_\u0111\u1EB7t,_ch\u1ECDn_<B>T\u00F9y_ch\u1ECDn_->_Qu\u1EA3n_l\u00FD_t\u00EAn_vi\u1EBFt_t\u1EAFt_c\u00E1c_t\u1EA1p_ch\u00ED</B>

Toggle_abbreviation=B\u1EADt/t\u1EAFt_vi\u1EBFt_t\u1EAFt
Toggle_entry_preview=B\u1EADt/t\u1EAFt_xem_tr\u01B0\u1EDBc_m\u1EE5c
Toggle_groups_interface=B\u1EADt/t\u1EAFt_giao_di\u1EC7n_nh\u00F3m
Toggle_search_panel=B\u1EADt/t\u1EAFt_b\u1EA3ng_\u0111i\u1EC1u_khi\u1EC3n_t\u00ECm_ki\u1EBFm

Try_different_encoding=Th\u1EED_m\u00E3_h\u00F3a_kh\u00E1c

Type=Ki\u1EC3u

Type_set_to_'other'=Ki\u1EC3u_\u0111\u01B0\u1EE3c_thi\u1EBFt_l\u1EADp_th\u00E0nh_'kh\u00E1c'
Unabbreviate_journal_names_of_the_selected_entries=B\u1ECF_vi\u1EBFt_t\u1EAFt_t\u00EAn_c\u00E1c_t\u1EA1p_ch\u00ED_c\u1EE7a_nh\u1EEFng_m\u1EE5c_\u0111\u01B0\u1EE3c_ch\u1ECDn
Unabbreviated_%0_journal_names.=%0_t\u00EAn_t\u1EA1p_ch\u00ED_\u0111\u01B0\u1EE3c_b\u1ECF_vi\u1EBFt_t\u1EAFt.

unable_to_access_LyX-pipe=kh\u00F4ng_th\u1EC3_truy_c\u1EADp_\u1ED1ng-d\u1EABn-LyX
Unable_to_copy_file=Kh\u00F4ng_th\u1EC3_ch\u00E9p_t\u1EADp_tin
Unable_to_create_backup=Kh\u00F4ng_th\u1EC3_t\u1EA1o_b\u1EA3n_d\u1EF1_ph\u00F2ng

Unable_to_create_graphical_interface=Kh\u00F4ng_th\u1EC3_t\u1EA1o_giao_di\u1EC7n_\u0111\u1ED3_h\u1ECDa
Unable_to_create_plugin_directory=Kh\u00F4ng_th\u1EC3_t\u1EA1o_th\u01B0_m\u1EE5c_ph\u1EA7n_m\u1EDF_r\u1ED9ng
Unable_to_create_user_plugin_directory=Kh\u00F4ng_th\u1EC3_t\u1EA1o_th\u01B0_m\u1EE5c_ph\u1EA7n_m\u1EDF_r\u1ED9ng_c\u1EE7a_ng\u01B0\u1EDDi_d\u00F9ng
Unable_to_find_full_text_article._No_search_algorithm_defined_for_the_'%0'_web_site.=Kh\u00F4ng_th\u1EC3_t\u00ECm_th\u1EA5y_b\u00E0i_vi\u1EBFt_\u0111\u1EA7y_\u0111\u1EE7._Kh\u00F4ng_c\u00F3_thu\u1EADt_to\u00E1n_t\u00ECm_ki\u1EBFm_\u0111\u01B0\u1EE3c_\u0111\u1ECBnh_ngh\u0129a_tr\u00EAn_trang_web_'%0'.
Unable_to_find_full_text_document_in_the_linked_web_page.=Kh\u00F4ng_th\u1EC3_t\u00ECm_th\u1EA5y_t\u00E0i_li\u1EC7u_\u0111\u1EA7y_\u0111\u1EE7_trong_trang_web_\u0111\u01B0\u1EE3c_li\u00EAn_k\u1EBFt.

Unable_to_open_file.=Kh\u00F4ng_th\u1EC3_m\u1EDF_t\u1EADp_tin.
Unable_to_open_link.=Kh\u00F4ng_th\u1EC3_m\u1EDF_li\u00EAn_k\u1EBFt.
Unable_to_open_link._The_application_'%0'_associated_with_the_file_type_'%1'_could_not_be_called.=Kh\u00F4ng_th\u1EC3_m\u1EDF_li\u00EAn_k\u1EBFt._Kh\u00F4ng_th\u1EC3_g\u1ECDi_\u1EE9ng_d\u1EE5ng_'%0'_li\u00EAn_quan_\u0111\u1EBFn_ki\u1EC3u_t\u1EADp_tin_'%1'.
Unable_to_parse_the_following_URL=Kh\u00F4ng_th\u1EC3_ph\u00E2n_t\u00E1ch_URL_sau
Unable_to_read_default_icon_theme.=Kh\u00F4ng_th\u1EC3_\u0111\u1ECDc_s\u1EAFc_th\u00E1i_bi\u1EC3u_t\u01B0\u1EE3ng_m\u1EB7c_\u0111\u1ECBnh
Unable_to_read_icon_theme_file=Kh\u00F4ng_th\u1EC3_\u0111\u1ECDc_t\u1EADp_tin_s\u1EAFc_th\u00E1i_bi\u1EC3u_t\u01B0\u1EE3ng
Unable_to_save_database=Kh\u00F4ng_th\u1EC3_l\u01B0u_CSDL

unable_to_write_to=Kh\u00F4ng_th\u1EC3_ghi_v\u00E0o
Undefined_file_type=Ki\u1EC3u_t\u1EADp_tin_kh\u00F4ng_\u0111\u01B0\u1EE3c_\u0111\u1ECBnh_ngh\u0129a

Undo=Quay_ng\u01B0\u1EE3c_l\u1EC7nh

Union=H\u1EE3p_nh\u1EA5t
Unknown=Kh\u00F4ng_r\u00F5

Unknown_bibtex_entries=C\u00E1c_m\u1EE5c_bibtex_c\u00F3_ki\u1EC3u_kh\u00F4ng_r\u00F5

unknown_edit=ki\u1EC3u_ch\u1EC9nh_s\u1EEDa_kh\u00F4ng_bi\u1EBFt

unknown_entry_type=ki\u1EC3u_m\u1EE5c_kh\u00F4ng_bi\u1EBFt

Unknown_export_format=\u0110\u1ECBnh_d\u1EA1ng_xu\u1EA5t_kh\u00F4ng_bi\u1EBFt

Unmark_all=Kh\u1EED_\u0111\u00E1nh_d\u1EA5u_t\u1EA5t_c\u1EA3
Unmark_all_entries_before_importing_new_entries_into_an_existing_database=Kh\u1EED_\u0111\u00E1nh_d\u1EA5u_t\u1EA5t_c\u1EA3_c\u00E1c_m\u1EE5c_tr\u01B0\u1EDBc_khi_nh\u1EADp_c\u00E1c_m\u1EE5c_m\u1EDBi_v\u00E0o_CSDL_hi\u1EC7n_c\u00F3

Unmark_entries=Kh\u1EED_\u0111\u00E1nh_d\u1EA5u_c\u00E1c_m\u1EE5c

Unmark_entry=Kh\u1EED_\u0111\u00E1nh_d\u1EA5u_m\u1EE5c

Unmarked_selected=Ph\u1EA7n_\u0111\u00E3_ch\u1ECDn_\u0111\u01B0\u1EE3c_kh\u1EED_\u0111\u00E1nh_d\u1EA5u

Unpack_EndNote_filter_set=G\u1EE1_\u0111\u00F3ng_g\u00F3i_b\u1ED9_l\u1ECDc_EndNote

Unpacked_file.=T\u1EADp_tin_\u0111\u00E3_\u0111\u01B0\u1EE3c_g\u1EE1_\u0111\u00F3ng_g\u00F3i.

Unsupported_version_of_class_%0:_%1=Phi\u00EAn_b\u1EA3n_c\u1EE7a_l\u1EDBp_%0_kh\u00F4ng_\u0111\u01B0\u1EE3c_h\u1ED7_tr\u1EE3:_%1

untitled=kh\u00F4ng_ti\u00EAu_\u0111\u1EC1

Up=L\u00EAn
Update_to_current_column_order=C\u1EADp_nh\u1EADt_theo_th\u1EE9_t\u1EF1_c\u1ED9t_hi\u1EC7n_t\u1EA1i

Update_to_current_column_widths=C\u1EADp_nh\u1EADt_chi\u1EC1u_r\u1ED9ng_c\u1ED9t_hi\u1EC7n_t\u1EA1i

Updated_group_selection=Ph\u00E9p_ch\u1ECDn_nh\u00F3m_\u0111\u00E3_\u0111\u01B0\u1EE3c_c\u1EADp_nh\u1EADt

Updating_entries...=\u0110ang_c\u1EADp_nh\u1EADt_c\u00E1c_m\u1EE5c...
Upgrade_external_links=N\u00E2ng_c\u1EA5p_c\u00E1c_li\u00EAn_k\u1EBFt_ngo\u00E0i
Upgrade_external_PDF/PS_links_to_use_the_'%0'_field.=N\u00E2ng_c\u1EA5p_c\u00E1c_li\u00EAn_k\u1EBFt_ngo\u00E0i_PDF/PS_\u0111\u1EC3_s\u1EED_d\u1EE5ng_tr\u01B0\u1EDDng_'%0'.
Upgrade_file=N\u00E2ng_c\u1EA5p_t\u1EADp_tin
Upgrade_old_external_file_links_to_use_the_new_feature=N\u00E2ng_c\u1EA5p_c\u00E1c_li\u00EAn_k\u1EBFt_t\u1EADp_tin_ngo\u00E0i_\u0111\u1EC3_s\u1EED_d\u1EE5ng_t\u00EDnh_ch\u1EA5t_m\u1EDBi
Upgraded_links.=C\u00E1c_li\u00EAn_k\u1EBFt_\u0111\u01B0\u1EE3c_n\u00E2ng_c\u1EA5p.
UPPER=TR\u00CAN
Upper_Each_First=Ph\u00EDa_tr\u00EAn_m\u1ED7i_m\u1EE5c_\u0111\u1EA7u_ti\u00EAn
Upper_first=Ph\u00EDa_tr\u00EAn_\u0111\u1EA7u_ti\u00EAn

usage=c\u00E1ch_d\u00F9ng

Use_antialiasing_font=D\u00F9ng_ph\u00F4ng_ch\u1EEF_ch\u1ED1ng_r\u0103ng_c\u01B0a
Use_autocompletion_for_the_following_fields=D\u00F9ng_t\u00EDnh_ch\u1EA5t_t\u1EF1_\u0111i\u1EC1n_\u0111\u1EA7y_\u0111\u1EE7_cho_c\u00E1c_tr\u01B0\u1EDDng_sau
Use_custom_icon_theme=D\u00F9ng_s\u1EAFc_th\u00E1i_bi\u1EC3u_t\u01B0\u1EE3ng_t\u00F9y_ch\u1ECDn
Use_default_viewer=D\u00F9ng_tr\u00ECnh_xem_m\u1EB7c_\u0111\u1ECBnh

Use_IEEE_LaTeX_abbreviations=D\u00F9ng_c\u00E1c_ch\u1EEF_vi\u1EBFt_t\u1EAFt_ki\u1EC3u_IEEE_LaTeX

Use_inspection_window_also_when_a_single_entry_is_imported.=D\u00F9ng_c\u1EEDa_s\u1ED5_ki\u1EC3m_tra_ngay_c\u1EA3_khi_ch\u1EC9_c\u00F3_m\u1ED9t_m\u1EE5c_\u0111\u01B0\u1EE3c_nh\u1EADp_v\u00E0o.
Use_native_file_dialog=D\u00F9ng_h\u1ED9p_tho\u1EA1i_t\u1EADp_tin_ki\u1EC3u_nguy\u00EAn_th\u1EE7y

Use_other_look_and_feel=D\u00F9ng_di\u1EC7n_m\u1EA1o_kh\u00E1c
Use_Regular_Expression_Search=D\u00F9ng_ph\u00E9p_t\u00ECm_b\u1EB1ng_bi\u1EC3u_th\u1EE9c_ch\u00EDnh_t\u1EAFc

Use_regular_expressions=D\u00F9ng_c\u00E1c_bi\u1EC3u_th\u1EE9c_ch\u00EDnh_t\u1EAFc

Use_the_following_delimiter_character(s)=D\u00F9ng_(c\u00E1c)_k\u00FD_t\u1EF1_ph\u00E2n_t\u00E1ch_c\u1ED9t_sau
User_does_not_have_sufficient_privileges.\n=Ng\u01B0\u1EDDi_d\u00F9ng_kh\u00F4ng_c\u00F3_\u0111\u1EE7_quy\u1EC1n_\u01B0u_ti\u00EAn.\n
Username_\:=T\u00EAn_ng\u01B0\u1EDDi_d\u00F9ng:

Value_cleared_externally=Gi\u00E1_tr\u1ECB_b\u1ECB_x\u00F3a_ngo\u00E0i_ch\u01B0\u01A1ng_tr\u00ECnh

Value_set_externally=Gi\u00E1_tr\u1ECB_\u0111\u01B0\u1EE3c_thi\u1EBFt_l\u1EADp_ngo\u00E0i_ch\u01B0\u01A1ng_tr\u00ECnh

verify_that_LyX_is_running_and_that_the_lyxpipe_is_valid=ki\u1EC3m_tra_xem_LyX_c\u00F3_ch\u1EA1y_v\u00E0_lyxpipe_c\u00F3_h\u1EE3p_l\u1EC7_kh\u00F4ng
Version=Phi\u00EAn_b\u1EA3n

View=Xem
Vim_Server_Name=T\u00EAn_Server_Vim

Waiting_for_ArXiv...=\u0110ang_ch\u1EDD_ArXiv...

Warn_about_unresolved_duplicates_when_closing_inspection_window=C\u1EA3nh_b\u00E1o_v\u1EC1_c\u00E1c_m\u1EE5c_tr\u00F9ng_ch\u01B0a_\u0111\u01B0\u1EE3c_gi\u1EA3i_quy\u1EBFt_khi_\u0111\u00F3ng_c\u1EEDa_s\u1ED5_ki\u1EC3m_tra

Warn_before_overwriting_existing_keys=C\u1EA3nh_b\u00E1o_tr\u01B0\u1EDBc_khi_ghi_\u0111\u00E8_c\u00E1c_kh\u00F3a_hi\u1EC7n_c\u00F3

Warning=C\u1EA3nh_b\u00E1o
Warning\:_could_not_complete_file_repair;_your_file_may_have_been_corrupted._Error_message=C\u1EA3nh_b\u00E1o:_Kh\u00F4ng_th\u1EC3_ho\u00E0n_t\u1EA5t_s\u1EEDa_ch\u1EEFa_t\u1EADp_tin;_t\u1EADp_tin_c\u1EE7a_b\u1EA1n_c\u00F3_th\u1EC3_b\u1ECB_h\u1ECFng._Th\u00F4ng_b\u00E1o_l\u1ED7i

Warning_there_is_a_duplicate_key=C\u1EA3nh_b\u00E1o_c\u00F3_m\u1ED9t_kh\u00F3a_b\u1ECB_tr\u00F9ng

Warnings=C\u00E1c_c\u1EA3nh_b\u00E1o

web_link=li\u00EAn_k\u1EBFt_web

What_do_you_want_to_do?=B\u1EA1n_mu\u1ED1n_l\u00E0m_g\u00EC?

When_adding/removing_keywords,_separate_them_by=Khi_th\u00EAm/lo\u1EA1i_b\u1ECF_c\u00E1c_t\u1EEB_kh\u00F3a,_c\u00E1ch_bi\u1EC7t_ch\u00FAng_ra_b\u1EB1ng

When_opening_file_link,_search_for_matching_file_if_no_link_is_defined=Khi_m\u1EDF_li\u00EAn_k\u1EBFt_t\u1EADp_tin,_t\u00ECm_t\u1EADp_tin_kh\u1EDBp_n\u1EBFu_li\u00EAn_k\u1EBFt_kh\u00F4ng_\u0111\u01B0\u1EE3c_\u0111\u1ECBnh_ngh\u0129a
Will_write_XMP-metadata_to_the_PDFs_linked_from_selected_entries.=S\u1EBD_ghi_\u0111\u1EB7c_t\u1EA3_d\u1EEF_li\u1EC7u_XMP_v\u00E0o_c\u00E1c_PDF_\u0111\u01B0\u1EE3c_li\u00EAn_k\u1EBFt_t\u1EEB_c\u00E1c_m\u1EE5c_\u0111\u00E3_ch\u1ECDn.

with=v\u1EDBi

Word=T\u1EEB
Write_BibtexEntry_as_XMP-metadata_to_PDF.=Ghi_m\u1EE5c_Bibtex_d\u01B0\u1EDBi_d\u1EA1ng_\u0111\u1EB7c_t\u1EA3_d\u1EEF_li\u1EC7u_XMP_v\u00E0o_PDF.

Write_XMP=Ghi_XMP
Write_XMP-metadata=Ghi_\u0111\u1EB7c_t\u1EA3_d\u1EEF_li\u1EC7u_XMP
Write_XMP-metadata_for_all_PDFs_in_current_database?=Ghi_\u0111\u1EB7c_t\u1EA3_d\u1EEF_li\u1EC7u_XMP_cho_t\u1EA5t_c\u1EA3_c\u00E1c_PDF_trong_CSDL_hi\u1EC7n_t\u1EA1i?
Writing_XMP=\u0110ang_ghi_XMP
Writing_XMP_metadata...=\u0110ang_ghi_\u0111\u1EB7c_t\u1EA3_d\u1EEF_li\u1EC7u_XMP...
Writing_XMP_metadata_for_selected_entries...=\u0110ang_ghi_\u0111\u1EB7c_t\u1EA3_d\u1EEF_li\u1EC7u_XMP_cho_c\u00E1c_m\u1EE5c_\u0111\u01B0\u1EE3c_ch\u1ECDn...
Writing_XMP_to_'%0'...=\u0110ang_ghi_XMP_v\u00E0o_'%0'...

Wrong_file_format=\u0110\u1ECBnh_d\u1EA1ng_t\u1EADp_tin_b\u1ECB_sai

Wrote_XMP-metadata=\u0110\u00E3_ghi_\u0111\u1EB7c_t\u1EA3_d\u1EEF_li\u1EC7u_XMP
Wrote_XMP_to_'%0'.=\u0110\u00E3_ghi_XMP_v\u00E0o_'%0'.

XMP-annotated_PDF=PDF_c\u00F3_ch\u00FA_gi\u1EA3i_XMP
XMP_Export_Privacy_Settings=C\u00E1c_thi\u1EBFt_l\u1EADp_ri\u00EAng_v\u1EC1_Xu\u1EA5t_XMP
XMP_metadata=\u0110\u1EB7c_t\u1EA3_d\u1EEF_li\u1EC7u_XMP
XMP_metadata_found_in_PDF\:_%0=\u0110\u1EB7c_t\u1EA3_d\u1EEF_li\u1EC7u_XMP_c\u00F3_trong_PDF:_%0
You_can_only_rename_one_field_at_a_time=B\u1EA1n_ch\u1EC9_c\u00F3_th\u1EC3_\u0111\u1ED5i_t\u00EAn_m\u1ED9t_tr\u01B0\u1EDDng_m\u1ED9t_l\u1EA7n

You_have_changed_the_language_setting._You_must_restart_JabRef_for_this_to_come_into_effect.=B\u1EA1n_\u0111\u00E3_thay_\u0111\u1ED5i_thi\u1EBFt_l\u1EADp_ng\u00F4n_ng\u1EEF._B\u1EA1n_ph\u1EA3i_kh\u1EDFi_.\u0111\u1ED9ng_l\u1EA1i_JabRef_\u0111\u1EC3_l\u1EC7nh_c\u00F3_t\u00E1c_d\u1EE5ng.
You_have_changed_the_look_and_feel_setting._You_must_restart_JabRef_for_this_to_come_into_effect.=B\u1EA1n_\u0111\u00E3_thay_\u0111\u1ED5i_thi\u1EBFt_l\u1EADp_di\u1EC7n_m\u1EA1o._B\u1EA1n_ph\u1EA3i_kh\u1EDFi_.\u0111\u1ED9ng_l\u1EA1i_JabRef_\u0111\u1EC3_l\u1EC7nh_c\u00F3_t\u00E1c_d\u1EE5ng.

You_have_changed_the_menu_and_label_font_size._You_must_restart_JabRef_for_this_to_come_into_effect.=B\u1EA1n_\u0111\u00E3_thay_\u0111\u1ED5i_k\u00EDch_th\u01B0\u1EDBc_ph\u00F4ng_ch\u1EEF_c\u1EE7a_tr\u00ECnh_\u0111\u01A1n_v\u00E0_nh\u00E3n._B\u1EA1n_ph\u1EA3i_kh\u1EDFi_\u0111\u1ED9ng_l\u1EA1i_JabRef_\u0111\u1EC3_l\u1EC7nh_c\u00F3_hi\u1EC7u_l\u1EF1c.

You_have_cleared_this_field._Original_value=B\u1EA1n_\u0111\u00E3_x\u00F3a_tr\u01B0\u1EDDng_n\u00E0y._Gi\u00E1_tr\u1ECB_ban_\u0111\u1EA7u

You_have_entered_an_invalid_search_'%0'.=B\u1EA1n_\u0111\u00E3_nh\u1EADp_m\u1ED9t_ph\u00E9p_t\u00ECm_kh\u00F4ng_h\u1EE3p_l\u1EC7_'%0'.

You_must_choose_a_file_name_to_store_journal_abbreviations=B\u1EA1n_ph\u1EA3i_ch\u1ECDn_m\u1ED9t_t\u00EAn_t\u1EADp_tin_\u0111\u1EC3_l\u01B0u_tr\u1EEF_c\u00E1c_vi\u1EBFt_t\u1EAFt_t\u00EAn_t\u1EA1p_ch\u00ED

You_must_enter_an_integer_value_in_the_text_field_for=B\u1EA1n_ph\u1EA3i_nh\u1EADp_gi\u00E1_tr\u1ECB_s\u1ED1_nguy\u00EAn_trong_tr\u01B0\u1EDDng_ch\u1EEF_cho

You_must_fill_in_a_name_for_the_entry_type.=B\u1EA1n_ph\u1EA3i_nh\u1EADp_m\u1ED9t_t\u00EAn_cho_ki\u1EC3u_m\u1EE5c.

You_must_restart_JabRef_for_the_new_key_bindings_to_work_properly.=B\u1EA1n_ph\u1EA3i_kh\u1EDFi_\u0111\u1ED9ng_l\u1EA1i_JabRef_\u0111\u1EC3_c\u00E1c_t\u1ED5_h\u1EE3p_ph\u00EDm_m\u1EDBi_ho\u1EA1t_\u0111\u1ED9ng_\u0111\u01B0\u1EE3c.

You_must_select_at_least_one_row_to_perform_this_operation.=B\u1EA1n_ph\u1EA3i_ch\u1ECDn_\u00EDt_nh\u1EA5t_m\u1ED9t_h\u00E0ng_\u0111\u1EC3_th\u1EF1c_hi\u1EC7n_l\u1EC7nh_n\u00E0y.

You_must_set_both_BibTeX_key_and_%0_directory=B\u1EA1n_ph\u1EA3i_thi\u1EBFt_l\u1EADp_c\u1EA3_kh\u00F3a_BibTeX_l\u1EABn_th\u01B0_m\u1EE5c_%0

Your_new_key_bindings_have_been_stored.=T\u1ED5_h\u1EE3p_ph\u00EDm_t\u1EAFt_m\u1EDBi_c\u1EE7a_b\u1EA1n_\u0111\u00E3_\u0111\u01B0\u1EE3c_l\u01B0u_tr\u1EEF.

Ensure_unique_keys_using_letters_(a,_b,_...)=
Ensure_unique_keys_using_letters_(b,_c,_...)=
Always_add_letter_(a,_b,_...)_to_generated_keys=

Table_and_entry_editor_colors=
Entry_editor_font_color=
Entry_editor_background_color=
Entry_editor_active_background_color=
Entry_editor_invalid_field_color=
BibLaTeX_mode=
Do_you_want_to_resolve_duplicate_keys_now?=
Duplicate_BibTeX_key=
Duplicate_key=
Find_and_remove_duplicate_BibTeX_keys=
Finished_resolving_duplicate_BibTeX_keys._%0_entries_modified.=
Generate_key=
Import_marking_color=
Legacy_file_directory_setting_found_-_clear_setting?=
Optional_fields_2=
Please_wait=
Resolving_duplicate_BibTeX_keys...=
Retain_legacy_file_directory_setting_(for_older_versions_of_JabRef)=
Set_user_specific_file_directory=
The_current_version_features_a_new_way_of_storing_the_file_directory_setting_of<br>a_database._This_enables_multiple_users_of_the_same_database_file_to_keep_their<br>own_personal_setting_for_the_path_to_the_file_directory.<br>To_take_advantage_of_this,_your_file_directory_setting_must_be_changed_into_the<br>new_format.=
This_database_contains_one_or_more_duplicated_BibTeX_keys.=
Waiting_for_save_operation_to_finish=

An_autosave_file_was_found_for_this_database._This_could_indicate_=
that_JabRef_didn't_shut_down_cleanly_last_time_the_file_was_used.=