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
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
|
;file \src\resource.rc
[Enter account name (for example, My Google)]
ã¢ã«ãŠã³ãåãå
¥å ( äŸ: My Google )
[Choose the protocol type]
ãããã³ã«ã¿ã€ããéžæ
[Specify the internal account name (optional)]
å
éšã¢ã«ãŠã³ãåãæå® ( ä»»æ )
[OK]
OK
[Cancel]
Cancel
[Add %s]
%s ãè¿œå
[&Add]
è¿œå (&A)
[&Cancel]
Cancel(&C)
[Send authorization request]
èªèšŒãªã¯ãšã¹ããéä¿¡
[Custom name:]
ã«ã¹ã¿ã å:
[Group:]
ã°ã«ãŒã:
[Options]
ãªãã·ã§ã³
[Authorization request]
èªèšŒãªã¯ãšã¹ã
[Delete Contact]
ã³ã³ã¿ã¯ãã®åé€
[&Yes]
ã¯ã (&Y)
[&No]
ããã (&N)
[Hide from list only, in order to keep their history and ignore/visibility settings]
å±¥æŽåã³ , ç¡èŠ / å¯èŠèšå®ãç¶æããããã®ã¿ã®ãªã¹ããé衚瀺
[Are you sure you want to delete %s?]
%sãåé€ããŠããããã§ããïŒ
[This will erase all history and settings for this contact!]
ãã®ã³ã³ã¿ã¯ãã«å¯Ÿããå
šãŠã®ãã¹ããªåã³èšå®ãæ¶å»ããŸãïŒ
[Contact Display Options]
ã³ã³ã¿ã¯ã衚瀺çšãªãã·ã§ã³
[Miranda NG Profile Manager]
Miranda NG ãããã¡ã€ã«ãããŒãžã£ãŒ
[&Run]
å®è¡ (&R)
[&Exit]
çµäº (&E)
[Start in Service Mode with]
ãµãŒãã¹ã¢ãŒãã§èµ·å
[Find/Add Contacts]
ã³ã³ã¿ã¯ããæ€çŽ¢ / è¿œå
[Search:]
æ€çŽ¢:
[E-mail address]
é»åã¡ãŒã«ã¢ãã¬ã¹
[Name]
åå
[Nick:]
ããã¯:
[First:]
åå:
[Last:]
åå:
[Advanced]
詳现
[Advanced >>]
詳现 >>
[&Search]
æ€çŽ¢ (&S)
[More options]
è¿œå ãªãã·ã§ã³
[Add to list]
ãªã¹ãã«è¿œå
[Custom]
ã«ã¹ã¿ã
[Find/Add Contacts\nHere you can add contacts to your contact list]
ã³ã³ã¿ã¯ããæ€çŽ¢ / è¿œå \nã³ã³ã¿ã¯ããªã¹ãã«ã³ã³ã¿ã¯ããè¿œå ã§ããŸã
[Apply]
é©çš
[Please select a subentry from the list]
ãªã¹ããããµããšã³ããªãŒãéžæããŠãã ãã
[Install Database Settings]
ããŒã¿ããŒã¹èšå®ãã€ã³ã¹ããŒã«
[Yes]
ã¯ã
[No]
ããã
[A file containing new database settings has been placed in the Miranda NG directory.]
æ°èŠããŒã¿ããŒã¹ã®èšå®ãã¡ã€ã«ã¯ Miranda NG ãã©ã«ããŒå
ã«ãããŸã
[Do you want to import the settings now?]
ä»ããèšå®ãã€ã³ããŒãããŸãã ïŒ
[No to all]
å
šãŠãããã
[&View contents]
ã³ã³ãã³ããèŠã (&V)
[Security systems to prevent malicious changes are in place and you will be warned before changes that are not known to be safe.]
æªæã®ããå€æŽãé²ãããã«ã»ãã¥ãªãã£ã·ã¹ãã ãå
èµãããŠããŸããå®å
šãä¿èšŒãããŠããªãå€æŽãè¡ãªãããéã«èŠåããŸã
[Database Setting Change]
ããŒã¿ããŒã¹ã®èšå®å€æŽ
[Database settings are being imported from]
ããŒã¿ããŒã¹ã®èšå®ã¯ä»¥äžããã€ã³ããŒãäž
[This file wishes to change the setting]
ãã®ãã¡ã€ã«ã¯èšå®å€æŽãå¿
èŠã§ã
[to the value]
å²ãåœãŠ
[Do you want to allow this change?]
ãã®å€æŽãèš±å¯ããŸãã ?
[&Allow all further changes to this section]
ãã®ã»ã¯ã·ã§ã³ãžã®å
šãŠã®è¿œå å€æŽãèš±å¯ãã (&A)
[Cancel Import]
ã€ã³ããŒãããã£ã³ã»ã«
[Database Import Complete]
ããŒã¿ããŒã¹ã®ã€ã³ããŒããå®äºããŸãã
[The import has completed from]
以äžããã®ã€ã³ããŒãã¯å®äºããŸãã:
[What do you want to do with the file now?]
ãã®ãã¡ã€ã«ã«äœãããŸããïŒ
[&Recycle]
ãªãµã€ã¯ã« (&R)
[&Delete]
åé€ (&D)
[&Move/Rename]
移å / å称å€æŽ (&M)
[&Leave]
çµäºãã (&L)
[Netlib Log Options]
Netlib ãã°ãªãã·ã§ã³
[Show]
衚瀺
[Received bytes]
åä¿¡ãã€ãæ°
[Sent bytes]
éä¿¡ãã€ãæ°
[Additional data due to proxy communication]
ãããã·éä¿¡çšã®è¿œå ããŒã¿
[Text dumps where available]
å©çšå¯èœãªå Žæã«ããã¹ããæžãåºã
[Auto-detect text]
èªåæ€ç¥ããã¹ã
[Calling modules' names]
ã¢ãžã¥ãŒã«åãåŒåºäž
[Log to]
ãã°ããšã
[OutputDebugString()]
OutputDebugString()
[File]
ãã¡ã€ã«
[Run now]
ããã«å®è¡
[Show this dialog box when Miranda NG starts]
Miranda NG ã®èµ·åæã«ãã®ãã€ã¢ãã°ããã¯ã¹ã衚瀺
[Save as default]
ããã©ã«ããšããŠä¿å
[SSL Traffic]
SSL ãã©ãã£ãã¯
[Sounds]
é³å£°
[&Change...]
å€æŽ (&C)...
[&Preview]
ãã¬ãã¥ãŒ (&P)
[Download more sounds]
è¿œå é³å£°ãããŠã³ããŒã
[Sound Information]
é³å£°æ
å ±
[Location:]
å Žæ:
[Name:]
åå:
[Enable sound events]
é³å£°ã€ãã³ããæå¹
[Icons]
ã¢ã€ã³ã³
[Show category:]
ã«ããŽãªãŒã衚瀺:
[&Load icon set...]
ã¢ã€ã³ã³ã»ããèªèŸŒ (&L)...
[&Import icons >>]
ã¢ã€ã³ã³ãã€ã³ããŒã (&I) >>
[Download more icons]
è¿œå ã¢ã€ã³ã³ãããŠã³ããŒã
[The following events are being ignored:]
ç¡èŠããã€ãã³ããéžæ:
[Messages]
ã¡ãã»ãŒãž
[URLs]
URL
[Files]
ãã¡ã€ã«
[Online Notification]
ãªã³ã©ã€ã³éç¥
[Auth Requests]
èªèšŒãªã¯ãšã¹ã
[All Events]
å
šãŠã®ã€ãã³ã
[None]
ãªã
[Only the ticked contacts will be shown on the main contact list]
ãã§ãã¯ããã³ã³ã¿ã¯ãã®ã¿ãã¡ã€ã³ã³ã³ã¿ã¯ããªã¹ãã«è¡šç€º
[Ignore]
ç¡èŠ
[Added Notification]
éç¥ãè¿œå
[Typing]
å
¥åäž
[Visibility]
å¯èŠç¶æ
[You are visible to this person even when in invisible mode]
äžå¯èŠã¢ãŒãã§ã , ãã®äººã«å¯ŸããŠã¯å¯èŠã«ãªã
[You are never visible to this person]
ãã®äººã«å¯ŸããŠæ±ºããŠå¯èŠã«ãªããªã
[Icon Index]
ã¢ã€ã³ã³ã€ã³ããã¯ã¹
[Icon library:]
ã¢ã€ã³ã³ã©ã€ãã©ãªãŒ:
[Drag icons to main list to assign them:]
ã¡ã€ã³ãªã¹ãã«å²ãåœãŠãã¢ã€ã³ã³ããã©ãã°:
[Import multiple]
䞊åã€ã³ããŒã
[To main icons]
ã¡ã€ã³ã¢ã€ã³ã³ãž
[To]
å®
[<< &Import]
<< ã€ã³ããŒã (&I)
[To default status icons]
ããã©ã«ãã¹ããŒã¿ã¹ã¢ã€ã³ã³ãž
[Logging...]
ãã°ãèšé²...
[Outgoing Connections]
çºä¿¡æ¥ç¶
[Use proxy server]
ãããã·ãµãŒããŒã䜿çš
[Type:]
ã¿ã€ã:
[Host:]
ãã¹ã:
[Port:]
ããŒã:
[(often %d)]
( éåžž %d)
[Use Custom Login (Domain login picked up automatically)]
ã«ã¹ã¿ã ãã°ã€ã³ãäœ¿çš ( ãã¡ã€ã³ãã°ã€ã³ãèªåçã«éžæ )
[Username:]
ãŠãŒã¶ãŒå:
[Password:]
ãã¹ã¯ãŒã:
[Resolve hostnames through proxy]
ãããã·ãçµç±ããŠãã¹ãåã解決
[Port Range:]
ããŒãã®ç¯å²:
[Example: 1050-1070, 2000-2010, 2500]
èšå
¥äŸ: 1050-1070, 2000-2010, 2500
[Validate SSL certificates]
SSL 蚌ææžãæå¹
[Incoming Connections]
çä¿¡æ¥ç¶
[Enable UPnP port mapping]
UPnP ããŒããããã³ã°ãæå¹
[You will need to reconnect for the changes you have made on this page to take effect.]
ãã®ããŒãžã«è¡ã£ãå€æŽãåæ ããã«ã¯ , åæ¥ç¶ãå¿
èŠã§ã
[Please complete the following form to create a new user profile]
æ°èŠãŠãŒã¶ãŒãããã¡ã€ã«ã®äœæçšã«ä»¥äžã®ãã©ãŒã ãå
¥åããŠãã ãã
[Profile]
ãããã¡ã€ã«
[e.g. Workplace]
äŸ ã¯ãŒã¯ã¹ããŒã¹
[You can select a different profile driver from the default, it may offer more features or abilities, if in doubt use the default.]
ããã©ã«ãã®ãããã¡ã€ã«ãã©ã€ããŒä»¥å€ã« , è¿œå æ©èœçãæäŸããããããã¡ã€ã«ãã©ã€ããŒãéžæã§ããŸã
[e.g. Miranda Database]
äŸ Miranda ããŒã¿ããŒã¹
[Driver]
ãã©ã€ããŒ
[Download more plugins]
è¿œå ãã©ã°ã€ã³ãããŠã³ããŒã
[Description:]
説æ:
[Author(s):]
äœæè
:
[E-mail:]
é»åã¡ãŒã«:
[Homepage:]
Homepage:
[Unique ID:]
åºæ ID:
[Copyright:]
èäœæš©:
[Please restart Miranda NG for your changes to take effect.]
å€æŽãåæ ããã«ã¯ , Miranda NG ãåèµ·åããŠãã ãã
[Fonts and Colors]
ãã©ã³ããšè²
[Undo]
åãæ¶ã
[Reset]
ãªã»ãã
[Export...]
ãšã¯ã¹ããŒã...
[Color/Background]
è² / èæ¯
[Text Effect]
ããã¹ãå¹æ
[Text Color]
ããã¹ãè²
[Choose Font]
ãã©ã³ããéžæ
[Font]
ãã©ã³ã
[&Font:]
ãã©ã³ã (&F):
[Font st&yle:]
ãã©ã³ãå (&y):
[\nStyles and effects are disabled for this font.]
\nãã®ãã©ã³ãã«å¯Ÿããã¹ã¿ã€ã«ãšå¹æã¯ç¡å¹ã§ã
[&Size:]
ãµã€ãº (&S):
[Effects]
å¹æ
[Stri&keout]
åãæ¶ãç· (&k)
[&Underline]
äžç· (&U)
[&Color:]
è² (&C):
[Sample]
ãµã³ãã«
[AaBbYyZz]
AaBbYyZz
[Sc&ript:]
ã¹ã¯ãªãã (&r):
[&Apply]
é©çš (&A)
[&Help]
ãã«ã (&H)
[Menu Objects]
ã¡ãã¥ãŒãªããžã§ã¯ã
[Menu Items]
ã¡ãã¥ãŒé
ç®
[Protocol menus]
ãããã³ã«ã¡ãã¥ãŒ
[Move to the main menu]
ã¡ã€ã³ã¡ãã¥ãŒã«ç§»å
[Move to the status bar]
ã¹ããŒã¿ã¹ããŒã«ç§»å
[Warning!\r\nThis MenuObject not support user defined options.]
èŠå !\r\nãã®ã¡ãã¥ãŒãªããžã§ã¯ãã¯ãŠãŒã¶ãŒã®å®çŸ©ãããªãã·ã§ã³ã§ã¯ãµããŒããããŠããŸãã
[Insert separator]
ã»ãã¬ãŒã¿ãŒãæ¿å
¥
[Service:]
ãµãŒãã¹:
[Default]
ããã©ã«ã
[Set]
èšå®
[Disable icons]
ã¢ã€ã³ã³ãç¡å¹
[Account Order && Visibility]
ã¢ã«ãŠã³ãã®äžŠã³é ãšå¯èŠç¶æ
[Note: Miranda NG will have to be restarted for changes to take effect.]
泚æ: Miranda NG ã«å€æŽãåæ ããã«ã¯åèµ·åãå¿
èŠã§ã
[Key Bindings]
ããŒãã€ã³ãã£ã³ã°
[Shortcut:]
ã·ã§ãŒãã«ãã:
[Add]
è¿œå
[Remove]
åé€
[Undo Changes]
å€æŽãå
ã«æ»ã
[Reset To Default]
ããã©ã«ãã«ãªã»ãã
[Hotkeys]
ãããããŒ
[Accounts]
ã¢ã«ãŠã³ã
[Accounts\nConfigure your IM accounts]
ã¢ã«ãŠã³ã\nIM ã¢ã«ãŠã³ãã®èšå®
[Account information:]
ã¢ã«ãŠã³ãæ
å ±:
[Additional:]
è¿œå :
[Configure network...]
ãããã¯ãŒã¯ã®èšå®...
[Get more protocols...]
è¿œå ãããã³ã«ãå
¥æ...
[&Add...]
è¿œå (&A)...
[&Edit]
ç·šé (&E)
[&Options]
ãªãã·ã§ã³ (&O)
[&Upgrade]
ã¢ããã°ã¬ãŒã (&U)
[&Remove...]
åé€ (&R)...
[Miranda NG]
Miranda NG
[Miranda NG is being restarted.\nPlease wait...]
Miranda NG ã¯åèµ·åäžã§ã\nãåŸ
ã¡ãã ãã...
[Error Console]
ãšã©ãŒã³ã³ãœãŒã«
[Error notifications]
ãšã©ãŒéç¥
[Headers:]
ããããŒ:
[This font is used to display main section titles or text elements.]
ãã®ãã©ã³ãã¯ã¡ã€ã³ã»ã¯ã·ã§ã³ã®ã¿ã€ãã«ãããã¹ãèŠçŽ ã®è¡šç€ºã«äœ¿çšãããŠããŸã
[Normal text:]
æšæºããã¹ã:
[This font is used to display most text element or section bodies.]
ãã®ãã©ã³ãã¯å€§éšåã®ããã¹ãèŠçŽ ãæ¬æã®ã»ã¯ã·ã§ã³ã®æ¬æã«äœ¿çšãããŠããŸã
[Minor notes:]
ãã€ããŒã¡ã¢:
[This font is used to display various addtional notes.]
ãã®ãã©ã³ãã¯åçš®ã®è¿œå ã¡ã¢ã®è¡šç€ºã«äœ¿çšãããŠããŸã
[Event icon legend:]
ã€ãã³ãã¢ã€ã³ã³å¡äŸ:
[Choose events you wish to ingonre:]
ç¡èŠããã€ãã³ããéžæ:
[Font Effect]
ãã©ã³ãå¹æ
[Effect:]
å¹æ:
[Base color:]
åºæ¬è²:
[opacity:]
äžéæ床:
[Secondary color:]
第 2 è²:
[Tray]
ãã¬ã€
[&Hide/Show]
衚瀺 / é衚瀺 (&H)
[E&xit]
çµäº (&x)
[Nowhere]
ãªã
[&New Group]
æ°èŠã°ã«ãŒã (&N)
[&Hide Offline Users]
ãªãã©ã€ã³ãŠãŒã¶ãŒãé衚瀺 (&H)
[Hide &Offline Users out here]
ããã«ããªããªãã©ã€ã³ãŠãŒã¶ãŒãé衚瀺 (&O)
[Hide &Empty Groups]
空ã®ã°ã«ãŒããé衚瀺 (&E)
[Disable &Groups]
ã°ã«ãŒããç¡å¹ (&G)
[Hide Miranda]
Miranda ãé衚瀺
[Group]
ã°ã«ãŒã
[&New Subgroup]
æ°èŠãµãã°ã«ãŒã (&N)
[&Hide Offline Users in here]
ããã®ãªãã©ã€ã³ãŠãŒã¶ãŒãé衚瀺 (&H)
[&Rename Group]
ã°ã«ãŒãåãå€æŽ (&R)
[&Delete Group]
ã°ã«ãŒããåé€ (&D)
[&Reset to default]
ããã©ã«ãã«æ»ã (&R)
[find/add]
æ€çŽ¢ / è¿œå
[&Add to List]
ãªã¹ãã«è¿œå (&A)
[User &Details]
ãŠãŒã¶ãŒã®è©³çŽ°æ
å ± (&D)
[Send &Message]
ã¡ãã»ãŒãžãéä¿¡ (&M)
[Log]
ãã°
[&Copy]
ã³ã㌠(&C)
[Co&py All]
å
šãŠã³ã㌠(&p)
[Select &All]
å
šãŠéžæ(&A)
[C&lear Log]
ãã°ãæ¶å»ãã (&l)
[Open in &new window]
æ°èŠãŠã£ã³ããŠã§éã
[&Open in existing window]
æ¢åã®ãŠã£ã³ããŠãéã (&O)
[&Copy link]
ãªã³ã¯ãã³ã㌠(&C)
[Cancel Change]
å€æŽããã£ã³ã»ã«
[&Reset To Default]
ããã©ã«ãã«æ»ã (&R)
;file \src\core\stdauth\resource.rc
[&Authorize]
èš±å¯ (&A)
[&Deny]
æåŠ (&D)
[Decide &Later]
åŸã§æ±ºå® (&L)
[Reason:]
çç±:
[Denial Reason:]
æåŠã®çç±:
[Add to contact list if authorized]
èªèšŒæžã¿ãªãã³ã³ã¿ã¯ããªã¹ãã«è¿œå
[You Were Added]
ããªãã¯è¿œå ãããŸãã
[&Close]
éãã (&C)
;file \src\core\stdaway\resource.rc
[%s Message for %s]
%s ã¡ãã»ãŒãž å®å
%s
[Retrieving %s message...]
%s ã¡ãã»ãŒãžã埩掻...
[Status Messages]
ã¹ããŒã¿ã¹ã¡ãã»ãŒãž
[Do not reply to requests for this message]
ãã®ã¡ãã»ãŒãžåãã®ãªã¯ãšã¹ãã«è¿ä¿¡ããªã
[Do not pop up dialog asking for new message]
æ°èŠã¡ãã»ãŒãžç¢ºèªçšãã€ã¢ãã°ããããã¢ããããªã
[By default, use the same message as last time]
ããã©ã«ã㧠, çµäºæã«åãã¡ãã»ãŒãžã䜿çš
[By default, use this message:]
ããã©ã«ã㧠, ãã®ã¡ãã»ãŒãžã䜿çš:
[Use %time% for the current time, %date% for the current date]
çŸåšã®æéãšã㊠%time%, çŸåšã®æ¥ä»ãšã㊠%date% ã䜿çš
[Status messages:]
ã¹ããŒã¿ã¹ã¡ãã»ãŒãž:
[Change %s Message]
%s ã¡ãã»ãŒãžãå€æŽãã
[Closing in %d]
%d ç§åŸã«éãã
;file \src\core\stdchat\res\chat.rc
[&Send]
éä¿¡ (&S)
[Show these events only:]
以äžã®ã€ãã³ãã®ã¿è¡šç€º:
[Actions]
ã¢ã¯ã·ã§ã³
[Nick changes]
ããã¯ãå€æŽ
[Users joining]
ãŠãŒã¶ãŒã®åå
[Users leaving]
ãŠãŒã¶ãŒã®é¢åž
[Topic changes]
ãããã¯å€æŽ
[Status changes]
ã¹ããŒã¿ã¹å€æŽ
[Information]
æ
å ±
[Disconnects]
åæ
[User kicks]
ãŠãŒã¶ãŒæé€
[Notices]
éç¥
[Log Options]
ãã°ãªãã·ã§ã³
[Log timestamp]
ãã°ã¿ã€ã ã¹ã¿ã³ã
[Timestamp]
ã¿ã€ã ã¹ã¿ã³ã
[Other name]
ãã®ä»ã®åå
[Your name]
åå
[Enable highlighting]
匷調衚瀺ãæå¹
[Limit log text to (events):]
ãã°ããã¹ãã®å¶é (ã€ãã³ã):
[Trim to (KB)]
ããªã ãã (KB):
[Words to highlight (wildcards allowed)]
åèªã匷調衚瀺 ( ã¯ã€ã«ãã«ãŒã䜿çšå¯ )
[Enable logging to disk]
ãã£ã¹ã¯ã«ãã°ãæ®ã
[Log directory]
ãã°ãã©ã«ããŒ
[Other]
ãã®ä»
[Add new rooms to group:]
æ°ããã«ãŒã ãã°ã«ãŒãã«è¿œå :
[Userlist row distance (pixels):]
ãŠãŒã¶ãŒãªã¹ãã®è¡éé ( ãã¯ã»ã« ):
[Use same style as in the message log]
ã¡ãã»ãŒãžãã°ãšåãã¹ã¿ã€ã«ã䜿çš
[Use default colors]
ããã©ã«ãè²ã䜿çš
[Use custom colors]
ã«ã¹ã¿ã è²ã䜿çš
[Popups for the Chat plugin]
ãã£ãããã©ã°ã€ã³çšãããã¢ãã
[Timeout (s)]
ã¿ã€ã ã¢ãŠã ( ç§ )
[Text]
ããã¹ã
[Background]
èæ¯
[List]
ãªã¹ã
[&Message]
ã¡ãã»ãŒãž (&M)
[Clear lo&g]
ãã°ãã¯ãªã¢ (&g)
[Co&py all]
å
šãŠã³ã㌠(&p)
[Word lookup]
åèªæ€çŽ¢
[Google]
Google
[Wikipedia]
Wikipedia
[Link]
ãªã³ã¯
[Open a &new browser window]
æ°èŠãã©ãŠã¶ãŠã£ã³ããŠãéã (&n)
[&Open in current browser window]
çŸåšã®ãã©ãŠã¶ãŠã£ã³ããŠãéã (&O)
[Message]
ã¡ãã»ãŒãž
[Redo]
ããçŽã
[Copy]
ã³ããŒ
[Cut]
ã«ãã
[Paste]
ããŒã¹ã
[Select All]
å
šãŠéžæ
[Clear]
ã¯ãªã¢
[Tabs]
ã¿ã
[&Close tab]
ã¿ããéãã (&C)
[C&lose other tabs]
ä»ã®ã¿ããéãã (&l)
[&Open at this position]
ãã®äœçœ®ã«éã (&O)
;file \src\core\stdclist\res\resource.rc
[Hide offline users]
ãªãã©ã€ã³ãŠãŒã¶ãŒãé衚瀺
[Hide empty groups]
空ã®ã°ã«ãŒããé衚瀺
[Disable groups]
ã°ã«ãŒããç¡å¹
[Ask before deleting contacts]
ã³ã³ã¿ã¯ããåé€ããåã«ç¢ºèªãã
[Sort contacts by name]
ã³ã³ã¿ã¯ããååé ã«äžŠã¹ã
[Sort contacts by status]
ã³ã³ã¿ã¯ããã¹ããŒã¿ã¹é ã«äžŠã¹ã
[Sort contacts by protocol]
ã³ã³ã¿ã¯ãããããã³ã«é ã«äžŠã¹ã
[Single click interface]
ã·ã³ã°ã«ã¯ãªãã¯ã€ã³ã¿ãŒãã§ãŒã¹
[Always show status in tooltip]
åžžã«ããŒã«ãããã§ç¶æ³ãèŠã
[Disable icon blinking]
ã¢ã€ã³ã³ç¹æ»
ãç¡å¹
[ms delay]
ããªç§ é
延
[icon when statuses differ]
ã¹ããŒã¿ã¹ãç°ãªãæã®ã¢ã€ã³ã³
[Cycle icons every]
ã¢ã€ã³ã³ã®åãæ¿ã
[seconds, when statuses differ]
ç§æ¯ãã¹ããŒã¿ã¹ãç°ãªãæ
[Show multiple icons]
è€åã¢ã€ã³ã³ã衚瀺
[Only when statuses differ]
ã¹ããŒã¿ã¹ãç°ãªãæã®ã¿
[Contact List]
ã³ã³ã¿ã¯ããªã¹ã
[System tray icon]
ã·ã¹ãã ãã¬ã€ã¢ã€ã³ã³
[System tray icon when using multiple protocols]
è€æ°ãããã³ã«äœ¿çšæã®ã·ã¹ãã ãã¬ã€ã¢ã€ã³ã³
[Contact List Sorting]
ã³ã³ã¿ã¯ããªã¹ãã®äžŠã³æ¿ã
[Window]
ãŠã£ã³ããŠ
[Always on top]
åžžã«äžçªå
[Tool style main window]
ããŒã«ã¹ã¿ã€ã«ã®ã¡ã€ã³ãŠã£ã³ããŠ
[Minimize to tray]
ãã¬ã€ãæå°å
[Show menu bar]
ã¡ãã¥ãŒããŒã衚瀺
[Easy move]
ç°¡æ移å
[Show title bar]
ã¿ã€ãã«ããŒã衚瀺
[Title bar text:]
ã¿ã€ãã«ã©ãã«
[Show drop shadow (restart required)]
ããããã·ã£ããŠã衚瀺(èŠåèµ·å)
[Pin to desktop]
ãã¹ã¯ãããã«åºå®
[Hide contact list after it has been idle for]
䜿ãããªããªã£ãã³ã³ã¿ã¯ããªã¹ããé衚瀺
[seconds]
ç§
[Automatically resize window to height of list]
ãªã¹ãã®é«ãã§èªåçã«ãŠã£ã³ããŠã®å€§ããã調æŽ
[maximum]
æ倧
[% of screen]
%( ç»é¢ )
[Size upwards]
ãµã€ãºãäžãã
[If window is partially covered, bring to front instead of hiding]
ãŠã£ã³ããŠãäžéšé ããŠããå Žå , åŸæ¹ããåé¢ã«ç§»åãã
[Enable docking]
ãããã³ã°ãæå¹
[Fade contact list in/out]
ã³ã³ã¿ã¯ããªã¹ãããã§ãŒãã€ã³/ãã§ãŒãã¢ãŠã
[Transparent contact list]
ã³ã³ã¿ã¯ããªã¹ããéé衚瀺ã«ãã
[Inactive opacity:]
éã¢ã¯ãã£ãäžéæ床ïŒ
[Active opacity:]
ã¢ã¯ãã£ãäžéæ床:
[Items]
ã¢ã€ãã
[Show divider between online and offline contacts]
ãªã³ã©ã€ã³ãšãªãã©ã€ã³ã®ã³ã³ã¿ã¯ãã®éã«å¢çç·ã衚瀺
[Hot track items as mouse passes over]
ããŠã¹ã®åãã«ããããŠã¢ã€ãã ãããããã©ãã¯
[Disable drag and drop of items]
ã¢ã€ãã ã®ãã©ãã°ïŒãããããç¡å¹
[Disable rename of items by clicking twice]
ããã«ã¯ãªãã¯ã§ã¢ã€ãã åãå€æŽããªã
[Show selection even when list is not focused]
ãªã¹ãããã©ãŒã«ã¹ãããŠããªãå Žåãéžæã衚瀺
[Make selection highlight translucent]
éžæãããã®ãåéæã§åŒ·èª¿è¡šç€º
[Dim idle contacts]
äžèŠã®ã³ã³ã¿ã¯ããæããã
['Hide Offline' means to hide:]
' ãªãã©ã€ã³ã®é衚瀺 ' ã§é衚瀺ã«ãã察象:
[Groups]
ã°ã«ãŒã
[Draw a line alongside group names]
ã°ã«ãŒãåã«å¹³è¡ããŠç·ãåŒã
[Show counts of number of contacts in a group]
ã°ã«ãŒãã«ããã³ã³ã¿ã¯ãã®ç·æ°ã衚瀺
[Hide group counts when there are none online]
ãªã³ã©ã€ã³ãŠãŒã¶ãŒãããªãæã°ã«ãŒãæ°ãé衚瀺
[Sort groups alphabetically]
ã¢ã«ãã¡ãããé ã«ã°ã«ãŒãã䞊ã¹ã
[Quicksearch in open groups only]
ãªãŒãã³ã°ã«ãŒãã®ã¿ã®ã¯ã€ãã¯æ€çŽ¢
[Indent groups by:]
ã°ã«ãŒãã®ã€ã³ãã³ã ïŒ
[pixels]
ãã¯ã»ã«
[Visual]
ããžã¥ã¢ã«
[Scroll list smoothly]
ãªã¹ãããªãããã«ã¹ã¯ããŒã«
[Time:]
æé:
[milliseconds]
ããªç§
[Left margin:]
å·ŠããŒãžã³:
[Hide vertical scroll bar]
åçŽæ¹åã®ã¹ã¯ããŒã«ããŒãé衚瀺
[Row height:]
è¡ã®é«ã:
[Gamma correction]
ã¬ã³ãè£æ£
[Gray out entire list when:]
ãªã¹ãå
šäœãç°è²è¡šç€ºãã:
[Contact List Background]
ã³ã³ã¿ã¯ããªã¹ãã®èæ¯
[Background color]
èæ¯è²
[Selection color]
éžæè²
[Use background image]
èæ¯ã«ç»åã䜿çš
[Stretch to width]
å¹
ãæ¡å€§
[Stretch to height]
é«ããæ¡å€§
[Tile horizontally]
æ°Žå¹³ã«ã¿ã€ã«è¡šç€º
[Tile vertically]
åçŽã«ã¿ã€ã«è¡šç€º
[Scroll with text]
ããã¹ãã«åãããŠã¹ã¯ããŒã«
[Stretch proportionally]
æ¯äŸããŠæ¡å€§
[Use Windows colors]
ãŠã£ã³ããŠè²ã䜿çš
[Status Bar]
ã¹ããŒã¿ã¹ããŒ
[Show status bar]
ã¹ããŒã¿ã¹ããŒã衚瀺
[Show icons]
ã¢ã€ã³ã³ã衚瀺
[Show protocol names]
ãããã³ã«åã衚瀺
[Show status text]
ã¹ããŒã¿ã¹ããã¹ãã衚瀺
[Right click opens status menu]
å³ã¯ãªãã¯ã§ã¹ããŒã¿ã¹ã¡ãã¥ãŒãéã
[Right click opens Miranda NG menu]
å³ã¯ãªãã¯ã§ Miranda NG ã®ã¡ãã¥ãŒãéã
[Make sections equal width]
ã»ã¯ã·ã§ã³ã®å¹
ãåãã«ãã
[Show bevels on panels]
ããã«ã®é¢åãã衚瀺
[Show resize grip indicator]
ãµã€ãºå€æŽã°ãªããã€ã³ãžã±ãŒã¿ã衚瀺
[Ordering:]
䞊ã³é :
[Contact list:]
ã³ã³ã¿ã¯ããªã¹ã:
[If window is partially covered, bring it to front]
ãŠã£ã³ããŠãäžéšé ããŠããå Žå , åŸæ¹ããåé¢ã«ç§»åãã
[Window:]
ãŠã£ã³ããŠ:
[Contact list background:]
ã³ã³ã¿ã¯ããªã¹ãã®èæ¯:
[&Status]
ã¹ããŒã¿ã¹ (&S)
[&Offline\tCtrl+0]
ãªãã©ã€ã³ (&O)\tCtrl+0
[On&line\tCtrl+1]
ãªã³ã©ã€ã³ (&l)\tCtrl+1
[&Away\tCtrl+2]
éåºãã (&A)\tCtrl+2
[&NA\tCtrl+3]
å¿çäžå¯ (&N)\tCtrl+3
[Occ&upied\tCtrl+4]
åã蟌ã¿äž (&u)\tCtrl+4
[&DND\tCtrl+5]
éªéããªã㧠(&D)\tCtrl+5
[&Free for chat\tCtrl+6]
ãã£ãã OK!(&F)\tCtrl+6
[&Invisible\tCtrl+7]
äžå¯èŠ (&I)\tCtrl+7
[On the &Phone\tCtrl+8]
é»è©±äž (&P)\tCtrl+8
[Out to &Lunch\tCtrl+9]
æŒé£äž (&L)\tCtrl+9
;file \src\core\stdfile\resource.rc
[Send File(s)]
éä¿¡ãã¡ã€ã«
[To:]
éä¿¡è
:
[File(s):]
ãã¡ã€ã«:
[&Choose Again...]
åéžæ (&C)...
[Total size:]
åèšãµã€ãº:
[Incoming File Transfer]
çä¿¡ãã¡ã€ã«è»¢é
[A&ccept]
åä¿¡ (&c)
[&Decline]
æžå° (&D)
[From:]
éä¿¡è
:
[Date:]
æ¥ä»:
[Files:]
ãã¡ã€ã«:
[Save to:]
以äžãšããŠä¿å:
[&Open...]
éã...
[Open &folder]
ãã©ã«ããŒãéã
[Transfer completed, open file(s).]
転éå®äºããŸããããã¡ã€ã«ãéããŸã
[No data transferred]
転éããŒã¿ã¯ãããŸãã
[File Already Exists]
ãã¡ã€ã«ã¯æ¢ã«ååšããŠããŸã
[Resume]
åé
[Resume all]
å
šãŠåé
[Overwrite]
äžæžã
[Overwrite all]
å
šãŠäžæžã
[Save as...]
以äžãšããŠä¿å...
[Auto rename]
èªåååå€æŽ
[Skip]
ã¹ããã
[Cancel transfer]
転éããã£ã³ã»ã«
[You are about to receive the file]
ãã¡ã€ã«ãåä¿¡ããããã§ã
[Existing file]
ååšãããã¡ã€ã«
[Size:]
ãµã€ãº:
[Last modified:]
æçµå€æŽ:
[Open file]
ãã¡ã€ã«ãéã
[File properties]
ãã¡ã€ã«ã®ããããã£
[File being received]
ãã¡ã€ã«ãåä¿¡ããŸãã
[File Transfers]
ãã¡ã€ã«è»¢é
[Clear completed]
å®äºåãã¯ãªã¢
[Close]
éãã
[Receiving files]
åä¿¡ãã¡ã€ã«
[Received files folder:]
åä¿¡ãã¡ã€ã«ãã©ã«ããŒ:
[Variables Allowed: %userid%, %nick%, %proto%, %miranda_path%, %userprofile%]
èš±å¯ããå€æ°: %userid%, %nick%, %proto%, %miranda_path%, %userprofile%
[Auto-accept incoming files from people on my contact list]
ã³ã³ã¿ã¯ããªã¹ãã«ç»é²æžã®äººããã®çä¿¡ãã¡ã€ã«ãèªååä¿¡
[Minimize the file transfer window]
ãã¡ã€ã«è»¢éãŠã£ã³ããŠãæå°å
[Close window when transfer completes]
転éãå®äºããããŠã£ã³ããŠãéãã
[Clear completed transfers on window closing]
éããŠãããŠã£ã³ããŠã®è»¢éãå®äºãããã¯ãªã¢
[Virus scanner]
ãŠã€ã«ã¹æ€ç¥
[Scan files:]
ã¹ãã£ã³å®è¡
[Never, do not use virus scanning]
ãŠã€ã«ã¹ã¹ãã£ã³ãäžå䜿çšããªã
[When all files have been downloaded]
å
šãã¡ã€ã«ã®ããŠã³ããŒããå®äºããæ
[As each file finishes downloading]
ããŠã³ããŒããçµäºãããã¡ã€ã«æ¯
[Command line:]
ã³ãã³ãã©ã€ã³:
[%f will be replaced by the file or folder name to be scanned]
%f ã¯ã¹ãã£ã³æžã®ãã¡ã€ã«åãããã¯ãã©ã«ããŒåã§çœ®ãæããããŸã
[Warn me before opening a file that has not been scanned]
ãŠã€ã«ã¹æ€ç¥ãè¡ãããŠããªããã¡ã€ã«ãéãåã«èŠåãã
[If incoming files already exist]
çä¿¡ãã¡ã€ã«ãæ¢ã«ååšããå Žå
[Ask me]
確èªãã
[You will always be asked about files from people not on your contact list]
ããªãã®ã³ã³ã¿ã¯ããªã¹ãã«ãªã人ããã®ãã¡ã€ã«ã¯æ¯å確èª
;file \src\core\stdhelp\resource.rc
[About Miranda NG]
Miranda NG ã®ããŒãžã§ã³æ
å ±
[Miranda NG\n%s]
Miranda NG\n%s
[Credits >]
ã¯ã¬ãžãã >
;file \src\core\stdidle\resource.rc
[Become idle if the following is left unattended:]
以äžãç¡äººç¶æ
ã«ãªã£ããã¢ã€ãã«ã«ãªã:
[Windows]
Windows
[Miranda]
Miranda
[Become idle if the screen saver is active]
ã¹ã¯ãªãŒã³ã»ãŒããŒãã¢ã¯ãã£ãã«ãªã£ããã¢ã€ãã«ã«ãªã
[Become idle if a terminal session is disconnected]
端æ«ã®ã»ãã·ã§ã³ãåæãããã¢ã€ãã«ã«ãªã
[Do not let protocols report any idle information]
ã¢ã€ãã«æ
å ±ã¯äžåãããã³ã«ã«å ±åããªã
[minute(s)]
å
[for]
é£ç¶
[Change my status mode to:]
èªåã®ã¹ããŒã¿ã¹ã¢ãŒããå€æŽãã:
[Do not set status back to online when returning from idle]
ã¢ã€ãã«ç¶æ
ããæ»ã£ãéã« , ã¹ããŒã¿ã¹ããªã³ã©ã€ã³ã«æ»ããªã
[Idle Options]
ã¢ã€ãã«ãªãã·ã§ã³
[Become idle if application full screen]
ã¢ããªã±ãŒã·ã§ã³ããã«ã¹ã¯ãªãŒã³ã«ãªã£ããã¢ã€ãã«ã«ãªã
[Become idle if computer is left unattended for:]
ã³ã³ãã¥ãŒã¿ãŒã以äžã«å¯ŸããŠç¡äººç¶æ
ã«ãªã£ããã¢ã€ãã«ã«ãªã:
[Idle (auto-away):]
ã¢ã€ãã« ( èªåé¢åžäž )
;file \src\core\stdmsg\res\resource.rc
[Automatically popup window when:]
èªåçã«ãããã¢ãããŠã£ã³ããŠãéãå Žå:
[In background]
èæ¯ã§
[Close the message window on send]
éä¿¡çšã¡ãã»ãŒãžãŠã£ã³ããŠãéãã
[Minimize the message window on send]
éä¿¡çšã¡ãã»ãŒãžãŠã£ã³ããŠãæå°å
[Use the contact's status icon as the window icon]
ã³ã³ã¿ã¯ãã¹ããŒã¿ã¹ã¢ã€ã³ã³ããŠã£ã³ããŠã¢ã€ã³ã³ãšããŠäœ¿çš
[Save the window size and location individually for each contact]
ã³ã³ã¿ã¯ãæ¯ã«ãŠã£ã³ããŠãµã€ãºãšäœçœ®ãåå¥ã«ä¿å
[Cascade new windows]
æ°èŠãŠã£ã³ããŠãã«ã¹ã±ãŒã衚瀺
[Show 'Send' button]
' éä¿¡ ' ãã¿ã³ã衚瀺
[Show username on top row]
ãŠãŒã¶ãŒåãäžçªäžã®è¡ã«è¡šç€º
[Show toolbar buttons on top row]
ããŒã«ããŒã®ãã¿ã³ãäžçªäžã®è¡ã«è¡šç€º
[Send message on double 'Enter']
ãšã³ã¿ãŒã㌠2 åã§ã¡ãã»ãŒãžéä¿¡
[Send message on 'Enter']
ãšã³ã¿ãŒããŒã§ã¡ãã»ãŒãžéä¿¡
[Show character count]
æåæ°ã衚瀺
[Show warning when message has not been received after]
次ã®ç§æ°çµéããŠãã¡ãã»ãŒãžãå±ããªãå ŽåèŠåã衚瀺
[Support control up/down in message area to show previously sent messages]
以åéä¿¡ããã¡ãã»ãŒãžã衚瀺ããçºã«ã¡ãã»ãŒãžãšãªã¢ã®äžäžç§»åããµããŒã
[Delete temporary contacts when closing message window]
ã¡ãã»ãŒãžãŠã£ã³ããŠãéããæã«äžæçãªã³ã³ã¿ã¯ããåé€
[Enable avatar support in the message window]
ã¡ãã»ãŒãžãŠã£ã³ããŠå
ã§ã®ã¢ãã¿ãŒãµããŒããæå¹
[Limit avatar height to ]
ã¢ãã¿ãŒã®é«ãã以äžã«å¶é:
[Max Number of Flashes]
ãã©ãã·ã¥ã®æ倧æ°
[Send Error]
ãšã©ãŒãéä¿¡
[An error has occurred. The protocol reported the following error:]
ãšã©ãŒãçºçããŸããããšã©ãŒå
容:
[while sending the following message:]
次ã®ã¡ãã»ãŒãžã®éä¿¡äž:
[Try again]
åè©Šè¡
[Message Session]
ã¡ãã»ãŒãžã»ãã·ã§ã³
[Message Window Event Log]
ã¡ãã»ãŒãžãŠã£ã³ããŠã®ã€ãã³ããã°
[Show names]
ååã衚瀺
[Show timestamp]
ã¿ã€ã ã¹ã¿ã³ãã衚瀺
[Show dates]
æ¥ä»ã衚瀺
[Load unread events only]
æªèªã®ã€ãã³ãã®ã¿ãèªã¿èŸŒã
[Load number of previous events]
åã®ã€ãã³ããèªã¿èŸŒãæ°
[Load previous events less than]
以äžã®åã®ã€ãã³ããèªã¿èŸŒã
[minutes old]
åå
[Show status changes]
ã¹ããŒã¿ã¹å€æŽã衚瀺
[Show seconds]
ç§ã衚瀺
[Load History Events]
ã€ãã³ãå±¥æŽãèªã¿èŸŒã
[Show Formatting]
æžåŒèšå®ã衚瀺
[Send typing notifications to the following users when you are typing a message to them:]
ã¡ãã»ãŒãžãå
¥åäžã« , å
¥åäžéç¥ãéä¿¡ãããŠãŒã¶ãŒ:
[Show typing notifications when a user is typing a message]
ãŠãŒã¶ãŒãã¡ãã»ãŒãžãå
¥åäžã«å
¥åéç¥ã衚瀺
[Update inactive message window icons when a user is typing]
ãŠãŒã¶ãŒãå
¥åäžã«éã¢ã¯ãã£ãã®ã¡ãã»ãŒãžãŠã£ã³ããŠãæŽæ°ãã
[Show typing notification when no message dialog is open]
ã¡ãã»ãŒãžã®ãªããã€ã¢ãã°ãéããã , å
¥åäžéç¥ã衚瀺
[Flash in the system tray and in the contact list]
ã·ã¹ãã ãã¬ã€ãšã³ã³ã¿ã¯ããªã¹ãããã©ãã·ã¥
[Show balloon popup]
ãã«ãŒã³ãããã¢ããã衚瀺
[Save the window position for each contact]
ã³ã³ã¿ã¯ãæ¯ã«ãŠã£ã³ããŠäœçœ®ãä¿å
[Message window behavior:]
ã¡ãã»ãŒãžãŠã£ã³ããŠã®åäœ:
[Messaging:]
ã¡ãã»ãŒãžã³ã°:
[&Open link]
ãªã³ã¯ãéã (&O)
[Paste && Send]
ããŒã¹ãããŠéä¿¡
[Delete]
åé€
;file \src\core\stduihist\resource.rc
[Find]
æ€çŽ¢
[&Find Next]
次ãæ€çŽ¢ (&F)
[Find What:]
æ€çŽ¢é
ç®:
[Message History]
ã¡ãã»ãŒãžå±¥æŽ
[&Find...]
æ€çŽ¢ (&F)...
;file \src\core\stduserinfo\resource.rc
[Add Phone Number]
é»è©±çªå·ãè¿œå
[Enter country, area code and phone number:]
åœ , å°åã³ãŒã , é»è©±çªå·ãå
¥å:
[Or enter a full international number:]
ããã㯠, åœéçªå·ãå
šãŠå
¥å
[Phone can receive SMS text messages]
SMS ããã¹ãã¡ãã»ãŒãžãåä¿¡ã§ããé»è©±
[Add E-Mail Address]
é»åã¡ãŒã«ã¢ãã¬ã¹ãè¿œå
[%s: User Details]
%s: ãŠãŒã¶ãŒã®è©³çŽ°æ
å ±
[%s\nView personal user details and more]
%s\nãŠãŒã¶ãŒã®å人詳现æ
å ±çã衚瀺
[Update Now]
ä»ããæŽæ°
[Updating]
æŽæ°äž
[Nickname:]
ããã¯ããŒã :
[First name:]
å:
[Gender:]
æ§å¥:
[Last name:]
åå:
[Age:]
幎霢:
[Date of birth:]
èªçæ¥:
[Marital status:]
çµå©æŽ:
[Phone:]
é»è©±:
[Web page:]
ãŠã§ãããŒãž:
[Past background:]
éå»ã®çµç·¯:
[Interests:]
èå³ãããã®:
[About:]
ããŒãžã§ã³æ
å ±:
[My notes:]
ãã€ã¡ã¢:
[Street:]
éã:
[City:]
åž:
[State:]
å·:
[Postal code:]
éµäŸ¿çªå·:
[Country:]
åœ:
[Spoken languages:]
話ãèšèª:
[Timezone:]
ã¿ã€ã ãŸãŒã³:
[Local time:]
çŸå°æé:
[Set custom time zone]
ã«ã¹ã¿ã ã¿ã€ã ãŸãŒã³ãèšå®
[Company:]
äŒç€Ÿ:
[Department:]
éšé:
[Position:]
äœçœ®:
[Website:]
ãŠã§ããµã€ã:
;file \src\core\stdauth\auth.cpp
[%s requests authorization]
%s ã¯èªèšŒããªã¯ãšã¹ãããŸãã
[%u requests authorization]
%u ã¯èªèšŒããªã¯ãšã¹ãããŸãã
[%s added you to their contact list]
%s ã¯ããªããã³ã³ã¿ã¯ããªã¹ãã«è¿œå ããŸãã
[%u added you to their contact list]
%u ã¯ããªããã³ã³ã¿ã¯ããªã¹ãã«è¿œå ããŸãã
[Alerts]
ã¢ã©ãŒã
;file \src\core\stdauth\authdialogs.cpp
[View User's Details]
ãŠãŒã¶ãŒã®è©³çŽ°æ
å ±ã衚瀺
[Add Contact Permanently to List]
ã³ã³ã¿ã¯ããå®å
šã«ãªã¹ãã«è¿œå
[<Unknown>]
< äžæ >
[%s added you to the contact list\n%u (%s) on %s]
%sã¯ããªããã³ã³ã¿ã¯ããªã¹ãã«è¿œå ããŸãã\n%u ( %s ): %s
[%s added you to the contact list\n%u on %s]
%sã¯ããªããã³ã³ã¿ã¯ããªã¹ãã«è¿œå ããŸãã\n%u: %s
[%s added you to the contact list\n%s on %s]
%sã¯ããªããã³ã³ã¿ã¯ããªã¹ãã«è¿œå ããŸãã\n%s: %s
[(Unknown)]
( äžæ )
[View User Details]
ãŠãŒã¶ãŒã®è©³çŽ°æ
å ±ã衚瀺
[%s requested authorization\n%u (%s) on %s]
%s ã¯èªèšŒãªã¯ãšã¹ãããŸãã\n%u (%s): %s
[%s requested authorization\n%u on %s]
%s ã¯èªèšŒãªã¯ãšã¹ãããŸãã\n%u: %s
[%s requested authorization\n%s on %s]
%s ã¯èªèšŒãªã¯ãšã¹ãããŸãã\n%s: %s
[Feature is not supported by protocol]
æ©èœã¯ãããã³ã«ã«ãµããŒããããŠããŸãã
;file \src\core\stdaway\awaymsg.cpp
[Re&ad %s Message]
%s ã¡ãã»ãŒãžãèªã (&a)
[Re&ad Status Message]
ã¹ããŒã¿ã¹ã¡ãã»ãŒãžãèªã (&a)
;file \src\core\stdaway\sendmsg.cpp
[I've been away since %time%.]
%time% ããé¢åžäžã§ã
[Give it up, I'm not in!]
è¿äºã§ããŸãã
[Not right now.]
%time% ããåã蟌ã¿äžã§ã
[Give a guy some peace, would ya?]
éªéããªãã§ãã ãã
[I'm a chatbot!]
ãã£ããããã㪠!
[Yep, I'm here.]
%time% ããåšåžäžã§ã
[Nope, not here.]
ãã , ããã«ã¯ããªãã
[I'm hiding from the mafia.]
ããã£ã¢ããé ããŠããšããã
[That'll be the phone.]
é»è©±äžã§ã
[Mmm... food.]
ããããã... ãã
[idleeeeeeee]
æã ã
[Status]
ã¹ããŒã¿ã¹
;file \src\core\stdchat\src\clist.cpp
[Join chat]
ãã£ããã«åå
[Open chat window]
ãã£ãããŠã£ã³ããŠãéã
;file \src\core\stdchat\src\colorchooser.cpp
[Text color]
ããã¹ãè²
;file \src\core\stdchat\src\log.cpp
[%s has joined]
%s ã¯åå ããŸãã
[You have joined %s]
ããªã㯠%s ã«åå ããŸãã
[%s has left]
%s ã¯é¢åžããŸãã
[%s has disconnected]
%s ã¯åæããŸãã
[%s is now known as %s]
%s ã¯çŸåš %s ã§ã
[You are now known as %s]
ããªãã¯çŸåš %s ã§ã
[%s kicked %s]
%s 㯠%s ãæé€ããŸãã
[Notice from %s: ]
%s ããã®éç¥:
[ (set by %s on %s)]
( %s ã %s ã«èšå®)
[ (set by %s)]
( %s ã«èšå®)
[<invalid>]
< äžæ£ >
;file \src\core\stdchat\src\options.cpp
[Others nicknames]
ãã®ä»ã®ããã¯ããŒã
[Your nickname]
ããã¯ããŒã
[User has joined]
ãŠãŒã¶ãŒã¯åå ããŸãã
[User has left]
ãŠãŒã¶ãŒã¯é¢åžããŸãã
[User has disconnected]
ãŠãŒã¶ãŒã¯åæããŸãã
[User kicked ...]
ãŠãŒã¶ãŒã¯æé€ãããŸãã ...
[User is now known as ...]
ãŠãŒã¶ãŒã®çŸåšã®å称ã¯æ¬¡ã®éãã§ã ...
[Notice from user]
ãŠãŒã¶ãŒããã®éç¥
[Incoming message]
çä¿¡ã¡ãã»ãŒãž
[Outgoing message]
çºä¿¡ã¡ãã»ãŒãž
[The topic is ...]
ãããã¯ã¯ ...
[Information messages]
ã¡ãã»ãŒãžæ
å ±
[User enables status for ...]
ãŠãŒã¶ãŒã¯æ¬¡ã®ã¹ããŒã¿ã¹ãæå¹ã«ããŸãã ...
[User disables status for ...]
ãŠãŒã¶ãŒã¯æ¬¡ã®ã¹ããŒã¿ã¹ãç¡å¹ã«ããŸãã ...
[Action message]
ã¢ã¯ã·ã§ã³ã¡ãã»ãŒãž
[Highlighted message]
匷調衚瀺ãããã¡ãã»ãŒãž
[Message typing area]
ã¡ãã»ãŒãžå
¥åãšãªã¢
[User list members (Online)]
ãŠãŒã¶ãŒãªã¹ãã¡ã³ã㌠( ãªã³ã©ã€ã³ )
[User list members (away)]
ãŠãŒã¶ãŒãªã¹ãã¡ã³ã㌠( é¢åžäž )
[Use a tabbed interface]
ã¿ãã€ã³ã¿ãŒãã§ãŒã¹ã䜿çš
[Close tab on doubleclick]
ããã«ã¯ãªãã¯ã§ã¿ããéãã
[Restore previously open tabs when showing the window]
ååãŠã£ã³ããŠã衚瀺æã«éããŠããã¿ãã埩å
[Show tabs at the bottom]
ã¿ããäžçªäžã«è¡šç€º
[Send message by pressing the Enter key]
ãšã³ã¿ãŒããŒã§ã¡ãã»ãŒãžãéä¿¡
[Send message by pressing the Enter key twice]
ãšã³ã¿ãŒã㌠2 åã§ã¡ãã»ãŒãžéä¿¡
[Flash window when someone speaks]
誰ããçºèšäžã«ãŠã£ã³ããŠããã©ãã·ã¥
[Flash window when a word is highlighted]
åèªã匷調衚瀺ãããããŠã£ã³ããŠããã©ãã·ã¥
[Show list of users in the chat room]
ãã£ããã«ãŒã ã®ãŠãŒã¶ãŒãªã¹ãã衚瀺
[Show button for sending messages]
ã¡ãã»ãŒãžéä¿¡çšãã¿ã³ã衚瀺
[Show buttons for controlling the chat room]
ãã£ããã«ãŒã ã³ã³ãããŒã«çšãã¿ã³ã衚瀺
[Show buttons for formatting the text you are typing]
å
¥åããŠããããã¹ãã®æžåŒèšå®ãã¿ã³ã衚瀺
[Show button menus when right clicking the buttons]
ãã¿ã³ãå³ã¯ãªãã¯ããæã¡ãã¥ãŒã衚瀺
[Show new windows cascaded]
æ°ãããŠã£ã³ããŠãã«ã¹ã±ãŒã衚瀺
[Save the size and position of chat rooms]
ãã£ããã«ãŒã ã®ãµã€ãºãšäœçœ®ãä¿å
[Show the topic of the room on your contact list (if supported)]
ã³ã³ã¿ã¯ããªã¹ãã«ããã«ãŒã ã®ãããã¯ã衚瀺ããïŒ ãµããŒãæã®ã¿ ïŒ
[Do not play sounds when the chat room is focused]
ãã£ããã«ãŒã ããã©ãŒã«ã¹ãããŠããæé³å£°ã鳎ãããªã
[Do not pop up the window when joining a chat room]
ãã£ããã«ãŒã ã«åå äžã¯ãŠã£ã³ããŠããããã¢ããããªã
[Toggle the visible state when double clicking in the contact list]
ã³ã³ã¿ã¯ããªã¹ããããã«ã¯ãªãã¯ããæ¯ã«å¯èŠç¶æ
ãåãæ¿ãã
[Show contact statuses if protocol supports them]
ãããã³ã«ããµããŒãããŠããå Žå , ã³ã³ã¿ã¯ãã¹ããŒã¿ã¹ã衚瀺
[Display contact status icon before user role icon]
ãŠãŒã¶ãŒåœ¹å²ã¢ã€ã³ã³ã®åã«ã³ã³ã¿ã¯ãã¹ããŒã¿ã¹ã¢ã€ã³ã³ã衚瀺
[Prefix all events with a timestamp]
å
šãŠã®ã€ãã³ãã®åã«ã¿ã€ã ã¹ã¿ã³ãã衚瀺
[Only prefix with timestamp if it has changed]
å€æŽãããå Žåã¿ã€ã ã¹ã¿ã³ãã®ã¿ãã¬ãã£ãã¯ã¹
[Timestamp has same color as the event]
ã¿ã€ã ã¹ã¿ã³ããã€ãã³ããšåãè²ã«ãã
[Indent the second line of a message]
ã¡ãã»ãŒãžã®ïŒè¡ç®ãã€ã³ãã³ããã
[Limit user names in the message log to 20 characters]
ã¡ãã»ãŒãžãã°äžã®ãŠãŒã¶ãŒåã 20 æåã«å¶é
[Strip colors from messages in the log]
ãã°ã®ã¡ãã»ãŒãžãåè²è¡šç€ºã«ãã
[Show topic changes]
ãããã¯ã®å€æŽã衚瀺
[Show users joining]
åå ãããŠãŒã¶ãŒã衚瀺
[Show users disconnecting]
åæãããŠãŒã¶ãŒã衚瀺
[Show messages]
ã¡ãã»ãŒãžã衚瀺
[Show actions]
ã¢ã¯ã·ã§ã³ã衚瀺
[Show users leaving]
é¢åžãããŠãŒã¶ãŒã衚瀺
[Show users being kicked]
æé€ããããŠãŒã¶ãŒã衚瀺
[Show notices]
éç¥ã衚瀺
[Show users changing name]
ååå€æŽãããŠãŒã¶ãŒã衚瀺
[Show information messages]
æ
å ±ã¡ãã»ãŒãžã衚瀺
[Show status changes of users]
ãŠãŒã¶ãŒã®ã¹ããŒã¿ã¹å€æŽã衚瀺
[Show icon for topic changes]
ãããã¯å€æŽã¢ã€ã³ã³ã衚瀺
[Show icon for users joining]
ãŠãŒã¶ãŒåå ã¢ã€ã³ã³ã衚瀺
[Show icon for users disconnecting]
ãŠãŒã¶ãŒåæã¢ã€ã³ã³ã衚瀺
[Show icon for messages]
ã¡ãã»ãŒãžçšã¢ã€ã³ã³ã衚瀺
[Show icon for actions]
æäœçšã¢ã€ã³ã³ã衚瀺
[Show icon for highlights]
匷調衚瀺ã¢ã€ã³ã³ã衚瀺
[Show icon for users leaving]
é¢åžã¢ã€ã³ã³ã衚瀺
[Show icon for users kicking other user]
ãŠãŒã¶ãŒæé€ã¢ã€ã³ã³ã衚瀺
[Show icon for notices ]
éç¥çšã¢ã€ã³ã³ã衚瀺
[Show icon for name changes]
ååå€æŽã¢ã€ã³ã³ã衚瀺
[Show icon for information messages]
æ
å ±ã¡ãã»ãŒãžçšã¢ã€ã³ã³ã衚瀺
[Show icon for status changes]
ã¹ããŒã¿ã¹å€æŽã¢ã€ã³ã³ã衚瀺
[Show icons in tray only when the chat room is not active]
ãã£ããã«ãŒã ãã¢ã¯ãã£ãã§ã¯ãªããšãã ããã¬ã€ã«ã¢ã€ã³ã³ã衚瀺
[Show icon in tray for topic changes]
ãã¬ã€ã«ãããã¯å€æŽã¢ã€ã³ã³ã衚瀺
[Show icon in tray for users joining]
ãã¬ã€ã«åå ã¢ã€ã³ã³ã衚瀺
[Show icon in tray for users disconnecting]
ãã¬ã€ã«éä¿¡åæã¢ã€ã³ã³ã衚瀺
[Show icon in tray for messages]
ãã¬ã€ã«ã¡ãã»ãŒãžã¢ã€ã³ã³ã衚瀺
[Show icon in tray for actions]
ãã¬ã€ã«è¡åã¢ã€ã³ã³ã衚瀺
[Show icon in tray for highlights]
ãã¬ã€ã«åŒ·èª¿è¡šç€ºã¢ã€ã³ã³ã衚瀺
[Show icon in tray for users leaving]
ãã¬ã€ã«é¢åžã¢ã€ã³ã³ã衚瀺
[Show icon in tray for users kicking other user]
ãã¬ã€ã«ãŠãŒã¶ãŒæé€ã¢ã€ã³ã³ã衚瀺
[Show icon in tray for notices ]
ãã¬ã€ã«éç¥ã¢ã€ã³ã³ã衚瀺
[Show icon in tray for name changes]
ãã¬ã€ã«ååå€æŽã¢ã€ã³ã³ã衚瀺
[Show icon in tray for information messages]
ãã¬ã€ã«æ
å ±ã¡ãã»ãŒãžã¢ã€ã³ã³ã衚瀺
[Show icon in tray for status changes]
ãã¬ã€ã«ã¹ããŒã¿ã¹å€æŽã¢ã€ã³ã³ã衚瀺
[Chat Module]
ãã£ããã¢ãžã¥ãŒã«
[Message Background]
ã¡ãã»ãŒãžèæ¯
[Userlist Background]
ãŠãŒã¶ãŒãªã¹ãã®èæ¯
[Userlist Lines]
ãŠãŒã¶ãŒãªã¹ãã®ç·
[Userlist Background (selected)]
ãŠãŒã¶ãŒãªã¹ãã®èæ¯ïŒ éžææž ïŒ
[Window Icon]
ãŠã£ã³ããŠã¢ã€ã³ã³
[Bold]
倪å
[Italics]
ã€ã¿ãªãã¯äœ
[Underlined]
äžç·ä»
[Smiley button]
é¡æåãã¿ã³
[Room history]
ã«ãŒã å±¥æŽ
[Room settings]
ã«ãŒã èšå®
[Event filter disabled]
ã€ãã³ããã£ã«ã¿ãŒãç¡å¹å
[Event filter enabled]
ã€ãã³ããã£ã«ã¿ãŒãæå¹å
[Hide userlist]
ãŠãŒã¶ãŒãªã¹ããé衚瀺
[Show userlist]
ãŠãŒã¶ãŒãªã¹ãã衚瀺
[Icon overlay]
ã¢ã€ã³ã³ãªãŒããŒã¬ã€
[Status 1 (10x10)]
ã¹ããŒã¿ã¹ 1(10x10)
[Status 2 (10x10)]
ã¹ããŒã¿ã¹ 2(10x10)
[Status 3 (10x10)]
ã¹ããŒã¿ã¹ 3(10x10)
[Status 4 (10x10)]
ã¹ããŒã¿ã¹ 4(10x10)
[Status 5 (10x10)]
ã¹ããŒã¿ã¹ 5(10x10)
[Status 6 (10x10)]
ã¹ããŒã¿ã¹ 6(10x10)
[Message in (10x10)]
åä¿¡ã¡ãã»ãŒãž (10x10)
[Message out (10x10)]
éä¿¡ã¡ãã»ãŒãž (10x10)
[Action (10x10)]
ã¢ã¯ã·ã§ã³ (10x10)
[Add Status (10x10)]
ã¹ããŒã¿ã¹è¿œå (10x10)
[Remove status (10x10)]
ã¹ããŒã¿ã¹åé€(10x10)
[Join (10x10)]
åå (10x10)
[Leave (10x10)]
é¢åž (10x10)
[Quit (10x10)]
çµäº (10x10)
[Kick (10x10)]
æé€ (10x10)
[Nickchange (10x10)]
ããã¯å€æŽ (10x10)
[Notice (10x10)]
éç¥ (10x10)
[Topic (10x10)]
ããã㯠(10x10)
[Highlight (10x10)]
匷調衚瀺 (10x10)
[Information (10x10)]
æ
å ± (10x10)
[Messaging]
ã¡ãã»ãŒãžã³ã°
[Group Chats]
ã°ã«ãŒããã£ãã
[Group Chats Log]
ã°ã«ãŒããã£ãããã°
[Options for using a tabbed interface]
ã¿ãã€ã³ã¿ãŒãã§ãŒã¹äœ¿çšæã®ãªãã·ã§ã³
[Appearance and functionality of chat room windows]
ãã£ããã«ãŒã ãŠã£ã³ããŠã®å€èŠ³ãšæ©èœ
[Appearance of the message log]
ã¡ãã»ãŒãžãã°ã®å€èŠ³
[Icons to display in the message log]
ã¡ãã»ãŒãžãã°ã«è¡šç€ºããã¢ã€ã³ã³
[Icons to display in the tray]
ãã¬ã€è¡šç€ºçšã¢ã€ã³ã³
[Select Folder]
ãã©ã«ããŒãéžæ
[Message Sessions]
ã¡ãã»ãŒãžã»ãã·ã§ã³
[Group chats]
ã°ã«ãŒããã£ãã
[General]
å
šè¬
[Chat Log]
ãã£ãããã°
[Chat]
ãã£ãã
[Popups]
ãããã¢ãã
[Message is highlighted]
ã¡ãã»ãŒãžã匷調衚瀺
[User has performed an action]
ãŠãŒã¶ãŒã¯ã¢ã¯ã·ã§ã³ãå®è¡ããŸãã
[User has kicked some other user]
ãŠãŒã¶ãŒã¯ä»ã®ãŠãŒã¶ãŒãæé€ããŸãã
[User's status was changed]
ãŠãŒã¶ãŒã¹ããŒã¿ã¹ã¯å€æŽãããŸãã
[User has changed name]
ãŠãŒã¶ãŒã¯ååãå€æŽããŸãã
[User has sent a notice]
ãŠãŒã¶ãŒã¯éç¥ãéä¿¡ããŸãã
[The topic has been changed]
ãããã¯ã¯å€æŽãããŠããŸã
;file \src\core\stdchat\src\services.cpp
[&Join]
åå ãã (&J)
;file \src\core\stdchat\src\tools.cpp
[%s wants your attention in %s]
%s ã¯ããªãã« %s ã«ã€ããŠæ³šæãæ±ããŠããŸã
[%s speaks in %s]
%s 㯠%s ã§è©±ããŸã
[%s has joined %s]
%s 㯠%s ã«åå ããŸãã
[%s has left %s]
%s 㯠%s ãé¢åžããŸãã
[%s kicked %s from %s]
%s 㯠%s ã %s ããæé€ããŸãã
[Notice from %s]
%s ããã®éç¥
[Topic change in %s]
%s ã®ãããã¯å€æŽ
[Information in %s]
%s ã«ã€ããŠã®æ
å ±
[%s says: %s]
%s ã®çºèš: %s
[%s has left (%s)]
%s ã¯é¢åžããŸãã ( %s )
[%s has disconnected (%s)]
%s ã¯åæããŸãã ( %s )
[%s kicked %s (%s)]
%s 㯠%s ãæé€ããŸãã ( %s )
[Notice from %s: %s]
%s ããã®éç¥:%s
[No word to look up]
æ€çŽ¢èªãªã
;file \src\core\stdchat\src\window.cpp
[Insert a smiley]
é¡æåãæ¿å
¥
[Make the text bold (CTRL+B)]
ããã¹ãã倪åã«ãã (CTRL+B)
[Make the text italicized (CTRL+I)]
ããã¹ããæäœã«ãã (CTRL+I)
[Make the text underlined (CTRL+U)]
ããã¹ãã«äžç·ãåŒã (CTRL+U)
[Select a background color for the text (CTRL+L)]
ããã¹ãã®èæ¯è²ãéžæ (CTRL+L)
[Select a foreground color for the text (CTRL+K)]
ããã¹ãã®æåè²ãéžæ (CTRL+K)
[Show the history (CTRL+H)]
å±¥æŽã衚瀺 (CTRL+H)
[Show/hide the nicklist (CTRL+N)]
ããã¯ãªã¹ãã衚瀺 / é衚瀺 (CTRL+N)
[Control this room (CTRL+O)]
ãã®ã«ãŒã ã管çãã (CTRL+O)
[Enable/disable the event filter (CTRL+F)]
ã€ãã³ããã£ã«ã¿ãŒã®æå¹ / ç¡å¹ (CTRL+F)
[Close current tab (CTRL+F4)]
çŸåšã®ã¿ããéãã (CTRL+F4)
[%s: Chat Room (%u user)]
%s: ãã£ããã«ãŒã (%u ãŠãŒã¶ãŒ )
[%s: Chat Room (%u users)]
%s: ãã£ããã«ãŒã (%u ãŠãŒã¶ãŒ )
[%s: Message Session]
%s: ã¡ãã»ãŒãžã»ãã·ã§ã³
[%s: Message Session (%u users)]
%s: ã¡ãã»ãŒãžã»ãã·ã§ã³ (%u ãŠãŒã¶ãŒ )
[Nick name]
ããã¯ããŒã
[Unique ID]
åºæ ID
;file \src\core\stdclist\src\clcfonts.cpp
[Standard contacts]
æšæºã³ã³ã¿ã¯ã
[Online contacts to whom you have a different visibility]
ç°ãªãå¯èŠèšå®ã®ãŠãŒã¶ãŒã«å¯Ÿãããªã³ã©ã€ã³ã³ã³ã¿ã¯ã
[Offline contacts]
ãªãã©ã€ã³ã³ã³ã¿ã¯ã
[Contacts which are 'not on list']
' ãªã¹ãã«ãªã ' ã³ã³ã¿ã¯ã
[Group member counts]
ã°ã«ãŒãã¡ã³ããŒæ°
[Dividers]
å¢çç·
[Offline contacts to whom you have a different visibility]
ç°ãªãå¯èŠèšå®ã®ãŠãŒã¶ãŒã«å¯Ÿãããªãã©ã€ã³ã³ã³ã¿ã¯ã
[Selected Text]
éžæãããããã¹ã
[Hottrack Text]
ããããã©ãã¯ããã¹ã
[Quicksearch Text]
ã¯ã€ãã¯æ€çŽ¢ããã¹ã
;file \src\core\stdclist\src\clcopts.cpp
[Not focused]
éãã©ãŒã«ã¹
[Offline]
ãªãã©ã€ã³
[Online]
ãªã³ã©ã€ã³
[Away]
é¢åžäž
[NA]
å¿çäžå¯
[Occupied]
åã蟌ã¿äž
[DND]
éªéããªãã§
[Free for chat]
ãã£ãã OK!
[Invisible]
äžå¯èŠ
[Out to lunch]
æŒé£äž
[On the phone]
é»è©±äž
[List Background]
ãªã¹ãã®èæ¯
;file \src\core\stdclist\src\clistopts.cpp
[Global]
ã°ããŒãã«
;file \src\core\stdclist\src\cluiopts.cpp
;file \src\core\stdemail\email.cpp
[User has not registered an e-mail address]
ãŠãŒã¶ãŒã¯é»åã¡ãŒã«ã¢ãã¬ã¹ãç»é²ããŠããŸãã
[Send e-mail]
é»åã¡ãŒã«ã®éä¿¡
[&E-mail]
é»åã¡ãŒã« (&E)
;file \src\core\stdfile\file.cpp
[File from %s]
éä¿¡è
%s ã®ãã¡ã€ã«
[bytes]
ãã€ã
[&File]
ãã¡ã€ã« (&F)
[File &Transfers...]
ãã¡ã€ã«è»¢é (&T)...
[Incoming]
çä¿¡
[Complete]
å®äº
[Error]
ãšã©ãŒ
;file \src\core\stdfile\fileexistsdlg.cpp
[%s File]
%s ãã¡ã€ã«
[All Files]
å
šãŠã®ãã¡ã€ã«
;file \src\core\stdfile\fileopts.cpp
[Executable Files]
å®è¡å¯èœãã¡ã€ã«
[Events]
ã€ãã³ã
;file \src\core\stdfile\filerecvdlg.cpp
[My Received Files]
åä¿¡ãã¡ã€ã«
[View User's History]
ãŠãŒã¶ãŒã®å±¥æŽã衚瀺
[User Menu]
ãŠãŒã¶ãŒã¡ãã¥ãŒ
[Canceled]
ãã£ã³ã»ã«ããŸãã
;file \src\core\stdfile\filesenddlg.cpp
[%d files]
%d åã®ãã¡ã€ã«
[%d directories]
%d åã®ãã£ã¬ã¯ããª
;file \src\core\stdfile\filexferdlg.cpp
[This file has not yet been scanned for viruses. Are you certain you want to open it?]
ãã®ãã¡ã€ã«ã¯ãŠã€ã«ã¹æ€ç¥ãæªå®è¡ã§ããæ¬åœã«éããŸãã?
[File Received]
ãã¡ã€ã«ãåä¿¡
[of]
ã®
[Request sent, waiting for acceptance...]
ãªã¯ãšã¹ããéä¿¡ , æ¿èªåŸ
ã¡äž...
[Waiting for connection...]
æ¥ç¶åŸ
ã¡äžã§ã...
[Unable to initiate transfer.]
転ééå§ãã§ããŸãã
[Contact menu]
ã³ã³ã¿ã¯ãã¡ãã¥ãŒ
[sec]
ç§
[remaining]
æ®ã
[Decision sent]
å€æãéä¿¡
[Connecting...]
æ¥ç¶äž...
[Connecting to proxy...]
ãããã·ã«æ¥ç¶äž...
[Connected]
æ¥ç¶æž
[Initializing...]
åæåäž...
[Moving to next file...]
次ã®ãã¡ã€ã«ã«ç§»åäž...
[File already exists]
ãã¡ã€ã«ã¯æ¢ã«ååšããŸã
[Sending...]
éä¿¡äž...
[Receiving...]
åä¿¡äž...
[File transfer denied]
ãã¡ã€ã«è»¢éã¯æåŠãããŸãã
[File transfer failed]
ãã¡ã€ã«è»¢éã¯å€±æããŸãã
[Transfer completed.]
転éãå®äºããŸãã
[Transfer completed, open file.]
転éãå®äºããŸãã , ãã¡ã€ã«ãéããŸã
[Transfer completed, open folder.]
転éãå®äºããŸãã , ãã©ã«ããŒãéããŸã
[Scanning for viruses...]
ãŠã€ã«ã¹æ€ç¥äž...
[Transfer and virus scan complete]
転éãšãŠã€ã«ã¹æ€ç¥ãå®äºããŸãã
;file \src\core\stdfile\ftmanager.cpp
[Outgoing]
çºä¿¡
;file \src\core\stdhelp\about.cpp
[< Copyright]
< èäœæš©
;file \src\core\stdhelp\help.cpp
[&About...]
ããŒãžã§ã³æ
å ± (&A)...
[&Support]
ãµããŒã (&S)
[&Miranda NG Homepage]
Miranda NG ããŒã ããŒãž
[&Report Bug]
ãã°å ±å (&R)
;file \src\core\stdidle\idle.cpp
[Idle]
ã¢ã€ãã«
;file \src\core\stdmsg\src\cmdlist.cpp
[The message send timed out.]
ã¡ãã»ãŒãžã®éä¿¡ã¯ã¿ã€ã ã¢ãŠãããŸãã
;file \src\core\stdmsg\src\globals.cpp
[Incoming message (10x10)]
çä¿¡ã¡ãã»ãŒãž (10x10)
[Outgoing message (10x10)]
çºä¿¡ã¡ãã»ãŒãž (10x10)
;file \src\core\stdmsg\src\msgdialog.cpp
[Last message received on %s at %s.]
æçµã¡ãã»ãŒãžã%s %sã«åä¿¡
[signed off (was %s)]
ãµã€ã³ãªã (%s)
[signed on (%s)]
ãµã€ã³ãªã³ (%s)
[is now %s (was %s)]
ã¯çŸåš %s (æ§ %s)
[%s is typing a message...]
%s ã¯ã¡ãã»ãŒãžãå
¥åäž...
;file \src\core\stdmsg\src\msglog.cpp
[File sent]
ãã¡ã€ã«éä¿¡
[File received]
ãã¡ã€ã«åä¿¡
;file \src\core\stdmsg\src\msgoptions.cpp
[Outgoing messages]
çºä¿¡ã¡ãã»ãŒãž
[Incoming messages]
çä¿¡ã¡ãã»ãŒãž
[Outgoing name]
çºä¿¡å
[Outgoing time]
çºä¿¡æé
[Outgoing colon]
çºä¿¡ã³ãã³
[Incoming name]
ååãçä¿¡
[Incoming time]
æéãçä¿¡
[Incoming colon]
çä¿¡ã³ãã³
[Message area]
ã¡ãã»ãŒãžãšãªã¢
[Message Log]
ã¡ãã»ãŒãžãã°
[** New contacts **]
** æ°ããã³ã³ã¿ã¯ã **
[** Unknown contacts **]
** äžæãªã³ã³ã¿ã¯ã **
[Show balloon popup (unsupported system)]
ãã«ãŒã³ãããã¢ããã衚瀺 ( æªãµããŒãã·ã¹ãã )
[Messaging Log]
ã¡ãã»ãŒãžã³ã°ãã°
[Typing Notify]
å
¥åäžéç¥
;file \src\core\stdmsg\src\msgs.cpp
[Message from %s]
%s ããã®ã¡ãã»ãŒãž
[%s is typing a message]
%s ã¯ã¡ãã»ãŒãžãå
¥åäž
[Typing Notification]
å
¥åäžéç¥
[Miranda could not load the built-in message module, riched20.dll is missing. Press 'Yes' to continue loading Miranda.]
Miranda ã¯çµã¿èŸŒã¿ã¡ãã»ãŒãžã¢ãžã¥ãŒã«ã®èªã¿èŸŒã¿ãã§ããŸããã§ãããriched20.dll ãèŠã€ãããŸãããWindows 95 ã WINE ã䜿çšäžã®å Žå㯠, riched20.dll ãã€ã³ã¹ããŒã«ãããŠãããã©ãã確èªããŠãã ãããMiranda ã®èªã¿èŸŒã¿ãç¶ããã«ã¯ãã¯ãããæŒããŠãã ããã
[Instant messages]
ã€ã³ã¹ã¿ã³ãã¡ãã»ãŒãž
[Incoming (Focused Window)]
çä¿¡ ( ãã©ãŒã«ã¹äžã®ãŠã£ã³ã㊠)
[Incoming (Unfocused Window)]
çä¿¡ ( éãã©ãŒã«ã¹ãŠã£ã³ã㊠)
[Incoming (New Session)]
çä¿¡ ( æ°èŠã»ãã·ã§ã³ )
[Message send error]
ã¡ãã»ãŒãžéä¿¡ãšã©ãŒ
;file \src\core\stdmsg\src\msgtimedout.cpp
[An unknown error has occurred.]
äžæãªãšã©ãŒãçºçããŸãã
;file \src\core\stduihist\history.cpp
[Invalid Message]
äžæ£ãªã¡ãã»ãŒãž
[Outgoing Message]
çºä¿¡ã¡ãã»ãŒãž
[Incoming Message]
çä¿¡ã¡ãã»ãŒãž
[Outgoing URL]
çºä¿¡ URL
[Incoming URL]
çä¿¡ URL
[Outgoing File]
çºä¿¡ãã¡ã€ã«
[Incoming File]
çä¿¡ãã¡ã€ã«
[History for %s]
%s ã®å±¥æŽ
[Are you sure you want to delete this history item?]
ãã®å±¥æŽé
ç®ãæ¬åœã«åé€ããŸãã ?
[Delete History]
å±¥æŽãåé€
[View &History]
å±¥æŽã®è¡šç€º (&H)
;file \src\core\stdurl\url.cpp
[URL from %s]
%sããã® URL
[Web Page Address (&URL)]
ãŠã§ãããŒãžã¢ãã¬ã¹ (URL)(&U)
[URL]
URL
;file \src\core\stdurl\urldialogs.cpp
[Send URL to]
URL ãéä¿¡:
[Send timed out]
ã¿ã€ã ã¢ãŠããéä¿¡
;file \src\core\stduserinfo\contactinfo.cpp
[Edit E-Mail Address]
é»åã¡ãŒã«ã¢ãã¬ã¹ãç·šé
[Edit Phone Number]
é»è©±çªå·ãç·šé
[The phone number should start with a + and consist of numbers, spaces, brackets and hyphens only.]
é»è©±çªå·ã¯ , å
é 㯠+ 㧠, æ°å , ç©ºçœ , [] , ãã€ãã³ã®ã¿ã§æ§æãããŠããªããã°ãªããŸãã
[Invalid Phone Number]
é»è©±çªå·ãäžæ£ã§ã
[Primary]
第 1
[Custom %d]
ã«ã¹ã¿ã %d
[Fax]
Fax
[Mobile]
ã¢ãã€ã«
[Work Phone]
ä»äºçšé»è©±
[Work Fax]
ä»äºçšãã¡ãã¯ã¹
;file \src\core\stduserinfo\stdinfo.cpp
[Male]
ç·æ§
[Female]
女æ§
[<not specified>]
< æå®ãªã >
[Summary]
èŠçŽ
[Contact]
ã³ã³ã¿ã¯ã
[Location]
å Žæ
[Work]
ä»äº
[Background info]
èæ¯æ
å ±
[Notes]
ã¡ã¢
;file \src\core\stduserinfo\userinfo.cpp
[Owner]
ãªãŒããŒ
[View/Change My &Details...]
詳现æ
å ±ã®è¡šç€º / å€æŽ (&D)...
;file \src\core\stduseronline\useronline.cpp
[%s is Online]
%s ã¯ãªã³ã©ã€ã³ã§ã
;file \src\modules\addcontact\addcontact.cpp
[Add Contact]
ã³ã³ã¿ã¯ããè¿œå
[Please authorize my request and add me to your contact list.]
ãªã¯ãšã¹ããèªèšŒã㊠, ç§ãããªãã®ã³ã³ã¿ã¯ããªã¹ãã«è¿œå ããŠãã ãã
;file \src\modules\clist\clcitems.cpp
;file \src\modules\clist\clistmenus.cpp
[Custom status]
ã«ã¹ã¿ã ã¹ããŒã¿ã¹
[%s (locked)]
%s ( ããã¯äž )
;file \src\modules\clist\clistsettings.cpp
[(Unknown Contact)]
( äžæãªã³ã³ã¿ã¯ã )
;file \src\modules\clist\clisttray.cpp
[&Main Menu]
ã¡ã€ã³ã¡ãã¥ãŒ (&M)
;file \src\modules\clist\clui.cpp
[This contact is on an instant messaging system which stores its contact list on a central server. The contact will be removed from the server and from your contact list when you next connect to that network.]
ãã®ã³ã³ã¿ã¯ã㯠, ãµãŒããŒäžã®ã³ã³ã¿ã¯ããªã¹ãã«ä¿åãããŠããã€ã³ã¹ã¿ã³ãã¡ãã»ãŒãžã·ã¹ãã äžã«ãããŸãããã®ãã , ããªãã次å該åœãããããã¯ãŒã¯ã«æ¥ç¶ããéã« , ãµãŒããŒãšããªãã®ã³ã³ã¿ã¯ããªã¹ãããåé€ãããŸã
[De&lete]
åé€ (&l)
[&Rename]
ååå€æŽ (&R)
[&Add permanently to list]
å®å
šã«ãªã¹ãã«è¿œå (&A)
;file \src\modules\clist\contacts.cpp
[Nick]
ããã¯ããŒã
[E-mail]
é»åã¡ãŒã«
['(Unknown Contact)']
'( äžæãªã³ã³ã¿ã¯ã )'
;file \src\modules\clist\genmenu.cpp
;file \src\modules\clist\genmenuopt.cpp
[Menus]
ã¡ãã¥ãŒ
[Customize]
ã«ã¹ã¿ãã€ãº
;file \src\modules\clist\groups.cpp
[New Group]
æ°èŠã°ã«ãŒã
[Are you sure you want to delete group '%s'? This operation cannot be undone.]
æ¬åœã«ã°ã«ãŒã ' %s ' ãåé€ããŸãã ? ãã®æäœã¯å
ã«æ»ããŸãã
[Delete Group]
ã°ã«ãŒãã®åé€
[You already have a group with that name. Please enter a unique name for the group.]
ãã®ååã®ã°ã«ãŒãã¯æ¢ã«ååšããŠããŸããéè€ããªãã°ã«ãŒãåãå
¥åããŠãã ãã
[Rename Group]
ã°ã«ãŒãåã®å€æŽ
[This group]
ãã®ã°ã«ãŒã
;file \src\modules\clist\keyboard.cpp
;file \src\modules\clist\movetogroup.cpp
[&Move to Group]
ã°ã«ãŒãã«ç§»å (&M)
[<Root Group>]
< ã«ãŒãã°ã«ãŒã >
;file \src\modules\database\database.cpp
[Miranda is unable to open '%s' because you do not have any profile plugins installed.\nYou need to install dbx_3x.dll or equivalent.]
Miranda 㯠' %s ' ãéããŸããã§ããããããã¡ã€ã«ãã©ã°ã€ã³ãã€ã³ã¹ããŒã«ãããŠããŸãã\ndbx_3x.dllããã㯠, ããã«çžåœãããã®ãã€ã³ã¹ããŒã«ããŠãã ãã
[No profile support installed!]
ãããã¡ã€ã«ãµããŒããã€ã³ã¹ããŒã«ãããŠããŸãã!
[Miranda can't understand that profile]
Miranda ã¯ãããã¡ã€ã«ã解éã§ããŸããã§ãã
[Miranda was unable to open '%s'\nIt's inaccessible or used by other application or Miranda instance]
Miranda㯠' %s ' ãéããŸããã§ãã\nã¢ã¯ã»ã¹ãã§ããªãã , ãããã¯ä»ã®ã¢ããªã±ãŒã·ã§ã³ã Miranda ã€ã³ã¹ã¿ã³ã¹ã«ãã£ãŠäœ¿çšäžã§ã
[Miranda can't open that profile]
Miranda ã¯ãããã¡ã€ã«ãéããŸããã§ãã
;file \src\modules\database\dbini.cpp
[Security systems to prevent malicious changes are in place and you will be warned before every change that is made.]
æªæã®ããå€æŽãé²ãããã«ã»ãã¥ãªãã£ã·ã¹ãã ãå
èµãããŠãã , å€æŽãè¡ãªãããéã«æ¯åèŠåããŸã
[Security systems to prevent malicious changes are in place and you will be warned before changes that are known to be unsafe.]
æªæã®ããå€æŽãé²ãããã«ã»ãã¥ãªãã£ã·ã¹ãã ãå
èµãããŠãã , å®å
šãä¿èšŒãããŠããªãå€æŽãè¡ãªãããéã«èŠåããŸã
[Security systems to prevent malicious changes have been disabled. You will receive no further warnings.]
æªæã®ããå€æŽãé²ãããã®ã»ãã¥ãªãã£ã·ã¹ãã ã¯ç¡å¹ã§ããããã«èŠåãããããšã¯ãããŸãã
[This change is known to be safe.]
æ¢ç¥ã®å®å
šãªå€æŽã§ã
[This change is known to be potentially hazardous.]
æ¢ç¥ã®æãŸãããªãå±éºã®ããå€æŽã§ã
[This change is not known to be safe.]
æ¢ç¥ã®å®å
šã§ã¯ãªãå€æŽã§ã
;file \src\modules\database\profilemanager.cpp
[The profile already exists]
ãããã¡ã€ã«ã¯æ¢ã«ååšããŸã
[Couldn't move '%s' to the Recycle Bin, Please select another profile name.]
%s ã Recycle Bin ã«ç§»åã§ããŸããã§ãããå¥ã®ãããã¡ã€ã«åãéžæããŠãã ãã
[Problem moving profile]
ãããã¡ã€ã«ç§»åæã®äžå
·å
[Unable to create the profile '%s', the error was %x]
ãããã¡ã€ã« ' %s ' ã¯äœæã§ããŸããããšã©ãŒ: %x
[Problem creating profile]
ãããã¡ã€ã«äœææã®äžå
·å
[&Create]
äœæ (&C)
[<In Use>]
< 䜿çšäž >
[Size]
ãµã€ãº
[Created]
äœææž
[Modified]
å€æŽæž
[Run]
å®è¡
[My Profiles]
ãã€ãããã¡ã€ã«
[New Profile]
æ°èŠãããã¡ã€ã«
;file \src\modules\extraicons\DefaultExtraIcons.cpp
;file \src\modules\extraicons\extraicons.cpp
[Chat Activity]
ãã£ããã®ã¢ã¯ãã£ããã£
;file \src\modules\extraicons\options_ei.cpp
[Extra icons]
è¿œå ã¢ã€ã³ã³
;file \src\modules\findadd\findadd.cpp
[You haven't filled in the search field. Please enter a search term and try again.]
æ€çŽ¢ãã£ãŒã«ããæªå
¥åã§ããæ€çŽ¢æ¡ä»¶ãå
¥åããŠåè©Šè¡ããŠãã ãã
[Search]
æ€çŽ¢
[Results]
çµæ
[There are no results to display.]
衚瀺ããçµæããããŸãã
[Searching]
æ€çŽ¢äž
[All Networks]
å
šãããã¯ãŒã¯
[Handle]
ãã³ãã«
[&Find/Add Contacts...]
ã³ã³ã¿ã¯ããæ€çŽ¢ / è¿œå (&F)...
;file \src\modules\findadd\searchresults.cpp
[Could not start a search on '%s', there was a problem - is %s connected?]
'%s' ã«ã€ããŠæ€çŽ¢éå§ã§ããŸãããåé¡ãçºçããŸãã - %s ã¯æ¥ç¶ããŠããŸãã ?
[Could not search on any of the protocols, are you online?]
ã©ã®ãããã³ã«ã§ãæ€çŽ¢ã§ããŸããããªã³ã©ã€ã³ã§ãã ?
[Problem with search]
æ€çŽ¢ã®äžå
·å
[1 %s user found]
1 %s ãŠãŒã¶ãŒãèŠã€ãããŸãã
[%d %s users found]
%d %s ãŠãŒã¶ãŒãèŠã€ãããŸãã
[%d users found (]
%d ãŠãŒã¶ãŒãèŠã€ãããŸãã (
[No users found]
ãŠãŒã¶ãŒã¯çºèŠã§ããŸããã§ãã
;file \src\modules\fonts\FontOptions.cpp
[Failed to create file]
ãã¡ã€ã«ã®äœæã«å€±æããŸãã
[<none>]
< ãªã >
[Configuration Files]
ãã¡ã€ã«èšå®
[Text Files]
ããã¹ããã¡ã€ã«
[Error writing file]
ãã¡ã€ã«æžã蟌ã¿ãšã©ãŒ
[Fonts & Colors]
ãã©ã³ããšè²
[Sample Text]
ãµã³ãã«ããã¹ã
[Fonts]
ãã©ã³ã
;file \src\modules\fonts\FontService.cpp
;file \src\modules\icolib\skin2opts.cpp
[Icon Sets]
ã¢ã€ã³ã³èšå®
;file \src\modules\ignore\ignore.cpp
[** All contacts **]
** å
šãŠã®ã³ã³ã¿ã¯ã **
[Contacts]
ã³ã³ã¿ã¯ã
;file \src\modules\netlib\netliblog.cpp
[(Miranda Core Logging)]
( Miranda ã³ã¢ãã° )
[Select where log file will be created]
ãã°ãã¡ã€ã«ãäœæããå ŽæãéžæããŠãã ãã
[Select program to be run]
å®è¡ããããã°ã©ã ãéžæããŠãã ãã
;file \src\modules\netlib\netlibopts.cpp
[<All connections>]
< å
šãŠã®æ¥ç¶ >
[Network]
ãããã¯ãŒã¯
;file \src\modules\netlib\netlibssl.cpp
[Client cannot decode host message. Possible causes: Host does not support SSL or requires not existing security package]
ã¯ã©ã€ã¢ã³ãã¯ãã¹ãã¡ãã»ãŒãžãã§ã³ãŒãã§ããŸããã§ãããèããããåå : ãã¹ã㯠SSL ããµããŒãããŠããªã , ãããã¯ååšããŠããªãã»ãã¥ãªãã£ããã±ãŒãžãèŠæ±ããŠãã
[Host we are connecting to is not the one certificate was issued for]
æ¥ç¶äžã®ãã¹ãã«ã¯çºè¡æžã¿èšŒææžããããŸãã:
;file \src\modules\options\options.cpp
[Loading... %d%%]
èªã¿èŸŒã¿äž... %d%%
[%s options]
%s ãªãã·ã§ã³
[Miranda NG Options]
Miranda NG ãªãã·ã§ã³
[&Options...]
ãªãã·ã§ã³ (&O)...
;file \src\modules\plugins\newplugins.cpp
['%s' is disabled, re-enable?]
'%s' ã¯ç¡å¹ã§ããæå¹ã«ããŸãã ?
[Re-enable Miranda plugin?]
Miranda ãã©ã°ã€ã³ãæå¹ã«ããŸãã ?
[Unable to load plugin in Service Mode!]
ãµãŒãã¹ã¢ãŒãã§ã¯ãã©ã°ã€ã³ã®èªã¿èŸŒã¿ãã§ããŸãã !
[Unable to start any of the installed contact list plugins, I even ignored your preferences for which contact list couldn't load any.]
ã€ã³ã¹ããŒã«ãããŠããã³ã³ã¿ã¯ããªã¹ããã©ã°ã€ã³ãããããèµ·åã§ããŸãããèªã¿èŸŒã¿ã§ããªãã³ã³ã¿ã¯ããªã¹ãã®éžæã¯ç¡èŠãããŸã
[Can't find a contact list plugin! you need clist_classic or any other clist plugin.]
ã³ã³ã¿ã¯ããªã¹ããã©ã°ã€ã³ãèŠã€ãããŸããã§ãã ! clist_classic ãããã¯ãã®ä»ã® clist ãã©ã°ã€ã³ãå¿
èŠã§ã
;file \src\modules\plugins\pluginopts.cpp
[Plugin]
ãã©ã°ã€ã³
[Version]
ããŒãžã§ã³
[Plugins]
ãã©ã°ã€ã³
;file \src\modules\protocols\protoopts.cpp
[WARNING! The account is going to be deleted. It means that all its settings, contacts and histories will be also erased.\n\nAre you absolutely sure?]
èŠå ! ã¢ã«ãŠã³ãã¯åé€ãããããšããŠããŸããå
šãŠã®èšå® , ã³ã³ã¿ã¯ã , å±¥æŽãåé€ãããŸã\n\næ¬åœã«ããããã§ãã ?
[Your account was successfully upgraded. To activate it, restart of Miranda is needed.\n\nIf you want to restart Miranda now, press Yes, if you want to upgrade another account, press No]
ããªãã®ã¢ã«ãŠã³ãã¯æ£åžžã«ã¢ããã°ã¬ãŒããããŸãããã¢ã¯ãã£ãåããã«ã¯ Miranda ã®åèµ·åãå¿
èŠã§ã\n\nä»ãã Miranda ãåèµ·åãããªããã¯ãããæŒããŠãã ãããä»ã®ã¢ã«ãŠã³ããã¢ããã°ã¬ãŒããããå Žåã¯ããããããæŒããŠãã ãã
[This account uses legacy protocol plugin. Use Miranda NG options dialogs to change its preferences.]
ãã®ã¢ã«ãŠã³ãã¯ã¬ã¬ã·ãããã³ã«ãã©ã°ã€ã³ã䜿çšããŠããŸããåºæ¬èšå®ãå€æŽããã«ã¯ Miranda NG ã®ãªãã·ã§ã³ãã€ã¢ãã°ã䜿çšããŠäžãã
[Welcome to Miranda NG's account manager!\n Here you can set up your IM accounts.\n\n Select an account from the list on the left to see the available options. Alternatively, just click on the Plus sign underneath the list to set up a new IM account.]
Miranda NG ã®ã¢ã«ãŠã³ããããŒãžã£ãŒã«ãããã !\nãã㧠IM ã¢ã«ãŠã³ãã®ã»ããã¢ãããã§ããŸã\n\nå©çšå¯èœãªãªãã·ã§ã³ãèŠãã«ã¯ , å·Šã«ãããªã¹ãã®äžããã¢ã«ãŠã³ããéžæããŠãã ãããããã㯠, ãªã¹ãã®äžã«ãã + å°ãã¯ãªãã¯ããŠæ°èŠ IM ã¢ã«ãŠã³ããã»ããã¢ããããŠãã ãã
[Create new account]
æ°èŠã¢ã«ãŠã³ããäœæãã
[Editing account]
ã¢ã«ãŠã³ãã®ç·šéäž
[Upgrading account]
ã¢ã«ãŠã³ãã®ã¢ããã°ã¬ãŒãäž
[Account is disabled. Please activate it to access options.]
ã¢ã«ãŠã³ãã¯ç¡å¹ã§ãããªãã·ã§ã³ã«ã¢ã¯ã»ã¹ããã«ã¯ã¢ã¯ãã£ãã«ããŠãã ãã
[New account]
æ°èŠã¢ã«ãŠã³ã
[Edit]
ç·šé
[Remove account]
ã¢ã«ãŠã³ãã®åé€
[Configure...]
èšå®...
[Upgrade account]
ã¢ã«ãŠã³ãã®ã¢ããã°ã¬ãŒã
[Protocol]
ãããã³ã«
[Account ID]
ã¢ã«ãŠã³ãID
[<unknown>]
< äžæ >
[Protocol is not loaded.]
ãããã³ã«ã¯èªã¿èŸŒãŸããŠããŸãã !
[Rename]
ååã®å€æŽ
[Configure]
èšå®
[Upgrade]
ã¢ããã°ã¬ãŒã
[Account is online. Disable account?]
ã¢ã«ãŠã³ãã¯ãªã³ã©ã€ã³ã§ããã¢ã«ãŠã³ããç¡å¹ã«ããŸãã ?
[Account %s is being deleted]
ã¢ã«ãŠã³ã %s ã¯åé€ãããŠããŸã
[You need to disable plugin to delete this account]
ãã®ã¢ã«ãŠã³ããåé€ããã«ã¯ãã©ã°ã€ã³ãç¡å¹ã«ããå¿
èŠããããŸã
[&Accounts...]
ã¢ã«ãŠã³ã (&A)...
;file \src\modules\skin\hotkey_opts.cpp
[Remove shortcut]
ã·ã§ãŒãã«ãããåé€
[Add another shortcut]
ä»ã®ã·ã§ãŒãã«ãããè¿œå
[Scope:]
é©çšç¯å²:
[System]
ã·ã¹ãã
[Actions:]
æäœ:
[Add binding]
ãã€ã³ããè¿œå
[Modify]
å€æŽ
[System scope]
ã·ã¹ãã ã®é©çšç¯å²
[Miranda scope]
Miranda ã®é©çšç¯å²
;file \src\modules\skin\skinicons.cpp
[User Online]
ãªã³ã©ã€ã³ãŠãŒã¶ãŒ
[Group (Open)]
ã°ã«ãŒã ( ãªãŒãã³ )
[Group (Closed)]
ã°ã«ãŒã ( ã¯ããŒãº )
[Connecting]
æ¥ç¶äž
[User Details]
ãŠãŒã¶ãŒã®è©³çŽ°æ
å ±
[History]
å±¥æŽ
[Down Arrow]
äžåãç¢å°
[Find User]
ãŠãŒã¶ãŒæ€çŽ¢
[Send E-mail]
é»åã¡ãŒã«ãéä¿¡
[SMS]
SMS
[Search All]
å
šãŠæ€çŽ¢
[Tick]
ãã§ãã¯
[No Tick]
ãã§ãã¯ãªã
[Help]
ãã«ã
[Miranda Website]
Miranda ãŠã§ããµã€ã
[Small Dot]
å°ããããã
[Filled Blob]
å¡ãã€ã¶ã Blob
[Empty Blob]
空 Blob
[Unicode plugin]
Unicode ãã©ã°ã€ã³
[ANSI plugin]
ANSI ãã©ã°ã€ã³
[Running plugin]
ãã©ã°ã€ã³ã®å®è¡äž
[Unloaded plugin]
æªèªã¿èŸŒã¿ã®ãã©ã°ã€ã³
[Show/Hide]
ãã€ã衚瀺
[Exit]
çµäº
[Main Menu]
ã¡ã€ã³ã¡ãã¥ãŒ
[Leave chat]
ãã£ããããé¢åž
[Move to Group]
ã°ã«ãŒãã«ç§»å
[On]
ãªã³
[Off]
ãªã
[Frames]
ãã¬ãŒã
[Request authorization]
èªèšŒãªã¯ãšã¹ã
[Grant authorization]
æš©éã®æ¿èª
[Revoke authorization]
èªèšŒã®åæ¶
[Locked status]
ããã¯æžã¹ããŒã¿ã¹
[%s Icons]
%s ã¢ã€ã³ã³
;file \src\modules\skin\sounds.cpp
[Sound Files]
é³å£°ãã¡ã€ã«
;file \src\modules\utils\bmpfilter.cpp
[You need an image services plugin to process PNG images.]
PNG 圢åŒã®ç»åã䜿çšããã«ã¯ç»åãµãŒãã¹ã®ãã©ã°ã€ã³ãå¿
èŠã§ã
[All Bitmaps]
å
šãŠã®ãããããã
[Windows Bitmaps]
Windows 圢åŒãããããã
[JPEG Bitmaps]
JPEG ãããããã
[GIF Bitmaps]
GIF 圢åŒ
[PNG Bitmaps]
PNG 圢åŒ
;file \src\modules\utils\timezones.cpp
[<unspecified>]
< æå®ãªã >
;file \src\modules\utils\utils.cpp
[Unspecified]
æªæå®
[Unknown]
äžæ
[Afghanistan]
ã¢ãã¬ãã¹ã¿ã³
[Albania]
ã¢ã«ããã¢
[Algeria]
ã¢ã«ãžã§ãªã¢
[Andorra]
ã¢ã³ãã©
[Angola]
ã¢ã³ãŽã©
[Anguilla]
ã¢ã³ã°ã£ã©å³¶
[Antigua and Barbuda]
ã¢ã³ãã°ã¢ããŒããŒã
[Argentina]
ã¢ã«ãŒã³ãã³
[Armenia]
ã¢ã«ã¡ãã¢
[Aruba]
ã¢ã«ã
[Australia]
ãªãŒã¹ãã©ãªã¢
[Austria]
ãªãŒã¹ããªã¢
[Azerbaijan]
ã¢ãŒã«ãã€ãžã£ã³
[Bahamas]
ããã
[Bahrain]
ããŒã¬ãŒã³
[Bangladesh]
ãã³ã°ã©ãã£ã·ã¥
[Barbados]
ãã«ããã¹
[Belarus]
ãã©ã«ãŒã·
[Belgium]
ãã«ã®ãŒ
[Belize]
ããªãŒãº
[Benin]
ããã³
[Bermuda]
ããã¥ãŒã諞島
[Bhutan]
ããŒã¿ã³
[Bosnia and Herzegovina]
ãã¹ãã¢ã»ãã«ãã§ãŽãã
[Botswana]
ãã¹ã¯ã
[Brazil]
ãã©ãžã«
[Bulgaria]
ãã«ã¬ãªã¢
[Burkina Faso]
ãã«ãããã¡ãœ
[Burundi]
ãã«ã³ãž
[Cambodia]
ã«ã³ããžã¢
[Cameroon]
ã«ã¡ã«ãŒã³
[Canada]
ã«ãã
[Cayman Islands]
ã±ã€ãã³è«žå³¶
[Central African Republic]
äžå€®ã¢ããªã«å
±ååœ
[Chad]
ãã£ã
[China]
äžåœ
[Cocos (Keeling) Islands]
ã³ã³ã¹(ããŒãªã³ã°)諞島
[Colombia]
ã³ãã³ãã¢
[Comoros]
ã³ã¢ã
[Cook Islands]
ã¯ãã¯è«žå³¶
[Costa Rica]
ã³ã¹ã¿ãªã«
[Croatia]
ã¯ãã¢ãã¢
[Cuba]
ãã¥ãŒã
[Curacao]
ãã¥ã©ãœãŒå³¶
[Czech Republic]
ãã§ã³å
±ååœ
[Denmark]
ãã³ããŒã¯
[Djibouti]
ãžãã
[Dominica]
ãããã«
[Dominican Republic]
ãããã«å
±ååœ
[Ecuador]
ãšã¯ã¢ãã«
[Egypt]
ãšãžãã
[El Salvador]
ãšã«ãµã«ããã«
[Equatorial Guinea]
èµ€éã®ãã¢
[Eritrea]
ãšãªããªã¢
[Estonia]
ãšã¹ããã¢
[Ethiopia]
ãšããªãã¢
[Fiji]
ãã£ãžãŒ
[Finland]
ãã£ã³ã©ã³ã
[France]
ãã©ã³ã¹
[French Guiana]
ä»é ã®ã¢ã
[French Polynesia]
ä»é ããªãã·ã¢
[Gabon]
ã¬ãã³
[Gambia]
ã¬ã³ãã¢
[Georgia]
ã°ã«ãžã¢
[Germany]
ãã€ã
[Ghana]
ã¬ãŒã
[Gibraltar]
ãžãã©ã«ã¿ã«
[Greece]
ã®ãªã·ã£
[Greenland]
ã°ãªãŒã³ã©ã³ã
[Grenada]
ã°ã¬ãã
[Guadeloupe]
ã°ã¢ãã«ãŒã島
[Guatemala]
ã°ã¢ããã©
[Guinea]
ã®ãã¢
[Guinea-Bissau]
ã®ãã¢ããµãŠ
[Guyana]
ã¬ã€ã¢ã
[Haiti]
ãã€ã
[Honduras]
ãã³ãã¥ã©ã¹
[Hong Kong]
éŠæž¯
[Hungary]
ãã³ã¬ãªãŒ
[Iceland]
ã¢ã€ã¹ã©ã³ã
[India]
ã€ã³ã
[Indonesia]
ã€ã³ããã·ã¢
[Iraq]
ã€ã©ã¯
[Ireland]
ã¢ã€ã«ã©ã³ã
[Israel]
ã€ã¹ã©ãšã«
[Italy]
ã€ã¿ãªã¢
[Jamaica]
ãžã£ãã€ã«
[Japan]
æ¥æ¬
[Jordan]
ãšã«ãã³
[Kazakhstan]
ã«ã¶ãã¹ã¿ã³
[Kenya]
ã±ãã¢
[Kiribati]
ããªãã¹
[Kuwait]
ã¯ãŠã§ãŒã
[Kyrgyzstan]
ãã«ã®ã¹ã¿ã³
[Latvia]
ã©ããã¢
[Lebanon]
ã¬ããã³
[Lesotho]
ã¬ãœã
[Liberia]
ãªããªã¢
[Liechtenstein]
ãªããã³ã·ã¥ã¿ã€ã³
[Lithuania]
ãªãã¢ãã¢
[Luxembourg]
ã«ã¯ã»ã³ãã«ã°
[Madagascar]
ããã¬ã¹ã«ã«
[Malawi]
ãã©ãŠã€
[Malaysia]
ãã¬ãŒã·ã¢
[Maldives]
ã¢ã«ãã£ã
[Mali]
ããª
[Malta]
ãã«ã¿
[Marshall Islands]
ããŒã·ã£ã«è«žå³¶
[Martinique]
ãã«ãã£ããŒã¯å³¶
[Mauritania]
ã¢ãŒãªã¿ãã¢
[Mauritius]
ã¢ãŒãªã·ã£ã¹
[Mexico]
ã¡ãã·ã³
[Micronesia, Federated States of]
ãã¯ããã·ã¢é£éŠ
[Moldova, Republic of]
ã¢ã«ããå
±ååœ
[Monaco]
ã¢ãã³
[Mongolia]
ã¢ã³ãŽã«
[Montserrat]
ã¢ã³ãã»ã©ã
[Morocco]
ã¢ããã³
[Mozambique]
ã¢ã¶ã³ããŒã¯
[Myanmar]
ãã£ã³ããŒ
[Namibia]
ãããã¢
[Nauru]
ããŠã«
[Nepal]
ãããŒã«
[Netherlands]
ãªã©ã³ã
[New Caledonia]
ãã¥ãŒã«ã¬ããã¢
[New Zealand]
ãã¥ãŒãžãŒã©ã³ã
[Nicaragua]
ãã«ã©ã°ã¢
[Niger]
ããžã§ãŒã«
[Nigeria]
ãã€ãžã§ãªã¢
[Niue]
ããŠãš
[Norway]
ãã«ãŠã§ã€
[Oman]
ãªããŒã³
[Pakistan]
ããã¹ã¿ã³
[Palau]
ãã©ãª
[Panama]
ããã
[Papua New Guinea]
ããã¢ãã¥ãŒã®ãã¢
[Paraguay]
ãã©ã°ã¢ã€
[Peru]
ãã«ãŒ
[Philippines]
ãã£ãªãã³
[Poland]
ããŒã©ã³ã
[Portugal]
ãã«ãã¬ã«
[Puerto Rico]
ããšã«ããªã³
[Qatar]
ã«ã¿ãŒã«
[Romania]
ã«ãŒããã¢
[Rwanda]
ã«ã¯ã³ã
[Saint Kitts and Nevis]
ã»ã³ãã¯ãªã¹ããã¡ãŒã»ãã€ãã¹
[Saint Lucia]
ã»ã³ãã«ã·ã¢
[Saint Pierre and Miquelon]
ãµã³ããšãŒã«å³¶ã»ãã¯ãã³å³¶
[Saint Vincent and the Grenadines]
ã»ã³ããã³ã»ã³ãããã³ã°ã¬ããã£ãŒã³è«žå³¶
[San Marino]
ãµã³ã»ããªã
[Sao Tome and Principe]
ãµã³ãã¡ããªã³ã·ã
[Saudi Arabia]
ãµãŠãžã¢ã©ãã¢
[Senegal]
ã»ãã¬ã«
[Seychelles]
ã»ã€ã·ã§ã«
[Sierra Leone]
ã·ãšã©ã»ã¬ãªã
[Singapore]
ã·ã³ã¬ããŒã«
[Slovakia]
ã¹ãããã¢
[Slovenia]
ã¹ãããã¢
[Solomon Islands]
ãœãã¢ã³è«žå³¶
[Somalia]
ãœããªã¢
[South Africa]
åã¢ããªã«
[Spain]
ã¹ãã€ã³
[Sri Lanka]
ã¹ãªã©ã³ã«
[Sudan]
ã¹ãŒãã³
[Suriname]
ã¹ãªãã
[Swaziland]
ã¹ã¯ãžã©ã³ã
[Sweden]
ã¹ãŠã§ãŒãã³
[Switzerland]
ã¹ã€ã¹
[Syrian Arab Republic]
ã·ãªã¢ã¢ã©ãå
±ååœ
[Tajikistan]
ã¿ãžãã¹ã¿ã³
[Thailand]
ã¿ã€
[Togo]
ããŒãŽ
[Tokelau]
ãã±ã©ãŠè«žå³¶
[Tonga]
ãã³ã¬
[Trinidad and Tobago]
ããªãããŒãã»ãããŽ
[Tunisia]
ãã¥ããžã¢
[Turkey]
ãã«ã³
[Turkmenistan]
ãã«ã¯ã¡ãã¹ã¿ã³
[Turks and Caicos Islands]
ã¿ãŒã¯ã¹ã»ã«ã€ã³ã¹è«žå³¶
[Tuvalu]
ããã«
[Uganda]
ãŠã¬ã³ã
[Ukraine]
ãŠã¯ã©ã€ã
[United Arab Emirates]
ã¢ã©ãéŠé·åœé£éŠ
[United Kingdom]
ã€ã®ãªã¹
[Uruguay]
ãŠã«ã°ã¢ã€
[Uzbekistan]
ãŠãºããã¹ã¿ã³
[Vanuatu]
ããã¢ã
[Yemen]
ã€ãšã¡ã³
[Zambia]
ã¶ã³ãã¢
[Zimbabwe]
ãžã³ãããš
;file \src\modules\visibility\visibility.cpp
|