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
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
|
# Copyright 2010-2020 TeX Live Team
# This file is distributed under the same license as the TeX Live package.
# Koji Yokota <yokota33@gmail.com>, 2010, 2011, 2012, 2014, 2015.
# Takuto Asakura <tkt.asakura@gmail.com>, 2019, 2020.
msgid ""
msgstr ""
"Project-Id-Version: TeX Live translation\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
"POT-Creation-Date: 2020-03-17 01:55+0100\n"
"PO-Revision-Date: 2020-03-14 05:48+0900\n"
"Last-Translator: Takuto Asakura <tkt.asakura@gmail.com>\n"
"Language-Team: TL Translation Team <tex-live@tug.org>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Lokalize 1.5\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: tlpkg/installer/tracked-install.pl:27
msgid "Installation process"
msgstr "ã€ã³ã¹ããŒã«åŠç"
#: tlpkg/installer/tracked-install.pl:41
#: tlpkg/installer/install-menu-wizard.pl:383
#: tlpkg/installer/install-menu-perltk.pl:758
#: tlpkg/installer/install-menu-perltk.pl:798
#: tlpkg/installer/install-menu-perltk.pl:851
#: tlpkg/installer/install-menu-perltk.pl:922
#: tlpkg/installer/install-menu-perltk.pl:987
#: tlpkg/installer/install-menu-perltk.pl:1021
#: texmf-dist/scripts/texlive/tlmgrgui.pl:629
#: texmf-dist/scripts/texlive/tlmgrgui.pl:630
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1052
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1264
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1386
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1456
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1466
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1529
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1717
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1782
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1819
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1852
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2469
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2506
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2587
#: tlpkg/installer/install-tl-gui.tcl:542
#: tlpkg/installer/install-tl-gui.tcl:660
#: tlpkg/installer/install-tl-gui.tcl:745
#: tlpkg/installer/install-tl-gui.tcl:933
#: tlpkg/installer/install-tl-gui.tcl:1003
#: tlpkg/installer/install-tl-gui.tcl:1083
#: tlpkg/installer/install-tl-gui.tcl:1303 tlpkg/tltcl/tltcl.tcl:614
#: texmf-dist/scripts/tlshell/tlshell.tcl:163
#: texmf-dist/scripts/tlshell/tlshell.tcl:1262
msgid "Cancel"
msgstr "ãã£ã³ã»ã«"
#: tlpkg/installer/tracked-install.pl:81
msgid "Scroll back to inspect warnings"
msgstr "èŠåã®äœçœ®ã«ã¹ã¯ããŒã«"
#: tlpkg/installer/tracked-install.pl:89
msgid "Finish"
msgstr "çµäº"
#: tlpkg/installer/install-menu-wizard.pl:41
#: tlpkg/installer/install-menu-perltk.pl:445
#: tlpkg/installer/install-tl-gui.tcl:1571
msgid "Default paper size"
msgstr "ããã©ã«ãçšçŽãµã€ãº"
#: tlpkg/installer/install-menu-wizard.pl:42
#: tlpkg/installer/install-menu-perltk.pl:530
msgid "Add menu shortcuts"
msgstr "ã¡ãã¥ãŒã·ã§ãŒãã«ãããè¿œå "
#: tlpkg/installer/install-menu-wizard.pl:43
#: tlpkg/installer/install-menu-perltk.pl:543
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1245
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1828
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1832
msgid "Change file associations"
msgstr "ãã¡ã€ã«ã®é¢é£ä»ããå€æŽ"
#: tlpkg/installer/install-menu-wizard.pl:44
#: tlpkg/installer/install-menu-perltk.pl:511
msgid "Adjust PATH setting in registry"
msgstr "ã¬ãžã¹ããªã® PATH èšå®ã調æŽ"
#: tlpkg/installer/install-menu-wizard.pl:45
#: tlpkg/installer/install-menu-perltk.pl:556
msgid "Installation for all users"
msgstr "ãã¹ãŠã®ãŠãŒã¶çšã«ã€ã³ã¹ããŒã«"
#: tlpkg/installer/install-menu-wizard.pl:46
#: tlpkg/installer/install-menu-perltk.pl:569
#: tlpkg/installer/install-tl-gui.tcl:1663
msgid "Install TeXworks front end"
msgstr "TeXworks ãã€ã³ã¹ããŒã«"
#: tlpkg/installer/install-menu-wizard.pl:136
#: tlpkg/installer/install-menu-perltk.pl:215
#: tlpkg/installer/install-menu-perltk.pl:688
#, perl-format
msgid "TeX Live %s Installation"
msgstr "TeX Live %s ã®ã€ã³ã¹ããŒã«"
#: tlpkg/installer/install-menu-wizard.pl:151
#: tlpkg/installer/install-menu-perltk.pl:630
#: tlpkg/installer/install-menu-perltk.pl:676
#: texmf-dist/scripts/texlive/tlmgrgui.pl:544
#: tlpkg/installer/install-tl-gui.tcl:1354
#: texmf-dist/scripts/tlshell/tlshell.tcl:2143
msgid "Quit"
msgstr "çµäº"
#: tlpkg/installer/install-menu-wizard.pl:153
#: tlpkg/installer/install-menu-wizard.pl:268
#: tlpkg/installer/install-menu-wizard.pl:337
#: tlpkg/installer/install-menu-wizard.pl:389
#: tlpkg/installer/install-menu-wizard.pl:396
#: tlpkg/installer/install-menu-wizard.pl:473
#: tlpkg/installer/install-menu-wizard.pl:561
#: tlpkg/installer/install-menu-wizard.pl:607
msgid "< Back"
msgstr "âæ»ã"
#: tlpkg/installer/install-menu-wizard.pl:154
#: tlpkg/installer/install-menu-wizard.pl:198
#: tlpkg/installer/install-menu-wizard.pl:269
#: tlpkg/installer/install-menu-wizard.pl:338
#: tlpkg/installer/install-menu-wizard.pl:474
#: tlpkg/installer/install-menu-wizard.pl:562
msgid "Next >"
msgstr "次ãžâ"
#: tlpkg/installer/install-menu-wizard.pl:176
#, perl-format
msgid ""
"Welcome to the installation of TeX Live %s\n"
"http://tug.org/texlive\n"
"\n"
"This wizard will guide you through the installation."
msgstr ""
"TeX Live %s ã€ã³ã¹ããŒã©ãžãããã\n"
"http://tug.org/texlive\n"
"\n"
"ãã®ãŠã£ã¶ãŒããã€ã³ã¹ããŒã«äœæ¥ããæ¡å
ããŸãïŒ"
#: tlpkg/installer/install-menu-wizard.pl:177
msgid ""
"In case of trouble, try to disable your virus scanner during installation."
msgstr "ãã©ãã«ãçºçããå Žåã¯ïŒãŠã€ã«ã¹å¯Ÿçãœãããç¡å¹åããŠã¿ãŠãã ããïŒ"
#: tlpkg/installer/install-menu-wizard.pl:179
msgid ""
"For an advanced, customizable installation, please consult\n"
"the web pages or installation guide."
msgstr ""
"é«åºŠãªã«ã¹ã¿ãã€ãºãé©çšããã€ã³ã¹ããŒã«ãè¡ãããå Žåã¯ïŒ\n"
"ãŠã§ããµã€ããã€ã³ã¹ããŒã©ã®ããã¥ã¡ã³ããåç
§ããŠãã ããïŒ"
#: tlpkg/installer/install-menu-wizard.pl:182
msgid "Or use install-tl-advanced.bat."
msgstr "ãŸã㯠install-tl-advanced.bat ãã䜿çšãã ããïŒ"
#: tlpkg/installer/install-menu-wizard.pl:183
msgid "Or specify --gui expert to install-tl."
msgstr "ãŸã㯠install-tl ã« --gui expert ãªãã·ã§ã³ãæå®ããŠãã ããïŒ"
#: tlpkg/installer/install-menu-wizard.pl:192
msgid "Change default repository"
msgstr "ããã©ã«ããªããžããªãå€æŽ"
#: tlpkg/installer/install-menu-wizard.pl:229
#: tlpkg/installer/install-menu-perltk.pl:229
msgid "Command line repository"
msgstr "ã³ãã³ãã©ã€ã³ãªããžã㪠"
#: tlpkg/installer/install-menu-wizard.pl:235
#: tlpkg/installer/install-menu-perltk.pl:235
msgid "LOCAL REPOSITORIES"
msgstr "ããŒã«ã«ãªããžããª"
#: tlpkg/installer/install-menu-wizard.pl:239
#: tlpkg/installer/install-menu-perltk.pl:239
msgid "NETWORK REPOSITORIES"
msgstr "ãããã¯ãŒã¯ãªããžããª"
#: tlpkg/installer/install-menu-wizard.pl:240
#: tlpkg/installer/install-menu-perltk.pl:241
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1484
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1516
msgid "Default remote repository"
msgstr "ããã©ã«ããªã¢ãŒãã¬ããžããª"
#: tlpkg/installer/install-menu-wizard.pl:246
#: tlpkg/installer/install-menu-perltk.pl:246
msgid "Select repository"
msgstr "ãªããžããªãéžæ"
#: tlpkg/installer/install-menu-wizard.pl:248
msgid "Mirror:"
msgstr "ãã©ãŒïŒ"
#: tlpkg/installer/install-menu-wizard.pl:300
msgid "Continent"
msgstr "倧éž"
#: tlpkg/installer/install-menu-wizard.pl:314
msgid "Countries"
msgstr "åœ"
#: tlpkg/installer/install-menu-wizard.pl:332
msgid "Mirrors"
msgstr "ãã©ãŒ"
#: tlpkg/installer/install-menu-wizard.pl:379
msgid "Please wait while the repository database is loaded."
msgstr "ãªããžããªããŒã¿ããŒã¹ãèªã¿èŸŒãŸãããŸã§ãåŸ
ã¡ãã ããïŒ"
#: tlpkg/installer/install-menu-wizard.pl:380
msgid "This will take some time!"
msgstr "ããã«ã¯å°ãæéãããããŸãïŒ"
#: tlpkg/installer/install-menu-wizard.pl:387
#: tlpkg/installer/install-menu-perltk.pl:277
msgid "Could not load remote TeX Live Database:"
msgstr "ãªã¢ãŒã TeX Live ããŒã¿ããŒã¹ãèªã¿èŸŒããŸããã§ããïŒ"
#: tlpkg/installer/install-menu-wizard.pl:388
#: tlpkg/installer/install-menu-wizard.pl:395
msgid "Please go back and select a different mirror."
msgstr "åã«æ»ã£ãŠå¥ã®ãã©ãŒãéžæããŠãã ããïŒ"
#: tlpkg/installer/install-menu-wizard.pl:391
#, perl-format
msgid ""
"The TeX Live versions of the local installation\n"
"and the repository being accessed are not compatible:\n"
" local: %s\n"
"repository: %s"
msgstr ""
"ããŒã«ã«ã«ã€ã³ã¹ããŒã«æžã¿ã® TeX Live ã®ããŒãžã§ã³ãš\n"
"ã¢ã¯ã»ã¹ãããªããžããªã®ããŒãžã§ã³ã«äºææ§ããããŸãã:\n"
" ããŒã«ã«ïŒ%s\n"
"ãªããžããªïŒ%s"
#: tlpkg/installer/install-menu-wizard.pl:423
#: tlpkg/installer/install-menu-wizard.pl:587
msgid "Destination folder:"
msgstr "ã€ã³ã¹ããŒã«å
ã®ãã©ã«ãïŒ"
#: tlpkg/installer/install-menu-wizard.pl:425
#: tlpkg/installer/install-menu-perltk.pl:317
#: tlpkg/installer/install-menu-perltk.pl:329
#: tlpkg/installer/install-menu-perltk.pl:343
#: tlpkg/installer/install-menu-perltk.pl:375
#: tlpkg/installer/install-menu-perltk.pl:389
#: tlpkg/installer/install-menu-perltk.pl:402
#: tlpkg/installer/install-menu-perltk.pl:414
#: tlpkg/installer/install-menu-perltk.pl:427
#: tlpkg/installer/install-menu-perltk.pl:519
#: tlpkg/installer/install-menu-perltk.pl:535
#: tlpkg/installer/install-menu-perltk.pl:548
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1150
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1188
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1196
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1205
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1213
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1221
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1249
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1373
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1602
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2433
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2438
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2443
#: tlpkg/installer/install-tl-gui.tcl:642
#: tlpkg/installer/install-tl-gui.tcl:1402
#: tlpkg/installer/install-tl-gui.tcl:1418
#: tlpkg/installer/install-tl-gui.tcl:1426
#: tlpkg/installer/install-tl-gui.tcl:1436
#: tlpkg/installer/install-tl-gui.tcl:1445
#: tlpkg/installer/install-tl-gui.tcl:1453
#: tlpkg/installer/install-tl-gui.tcl:1460
#: tlpkg/installer/install-tl-gui.tcl:1506
#: tlpkg/installer/install-tl-gui.tcl:1525
msgid "Change"
msgstr "å€æŽ"
#: tlpkg/installer/install-menu-wizard.pl:447
msgid ""
"The destination folder will contain the installation.\n"
"It is strongly recommended to keep the year as the last component."
msgstr ""
"察象ãã©ã«ãã«ã¯ïŒã€ã³ã¹ããŒã«ãããã¡ã€ã«ãå
¥ããŸãïŒ\n"
"æ«å°Ÿã«å¹Žãå
¥ãããŸãŸã«ããŠããããšã匷ãæšå¥šããŸãïŒ"
#: tlpkg/installer/install-menu-wizard.pl:469
#: tlpkg/installer/install-menu-perltk.pl:1080
msgid "disk space required:"
msgstr "å¿
èŠãã£ã¹ã¯å®¹éïŒ"
#: tlpkg/installer/install-menu-wizard.pl:489
#: tlpkg/installer/install-menu-perltk.pl:1091
msgid "(default not allowed or not writable - please change!)"
msgstr "ïŒããã©ã«ãå€ãäžæ£ãŸãã¯æžã蟌ã¿äžèœã§ãïŒå€æŽããŠãã ããïŒïŒ"
#: tlpkg/installer/install-menu-wizard.pl:534
msgid "This screen allows you to configure some options"
msgstr "ãã®ç»é¢ã§ã¯ïŒããã€ãã®ãªãã·ã§ã³ãèšå®ããããšãã§ããŸãïŒ"
#: tlpkg/installer/install-menu-wizard.pl:579
#, perl-format
msgid ""
"We are ready to install TeX Live %s.\n"
"The following settings will be used.\n"
"If you want to change something please go back,\n"
"otherwise press the \"Install\" button."
msgstr ""
"TeX Live %s ãã€ã³ã¹ããŒã«ããæºåãæŽããŸããïŒ\n"
"以äžã®èšå®ã䜿çšãããŸãïŒ\n"
"å€æŽããããã®ãããå Žåã«ã¯ïŒåã«æ»ã£ãŠãã ããïŒ\n"
"åé¡ãªããã°ïŒãã€ã³ã¹ããŒã«ããã¿ã³ãæŒããŠãã ããïŒ"
#: tlpkg/installer/install-menu-wizard.pl:595
#: tlpkg/installer/install-menu-perltk.pl:61
#: tlpkg/installer/install-menu-perltk.pl:1141
#: tlpkg/installer/install-menu-perltk.pl:1142
#: tlpkg/installer/install-menu-perltk.pl:1143
#: tlpkg/installer/install-menu-perltk.pl:1149
#: tlpkg/installer/install-menu-perltk.pl:1155
#: tlpkg/installer/install-menu-perltk.pl:1239
#: texmf-dist/scripts/texlive/tlmgrgui.pl:700
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1109
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1730 tlpkg/tltcl/tltcl.tcl:361
#: texmf-dist/scripts/tlshell/tlshell.tcl:157
msgid "Yes"
msgstr "ã¯ã"
#: tlpkg/installer/install-menu-wizard.pl:595
#: tlpkg/installer/install-menu-perltk.pl:60
#: tlpkg/installer/install-menu-perltk.pl:1141
#: tlpkg/installer/install-menu-perltk.pl:1142
#: tlpkg/installer/install-menu-perltk.pl:1143
#: tlpkg/installer/install-menu-perltk.pl:1149
#: tlpkg/installer/install-menu-perltk.pl:1155
#: tlpkg/installer/install-menu-perltk.pl:1228
#: tlpkg/installer/install-menu-perltk.pl:1249
#: tlpkg/installer/install-menu-perltk.pl:1250
#: tlpkg/installer/install-menu-perltk.pl:1252
#: texmf-dist/scripts/texlive/tlmgrgui.pl:700
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1109
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1730 tlpkg/tltcl/tltcl.tcl:363
#: texmf-dist/scripts/tlshell/tlshell.tcl:159
msgid "No"
msgstr "ããã"
#: tlpkg/installer/install-menu-wizard.pl:604
#: texmf-dist/scripts/texlive/tlmgrgui.pl:456
#: tlpkg/installer/install-tl-gui.tcl:1352
#: texmf-dist/scripts/tlshell/tlshell.tcl:1889
msgid "Install"
msgstr "ã€ã³ã¹ããŒã«"
#: tlpkg/installer/install-menu-perltk.pl:48
#: tlpkg/installer/install-menu-perltk.pl:1251
#: texmf-dist/scripts/texlive/tlmgrgui.pl:143
#: tlpkg/installer/install-tl-gui.tcl:862
#: tlpkg/installer/install-tl-gui.tcl:1099
#: tlpkg/installer/install-tl-gui.tcl:1639
msgid "None"
msgstr "ãªã"
#: tlpkg/installer/install-menu-perltk.pl:49
#: texmf-dist/scripts/texlive/tlmgrgui.pl:144
#: tlpkg/installer/install-tl-gui.tcl:1639
msgid "Only new"
msgstr "æ°èŠã®ã¿"
#: tlpkg/installer/install-menu-perltk.pl:50
#: texmf-dist/scripts/texlive/tlmgrgui.pl:145
#: tlpkg/installer/install-tl-gui.tcl:1096
#: tlpkg/installer/install-tl-gui.tcl:1639
#: texmf-dist/scripts/tlshell/tlshell.tcl:2209
#: texmf-dist/scripts/tlshell/tlshell.tcl:2226
msgid "All"
msgstr "ãã¹ãŠ"
#: tlpkg/installer/install-menu-perltk.pl:52
msgid "A4"
msgstr "A4"
#: tlpkg/installer/install-menu-perltk.pl:53
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1358
msgid "letter"
msgstr "ã¬ã¿ãŒ"
#: tlpkg/installer/install-menu-perltk.pl:55
#: tlpkg/installer/install-tl-gui.tcl:1627
msgid "No shortcuts"
msgstr "ã·ã§ãŒãã«ãããªã"
#: tlpkg/installer/install-menu-perltk.pl:56
#: tlpkg/installer/install-tl-gui.tcl:1627
msgid "TeX Live menu"
msgstr "TeX Live ã¡ãã¥ãŒ"
#: tlpkg/installer/install-menu-perltk.pl:57
#: tlpkg/installer/install-tl-gui.tcl:1627
msgid "Launcher entry"
msgstr "ã©ã³ãã£é
ç®"
#: tlpkg/installer/install-menu-perltk.pl:270
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2569
msgid "Load"
msgstr "èªã¿èŸŒã¿"
#: tlpkg/installer/install-menu-perltk.pl:276
#: tlpkg/installer/install-menu-perltk.pl:284
#: tlpkg/installer/install-menu-perltk.pl:1036
#: tlpkg/installer/install-menu-perltk.pl:1259
#: texmf-dist/scripts/texlive/tlmgrgui.pl:233
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1062
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1660
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1889
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1951
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2270
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2332
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2669
#: tlpkg/installer/install-tl-gui.tcl:557
msgid "Warning"
msgstr "èŠå"
#: tlpkg/installer/install-menu-perltk.pl:279
msgid "Please select a different mirror."
msgstr "å¥ã®ãã©ãŒãéžæããŠãã ããïŒ"
#: tlpkg/installer/install-menu-perltk.pl:280
#: tlpkg/installer/install-menu-perltk.pl:291
#: tlpkg/installer/install-menu-perltk.pl:610
#: tlpkg/installer/install-menu-perltk.pl:752
#: tlpkg/installer/install-menu-perltk.pl:791
#: tlpkg/installer/install-menu-perltk.pl:847
#: tlpkg/installer/install-menu-perltk.pl:905
#: tlpkg/installer/install-menu-perltk.pl:985
#: tlpkg/installer/install-menu-perltk.pl:1017
#: tlpkg/installer/install-menu-perltk.pl:1038
#: texmf-dist/scripts/texlive/tlmgrgui.pl:235
#: texmf-dist/scripts/texlive/tlmgrgui.pl:629
#: texmf-dist/scripts/texlive/tlmgrgui.pl:633
#: texmf-dist/scripts/texlive/tlmgrgui.pl:635
#: texmf-dist/scripts/texlive/tlmgrgui.pl:653
#: texmf-dist/scripts/texlive/tlmgrgui.pl:832
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1064
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1436
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1466
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1467
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1526
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1651
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1661
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1781
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1808
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1843
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1892
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1953
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2270
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2332
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2358
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2466
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2504
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2669
#: tlpkg/installer/install-tl-gui.tcl:532
#: tlpkg/installer/install-tl-gui.tcl:658
#: tlpkg/installer/install-tl-gui.tcl:743
#: tlpkg/installer/install-tl-gui.tcl:930
#: tlpkg/installer/install-tl-gui.tcl:986
#: tlpkg/installer/install-tl-gui.tcl:1080
#: tlpkg/installer/install-tl-gui.tcl:1301 tlpkg/tltcl/tltcl.tcl:612
#: texmf-dist/scripts/tlshell/tlshell.tcl:153
msgid "Ok"
msgstr "OK"
#: tlpkg/installer/install-menu-perltk.pl:286
#, perl-format
msgid ""
"The TeX Live versions of the local installation and the repository being "
"accessed are not compatible:\n"
" local: %s\n"
" repository: %s\n"
"Please select a different mirror."
msgstr ""
"ããŒã«ã«ã«ã€ã³ã¹ããŒã«æžã¿ã® TeX Live ã®ããŒãžã§ã³ãšïŒã¢ã¯ã»ã¹ãããªããžããª"
"ã®ããŒãžã§ã³ã«äºææ§ããããŸããïŒ\n"
" ããŒã«ã«ïŒ%s\n"
" ãªããžããªïŒ%s\n"
"å¥ã®ãã©ãŒãéžæããŠãã ããïŒ"
#: tlpkg/installer/install-menu-perltk.pl:306
msgid "Basic Information"
msgstr "åºæ¬æ
å ±"
#: tlpkg/installer/install-menu-perltk.pl:312
#: tlpkg/installer/install-menu-perltk.pl:996
msgid "Binary system(s)"
msgstr "ãã€ããªã·ã¹ãã "
#: tlpkg/installer/install-menu-perltk.pl:324
#: tlpkg/installer/install-menu-perltk.pl:809
#: tlpkg/installer/install-menu-perltk.pl:823
msgid "Selected scheme"
msgstr "éžæããã¹ããŒã "
#: tlpkg/installer/install-menu-perltk.pl:335
msgid "Further Customization"
msgstr "詳现èšå®"
#: tlpkg/installer/install-menu-perltk.pl:340
#: tlpkg/installer/install-menu-perltk.pl:859
msgid "Installation collections"
msgstr "ã€ã³ã¹ããŒã«å¯Ÿè±¡ã³ã¬ã¯ã·ã§ã³"
#: tlpkg/installer/install-menu-perltk.pl:354
msgid "Directory setup"
msgstr "ãã£ã¬ã¯ããªèšå®"
#: tlpkg/installer/install-menu-perltk.pl:358
msgid "Portable setup"
msgstr "ããŒã¿ãã«èšå®"
#: tlpkg/installer/install-menu-perltk.pl:363
#: tlpkg/installer/install-menu-perltk.pl:450
#: tlpkg/installer/install-menu-perltk.pl:464
#: tlpkg/installer/install-menu-perltk.pl:478
#: tlpkg/installer/install-menu-perltk.pl:490
#: tlpkg/installer/install-menu-perltk.pl:503
#: tlpkg/installer/install-menu-perltk.pl:522
#: tlpkg/installer/install-menu-perltk.pl:561
#: tlpkg/installer/install-menu-perltk.pl:575
#: tlpkg/installer/install-menu-perltk.pl:591
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1167
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1174
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1181
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1231
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1240
#: tlpkg/installer/install-tl-gui.tcl:1479
msgid "Toggle"
msgstr "åæ¿"
#: tlpkg/installer/install-menu-perltk.pl:369
msgid "TEXDIR (the main TeX directory)"
msgstr "TEXDIRïŒã¡ã€ã³ã® TeX ãã£ã¬ã¯ããªïŒ"
#: tlpkg/installer/install-menu-perltk.pl:383
msgid "TEXMFLOCAL (directory for site-wide local files)"
msgstr "TEXMFLOCALïŒã·ã¹ãã å
šäœã«é©çšããããŒã«ã«ãã¡ã€ã«ããããã£ã¬ã¯ããªïŒ"
#: tlpkg/installer/install-menu-perltk.pl:396
msgid "TEXMFSYSVAR (directory for autogenerated data)"
msgstr "TEXMFSYSVARïŒèªåçæãããããŒã¿ã®ããã®ãã£ã¬ã¯ããªïŒ"
#: tlpkg/installer/install-menu-perltk.pl:409
msgid "TEXMFSYSCONFIG (directory for local config)"
msgstr "TEXMFSYSCONFIGïŒããŒã«ã«èšå®çšã®ãã£ã¬ã¯ããªïŒ"
#: tlpkg/installer/install-menu-perltk.pl:421
msgid "TEXMFHOME (directory for user-specific files)"
msgstr "TEXMFHOMEïŒãŠãŒã¶çšãã¡ã€ã«ããããã£ã¬ã¯ããªïŒ"
#: tlpkg/installer/install-menu-perltk.pl:440
#: texmf-dist/scripts/texlive/tlmgrgui.pl:513
#: tlpkg/installer/install-tl-gui.tcl:1562
#: texmf-dist/scripts/tlshell/tlshell.tcl:772
#: texmf-dist/scripts/tlshell/tlshell.tcl:2019
#: texmf-dist/scripts/tlshell/tlshell.tcl:2083
msgid "Options"
msgstr "ãªãã·ã§ã³"
#: tlpkg/installer/install-menu-perltk.pl:458
#: tlpkg/installer/install-tl-gui.tcl:1582
msgid "Allow execution of restricted list of programs via \\write18"
msgstr "\\write18 ãçšããŠå¶éãªã¹ãã«ããããã°ã©ã ã®å®è¡ãèš±å¯"
#: tlpkg/installer/install-menu-perltk.pl:473
#: tlpkg/installer/install-tl-gui.tcl:1589
msgid "Create all format files"
msgstr "ãã©ãŒããããã¡ã€ã«ããã¹ãŠçæ"
#: tlpkg/installer/install-menu-perltk.pl:485
#: tlpkg/installer/install-tl-gui.tcl:1597
msgid "Install font/macro doc tree"
msgstr "font/macro ã®ããã¥ã¡ã³ãããªãŒãã€ã³ã¹ããŒã«"
#: tlpkg/installer/install-menu-perltk.pl:498
#: tlpkg/installer/install-tl-gui.tcl:1607
msgid "Install font/macro source tree"
msgstr "font/macro ã®ãœãŒã¹ããªãŒãã€ã³ã¹ããŒã«"
#: tlpkg/installer/install-menu-perltk.pl:512
#: tlpkg/installer/install-menu-perltk.pl:962
msgid "Create symlinks in system directories"
msgstr "ã·ã¹ãã ãã£ã¬ã¯ããªã«ã·ã³ããªãã¯ãªã³ã¯ãäœæãã"
#: tlpkg/installer/install-menu-perltk.pl:585
#: tlpkg/installer/install-tl-gui.tcl:1700
msgid "After install, set CTAN as source for package updates"
msgstr "ã€ã³ã¹ããŒã«åŸã« CTAN ãããã±ãŒãžã®ã¢ããããŒãå
ã«èšå®"
#: tlpkg/installer/install-menu-perltk.pl:607
#: tlpkg/installer/install-menu-perltk.pl:609
#: texmf-dist/scripts/texlive/tlmgrgui.pl:650
#: texmf-dist/scripts/texlive/tlmgrgui.pl:652
#: texmf-dist/scripts/tlshell/tlshell.tcl:2122
msgid "About"
msgstr "ãã®ããã°ã©ã ã«ã€ããŠ"
#: tlpkg/installer/install-menu-perltk.pl:626
msgid "Install TeX Live"
msgstr "TeX Live ã®ã€ã³ã¹ããŒã«"
#: tlpkg/installer/install-menu-perltk.pl:676
msgid "Continue"
msgstr "ç¶è¡"
#: tlpkg/installer/install-menu-perltk.pl:678
msgid ""
"In case of trouble, try disabling your virus scanner during installation."
msgstr "ãã©ãã«ãçºçããå Žåã¯ïŒãŠã€ã«ã¹å¯Ÿçãœãããç¡å¹åããŠã¿ãŠãã ããïŒ"
#: tlpkg/installer/install-menu-perltk.pl:681
msgid ""
"The installer does not have adminstrative permissions;\n"
"so can only install for current user."
msgstr ""
"ãã®ã€ã³ã¹ããŒã©ã«ã¯ç®¡çè
æš©éãäžããããŠããŸããïŒ\n"
"ãããã£ãŠïŒçŸåšã®ãŠãŒã¶ãŒå°çšã«ã€ã³ã¹ããŒã«ããããšããã§ããŸããïŒ"
#: tlpkg/installer/install-menu-perltk.pl:684
msgid ""
"Right-click install-tl-advanced and select \"run as administrator\"\n"
" if you want to install for all users."
msgstr ""
"ãã¹ãŠã®ãŠãŒã¶ãŒåãã«ã€ã³ã¹ããŒã«ãããå Žåã¯ïŒinstall-tl-advanced ã\n"
"å³ã¯ãªãã¯ãïŒã管çè
ãšããŠå®è¡ããéžæããŠãã ããïŒ"
#: tlpkg/installer/install-menu-perltk.pl:732
#: tlpkg/installer/install-menu-perltk.pl:775
msgid "Change variable value"
msgstr "å€æ°ã®å€ãå€æŽ"
#: tlpkg/installer/install-menu-perltk.pl:735
#: tlpkg/installer/install-menu-perltk.pl:785
#, perl-format
msgid "Enter path for %s (use ~ for %s)"
msgstr "%s ã®ãã¹ãå
¥åããŠãã ããïŒ%s ãè¡šãã«ã¯ ~ ã䜿çšããŠãã ããïŒ"
#: tlpkg/installer/install-menu-perltk.pl:832
msgid "custom selection of collections"
msgstr "ã³ã¬ã¯ã·ã§ã³ã®ã«ã¹ã¿ã éžæ"
#: tlpkg/installer/install-menu-perltk.pl:869
msgid "Select the collections to be installed"
msgstr "ã€ã³ã¹ããŒã«ããã³ã¬ã¯ã·ã§ã³ãéžæ"
#: tlpkg/installer/install-menu-perltk.pl:897
msgid "Select All"
msgstr "ãã¹ãŠéžæ"
#: tlpkg/installer/install-menu-perltk.pl:901
msgid "Deselect All"
msgstr "ãã¹ãŠã®éžæã解é€"
#: tlpkg/installer/install-menu-perltk.pl:967
msgid "create symlinks in standard directories"
msgstr "ã·ã³ããªãã¯ãªã³ã¯ãæšæºãã£ã¬ã¯ããªã«äœæãã"
#: tlpkg/installer/install-menu-perltk.pl:970
msgid "binaries to"
msgstr "ãã€ããªã®é
眮å
ïŒ"
#: tlpkg/installer/install-menu-perltk.pl:972
msgid "manpages to"
msgstr "man ããŒãžã®é
眮å
ïŒ"
#: tlpkg/installer/install-menu-perltk.pl:974
msgid "info to"
msgstr "info ããŒãžã®é
眮å
ïŒ"
#: tlpkg/installer/install-menu-perltk.pl:1005
msgid "Select arch-os"
msgstr "arch-os ãéžæããŠãã ãã"
#: tlpkg/installer/install-menu-perltk.pl:1037
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1063
msgid "Removals of the main platform not possible!"
msgstr "ã¡ã€ã³ã®ãã©ãããã©ãŒã ãåãé€ãããšã¯ã§ããŸããïŒ"
#: tlpkg/installer/install-menu-perltk.pl:1071
#, perl-format
msgid "%s out of %s"
msgstr "%sïŒå
š %s äžïŒ"
#: tlpkg/installer/install-menu-perltk.pl:1078
#, perl-format
msgid "%s collections out of %s"
msgstr "%s ã³ã¬ã¯ã·ã§ã³ïŒå
š %s ã³ã¬ã¯ã·ã§ã³äžïŒ"
#: tlpkg/installer/install-menu-perltk.pl:1106
#: tlpkg/installer/install-menu-perltk.pl:1124
msgid "(please change TEXDIR first!)"
msgstr "ïŒå
ã« TEXDIR ãå€æŽããŠãã ããïŒïŒ"
#: tlpkg/installer/install-menu-perltk.pl:1111
#: tlpkg/installer/install-menu-perltk.pl:1129
msgid "(default not writable - please change!)"
msgstr "ïŒããã©ã«ãå€ã§ã¯æžã蟌ã¿ã§ããŸããïŒå€æŽããŠãã ããïŒïŒ"
#: tlpkg/installer/install-menu-perltk.pl:1261
msgid ""
"Portable option changed;\n"
"Directories have been reinitialized"
msgstr ""
"ããŒã¿ãã«èšå®ãå€æŽãããŸããïŒ\n"
"ãã£ã¬ã¯ããªãååæåãããŸã"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:169
msgid "Loading local TeX Live database"
msgstr "ããŒã«ã«ã® TeX Live ããŒã¿ããŒã¹ãèªã¿èŸŒãã§ããŸã"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:171
msgid "This may take some time, please be patient ..."
msgstr "ããã«ã¯å°ãæéãããããããããŸããïŒå°ããåŸ
ã¡ãã ããâŠâŠ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:228
msgid "... done loading"
msgstr "âŠâŠèªã¿èŸŒã¿å®äº"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:234
#, perl-format
msgid ""
"You don't have permissions to change the installation in any way;\n"
"specifically, the directory %s is not writable.\n"
"Please run this program as administrator, or contact your local admin.\n"
"\n"
"Most buttons will be disabled."
msgstr ""
"ã€ã³ã¹ããŒã«æžã¿ã®ãã®ãå€æŽããæš©éããããŸããïŒ\n"
"å
·äœçã«ã¯ïŒãã£ã¬ã¯ã㪠%s ãæžã蟌ã¿å¯èœã«ãªã£ãŠããŸããïŒ\n"
"ãã®ããã°ã©ã ã管çè
ãšããŠå®è¡ãããïŒã³ã³ãã¥ãŒã¿ã®ç®¡çè
ã«é£çµ¡ããšã£ãŠã"
"ã ããïŒ\n"
"\n"
"ã»ãšãã©ã®ãã¿ã³ã¯å©çšã§ããªããªããŸãïŒ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:293
#: texmf-dist/scripts/tlshell/tlshell.tcl:1074
msgid "Repository"
msgstr "ãªããžããª"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:294
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2616
msgid "Loaded:"
msgstr "èªã¿èŸŒã¿å®äºïŒ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:294
msgid "none"
msgstr "ãªã"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:297
msgid "Load default"
msgstr "ããã©ã«ãå€ãèªã¿èŸŒã"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:305
#: texmf-dist/scripts/texlive/tlmgrgui.pl:528
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1116
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1283
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1705
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2612
msgid "multiple repositories"
msgstr "è€æ°ãªããžããª"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:310
msgid "Default:"
msgstr "ããã©ã«ãå€ïŒ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:316
msgid "Display configuration"
msgstr "衚瀺èšå®"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:321
#: texmf-dist/scripts/tlshell/tlshell.tcl:2206
msgid "Status"
msgstr "ç¶æ
"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:324
#: texmf-dist/scripts/texlive/tlmgrgui.pl:376
msgid "all"
msgstr "ãã¹ãŠ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:326
msgid "installed"
msgstr "ã€ã³ã¹ããŒã«æžã¿"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:328
msgid "not installed"
msgstr "æªã€ã³ã¹ããŒã«"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:330
msgid "updates"
msgstr "ã¢ããããŒã"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:333
msgid "Category"
msgstr "ã«ããŽãª"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:335
msgid "packages"
msgstr "ããã±ãŒãž"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:337
msgid "collections"
msgstr "ã³ã¬ã¯ã·ã§ã³"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:339
msgid "schemes"
msgstr "ã¹ããŒã "
#: texmf-dist/scripts/texlive/tlmgrgui.pl:342
msgid "Match"
msgstr "äžèŽæ€çŽ¢"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:347
msgid "descriptions"
msgstr "説æ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:350
msgid "filenames"
msgstr "ãã¡ã€ã«å"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:374
msgid "Selection"
msgstr "éžæ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:378
msgid "selected"
msgstr "éžæå"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:381
msgid "not selected"
msgstr "æªéžæå"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:389
msgid "Select all"
msgstr "ãã¹ãŠéžæ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:391
msgid "Select none"
msgstr "ãã¹ãŠéžæ解é€"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:395
msgid "Reset filters"
msgstr "ãã£ã«ã¿ããªã»ãã"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:416
msgid "Package name"
msgstr "ããã±ãŒãžå"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:417
#: texmf-dist/scripts/tlshell/tlshell.tcl:2292
msgid "Local rev. (ver.)"
msgstr "ããŒã«ã«ã®ãªããžã§ã³"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:418
#: texmf-dist/scripts/tlshell/tlshell.tcl:2293
msgid "Remote rev. (ver.)"
msgstr "ãªã¢ãŒãã®ãªããžã§ã³"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:419
msgid "Short description"
msgstr "æŠèŠ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:434
msgid "Update all installed"
msgstr "ã€ã³ã¹ããŒã«æžã¿ã®ãã®ããã¹ãŠã¢ããããŒã"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:438
msgid "Reinstall previously removed packages"
msgstr "以åã¢ã³ã€ã³ã¹ããŒã«ããããã±ãŒãžãåã€ã³ã¹ããŒã«"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:451
#: texmf-dist/scripts/tlshell/tlshell.tcl:1894
msgid "Update"
msgstr "ã¢ããããŒã"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:460
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2014
#: texmf-dist/scripts/tlshell/tlshell.tcl:1899
msgid "Remove"
msgstr "ã¢ã³ã€ã³ã¹ããŒã«"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:465
msgid "Backup"
msgstr "ããã¯ã¢ãã"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:515
#: texmf-dist/scripts/tlshell/tlshell.tcl:2071
msgid "Actions"
msgstr "ã¢ã¯ã·ã§ã³"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:519
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2694
#: texmf-dist/scripts/tlshell/tlshell.tcl:2120
msgid "Help"
msgstr "ãã«ã"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:531
msgid "Load default (from tlpdb) repository:"
msgstr "ïŒtlpdb ããïŒããã©ã«ããªããžããªãèªã¿èŸŒãïŒ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:534
msgid "Load cmd line repository:"
msgstr "ã³ãã³ãã©ã€ã³ã¬ããžããªã®èªã¿èŸŒã¿ïŒ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:537
msgid "Load standard net repository:"
msgstr "æšæºãããã¯ãŒã¯ãªããžããªãèªã¿èŸŒã¿ïŒ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:540
msgid "Load other repository ..."
msgstr "ä»ã®ã¬ããžããªãèªã¿èŸŒãâŠ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:550
msgid "General ..."
msgstr "äžè¬âŠ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:552
#: texmf-dist/scripts/tlshell/tlshell.tcl:2092
msgid "Paper ..."
msgstr "çšçŽâŠ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:555
msgid "Platforms ..."
msgstr "ãã©ãããã©ãŒã âŠ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:559
msgid "GUI Language ..."
msgstr "GUI èšèªâŠ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:563
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1464
msgid "Expert options"
msgstr "äžçŽè
åããªãã·ã§ã³"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:567
msgid "Enable debugging output"
msgstr "ãããã°åºåãæå¹å"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:571
msgid "Disable auto-install of new packages"
msgstr "æ°èŠããã±ãŒãžã®èªåã€ã³ã¹ããŒã«ãç¡å¹å"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:574
msgid "Disable auto-removal of server-deleted packages"
msgstr "ãµãŒãããåé€ãããããã±ãŒãžã®èªååé€ãç¡å¹å"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:581
msgid "Update filename database"
msgstr "ãã¡ã€ã«åããŒã¿ããŒã¹ãæŽæ°"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:589
msgid "Rebuild all formats"
msgstr "ãã¹ãŠã®ãã©ãŒããããåæ§ç¯"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:600
msgid "Update font map database"
msgstr "ãã©ã³ããããããŒã¿ããŒã¹ãæŽæ°"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:613
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2342
msgid "Restore packages from backup"
msgstr "ããã¯ã¢ããããããã±ãŒãžã埩å
"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:619
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2424
msgid "Handle symlinks in system dirs"
msgstr "ã·ã¹ãã ã®ãã£ã¬ã¯ããªã§ã·ã³ããªãã¯ãªã³ã¯ãåãæ±ã"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:625
#, perl-format
msgid "Remove TeX Live %s ..."
msgstr "TeX Live %s ãã¢ã³ã€ã³ã¹ããŒã«âŠ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:628
#, perl-format
msgid "Remove TeX Live %s"
msgstr "TeX Live %s ãã¢ã³ã€ã³ã¹ããŒã«"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:635
msgid "Complete removal finished"
msgstr "ã¢ã³ã€ã³ã¹ããŒã«å®äº"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:640
#, perl-format
msgid ""
"Really remove (uninstall) the COMPLETE TeX Live %s installation?\n"
"Your last chance to change your mind!"
msgstr ""
"æ¬åœã« TeX Live %s ãå®å
šã«ã¢ã³ã€ã³ã¹ããŒã«ããŸããïŒ\n"
"ãã®æäœã¯åãæ¶ããŸããïŒ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:649
msgid "Manual"
msgstr "ããã¥ã¢ã«"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:674
msgid "Details on:"
msgstr "詳现ïŒ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:684
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2366
msgid "Package:"
msgstr "ããã±ãŒãžïŒ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:686
msgid "Category:"
msgstr "ã«ããŽãªïŒ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:688
msgid "Short description:"
msgstr "æŠèŠïŒ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:696
msgid "Long description:"
msgstr "詳现ïŒ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:699
msgid "Installed:"
msgstr "ã€ã³ã¹ããŒã«æžã¿ïŒ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:702
msgid "Local revision:"
msgstr "ããŒã«ã«ã®ãªããžã§ã³ïŒ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:706
msgid "Local Catalogue version:"
msgstr "ããŒã«ã«ã«ã¿ãã°ã®ããŒãžã§ã³ïŒ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:710
msgid "Remote revision:"
msgstr "ãªã¢ãŒãã®ãªããžã§ã³ïŒ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:714
msgid "Remote Catalogue version:"
msgstr "ãªã¢ãŒãã«ã¿ãã°ã®ããŒãžã§ã³ïŒ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:719
msgid "Keywords:"
msgstr "ããŒã¯ãŒãïŒ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:724
msgid "Functionality:"
msgstr "æ©èœïŒ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:729
msgid "Primary characterization:"
msgstr "ãã©ã€ããªèšå®:"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:734
msgid "Secondary characterization:"
msgstr "ã»ã«ã³ããªèšå®ïŒ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:745
msgid "Collection:"
msgstr "ã³ã¬ã¯ã·ã§ã³ïŒ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:749
msgid "Warning: Catalogue versions might be lagging behind or be simply wrong."
msgstr "èŠåïŒã«ã¿ãã°ããŒãžã§ã³ãå€ããïŒåçŽã«ééã£ãŠããå¯èœæ§ããããŸãïŒ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:787
msgid "Depends:"
msgstr "äŸåããã±ãŒãžïŒ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:791
msgid "Binaries' dependencies:"
msgstr "ãã€ããªäŸåïŒ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:793
msgid "Runfiles:"
msgstr "å®è¡ãã¡ã€ã«ïŒ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:794
msgid "Docfiles:"
msgstr "ããã¥ã¡ã³ããã¡ã€ã«ïŒ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:795
msgid "Srcfiles:"
msgstr "ãœãŒã¹ãã¡ã€ã«ïŒ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:807
msgid "Binfiles:"
msgstr "ãã€ããªãã¡ã€ã«ïŒ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:812
msgid "Further information"
msgstr "詳现æ
å ±"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:866
msgid "Update the TeX Live Manager"
msgstr "TeX Live Manager ãã¢ããããŒã"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1033
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1038
msgid "Select platforms to support"
msgstr "ãµããŒããããã©ãããã©ãŒã ãéžæããŠãã ãã"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1049
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1261
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1383
msgid "Apply changes"
msgstr "å€æŽãé©çš"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1128
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1137
msgid "General options"
msgstr "äžè¬ãªãã·ã§ã³"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1142
msgid "Default package repository"
msgstr "ããã©ã«ãã®ããã±ãŒãžã¬ããžããª"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1163
msgid "Create formats on installation"
msgstr "ã€ã³ã¹ããŒã«æã«ãã©ãŒããããäœæãã"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1170
msgid "Install macro/font sources"
msgstr "font/macro ã®ãœãŒã¹ãã€ã³ã¹ããŒã«"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1177
msgid "Install macro/font docs"
msgstr "font/macro ã®ããã¥ã¡ã³ããã€ã³ã¹ããŒã«"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1184
msgid "Default backup directory"
msgstr "ããã©ã«ãã®ããã¯ã¢ãããã£ã¬ã¯ããª"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1192
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1790
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1795
msgid "Auto backup setting"
msgstr "èªåããã¯ã¢ããèšå®"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1201
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2431
msgid "Link destination for programs"
msgstr "ããã°ã©ã ã®ãªã³ã¯å
"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1209
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2436
msgid "Link destination for info docs"
msgstr "info ããŒãžã®ãªã³ã¯å
"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1217
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2441
msgid "Link destination for man pages"
msgstr "man ããŒãžã®ãªã³ã¯å
"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1227
msgid "Create shortcuts on the desktop"
msgstr "ã·ã§ãŒãã«ããããã¹ã¯ãããã«äœæ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1236
#: tlpkg/installer/install-tl-gui.tcl:1652
msgid "Install for all users"
msgstr "ãã¹ãŠã®ãŠãŒã¶åãã«ã€ã³ã¹ããŒã«ãã"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1283
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1285
msgid "Load default repository:"
msgstr "ããã©ã«ãã¬ããžããªã®èªã¿èŸŒã¿ïŒ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1342
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1351
msgid "Paper options"
msgstr "çšçŽãªãã·ã§ã³"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1355
msgid "Default paper for all"
msgstr "ãã¹ãŠã«é©çšããããã©ã«ãçšçŽãµã€ãº"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1356
msgid "a4"
msgstr "A4"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1370
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1775
#, perl-format
msgid "Default paper for %s"
msgstr "%s ã®ããã©ã«ãçšçŽãµã€ãº"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1391
msgid "GUI Language"
msgstr "GUI èšèª"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1415
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1420
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1438
msgid "System default"
msgstr "ã·ã¹ãã ã®ããã©ã«ãå€"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1419
msgid "Default language for GUI:"
msgstr "GUI çšã®ããã©ã«ãèšèªïŒ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1434
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1463
msgid "Changes will take effect after restart"
msgstr "å€æŽå
容ã¯åèµ·ååŸã«æå¹ã«ãªããŸã"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1508
msgid "Choose directory"
msgstr "ãã£ã¬ã¯ããªãéžæããŠãã ãã"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1574
msgid "Edit default package repositories"
msgstr "ããã©ã«ãã®ããã±ãŒãžãªããžããªãç·šé"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1577
msgid "Specify set of repositories to be used"
msgstr "䜿çšãããªããžããªçŸ€ãæå®"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1593
msgid "Delete"
msgstr "åé€"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1607
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1610
msgid "Change main package repository"
msgstr "ã¡ã€ã³ããã±ãŒãžãªããžããªãå€æŽ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1608
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1611
msgid "Change subsidiary package repository"
msgstr "ãµãããã±ãŒãžãªããžããªãå€æŽ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1632
msgid "Add repository"
msgstr "ãªããžããªãè¿œå "
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1634
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1635
msgid "Add package repository"
msgstr "ããã±ãŒãžãªããžããªãè¿œå "
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1661
#, perl-format
msgid "Repository tag name already used: %s"
msgstr "ãã®ã¿ã°åã¯æ¢ã«äœ¿çšãããŠããŸãïŒ%s"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1719
msgid "Revert"
msgstr "æ»ã"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1771
#, perl-format
msgid "Select paper format for %s"
msgstr "%s çšã«çšçŽãµã€ãºãéžæããŠãã ãã"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1798
msgid "keep arbitrarily many"
msgstr "ä»»æã®æ°ãä¿æ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1799
msgid "disable"
msgstr "ç¡å¹å"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1890
msgid "Loading of remote database failed."
msgstr "ãªã¢ãŒãããŒã¿ããŒã¹ã®èªã¿èŸŒã¿ã«å€±æããŸããïŒ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1891
msgid "Error message:"
msgstr "ãšã©ãŒã¡ãã»ãŒãžïŒ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1931
msgid "Installation"
msgstr "ã€ã³ã¹ããŒã«"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1952
msgid ""
"Critical updates have been installed.\n"
"Program will terminate now.\n"
"Please restart if necessary."
msgstr ""
"éèŠãªæŽæ°ãé©çšãããŸããïŒ\n"
"çŽã¡ã«ããã°ã©ã ãçµäºããŸãïŒ\n"
"å¿
èŠãªãã°åèµ·åããŠãã ããïŒ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2271
msgid ""
"The TeX Live manager (the software you're currently running)\n"
"needs to be updated before any other updates can be done.\n"
"\n"
"Please do this by clicking the \"Update the TeX Live Manager\" button,\n"
"after dismissing this dialogue.\n"
"\n"
"After the update, the TeX Live manager will terminate.\n"
"You can then restart it to proceed with further updates."
msgstr ""
"ã»ãã®ã¢ããããŒããè¡ãåã« TeX Live Manager èªèº«ã\n"
"ã¢ããããŒãããå¿
èŠããããŸãïŒ\n"
"\n"
"ãã®ãã€ã¢ãã°ãéããåŸïŒãTeX Live Manager ãã¢ããããŒãã\n"
"ãã¿ã³ãã¯ãªãã¯ããŠïŒã¢ããããŒããå®è¡ããŠãã ããïŒ\n"
"\n"
"ã¢ããããŒãåŸïŒTeX Live Manager ã¯èªåã§çµäºããŸãïŒ\n"
"èªåçµäºã®åŸïŒåèµ·åããŠã»ãã®ã¢ããããŒããç¶ããããšãã§ããŸãïŒ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2281
msgid "(Further updates will be available after tlmgr has been updated.)"
msgstr "ïŒã¢ããããŒãã®ç¶ãã¯ïŒtlmgr ã®ã¢ããããŒãåŸã«å¯èœã«ãªããŸãïŒïŒ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2283
msgid ""
"Please wait a bit after the program has terminated so that the update can be "
"completed."
msgstr ""
"ãã®ããã°ã©ã ãçµäºããåŸãïŒã¢ããããŒããå®äºãããŸã§å°ããåŸ
ã¡ãã ããïŒ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2357
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2359
msgid "Restore completed"
msgstr "埩å
ãå®äºããŸãã"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2364
msgid "Select the package to restore, or restore all packages"
msgstr "埩å
ããããã±ãŒãžãéžæãããïŒãã¹ãŠã®ããã±ãŒãžã埩å
ããŠãã ãã"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2380
msgid "Revision:"
msgstr "ãªããžã§ã³ïŒ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2385
msgid "Restore selected package"
msgstr "éžæããããã±ãŒãžã埩å
"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2401
msgid "Restore all packages to latest version"
msgstr "ãã¹ãŠã®ããã±ãŒãžãææ°ããŒãžã§ã³ã«æ»ã"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2417
#: tlpkg/installer/install-tl-gui.tcl:437
#: texmf-dist/scripts/tlshell/tlshell.tcl:784
#: texmf-dist/scripts/tlshell/tlshell.tcl:906
#: texmf-dist/scripts/tlshell/tlshell.tcl:1352
#: texmf-dist/scripts/tlshell/tlshell.tcl:1564
msgid "Close"
msgstr "éãã"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2449
msgid "Update symbolic links"
msgstr "ã·ã³ããªãã¯ãªã³ã¯ãæŽæ°"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2456
msgid "Remove symbolic links"
msgstr "ã·ã³ããªãã¯ãªã³ã¯ãåé€"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2489
msgid "Edit directory"
msgstr "ãã£ã¬ã¯ããªãç·šé"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2492
#, perl-format
msgid "New value for %s:"
msgstr "%s ã®æ°ããå€"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2495
msgid "Choose Directory"
msgstr "ãã£ã¬ã¯ããªãéžæ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2525
msgid "Load package repository"
msgstr "ããã±ãŒãžãªããžããªãèªã¿èŸŒã"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2528
msgid "Load this package repository:"
msgstr "次ã®ããã±ãŒãžãªããžããªãèªã¿èŸŒã¿ãŸãïŒ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2554
msgid "Choose local directory"
msgstr "ããŒã«ã«ãã£ã¬ã¯ããªãéžæããŠãã ãã"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2562
msgid "Use standard net repository"
msgstr "æšæºãããã¯ãŒã¯ãªããžããªã䜿ã"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2578
msgid ""
"Loading remote repository - this may take some time, please be patient ..."
msgstr ""
"ãªã¢ãŒããªããžããªãèªã¿èŸŒãã§ããŸãïŒããã«ã¯å°ãæéãããããããããŸã"
"ãïŒãåŸ
ã¡ãã ããâŠâŠ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2604
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2608
msgid "verified"
msgstr "èªèšŒæžã¿"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2604
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2608
msgid "not verified"
msgstr "æªèªèšŒ"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2663
msgid "Completed"
msgstr "å®äº"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2670
#, perl-format
msgid ""
"Running %s failed.\n"
"Please consult the log window for details."
msgstr ""
"%s ã®å®è¡ã«å€±æããŸããïŒ\n"
"詳现ã«ã€ããŠã¯ïŒãã°ãŠã£ã³ããŠãã芧ãã ããïŒ"
#: tlpkg/installer/install-tl-gui.tcl:101
#, tcl-format
msgid ""
"Target directory %s non-empty;\n"
"may cause trouble!"
msgstr ""
"ã¿ãŒã²ãããã£ã¬ã¯ã㪠%s ã空ã§ã¯ãããŸããïŒ\n"
"ããã¯ãã©ãã«ã®åå ã«ãªãå¯èœæ§ããããŸãïŒ"
#: tlpkg/installer/install-tl-gui.tcl:107
#, tcl-format
msgid ""
"Target directory %s non-empty;\n"
"are you sure?"
msgstr ""
"ã¿ãŒã²ãããã£ã¬ã¯ã㪠%s ã空ã§ã¯ãããŸããïŒ\n"
"æ¬åœã«åã£ãŠããŸããïŒ"
#: tlpkg/installer/install-tl-gui.tcl:179
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2638
msgid "Welcome to TeX Live!"
msgstr "TeX Live ãžããããïŒ"
#: tlpkg/installer/install-tl-gui.tcl:182
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2641
#, tcl-format, perl-format
msgid ""
"See %s/index.html for links to documentation.\n"
"The TeX Live web site (https://tug.org/texlive/) contains any updates and "
"corrections. TeX Live is a joint project of the TeX user groups around the "
"world; please consider supporting it by joining the group best for you. The "
"list of groups is available on the web at https://tug.org/usergroups.html."
msgstr ""
"ããã¥ã¡ã³ãã®äžèŠ§ã¯ %s/index.html ãã芧ãã ããïŒTeX Live ã®ãŠã§ããµã€ã "
"(https://tug.org/texlive/) ã«ã¯ãã¹ãŠã®ã¢ããããŒããšã³ã¬ã¯ã·ã§ã³ã®æ
å ±ãæ²èŒ"
"ãããŠããŸãïŒTeX Live ã¯å
šäžçã® TeX ãŠãŒã¶äŒæå¿ã«ããååãããžã§ã¯ãã§"
"ãïŒTeX Live ãããžã§ã¯ãããµããŒãããŠããã ããå Žåã奜ã㪠TeX ãŠãŒã¶äŒã«"
"å
¥äŒããããšããæ€èšãã ããïŒTeX ãŠãŒã¶äŒã®äžèŠ§ã¯https://tug.org/usergroups."
"html ã§ã確èªããã ããŸãïŒ"
#: tlpkg/installer/install-tl-gui.tcl:186
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2651
#, tcl-format, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"
"Add %s/texmf-dist/doc/info to INFOPATH.\n"
"Most importantly, add %s/bin/%s\n"
"to your PATH for current and future sessions."
msgstr ""
"%s/texmf-dist/doc/man ã MANPATH ã«è¿œå ããŠãã ããïŒ\n"
"%s/texmf-dist/doc/info ã INFOPATH ã«è¿œå ããŠãã ããïŒ\n"
"æéèŠïŒTeX Live ã«å«ãŸãããã€ããªãå©çšå¯èœã«ãããã\n"
"%s/bin/%s ã PATH ã«è¿œå ããŠãã ããïŒ"
#: tlpkg/installer/install-tl-gui.tcl:264
msgid "Really abort?"
msgstr "æ¬åœã«äžæ¢ããŸããïŒ"
#: tlpkg/installer/install-tl-gui.tcl:352
msgid "Local repository"
msgstr "ããŒã«ã«ãªããžããª"
#: tlpkg/installer/install-tl-gui.tcl:388
#: tlpkg/installer/install-tl-gui.tcl:405
#: tlpkg/installer/install-tl-gui.tcl:440
#: texmf-dist/scripts/tlshell/tlshell.tcl:787
msgid "Abort"
msgstr "äžæ¢"
#: tlpkg/installer/install-tl-gui.tcl:410
#: tlpkg/installer/install-tl-gui.tcl:1911
msgid "TeX Live Installer"
msgstr "TeX Live ã€ã³ã¹ããŒã©"
#: tlpkg/installer/install-tl-gui.tcl:413
#: tlpkg/installer/install-tl-gui.tcl:2010
#, tcl-format
msgid ""
"Trying to load %s.\n"
"\n"
"If this takes too long, press Abort or choose another repository."
msgstr ""
"%s ãããŒãããŠããŸãïŒ\n"
"\n"
"åŠçã«æéããããéããå Žåã¯ãäžæ¢ããæŒããå¥ã®ãªããžããªãéžæããŠãã ã"
"ãïŒ"
#: tlpkg/installer/install-tl-gui.tcl:504
msgid "Cannot be created or cannot be written to"
msgstr "次ã®ãã¡ã€ã«ãæžã蟌ã¿äžèœã§ãïŒ"
#: tlpkg/installer/install-tl-gui.tcl:516
msgid "Directory name..."
msgstr "ãã£ã¬ã¯ããªåâŠ"
#: tlpkg/installer/install-tl-gui.tcl:523
msgid "Change name (slashes not allowed)"
msgstr "ååãå€æŽïŒã¹ã©ãã·ã¥ãå«ããããšã¯ã§ããŸããïŒ"
#: tlpkg/installer/install-tl-gui.tcl:534
msgid "No slashes allowed"
msgstr "ã¹ã©ãã·ã¥ãå«ããããšã¯ã§ããŸãã"
#: tlpkg/installer/install-tl-gui.tcl:556
msgid ""
"TL release component highly recommended!\n"
"Are you sure?"
msgstr ""
"TeX Live ã®ãªãªãŒã¹å¹Žãå«ããããšã匷ãæšå¥šããŸãïŒ\n"
"æ¬åœã«ç¶è¡ããŸããïŒ"
#: tlpkg/installer/install-tl-gui.tcl:565
msgid "Add year"
msgstr "幎ãè¿œå "
#: tlpkg/installer/install-tl-gui.tcl:569
#: tlpkg/installer/install-tl-gui.tcl:644
msgid "Remove year"
msgstr "幎ãé€å»"
#: tlpkg/installer/install-tl-gui.tcl:611
#: tlpkg/installer/install-tl-gui.tcl:1386
#: tlpkg/installer/install-tl-gui.tcl:1394
msgid "Installation root"
msgstr "ã€ã³ã¹ããŒã«å
"
#: tlpkg/installer/install-tl-gui.tcl:639
#: tlpkg/installer/install-tl-gui.tcl:1281 tlpkg/tltcl/tltcl.tcl:604
msgid "Browse..."
msgstr "éãâŠ"
#: tlpkg/installer/install-tl-gui.tcl:652
msgid "Localized directory names will be replaced by their real names"
msgstr "ããŒã«ã©ã€ãºããããã£ã¬ã¯ããªåã¯å®äœåã«çœ®ãæããããŸã"
#: tlpkg/installer/install-tl-gui.tcl:733
#, tcl-format
msgid "'~' equals %s, e.g. %s"
msgstr "'~' 㯠%s ãšç䟡ã§ãïŒäŸïŒ%s"
#: tlpkg/installer/install-tl-gui.tcl:888
msgid "Cannot deselect own platform"
msgstr "çŸåšã®ãã©ãããã©ãŒã ã®éžæãå€ãããšã¯ã§ããŸãã"
#: tlpkg/installer/install-tl-gui.tcl:923
#: tlpkg/installer/install-tl-gui.tcl:1285
msgid "Binaries"
msgstr "ãã€ããª"
#: tlpkg/installer/install-tl-gui.tcl:979
msgid "Schemes"
msgstr "ã¹ããŒã "
#: tlpkg/installer/install-tl-gui.tcl:1073
msgid "Collections"
msgstr "ã³ã¬ã¯ã·ã§ã³"
#: tlpkg/installer/install-tl-gui.tcl:1095
msgid "Select"
msgstr "éžæ"
#: tlpkg/installer/install-tl-gui.tcl:1111
msgid "Languages"
msgstr "èšèª"
#: tlpkg/installer/install-tl-gui.tcl:1113
msgid "Other collections"
msgstr "ã»ãã®ã³ã¬ã¯ã·ã§ã³"
#: tlpkg/installer/install-tl-gui.tcl:1238
msgid "Warning. Not all configured directories are writable!"
msgstr "èŠåïŒæå®ãããã£ã¬ã¯ããªã®äžéšãæžã蟌ã¿äžèœã§ãïŒ"
#: tlpkg/installer/install-tl-gui.tcl:1258
msgid "Symlinks"
msgstr "ã·ã³ããªãã¯ãªã³ã¯"
#: tlpkg/installer/install-tl-gui.tcl:1286
msgid "Man pages"
msgstr "man ããŒãž"
#: tlpkg/installer/install-tl-gui.tcl:1287
msgid "Info pages"
msgstr "info ããŒãž"
#: tlpkg/installer/install-tl-gui.tcl:1341
#, tcl-format
msgid "TeX Live %s Installer"
msgstr "TeX Live %s ã€ã³ã¹ããŒã©"
#: tlpkg/installer/install-tl-gui.tcl:1359
msgid "Advanced"
msgstr "é«åºŠãªèšå®"
#: tlpkg/installer/install-tl-gui.tcl:1389
msgid "Directories"
msgstr "ãã£ã¬ã¯ããª"
#: tlpkg/installer/install-tl-gui.tcl:1408
msgid "Main tree"
msgstr "ã¡ã€ã³ããªãŒ"
#: tlpkg/installer/install-tl-gui.tcl:1431
msgid "Local additions"
msgstr "ããŒã«ã«ã«è¿œå "
#: tlpkg/installer/install-tl-gui.tcl:1440
msgid "Per-user additions"
msgstr "ãŠãŒã¶ããšã«è¿œå "
#: tlpkg/installer/install-tl-gui.tcl:1467
msgid "More ..."
msgstr "ããã«è¡šç€ºâŠ"
#: tlpkg/installer/install-tl-gui.tcl:1476
msgid ""
"Portable setup:\n"
"May reset TEXMFLOCAL\n"
"and TEXMFHOME"
msgstr ""
"ããŒã¿ãã«èšå®ïŒ\n"
"TEXMFLOCAL ãš TEXMFHOME ã¯\n"
"ãªã»ãããããŸã"
#: tlpkg/installer/install-tl-gui.tcl:1490
#: texmf-dist/scripts/tlshell/tlshell.tcl:1339
#: texmf-dist/scripts/tlshell/tlshell.tcl:2117
msgid "Platforms"
msgstr "ãã©ãããã©ãŒã "
#: tlpkg/installer/install-tl-gui.tcl:1496
msgid "Current platform:"
msgstr "çŸåšã®ãã©ãããã©ãŒã ïŒ"
#: tlpkg/installer/install-tl-gui.tcl:1503
msgid "N. of additional platform(s):"
msgstr "è¿œå ãã©ãããã©ãŒã ã®æ°ïŒ"
#: tlpkg/installer/install-tl-gui.tcl:1516
msgid "Selections"
msgstr "éžæãããã®"
#: tlpkg/installer/install-tl-gui.tcl:1521
msgid "Scheme:"
msgstr "ã¹ããŒã ïŒ"
#: tlpkg/installer/install-tl-gui.tcl:1530
msgid "N. of collections:"
msgstr "è¿œå ã³ã¬ã¯ã·ã§ã³ã®æ°ïŒ"
#: tlpkg/installer/install-tl-gui.tcl:1533
msgid "Customize"
msgstr "ã«ã¹ã¿ãã€ãº"
#: tlpkg/installer/install-tl-gui.tcl:1542
msgid "Disk space required (in MB):"
msgstr "å¿
èŠãªãã£ã¹ã¯å®¹é (MB):"
#: tlpkg/installer/install-tl-gui.tcl:1620
msgid "Adjust searchpath"
msgstr "æ€çŽ¢ãã¹ã調æŽ"
#: tlpkg/installer/install-tl-gui.tcl:1629
msgid "Desktop integration"
msgstr "ã¹ã¿ãŒãã¡ãã¥ãŒã«ã·ã§ãŒãã«ãããäœæ"
#: tlpkg/installer/install-tl-gui.tcl:1641
msgid "File associations"
msgstr "ãã¡ã€ã«ã®é¢é£ä»ããå€æŽ"
#: tlpkg/installer/install-tl-gui.tcl:1680
msgid "Create symlinks in standard directories"
msgstr "ã·ã³ããªãã¯ãªã³ã¯ãæšæºãã£ã¬ã¯ããªã«äœæ"
#: tlpkg/installer/install-tl-gui.tcl:1686
msgid "Specify directories"
msgstr "ãã£ã¬ã¯ããªãæå®"
#: tlpkg/installer/install-tl-gui.tcl:1751
msgid "Custom scheme"
msgstr "ã«ã¹ã¿ã ã¹ããŒã "
#: tlpkg/installer/install-tl-gui.tcl:1936
#, tcl-format
msgid "%s not a local or remote repository"
msgstr "%s ã¯ããŒã«ã«ãªããžããªã§ããªã¢ãŒããªããžããªã§ããããŸãã"
#: tlpkg/installer/install-tl-gui.tcl:1937
#: tlpkg/installer/install-tl-gui.tcl:1943
#: texmf-dist/scripts/tlshell/tlshell.tcl:2020
msgid "Error"
msgstr "ãšã©ãŒ"
#: tlpkg/installer/install-tl-gui.tcl:1942
#, tcl-format
msgid "%s requires an argument"
msgstr "%s ã«ã¯åŒæ°ãå¿
èŠã§ã"
#: tlpkg/tltcl/tltcl.tcl:135
msgid "Specific mirror..."
msgstr "ç¹å®ã®ãã©ãŒãéžæâŠ"
#: tlpkg/tltcl/tltcl.tcl:152
msgid "No mirror list available"
msgstr "å©çšå¯èœãªãã©ãŒãªã¹ãããããŸãã"
#: tlpkg/tltcl/tltcl.tcl:687
msgid "Select or type"
msgstr "éžæãŸãã¯å
¥å"
#: texmf-dist/scripts/tlshell/tlshell.tcl:58
#: texmf-dist/scripts/tlshell/tlshell.tcl:273
#: texmf-dist/scripts/tlshell/tlshell.tcl:471
msgid "Idle"
msgstr "åŸ
æ©äž"
#: texmf-dist/scripts/tlshell/tlshell.tcl:258
#: texmf-dist/scripts/tlshell/tlshell.tcl:318
#: texmf-dist/scripts/tlshell/tlshell.tcl:451
#: texmf-dist/scripts/tlshell/tlshell.tcl:487
msgid "Running"
msgstr "å®è¡äž"
#: texmf-dist/scripts/tlshell/tlshell.tcl:586
msgid "Needs updating"
msgstr "ã¢ããããŒããå¿
èŠã§ã"
#: texmf-dist/scripts/tlshell/tlshell.tcl:588
msgid "Up to date"
msgstr "ææ°ã®ç¶æ
ã§ã"
#: texmf-dist/scripts/tlshell/tlshell.tcl:590
#: texmf-dist/scripts/tlshell/tlshell.tcl:2173
msgid "Unknown"
msgstr "äžæ"
#: texmf-dist/scripts/tlshell/tlshell.tcl:765
msgid "Loading"
msgstr "ããŒãäž"
#: texmf-dist/scripts/tlshell/tlshell.tcl:771
msgid "If loading takes too long, press Abort and choose another repository."
msgstr ""
"åŠçã«æéããããéããå Žåã¯ãäžæ¢ããæŒããå¥ã®ãªããžããªãéžæããŠãã ã"
"ãïŒ"
#: texmf-dist/scripts/tlshell/tlshell.tcl:772
#: texmf-dist/scripts/tlshell/tlshell.tcl:2019
#: texmf-dist/scripts/tlshell/tlshell.tcl:2088
msgid "Repositories"
msgstr "ãªããžããª"
#: texmf-dist/scripts/tlshell/tlshell.tcl:810
msgid "Done loading"
msgstr "èªã¿èŸŒã¿å®äº"
#: texmf-dist/scripts/tlshell/tlshell.tcl:834
msgid "A configured repository is unavailable."
msgstr "èšå®ããããªããžããªã®1ã€ãå©çšäžèœã§ãïŒ"
#: texmf-dist/scripts/tlshell/tlshell.tcl:961
msgid "Output"
msgstr "åºå"
#: texmf-dist/scripts/tlshell/tlshell.tcl:962
msgid "Other"
msgstr "ãã®ä»"
#: texmf-dist/scripts/tlshell/tlshell.tcl:988
#, tcl-format
msgid "%s not a repository"
msgstr "%s ã¯ãªããžããªã§ã¯ãããŸãã"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1071
msgid "No repositories"
msgstr "ãªããžããªããããŸãã"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1076
msgid "Multiple repositories"
msgstr "è€æ°ã®ãªããžããª"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1079
msgid "Not loaded"
msgstr "æªèªã¿èŸŒã¿"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1107
msgid "Actual repository"
msgstr "å®éã®ãªããžããª"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1192
msgid "Main Repository"
msgstr "ã¡ã€ã³ãªããžããª"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1203
msgid "Current:"
msgstr "çŸåšïŒ"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1209
msgid "New"
msgstr "æ°èŠïŒ"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1219
msgid "Any CTAN mirror"
msgstr "ãã©ãŒãèªåéžæ"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1229
msgid "Local directory..."
msgstr "ããŒã«ã«ãã£ã¬ã¯ããªâŠ"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1234
msgid "tlcontrib additional repository"
msgstr "è¿œå ãªããžã㪠(tlcontrib)"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1250
msgid "tlcontrib repository is included"
msgstr "tlcontrib ãªããžããªãå«ã¿ãŸã"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1251
msgid "Remove tlcontrib repository"
msgstr "tlcontrib ãªããžããªãåé€"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1253
msgid "tlcontrib repository is not included"
msgstr "tlcontrib ãªããžããªã¯å«ãŸããŠããŸãã"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1254
msgid "Add tlcontrib repository"
msgstr "tlcontrib ãªããžããªãè¿œå ãã"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1259
msgid "Save and Load"
msgstr "ä¿åããŠèªã¿èŸŒã¿"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1283
#, tcl-format
msgid "Cannot remove own platform %s"
msgstr "çŸåšã®ãã©ãããã©ãŒã (%s) ãåé€ããããšã¯ã§ããŸãã"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1347
msgid "Apply and close"
msgstr "é©çšããŠéãã"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1369
msgid "platform"
msgstr "ãã©ãããã©ãŒã "
#: texmf-dist/scripts/tlshell/tlshell.tcl:1433
#, tcl-format
msgid "Restore %s to revision %s?"
msgstr "%s ããã±ãŒãžããªããžã§ã³ %s ãžåŸ©å
ããŸããïŒ"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1456
msgid "No backups configured"
msgstr "ããã¯ã¢ãããèšå®ãããŠããŸãã"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1466
msgid "No backup directory defined"
msgstr "ããã¯ã¢ãããã£ã¬ã¯ããªãæå®ãããŠããŸãã"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1471
#, tcl-format
msgid "Backup directory %s does not exist"
msgstr "ããã¯ã¢ãããã£ã¬ã¯ã㪠%s ãååšããŸãã"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1494
#, tcl-format
msgid "No packages in backup directory %s"
msgstr "ããã¯ã¢ãããã£ã¬ã¯ã㪠%s ã«ããã±ãŒãžããããŸãã"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1504
#: texmf-dist/scripts/tlshell/tlshell.tcl:2259
msgid "Restore from backup"
msgstr "ããã¯ã¢ãããã埩å
"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1520
msgid "Package"
msgstr "ããã±ãŒãž"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1521
msgid "Revision"
msgstr "ãªããžã§ã³"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1562
msgid "Restore all"
msgstr "ãã¹ãŠåŸ©å
"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1592
#: texmf-dist/scripts/tlshell/tlshell.tcl:1624
#: texmf-dist/scripts/tlshell/tlshell.tcl:1664
#: texmf-dist/scripts/tlshell/tlshell.tcl:1714
#: texmf-dist/scripts/tlshell/tlshell.tcl:1789
msgid "Nothing to do!"
msgstr "äœãããããšããããŸããïŒ"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1679
#, tcl-format
msgid ""
"Also installing dependencies\n"
"\n"
"%s"
msgstr ""
"äŸåããã±ãŒãžãã€ã³ã¹ããŒã«ããŸã\n"
"\n"
"%s"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1686
#, tcl-format
msgid "Already installed: %s"
msgstr "%s ã¯ã€ã³ã¹ããŒã«æžã¿"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1727
#, tcl-format
msgid ""
"Also updating dependencies\n"
"\n"
"%s?"
msgstr ""
"以äžã®äŸåããã±ãŒãžãã¢ããããŒãããŸããïŒ\n"
"\n"
"%s"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1742
#, tcl-format
msgid "Updating some dependencies %s anyway. Continue?"
msgstr "äŸåããã±ãŒãž %s ãã¢ããããŒãããŸãïŒç¶è¡ããŸããïŒ"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1754
#, tcl-format
msgid "Skipped because not installed: %s"
msgstr "%s ã¯æªã€ã³ã¹ããŒã«ãªã®ã§ã¹ãããããŸã"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1757
#, tcl-format
msgid "Skipped because already up to date: %s"
msgstr "%s ã¯æ¢ã«ææ°çãªã®ã§ã¹ãããããŸã"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1793
#, tcl-format
msgid ""
"Also remove dependencies\n"
"\n"
"%s?"
msgstr ""
"以äžã®äŸåããã±ãŒãžãã¢ã³ã€ã³ã¹ããŒã«ããŸããïŒ\n"
"\n"
"%s"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1808
#, tcl-format
msgid "Removing some dependencies %s anyway. Continue?"
msgstr "äŸåããã±ãŒãž %s ãã¢ã³ã€ã³ã¹ããŒã«ããŸãïŒç¶è¡ããŸããïŒ"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1885
msgid "Info"
msgstr "æ
å ±"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1950
msgid "Cannot set default GUI language"
msgstr "ããã©ã«ã GUI èšèªãèšå®ã§ããŸãã"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2017
#, tcl-format
msgid ""
"%s is not a local or remote repository.\n"
"Please configure a valid repository"
msgstr ""
"%s ã¯ããŒã«ã«ãªããžããªã§ããªã¢ãŒããªããžããªã§ããããŸããïŒ\n"
"æå¹ãªãªããžããªãèšå®ããŠãã ãã"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2039
#: texmf-dist/scripts/tlshell/tlshell.tcl:2065
msgid "File"
msgstr "ãã¡ã€ã«"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2067
msgid "Load repository"
msgstr "ãªããžããªãèªã¿èŸŒã"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2069
msgid "Exit"
msgstr "çµäº"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2075
msgid "Regenerate filename database"
msgstr "ãã¡ã€ã«åããŒã¿ããŒã¹ãåçæ"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2076
msgid "Regenerating filename database..."
msgstr "ãã¡ã€ã«åããŒã¿ããŒã¹ãåçæäžâŠâŠ"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2077
msgid "Regenerate formats"
msgstr "ãã©ãŒããããåçæ"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2078
msgid "Rebuilding formats..."
msgstr "ãã©ãŒããããåçæäžâŠâŠ"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2079
msgid "Regenerate fontmaps"
msgstr "ãã©ã³ãããããåçæ"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2080
msgid "Rebuilding fontmap files..."
msgstr "ãã©ã³ãããããåçæäžâŠâŠ"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2102
msgid "GUI language (restarts tlshell)"
msgstr "GUI èšèªïŒtlshell ãåèµ·åããŸãïŒ"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2125
msgid ""
"GUI interface for TeX Live Manager\n"
"Implemented in Tcl/Tk"
msgstr "GUI ç TeX Live ãããŒãžã£Tcl/Tk å®è£
"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2126
msgid "tlmgr help"
msgstr "tlmgr ãã«ã"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2145
msgid "Restart self"
msgstr "tlshell ãåèµ·å"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2147
msgid "Restart tlmgr"
msgstr "tlmgr ãåèµ·å"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2150
msgid "Show logs"
msgstr "ãã°ã衚瀺"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2171
msgid "TL Manager up to date?"
msgstr "tlmgr ã¯ææ°çïŒ"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2176
msgid "Last tlmgr command:"
msgstr "tlmgr ã³ãã³ãïŒ"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2189
#, tcl-format
msgid "Root at %s"
msgstr "ã«ãŒã㯠%s ã§ã"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2197
msgid "Package list"
msgstr "ããã±ãŒãžãªã¹ã"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2207
msgid "Installed"
msgstr "ã€ã³ã¹ããŒã«æžã¿"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2214
msgid "Updatable"
msgstr "ã¢ããããŒãå¯èœ"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2225
msgid "Detail >> Global"
msgstr "ã«ããŽãª"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2228
msgid "Collections and schemes"
msgstr "ã³ã¬ã¯ã·ã§ã³ãšã¹ããŒã "
#: texmf-dist/scripts/tlshell/tlshell.tcl:2230
msgid "Only schemes"
msgstr "ã¹ããŒã ã®ã¿"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2238
msgid "Mark all"
msgstr "ãã¹ãŠéžæ"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2240
msgid "Mark none"
msgstr "ãã¹ãŠéžæ解é€"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2246
msgid "Install marked"
msgstr "éžæé
ç®ãã€ã³ã¹ããŒã«"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2250
msgid "Update marked"
msgstr "éžæé
ç®ãã¢ããããŒã"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2254
msgid "Remove marked"
msgstr "éžæé
ç®ãã¢ã³ã€ã³ã¹ããŒã«"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2264
msgid "Update tlmgr"
msgstr "tlmgr ãã¢ããããŒã"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2267
msgid "Update all"
msgstr "ãã¹ãŠã¢ããããŒã"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2274
msgid "Search"
msgstr "æ€çŽ¢"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2277
msgid "By name"
msgstr "å称ã§ãœãŒã"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2279
msgid "By name and description"
msgstr "å称ãšèª¬æã§ãœãŒã"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2291
msgid "Name"
msgstr "å称"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2294
msgid "Description"
msgstr "説æ"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2392
#, tcl-format
msgid ""
"%s is not writable. You can probably not do much.\n"
" Are you sure you want to continue?"
msgstr ""
"%s ã¯æžã蟌ã¿äžèœã§ãïŒå€ãã®åŠçãå®äºã§ããªãå¯èœæ§ããããŸãïŒ ããã§ãç¶"
"è¡ããŸããïŒ"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2405
msgid "Multi-user"
msgstr "ãã«ããŠãŒã¶"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2405
msgid "Single-user"
msgstr "ã·ã³ã°ã«ãŠãŒã¶"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:1
msgid "basic scheme (plain and latex)"
msgstr "basic ã¹ããŒã ïŒplain ããã³ latexïŒ"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2
msgid "ConTeXt scheme"
msgstr "ConTeXt ã¹ããŒã "
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:3
msgid "full scheme (everything)"
msgstr "full ã¹ããŒã ïŒãã¹ãŠïŒ"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:4
msgid "GUST TeX Live scheme"
msgstr "GUST TeX Live ã¹ããŒã "
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:5
msgid "infrastructure-only scheme (no TeX at all)"
msgstr "infrastructure-only ã¹ããŒã ïŒTeX åŠçç³»ã¯äžåå«ã¿ãŸããïŒ"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:6
msgid "medium scheme (small + more packages and languages)"
msgstr "midium ã¹ããŒã ïŒsmall ã¹ããŒã ïŒæ¬§å·ã®äž»èŠèšèªãµããŒãïŒ"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:7
msgid "minimal scheme (plain only)"
msgstr "minimal ã¹ããŒã ïŒplain ã®ã¿ïŒ"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:8
msgid "small scheme (basic + xetex, metapost, a few languages)"
msgstr ""
"small ã¹ããŒã ïŒbasic ã¹ããŒã ïŒXeTeX, MetaPost ãšããã€ãã®èšèªãµããŒãïŒ"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:9
msgid "teTeX scheme (more than medium, but nowhere near full)"
msgstr ""
"teTeX ã¹ããŒã ïŒmedium ã¹ããŒã ããã倧ãããïŒfull ã¹ããŒã ã«ã¯åã°ãªãïŒ"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:10
msgid "Essential programs and files"
msgstr "å¿
é ããã°ã©ã ãšãã¡ã€ã«"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:11
msgid "BibTeX additional styles"
msgstr "BibTeX ã®è¿œå ã¹ã¿ã€ã«"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:12
msgid "TeX auxiliary programs"
msgstr "TeX å€éšããã°ã©ã "
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:13
msgid "ConTeXt and packages"
msgstr "ConTeXt ãšããã±ãŒãž"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:14
msgid "Additional fonts"
msgstr "è¿œå ãã©ã³ã"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:15
msgid "Recommended fonts"
msgstr "æšå¥šãã©ã³ã"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:16
msgid "Graphics and font utilities"
msgstr "ç»åããã³ãã©ã³ãã®ãŠãŒãã£ãªãã£"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:17
msgid "Additional formats"
msgstr "è¿œå ãã©ãŒããã"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:18
msgid "Games typesetting"
msgstr "ã²ãŒã çµç"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:19
msgid "Humanities packages"
msgstr "人æç§åŠããã±ãŒãž"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:20
msgid "Arabic"
msgstr "ã¢ã©ãã¢èª"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:21
msgid "Chinese"
msgstr "äžåœèª"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:22
msgid "Chinese/Japanese/Korean (base)"
msgstr "æ¥äžé (base)"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:23
msgid "Cyrillic"
msgstr "ããªã«æå"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:24
msgid "Czech/Slovak"
msgstr "ãã§ã³ã»ã¹ãããã¢èª"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:25
msgid "US and UK English"
msgstr "è±èªã»ç±³èª"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:26
msgid "Other European languages"
msgstr "ãã®ä»ã®æ¬§å·èšèª"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:27
msgid "French"
msgstr "ãã©ã³ã¹èª"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:28
msgid "German"
msgstr "ãã€ãèª"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:29
msgid "Greek"
msgstr "ã®ãªã·ã¢èª"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:30
msgid "Italian"
msgstr "ã€ã¿ãªã¢èª"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:31
msgid "Japanese"
msgstr "æ¥æ¬èª"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:32
msgid "Korean"
msgstr "éåœèª"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:33
msgid "Other languages"
msgstr "ä»ã®èšèª"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:34
msgid "Polish"
msgstr "ããŒã©ã³ãèª"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:35
msgid "Portuguese"
msgstr "ãã«ãã¬ã«èª"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:36
msgid "Spanish"
msgstr "ã¹ãã€ã³èª"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:37
msgid "LaTeX fundamental packages"
msgstr "LaTeX åºæ¬ããã±ãŒãž"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:38
msgid "LaTeX additional packages"
msgstr "LaTeX è¿œå ããã±ãŒãž"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:39
msgid "LaTeX recommended packages"
msgstr "LaTeX æšå¥šããã±ãŒãž"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:40
msgid "LuaTeX packages"
msgstr "LuaTeX ããã±ãŒãž"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:41
msgid "Mathematics, natural sciences, computer science packages"
msgstr "æ°åŠïŒèªç¶ç§åŠïŒèšç®æ©ç§åŠããã±ãŒãž"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:42
msgid "MetaPost and Metafont packages"
msgstr "MetaPost ããã³ Metafont ããã±ãŒãž"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:43
msgid "Music packages"
msgstr "é³æ¥œããã±ãŒãž"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:44
msgid "Graphics, pictures, diagrams"
msgstr "ç»åãšå³è¡š"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:45
msgid "Plain (La)TeX packages"
msgstr "Plain (La)TeX ããã±ãŒãž"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:46
msgid "PSTricks"
msgstr "PSTricks"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:47
msgid "Publisher styles, theses, etc."
msgstr "åºç瀟ã¹ã¿ã€ã«ãããŒã"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:48
msgid "TeXworks editor; TL includes only the Windows binary"
msgstr "TeXworksïŒWindows çã®ã¿ïŒ"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:49
msgid "Windows-only support programs"
msgstr "Windows å°çšããã°ã©ã "
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:50
msgid "XeTeX and packages"
msgstr "XeTeX ãšããã±ãŒãž"
|