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
|
[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]
プロキシ通信用の追加データ
[SSL traffic]
SSL トラフィック
[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 の起動時にこのダイアログボックスを表示
[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 menu object not support user defined options.]
警告 !\r\nこのメニューオブジェクトはユーザーの定義したオプションではサポートされていません
[Insert separator]
セパレーターを挿入
[Service:]
サービス:
[Default]
デフォルト
[Set]
設定
[Disable icons]
アイコンを無効
[Account order and 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.]
このフォントは各種の追加メモの表示に使用されています
[Welcome to Miranda NG's account manager!\nHere you can set up your IM accounts.\n\nSelect 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 アカウントをセットアップしてください
[Event icon legend:]
イベントアイコン凡例:
[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]
変更をキャンセル
[&Authorize]
許可 (&A)
[&Deny]
拒否 (&D)
[Decide &later]
後で決定 (&L)
[Reason:]
理由:
[Denial reason:]
拒否の理由:
[Add to contact list if authorized]
認証済みならコンタクトリストに追加
[You were added]
あなたは追加されました
[&Close]
閉じる (&C)
[%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 秒後に閉じる
[&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)
[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)
[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]
アルファベット順にグループを並べる
[Quick search 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:]
コンタクトリストの背景:
[&Main menu]
メインメニュー (&M)
[&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
[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]
あなたのコンタクトリストにない人からのファイルは毎回確認
[About Miranda NG]
Miranda NG のバージョン情報
[Miranda NG\n%s]
Miranda NG\n%s
[Credits >]
クレジット >
[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):]
アイドル ( 自動離席中 )
[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 CTRL+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]
アバターの高さを以下に制限:
[Maximum 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 and send]
ペーストして送信
[Delete]
削除
[Find]
検索
[&Find next]
次を検索 (&F)
[Find what:]
検索項目:
[Message history]
メッセージ履歴
[&Find...]
検索 (&F)...
[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:]
ウェブサイト:
[%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]
アラート
[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)]
( 不明 )
[%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]
機能はプロトコルにサポートされていません
[Re&ad %s message]
%s メッセージを読む (&a)
[Re&ad status message]
ステータスメッセージを読む (&a)
[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]
ステータス
[Join chat]
チャットに参加
[Open chat window]
チャットウィンドウを開く
[%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>]
< 不正 >
[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]
強調表示されたメッセージ
[User list members (online)]
ユーザーリストメンバー ( オンライン )
[User list members (away)]
ユーザーリストメンバー ( 離席中 )
[Message typing area]
メッセージ入力エリア
[Chat log symbols (Webdings)]
チャットログの記号 ( Webdings )
[Use a tabbed interface]
タブインターフェースを使用
[Close tab on double click]
ダブルクリックでタブを閉じる
[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]
メッセージの2行目をインデントする
[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]
メッセージ背景
[User list background]
ユーザーリストの背景
[User list lines]
ユーザーリストの線
[User list 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)
[Nick change (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]
メッセージセッション
[General]
全般
[Chat log]
チャットログ
[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]
トピックは変更されています
[&Join]
参加する (&J)
[%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]
検索語なし
[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 ユーザー )
[Nickname]
ニックネーム
[Unique ID]
固有 ID
[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]
クイック検索テキスト
[Not focused]
非フォーカス
[Offline]
オフライン
[Online]
オンライン
[Away]
離席中
[NA]
応答不可
[Occupied]
取り込み中
[DND]
邪魔しないで
[Free for chat]
チャット OK!
[Invisible]
不可視
[Out to lunch]
昼食中
[On the phone]
電話中
[List background]
リストの背景
[Global]
グローバル
[User has not registered an e-mail address]
ユーザーは電子メールアドレスを登録していません
[Send e-mail]
電子メールの送信
[&E-mail]
電子メール (&E)
[File from %s]
送信者 %s のファイル
[bytes]
バイト
[&File]
ファイル (&F)
[File &transfers...]
ファイル転送 (&T)...
[Incoming]
着信
[Complete]
完了
[Error]
エラー
[%s file]
%s ファイル
[All files]
全てのファイル
[Executable files]
実行可能ファイル
[Events]
イベント
[My received files]
受信ファイル
[View user's history]
ユーザーの履歴を表示
[User menu]
ユーザーメニュー
[Canceled]
キャンセルしました
[%d files]
%d 個のファイル
[%d directories]
%d 個のディレクトリ
[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...]
次のファイルに移動中...
[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]
転送とウイルス検知が完了しました
[Outgoing]
発信
[< Copyright]
< 著作権
[&About...]
バージョン情報 (&A)...
[&Support]
サポート (&S)
[&Miranda NG homepage]
Miranda NG ホームページ
[&Report bug]
バグ報告 (&R)
[Idle]
アイドル
[The message send timed out.]
メッセージの送信はタイムアウトしました
[Incoming message (10x10)]
着信メッセージ (10x10)
[Outgoing message (10x10)]
発信メッセージ (10x10)
[Last message received on %s at %s.]
最終メッセージを%s %sに受信
[%s is typing a message...]
%s はメッセージを入力中...
[File sent]
ファイル送信
[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]
入力中通知
[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]
メッセージ送信エラー
[An unknown error has occurred.]
不明なエラーが発生しました
[Invalid 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)
[URL from %s]
%sからの URL
[Web page address (&URL)]
ウェブページアドレス (URL)(&U)
[URL]
URL
[Send URL to]
URL を送信:
[Send timed out]
タイムアウトを送信
[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]
仕事用ファックス
[Male]
男性
[Female]
女性
[<not specified>]
< 指定なし >
[Summary]
要約
[Contact]
コンタクト
[Location]
場所
[Work]
仕事
[Background info]
背景情報
[Notes]
メモ
[Owner]
オーナー
[View/change my &details...]
詳細情報の表示 / 変更 (&D)...
[%s is online]
%s はオンラインです
[Add contact]
コンタクトを追加
[Please authorize my request and add me to your contact list.]
リクエストを認証して , 私をあなたのコンタクトリストに追加してください
[Custom status]
カスタムステータス
[%s (locked)]
%s ( ロック中 )
[Main menu]
メインメニュー
[(Unknown contact)]
( 不明なコンタクト )
[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)
[Nick]
ニックネーム
[E-mail]
電子メール
['(Unknown contact)']
'( 不明なコンタクト )'
[Menus]
メニュー
[Customize]
カスタマイズ
[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]
このグループ
[&Move to group]
グループに移動 (&M)
[<Root group>]
< ルートグループ >
[Miranda is unable to open '%s' because you do not have any profile plugins installed.\nYou need to install dbx_mmap.dll]
Miranda は ' %s ' を開けませんでした。プロファイルプラグインがインストールされていません\ndbx_mmap.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 はプロファイルを開けませんでした
[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.]
既知の安全ではない変更です
[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]
サイズ
[Run]
実行
[Created]
作成済
[Modified]
変更済
[My profiles]
マイプロファイル
[New profile]
新規プロファイル
[Chat activity]
チャットのアクティビティ
[Extra icons]
追加アイコン
[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)...
[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]
ユーザーは発見できませんでした
[Failed to create file]
ファイルの作成に失敗しました
[<none>]
< なし >
[Configuration files]
ファイル設定
[Text files]
テキストファイル
[Error writing file]
ファイル書き込みエラー
[Sample text]
サンプルテキスト
[Fonts]
フォント
[Icon sets]
アイコン設定
[** All contacts **]
** 全てのコンタクト **
[Contacts]
コンタクト
[(Miranda core logging)]
( Miranda コアログ )
[Select where log file will be created]
ログファイルを作成する場所を選択してください
[Select program to be run]
実行するプログラムを選択してください
[<All connections>]
< 全ての接続 >
[Network]
ネットワーク
[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]
接続中のホストには発行済み証明書がありません:
[Loading... %d%%]
読み込み中... %d%%
[%s options]
%s オプション
[Miranda NG options]
Miranda NG オプション
[&Options...]
オプション (&O)...
['%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.]
インストールされているコンタクトリストプラグインがいずれも起動できません。読み込みできないコンタクトリストの選択は無視されます
[Plugin]
プラグイン
[Version]
バージョン
[Plugins]
プラグイン
[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 のオプションダイアログを使用して下さい
[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)...
[Remove shortcut]
ショートカットを削除
[Add another shortcut]
他のショートカットを追加
[Scope:]
適用範囲:
[System]
システム
[Actions:]
操作:
[Add binding]
バインドを追加
[Modify]
変更
[System scope]
システムの適用範囲
[Miranda scope]
Miranda の適用範囲
[User online]
オンラインユーザー
[Group (open)]
グループ ( オープン )
[Group (closed)]
グループ ( クローズ )
[Connecting]
接続中
[User details]
ユーザーの詳細情報
[History]
履歴
[Down arrow]
下向き矢印
[Find user]
ユーザー検索
[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]
終了
[Leave chat]
チャットから離席
[Move to group]
グループに移動
[On]
オン
[Off]
オフ
[Frames]
フレーム
[Request authorization]
認証リクエスト
[Grant authorization]
権限の承認
[Revoke authorization]
認証の取消
[Always visible]
常に可視
[Locked status]
ロック済ステータス
[%s icons]
%s アイコン
[Sound files]
音声ファイル
[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 形式
[<unspecified>]
< 指定なし >
[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]
ブータン
[Bolivia]
ボリビア
[Bosnia and Herzegovina]
ボスニア・ヘルツェゴビナ
[Botswana]
ボスワナ
[Brazil]
ブラジル
[Brunei]
ブルネイ
[Bulgaria]
ブルガリア
[Burkina Faso]
ブルキナファソ
[Burundi]
ブルンジ
[Cambodia]
カンボジア
[Cameroon]
カメルーン
[Canada]
カナダ
[Cape Verde]
カーボベルデ諸島
[Cayman Islands]
ケイマン諸島
[Central African Republic]
中央アフリカ共和国
[Chad]
チャド
[Chile]
チリ共和国
[China]
中国
[Cocos (Keeling) Islands]
ココス(キーリング)諸島
[Colombia]
コロンビア
[Comoros]
コモロ
[Congo, Republic of the]
コンゴ共和国
[Congo, Democratic Republic of the]
コンゴ民主共和国
[Cook Islands]
クック諸島
[Costa Rica]
コスタリカ
[Cote d'Ivoire]
コートジボワール
[Croatia]
クロアチア
[Cuba]
キューバ
[Curacao]
キュラソー島
[Czech Republic]
チェコ共和国
[Denmark]
デンマーク
[Djibouti]
ジブチ
[Dominica]
ドミニカ
[Dominican Republic]
ドミニカ共和国
[Ecuador]
エクアドル
[Egypt]
エジプト
[El Salvador]
エルサルバドル
[Equatorial Guinea]
赤道ギニア
[Eritrea]
エリトリア
[Estonia]
エストニア
[Ethiopia]
エチオピア
[Faroe Islands]
フェロー諸島
[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]
キルギスタン
[Laos]
ラオス
[Latvia]
ラトビア
[Lebanon]
レバノン
[Lesotho]
レソト
[Liberia]
リベリア
[Libya]
リビア・アラブ国
[Liechtenstein]
リヒテンシュタイン
[Lithuania]
リトアニア
[Luxembourg]
ルクセンブルグ
[Macau]
マカオ
[Madagascar]
マダガスカル
[Malawi]
マラウイ
[Malaysia]
マレーシア
[Maldives]
モルディブ
[Mali]
マリ
[Malta]
マルタ
[Marshall Islands]
マーシャル諸島
[Martinique]
マルティニーク島
[Mauritania]
モーリタニア
[Mauritius]
モーリシャス
[Mayotte]
マヨット島
[Mexico]
メキシコ
[Micronesia, Federated States of]
ミクロネシア連邦
[Moldova]
モルドバ共和国
[Monaco]
モナコ
[Mongolia]
モンゴル
[Montenegro]
モンテネグロ共和国
[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]
カタール
[Reunion]
レユニオン島
[Romania]
ルーマニア
[Russia]
ロシア
[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]
セネガル
[Serbia]
セルビア共和国
[Seychelles]
セイシェル
[Sierra Leone]
シエラ・レオネ
[Singapore]
シンガポール
[Slovakia]
スロバキア
[Slovenia]
スロベニア
[Solomon Islands]
ソロモン諸島
[Somalia]
ソマリア
[South Africa]
南アフリカ
[Spain]
スペイン
[Sri Lanka]
スリランカ
[Sudan]
スーダン
[Suriname]
スリナム
[Swaziland]
スワジランド
[Sweden]
スウェーデン
[Switzerland]
スイス
[Syria]
シリアアラブ共和国
[Taiwan]
台湾
[Tajikistan]
タジキスタン
[Tanzania]
タンザニア
[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]
バヌアツ
[Vatican City]
バチカン市国
[Venezuela]
ベネズエラ
[Vietnam]
ベトナム
[Wallis and Futuna]
ウォリス・フトゥーナ諸島
[Yemen]
イエメン
[Zambia]
ザンビア
[Zimbabwe]
ジンバブエ
|