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
|
#muuid {6ca5f042-7a7f-47cc-a715-fc8c46fbf434}
;============================================================
; File: TabSRMM.dll
; Plugin: TabSRMM
; Version: 3.1.99.8
; Authors: The Miranda developers team and contributors
;============================================================
;file \plugins\TabSRMM\res\chat.rc
[You can add the user by user name or his ID. Wildcards are allowed and recommended.]
ãŠãŒã¶ãŒåãããã¯ãŠãŒã¶ãŒ ID ã§ãŠãŒã¶ãŒã®è¿œå ãå¯èœã§ããã¯ã€ã«ãã«ãŒãã¯èš±å¯åã³æšå¥šãããŠããŸã
[OK]
OK
[Cancel]
Cancel
[Show these events]
ãããã®ã€ãã³ãã衚瀺
[Actions]
ã¢ã¯ã·ã§ã³
[Messages]
ã¡ãã»ãŒãž
[Nick changes]
ããã¯ãå€æŽ
[Users joining]
ãŠãŒã¶ãŒã®åå
[Users leaving]
ãŠãŒã¶ãŒã®é¢åž
[Topic changes]
ãããã¯å€æŽ
[Status changes]
ã¹ããŒã¿ã¹å€æŽ
[Information]
æ
å ±
[Disconnects]
åæ
[User kicks]
ãŠãŒã¶ãŒæé€
[Notices]
éç¥
[Tray]
ãã¬ã€
[Options]
ãªãã·ã§ã³
[Add new rooms to group:]
æ°ããã«ãŒã ãã°ã«ãŒãã«è¿œå :
[Chat integration is disabled. You can enable it here, and then you to NEED RESTART Miranda after making this change.\n\nYou MUST disable the standard chat plugin when you enable the group chat support here. Otherwise no group chat at all may work.]
ãã£ããçµ±åã¯ç¡å¹ã§ããããã§æå¹ã«ã§ããŸããå€æŽåŸã«Mirandaããåèµ·åããå¿
èŠããããŸãã\n\nããã§ã°ã«ãŒããã£ãããµããŒããæå¹ã«ããå Žå㯠, æšæºãã£ãããã©ã°ã€ã³ã¯ãå¿
ããç¡å¹ã«ããŠãã ãããããããªããã°å
šãŠã®ã°ã«ãŒããã£ããã¯æ©èœããŸãã
[Log files]
ãã°ãã¡ã€ã«
[Enable logging to disk]
ãã£ã¹ã¯ã«ãã°ãæ®ã
[Log directory]
ãã°ãã©ã«ããŒ
[Maximum size for log files (in KB)]
ãã°ãã¡ã€ã«ã®æ倧ãµã€ãº (KB)
[Group chat log formatting]
ã°ã«ãŒããã£ããã®ãã°ãåæåãã
[Your name]
åå
[Other name]
ãã®ä»ã®åå
[Timestamp (window)]
ã¿ã€ã ã¹ã¿ã³ã(ãŠã£ã³ããŠ)
[Timestamp (logfile)]
ã¿ã€ã ã¹ã¿ã³ã(ãã°ãã¡ã€ã«)
[Maximum number of events in the message window]
ã¡ãã»ãŒãžãŠã£ã³ããŠå
ã®ã€ãã³ãã®æ倧å€
[Group chat userlist row height (pixels)]
ã°ã«ãŒããã£ãããŠãŒã¶ãŒãªã¹ãã®è¡ã®é«ã(ãã¯ã»ã«)
[Open log file base folder]
ãã°ãã¡ã€ã«ããŒã¹ãã©ã«ããŒãéã
[Default settings for known event types]
æ¢ç¥ã®ã€ãã³ãã¿ã€ãçšããã©ã«ãèšå®
[Show when filter is active]
ãã£ã«ã¿ãŒãã¢ã¯ãã£ããªæã«è¡šç€º
[Show Popup]
ãããã¢ããã衚瀺
[Notify in tray]
ãã¬ã€ã«ããéç¥
[Suppress tray notifications for focused channel windows]
ãã©ãŒã«ã¹ãããŠãããã£ã³ãã«ãŠã£ã³ããŠå®ãŠã®ãã¬ã€éç¥ã衚瀺ããªã
[Do not show popups when the channel window is not open]
ãã£ã³ãã«ãŠã£ã³ããŠãéããŠããªãæãããã¢ããã衚瀺ããªã
[Highlight event]
ã€ãã³ãã匷調衚瀺
[Line markers in the message log]
ã¡ãã»ãŒãžãã°ã«ç·ã§ããŒã«ãŒ
[Highlight user names]
ãŠãŒã¶ãŒåã匷調衚瀺
[Enable highlighting for user names]
ãŠãŒã¶ãŒåã®åŒ·èª¿è¡šç€ºãæå¹
[Also look in user IDs]
ãŠãŒã¶ãŒ ID ãæ€çŽ¢
[Names to highlight, wildcards like * and ? are allowed, separate multiple entries with spaces]
ååã«åŒ·èª¿è¡šç€ºãš , * ã ? ã®ãããªã¯ã€ã«ãã«ãŒããèš±å¯ãããŠããæ , è€æ°ã®ãšã³ããªãŒã¯ç©ºçœã§åå²ããŸã
[Highlight message text]
ã¡ãã»ãŒãžããã¹ãã匷調衚瀺
[Enable highlighting for message text]
ã¡ãã»ãŒãžããã¹ãã®åŒ·èª¿è¡šç€ºãæå¹
[Words to highlight, wildcards like * and ? are allowed, separate multiple entries with spaces. Leave it empty if you only want to highlight your own nick name.]
åèªã«åŒ·èª¿è¡šç€ºãš , * ã ? ã®ãããªã¯ã€ã«ãã«ãŒããèš±å¯ãããŠããæ , è€æ°ã®ãšã³ããªãŒã¯ç©ºçœã§åå²ããŸããããèªåã®ããã¯ããŒã ã«åŒ·èª¿è¡šç€ºã®ã¿ã䜿çšãããå Žåã¯ç©ºçœã®ãŸãŸã«ããŠãã ãã
[Highlight messages containing my own nick name]
èªåèªèº«ã®ããã¯ããŒã ãå«ãã¡ãã»ãŒãžã匷調衚瀺
[List]
ãªã¹ã
[&Message]
ã¡ãã»ãŒãž (&M)
[Log]
ãã°
[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)
[&Copy link]
ãªã³ã¯ãã³ã㌠(&C)
[Message]
ã¡ãã»ãŒãž
[Undo]
åãæ¶ãã
[Redo]
ããçŽã
[Copy]
ã³ããŒ
[Cut]
ã«ãã
[Paste]
ããŒã¹ã
[Select all]
å
šãŠéžæ
[Clear]
ã¯ãªã¢
[Tabs]
ã¿ã
[&Close tab]
ã¿ããéãã (&C)
[C&lose other tabs]
ä»ã®ã¿ããéãã (&l)
[&Open at this position]
ãã®äœçœ®ã«éã (&O)
;file \plugins\TabSRMM\res\resource.rc
[TabSRMM exception]
TabSRMM ã®äŸå€
[Customize the panel]
ããã«ã®ã«ã¹ã¿ãã€ãº
[Scope of settings]
èšå®ã®ç¯å²
[Use global or private panel height]
ã°ããŒãã«ãããã¯ãã©ã€ããŒãããã«ã®é«ãã䜿çš
[Set size to]
倧ããã以äžã«èšå®:
[Compact (1 Line)]
ã³ã³ãã¯ã ( 1 è¡ )
[Normal (2 Lines)]
æšæº ( 2 è¡ )
[Large]
倧
[Tip: To use a custom size you can always drag the bottom edge of the panel]
ãã³ã: ã«ã¹ã¿ã ãµã€ãºã䜿ããš , åžžã«ããã«ã®äžçªäžã®ç«¯ã«ãã©ãã°ã§ããŸã
[Note: All settings are applied immediately]
泚æ: å
šãŠã®èšå®ã¯ããã«é©çšãããŸã
[The container is using private settings. The panel height will not be shared with other containers.]
ã³ã³ããã¯ãã©ã€ããŒãèšå®ã䜿çšããŠããŸããããã«ã®é«ãã¯ãã®ä»ã®ã³ã³ãããšå
±æãããŸãã
[Show picture for this contact]
ãã®ã³ã³ã¿ã¯ãã«ç»åã衚瀺
[Advanced tweaks]
詳现èšå®
[Message send timeout]
ã¡ãã»ãŒãžéä¿¡ã¿ã€ã ã¢ãŠã
[seconds]
ç§
[Input history size]
å±¥æŽãµã€ãºãå
¥å
[entries]
ãšã³ããªãŒ
[Options marked with an asterisk (*) will only take effect after Miranda has been restarted.]
ã¢ã¹ã¿ãªã¹ã¯ (*) ã§ãã§ãã¯ããããªãã·ã§ã³ã¯ Miranda ã®åèµ·ååŸã«é©çšãããŸã
[More about advanced tweaks]
詳现èšå®ã«ã€ããŠãã£ãš
[Revert to (safe) defaults]
( å®å
šãª ) ããã©ã«ãã«æ»ã
[Event notify options]
ã€ãã³ãéç¥ãªãã·ã§ã³
[Limit message preview to]
ã¡ãã»ãŒãžã®ãã¬ãã¥ãŒã以äžã«éå®:
[Only show event notifications when my status is...]
èªåã®ã¹ããŒã¿ã¹ã以äžã®æã®ã¿ã€ãã³ãéç¥ã衚瀺...
[Text]
ããã¹ã
[Background]
èæ¯
[Timeout (seconds, 0 = default, -1 = no timeout)]
ã¿ã€ã ã¢ãŠã(ç§, 0 = ããã©ã«ã, -1 = ã¿ã€ã ã¢ãŠããªã)
[Group chats]
ã°ã«ãŒããã£ãã
[Use the message log color theme for group chat popups]
ã°ã«ãŒããã£ãããããã¢ããã§ã¡ãã»ãŒãžãã°ã«ã©ãŒããŒãã䜿çš
[No compatible popup plugin was found. The event notification\nsystem is not available.]
äºææ§ã®ãããããã¢ãããã©ã°ã€ã³ãèŠã€ãããŸãããã€ãã³ãéç¥\nã·ã¹ãã ã¯å©çšã§ããŸãã
[All modes]
å
šã¢ãŒã
[Message log view mode (does not affect open windows)]
ã¡ãã»ãŒãžãã°è¡šç€ºã¢ãŒã ( éãããŠã£ã³ããŠã«åœ±é¿ããªã )
[Select how to display the message log. This setting can be ignored when one of the listed plugins is not installed.]
ã¡ãã»ãŒãžãã°ã®è¡šç€ºæ¹æ³ãéžæããŠãã ããããã®èšå®ã¯ãªã¹ãã«ãããã©ã°ã€ã³ã®ãããããã€ã³ã¹ããŒã«ãããŠããªãå Žåã¯ç¡èŠãããŸã
[Send text formatting method]
éä¿¡ããã¹ãæžåŒèšå®ã¡ãœãã
[ANSI codepage]
ANSI ã³ãŒãããŒãž
[Codepage for ANSI encoding/decoding when sending or receiving non-unicode messages.]
unicodeã§ã¯ãªãã¡ãã»ãŒãžã®éåä¿¡æã«ãšã³ã³ãŒã / ãã³ãŒããã ANSI ã³ãŒãããŒãž
[Info panel mode]
æ
å ±ããã«ã¢ãŒã
[Show avatar in message window]
ã¡ãã»ãŒãžãŠã£ã³ããŠã«ã¢ãã¿ãŒã衚瀺
[Use private splitter position]
åã
ã®åå²äœçœ®ã䜿çš
[Contact is a favorite contact]
ã³ã³ã¿ã¯ãã¯ãæ°ã«å
¥ãã®ã³ã³ã¿ã¯ãã§ã
[Force ANSI send / receive]
ANSI ã«åŒ·å¶ããŠéä¿¡ / åä¿¡
[Ignore sending timeouts]
éä¿¡æã®ã¿ã€ã ã¢ãŠããç¡èŠ
[Load only actual history]
çŸåšã®å±¥æŽã®ã¿èªã¿èŸŒã
[Always trim message log to]
åžžã«ã¡ãã»ãŒãžãã°ã以äžã«åãè©°ãã:
[Events]
ã€ãã³ã
[Only show tab bar when it's needed]
å¿
èŠæã®ã¿ã¿ãããŒã衚瀺
[Container stays on top]
ã³ã³ãããäžçªäžã«ãã
[Vertical maximize]
åçŽæ¹åã«æ倧å
[Close or hide inactive container after]
éã¢ã¯ãã£ãã®ã³ã³ããã次ã®åŸã«éãããé衚瀺:
[sec. (0=never)]
ç§ ( 0 = å®è¡ããªã )
[Automatically size input area (*)]
å
¥åãšãªã¢ã®ãµã€ãºãèªååãã (*)
[Use default setting]
ããã©ã«ãèšå®ã䜿çš
[Flash until focused]
ãã©ãŒã«ã¹ããããŸã§ãã©ãã·ã¥
[Disable flashing]
ãã©ãã·ã¥ãç¡å¹
[Enable popups if minimized]
æå°åãããŠãããšããããã¢ãããæå¹
[Enable popups if unfocused]
æªéžæã®æãããã¢ãããæå¹
[Enable popups if focused]
ãã©ãŒã«ã¹ãããŠããæãããã¢ãããæå¹
[Show popups for inactive tabs in active containers]
ã¢ã¯ãã£ãã³ã³ããã«ããéã¢ã¯ãã£ããªã¿ãããããã¢ãã衚瀺
[Hide the status bar]
ã¹ããŒã¿ã¹ããŒãé ã
[Hide the menu bar]
ã¡ãã¥ãŒããŒãé ã
[User ID in status bar]
ã¹ããŒã¿ã¹ããŒã®ãŠãŒã¶ãŒ ID
[Hide the tool bar]
ããŒã«ããŒãé ã
[Place the tool bar at the bottom (*)]
ããŒã«ããŒãäžçªäžã«è¡šç€º (*)
[Show the info panel]
æ
å ±ããã«ã衚瀺
[Hide title bar]
ã¿ã€ãã«ããŒãé ã
[Title bar format]
ã¿ã€ãã«ããŒæžåŒèšå®
[Available formats]
ãã©ãŒããããå©çšå¯
[Use this to specify a private message log theme for this container. This will have no effect when using IEView or another message log viewer and should NOT be confused with skins.]
ããã¯ãã®ã³ã³ããã«å¯ŸããŠãã©ã€ããŒãã¡ãã»ãŒãžãã°ããŒããæå®ããã®ã«äœ¿çšããŸããIEViewããã®ä»ã®ã¡ãã»ãŒãžãã°ãã¥ãŒã¢ã®äœ¿çšæã«ã¯å¹æããããŸãããã¹ãã³ãšæ··åããªãã§ãã ãã
[Use global container size and position]
ã°ããŒãã«ã³ã³ããã®å€§ãããšäœçœ®ã䜿çš
[Save current as global]
çŸåšå€ãã°ããŒãã«èšå®ãšããŠä¿å
[When checked, this container will use private settings, otherwise settings are shared among containers.]
ãã§ãã¯ããæ , ãã®ã³ã³ããã«ã¯ãã©ã€ããŒãèšå®ã䜿çšãããŸãããããªãã° , èšå®ã¯ã³ã³ããéã§å
±æãããŸã
[Apply]
é©çš
[Tab location]
ã¿ãã®äœçœ®
[When using the switch bar, use the following layout]
ã¹ã€ããããŒã®äœ¿çšæ , 以äžã®ã¬ã€ã¢ãŠãã䜿çšãã
[Flash event icon on tab]
ã¿ãã®ã€ãã³ãã¢ã€ã³ã³ããã©ãã·ã¥
[Flash text label on tabs]
ã¿ãã®ããã¹ãã©ãã«ããã©ãã·ã¥
[Single row tab control (*)]
åäžè¡ã¿ãã³ã³ãããŒã« (*)
[Close button on tabs]
ã¿ãã®ãã¿ã³ãéãã
[Use button tabs (*)]
ãã¿ã³ã¿ããäœ¿çš (*)
[You have chosen to disable all event notifications for open message windows.]
ããªãã¯éããŠããã¡ãã»ãŒãžãŠã£ã³ããŠã«å¯ŸããŠå
šãŠã®ã€ãã³ãéç¥ãç¡å¹ã«ããããšãéžæããŠããŸã
[Show contact avatars]
ã³ã³ã¿ã¯ãã¢ãã¿ãŒã衚瀺
[Show my own avatars]
èªåã®ã¢ãã¿ãŒã衚瀺
[Show avatars on task bar (Win 7, large task bar required)]
ã¿ã¹ã¯ããŒã«ã¢ãã¿ãŒã衚瀺 ( Win 7, èŠå€§ããã¿ã¹ã¯ã㌠)
[Enable sound effects]
å¹æé³ãæå¹
[Play sounds when minimized]
æå°åããŠããæé³å£°ã鳎ãã
[Play sounds when not focused]
ãã©ãŒã«ã¹ãããŠããªãæé³å£°ã鳎ãã
[Play sounds for inactive tabs in active containers]
ã¢ã¯ãã£ãã³ã³ããã®éã¢ã¯ãã£ããªã¿ãã«å¯ŸããŠé³å£°ã鳎ãã
[Play sounds for the active tab / window]
ã¢ã¯ãã£ããªã¿ã / ãŠã£ã³ããŠã«å¯ŸããŠé³å£°ã鳎ãã
[Options marked with an asterisk (*) do not affect open message windows.]
ã¢ã¹ã¿ãªã¹ã¯ (*) ã§ãã§ãã¯ããããªãã·ã§ã³ã¯éããã¡ãã»ãŒãžãŠã£ã³ããŠã«ã¯åœ±é¿ããŸãã
[Message window options]
ã¡ãã»ãŒãžãŠã£ã³ããŠãªãã·ã§ã³
[Size and scaling options for the bottom avatar display]
äžçªäžã«ã¢ãã¿ãŒã衚瀺ããå Žåã®ãµã€ãºãšæ¡å€§çž®å°ãªãã·ã§ã³
[Maximum display height (pixels)]
ãã£ã¹ãã¬ã€ã®é«ãã®æå€§å€ ( ãã¯ã»ã« )
[(0 = no limit)]
( 0 = ç¡å¶é )
[Try to keep original size]
å
ã®ãµã€ãºãç¶æãã
[Help on this]
ããã«ã€ããŠã®ãã«ã
[Reset all hidden warnings]
é衚瀺ã®èŠåãå
šãŠãªã»ãã
[Indent values]
ã€ã³ãã³ãå€
[Left/Right]
å·Š / å³
[px]
px
[Template sets]
ãã³ãã¬ãŒãã»ãã
[Standard templates...]
æšæºãã³ãã¬ãŒã...
[RTL templates...]
RTL ãã³ãã¬ãŒã...
[Load History Events]
ã€ãã³ãå±¥æŽãèªã¿èŸŒã
[Load unread events only]
æªèªã®ã€ãã³ãã®ã¿ãèªã¿èŸŒã
[Load number of previous events]
åã®ã€ãã³ããèªã¿èŸŒãæ°
[Load previous events less than]
以äžã®åã®ã€ãã³ããèªã¿èŸŒã
[minutes old]
åå
[Global message log display]
ã°ããŒãã«ã¡ãã»ãŒãžãã°è¡šç€º
[Typing Notification]
å
¥åäžéç¥
[Send typing notifications to the following users when you are typing a message to the them:]
以äžã®ãŠãŒã¶ãŒã«å¯Ÿããã¡ãã»ãŒãžãå
¥åäžã®æ , å
¥åäžéç¥ãéä¿¡:
[ Show typing notifications in the message window]
ã¡ãã»ãŒãžãŠã£ã³ããŠã«å
¥åäžéç¥ã衚瀺
[Flash window once on typing events (only if flashing enabled)]
å
¥åã€ãã³ãæã«ãŠã£ã³ããŠãäžåãã©ãã·ã¥ ( ãã©ãã·ã¥æå¹æã®ã¿ )
[ Show typing notifications in the contact list and tray]
ã³ã³ã¿ã¯ããªã¹ããšãã¬ã€ã«å
¥åäžéç¥ã衚瀺
[Show typing notification when message dialog is open]
ã¡ãã»ãŒãžãã€ã¢ãã°ãéããŠããæå
¥åäžéç¥ã衚瀺
[Show typing notification when no message dialog is open]
ã¡ãã»ãŒãžã®ãªããã€ã¢ãã°ãéããã , å
¥åäžéç¥ã衚瀺
[Show balloon tooltip in the system tray]
ãã«ãŒã³ããŒã«ããããã·ã¹ãã ãã¬ã€ã«è¡šç€º
[ Show popups when a user is typing]
ãŠãŒã¶ãŒãå
¥åäžã«ãããã¢ããã衚瀺
[More about typing notifications]
å
¥åäžéç¥ã«ã€ããŠãã£ãš
[Tab options]
ã¿ããªãã·ã§ã³
[Miscellaneous options]
ãã®ä»ã®ãªãã·ã§ã³
[Setup status modes for automatic tab creation...]
èªåã¿ãçæã®ã¹ããŒã¿ã¹ã¢ãŒãã»ããã¢ãã...
[Limit nicknames on tabs to]
ã¿ãã®ããã¯ããŒã ãããã«éå®:
[ESC key behavior]
ESC ããŒã®åäœ
[Select container]
ã³ã³ãããéžæ
[Available containers]
ã³ã³ãããå©çšå¯
[Delete]
åé€
[Rename]
ååã®å€æŽ
[Create a new container]
æ°èŠã³ã³ãããäœæ
[Create new]
æ°èŠäœæ
[Show in IM chats]
IM ãã£ããã«è¡šç€º
[Show in chat rooms]
ãã£ããã«ãŒã ã«è¡šç€º
[Gap between buttons:]
ãã¿ã³éé:
[Hide if there isn't enough space]
ååãªç©ºéããªãå Žåé ã
[Reset]
ãªã»ãã
[Insert Separator]
ã»ãã¬ãŒã¿ãŒãæ¿å
¥
[Tabs should be used in the following way]
ã¿ãã¯ä»¥äžã®æ¹æ³ã§äœ¿çšããªããã°ãªããªã
[Use contact list groups for organizing tabs (one window per group)]
æŽçã¿ãçšã³ã³ã¿ã¯ããªã¹ãã°ã«ãŒããäœ¿çš ( ã°ã«ãŒãæ¯ã«1ã€ã®ãŠã£ã³ã㊠)
[Tabbed interface, limit the maximum number of tabs per window to:]
ã¿ãã€ã³ã¿ãŒãã§ãŒã¹ , ãŠã£ã³ããŠæ¯ã®ã¿ãã®æ°ã®æ倧æ°ã次ã®æ°ã«å¶é:
[No tabs at all, each session has its own top level window]
ã¿ããå
šããªãå Žå , å
šãŠã®ã»ãã·ã§ã³ã«ãããã¬ãã«ãŠã€ã³ããŠããããŸã
[Default mode (tabbed interface, manual assignments)]
ããã©ã«ãã¢ãŒã ( ã¿ãã€ã³ã¿ãŒãã§ãŒã¹ , æåå²ãåœãŠ )
[Container flashing]
ã³ã³ããããã©ãã·ã¥
[Flash containers]
ã³ã³ããããã©ãã·ã¥
[times]
å
[Flash interval]
ãã©ãã·ã¥éé
[milliseconds]
ããªç§
[Help on containers]
ã³ã³ããã«ã€ããŠã®ãã«ã
[Windows Aero settings]
Windows Aero èšå®
[Use Aero UI elements(only when not using a custom skin)]
Aero UI èŠçŽ ãäœ¿çš ( ã«ã¹ã¿ã ã¹ãã³ã䜿çšããŠããªããšãã®ã¿ )
[Use Windows 7 task bar enhancements (restart required)]
Windows 7 ã¿ã¹ã¯ããŒæ¡åŒµæ©èœãäœ¿çš ( èŠåèµ·å )
[Popups]
ãããã¢ãã
[...is &typing]
...ã¯å
¥åäž (&t)
[...stopped t&yping]
...å
¥åãäžæ¢ (&y)
[U&se Popup colors]
ãããã¢ããè²ãäœ¿çš (&s)
[&Use Windows colors]
ãŠã£ã³ããŠè²ãäœ¿çš (&U)
[Only &one popup for each contact]
ã³ã³ã¿ã¯ãæ¯ã«ãããã¢ããã¯1ã€ã®ã¿ (&o)
[Show &entry in the main menu]
ã¡ã€ã³ã¡ãã¥ãŒã«ãšã³ããªãŒã衚瀺 (&e)
[From protocol]
ãããã³ã«ãã
[Custom]
ã«ã¹ã¿ã
[Edit template]
ãã³ãã¬ãŒããç·šé
[Get more help on variables]
å€æ°ã«ã€ããŠãã£ãšãã«ããå
¥æ
[Define up to 5 colors which you can use with some variables]
ããã€ãã®å€æ°ã§äœ¿çšå¯èœãªè²ã 5 ã€ãŸã§æå®ãã
[Close]
éãã
[Update Preview]
ãã¬ãã¥ãŒãæŽæ°
[Save Template]
ãã³ãã¬ãŒããä¿å
[Revert to Default]
ããã©ã«ãã«æ»ã
[Reset all templates...]
å
šãŠã®ãã³ãã¬ãŒãããªã»ãã
[Default width for fixed (single row) tabs]
åºå® ( åäžè¡ ) ã¿ãçšããã©ã«ãå¹
[Tab text label padding vertical]
ã¿ãããã¹ãã©ãã«ã®åçŽéé
[Tab page padding:]
ã¿ãããŒãžã®éé:
[inner]
å
åŽ
[outer]
å€åŽ
[Bottom tabs vertical adjustment:]
äžçªäžã®ã¿ãã®åçŽèª¿æŽ:
[NOTE: some settings will not affect open containers.]
泚æ: ããã€ãã®èšå®ã¯éããã³ã³ããã§ã¯æ©èœããŸãã
[Tab layout tweaks]
ã¿ãã¬ã€ã¢ãŠãã®èª¿æŽ
[About TabSRMM]
TabSRMM ããŒãžã§ã³æ
å ±
[Selected skin]
éžææžã¹ãã³
[Reload active skin]
ã¢ã¯ãã£ãã¹ãã³ã®åèªèŸŒ
[Load fonts and colors provided by skin]
ã¹ãã³ã«èŠå®ããããã©ã³ããšè²ãèªã¿èŸŒã
[Load templates provided by skin (use with care, will overwrite your templates)]
ã¹ãã³ã«èŠå®ããããã³ãã¬ãŒããèªã¿èŸŒã ( 泚æããŠäœ¿çšããã³ãã¬ãŒããäžæžãããŸã)
[Skin root folder]
ã¹ãã³ã«ãŒããã©ã«ããŒ
[Before you can load or unload a skin, you must close all message windows.]
ã¹ãã³ãèªã¿èŸŒããããã¯èªã¿èŸŒã¿ã®è§£é€ãè¡ãã«ã¯ , å
šãŠã®ã¡ãã»ãŒãžãŠã£ã³ããŠãéããå¿
èŠããããŸã
[Close open message windows now]
éããŠããã¡ãã»ãŒãžãŠã£ã³ããŠãéãã
[Theme support]
ããŒããµããŒã
[You can export and import all your color and font settings here. This allows you to create a Theme file which can be shared between different profiles or with your buddies.]
ããã§å
šãŠã®è²ãšãã©ã³ãã®èšå®ãã€ã³ããŒãã§ããŸãããŸãç°ãªããããã¡ã€ã«éããã¬ã³ããšå
±æã§ããããŒããã¡ã€ã«ãäœæããããšãã§ããŸã
[Export to a file...]
ãã¡ã€ã«ã«ãšã¯ã¹ããŒã...
[Import from a file...]
ãã¡ã€ã«ããã€ã³ããŒã...
[Icons]
ã¢ã€ã³ã³
[Event type icons in the message log]
ã¡ãã»ãŒãžãã°ã®ã€ãã³ãã¿ã€ãã¢ã€ã³ã³
[Text symbols as event markers]
ããã¹ãã®èšå·ãã€ãã³ãããŒã«ãŒãšããŠäœ¿çš
[Use different icons to mark incoming and outgoing messages]
çä¿¡ãšçºä¿¡ã¡ãã»ãŒãžã®ããŒã¯ã«ç°ãªãã¢ã€ã³ã³ã䜿çš
[Date and time]
æ¥ä»ãšæé
[Show seconds in timestamp]
ã¿ã€ã ã¹ã¿ã³ãã«ç§ã衚瀺
[Use contacts local time]
ã³ã³ã¿ã¯ãã®çŸå°æéã䜿çš
[Indent message body]
ã¡ãã»ãŒãžæ¬æãã€ã³ãã³ã
[Display grid lines]
æ Œåç·ã衚瀺
[Message grouping]
ã¡ãã»ãŒãžãã°ã«ãŒãå
[Support BBCODE]
BBCODE ããµããŒã
[RTL is default text direction]
ããã©ã«ãã®ããã¹ãæ¹å㯠RTL
[Log status changes (in open message windows only)]
ã¹ããŒã¿ã¹å€æŽããã°ã«èšé²(éããŠããã¡ãã»ãŒãžãŠã£ã³ããŠã®ã¿)
[Revert to global options]
ã°ããŒãã«ãªãã·ã§ã³ã«æ»ã
[You can set private message log options for this contact here. Filled boxes are inherited from the global settings which can be found on Message Sessions->Message Log]
ããã§ãã®ã³ã³ã¿ã¯ãã«å¯Ÿãããã©ã€ããŒãã¡ãã»ãŒãžãã°ãªãã·ã§ã³ãèšå®ã§ããŸããå¡ãã€ã¶ãããã¯ã¹ã¯ , ã¡ãã»ãŒãžã»ãã·ã§ã³ -> ã¡ãã»ãŒãžãã°ã«ããã°ããŒãã«èšå®ãç¶æ¿ãããŸã
[Use normal templates (uncheck to use simple templates)]
æšæºãã³ãã¬ãŒããäœ¿çš ( ã·ã³ãã«ãã³ãã¬ãŒãã䜿çšããå Žåã¯ãã§ãã¯ããªã )
[Queued send jobs]
ãã¥ãŒã«ããéä¿¡ãžã§ã
[Queued jobs]
ãã¥ãŒã«ãããžã§ã
[Filter by contact:]
ã³ã³ã¿ã¯ãã«ãããã£ã«ã¿ãŒ:
[Display popups for failed jobs]
ãžã§ãã«å€±æããããããã¢ããã衚瀺
[Display popups for completed jobs]
ãžã§ãã®å®äºæã«ãããã¢ããã衚瀺
[Do not show this message again]
ãã®ã¡ãã»ãŒãžã 2 床ãšè¡šç€ºããªã
[Yes]
ã¯ã
[No]
ããã
[Message sending:]
ã¡ãã»ãŒãžéä¿¡:
[Window:]
ãŠã£ã³ããŠ:
[Esc closes sessions (minimizes window, if disabled)]
Esc ããŒã§ã»ãã·ã§ã³ãçµäº ( ç¡å¹ãªå Žåã¯ãŠã£ã³ããŠãæå°å )
[Always pop up and activate new windows]
åžžã«æ°èŠãŠã£ã³ããŠããããã¢ãããšã¢ã¯ãã£ãåãã
[Create new windows in minimized state]
æ°èŠãŠã€ã³ããŠãæå°åããç¶æ
ã§äœæ
[Send on Shift+Enter]
Shift + Enter ã§éä¿¡
[Send message on 'Enter']
Enter ã§ã¡ãã»ãŒãžãéä¿¡
[Send message on double 'Enter']
Enter 2 åã§ã¡ãã»ãŒãžãéä¿¡
[Minimize the message window on send]
éä¿¡çšã¡ãã»ãŒãžãŠã£ã³ããŠãæå°å
[Tabs:]
ã¿ã:
[Use tabbed interface]
ã¿ãã€ã³ã¿ãŒãã§ãŒã¹ã䜿çš
[Create new tabs without activating them]
ããããã¢ã¯ãã£ãåããªãã§æ°èŠã¿ããäœæ
[Pop up minimized window when a new tab is created]
æ°èŠã¿ããäœæãããææå°åãŠã£ã³ããŠããããã¢ãã
[Automatically switch tabs in minimized windows]
ãŠã£ã³ããŠæå°åã§èªåçã«ã¿ããåãæ¿ãã
[History:]
å±¥æŽ:
[Notifications:]
éç¥:
[Don't announce when dialog is open]
ãã€ã¢ãã°ãéããŠããæã¢ããŠã³ã¹ããªã
[Send message on Ctrl+Enter (always enabled)]
Ctrl + Enter ã§ã¡ãã»ãŒãžãéä¿¡ ( åžžã«æå¹ )
[&Copy]
ã³ã㌠(&C)
[&Quote]
åŒçš (&Q)
[Co&py All]
å
šãŠã³ã㌠(&p)
[Select &All]
å
šãŠéžæ(&A)
[Freeze Log]
ãã°ãåæ¢
[Open in &new window]
æ°èŠãŠã£ã³ããŠã§éã
[&Open in existing window]
æ¢åã®ãŠã£ã³ããŠãéã (&O)
[Editor]
ãšãã£ã¿ãŒ
[Paste formatted Text]
å®åæãããŒã¹ã
[Paste and Send immediately]
ããŒã¹ãããŠçŽæ¥éä¿¡
[Copy all]
å
šãŠã³ããŒ
[Show Message Length Indicator]
ã¡ãã»ãŒãžé·è¡šèšã衚瀺
[Leave Chat Room]
ãã£ããã«ãŒã ãé¢ãã
[Save Tab Position]
ã¿ãäœçœ®ãä¿å
[Clear saved Tab Position]
ä¿åãããã¿ãäœçœ®ãã¯ãªã¢
[Attach to Container...]
ã³ã³ããã«æ·»ä»...
[Container options...]
ã³ã³ãããªãã·ã§ã³...
[Close Container]
ã³ã³ãããéãã
[Show Contact Picture]
ã³ã³ã¿ã¯ãç»åã衚瀺
[Default]
ããã©ã«ã
[Hidden for this Contact]
ãã®ã³ã³ã¿ã¯ããé ã
[Visible for this Contact]
ãã®ã³ã³ã¿ã¯ããå¯èŠåãã
[Contact Picture Settings...]
ã³ã³ã¿ã¯ãç»åèšå®...
[Always keep the button bar at full width]
åžžã«ãã¿ã³ããŒãæ倧å¹
ã«ãã
[Save this Picture As...]
ãã®ç»åã«ååãä»ããŠä¿å...
[&Message Log Settings]
ã¡ãã»ãŒãžãã°èšå® (&M)
[&Global...]
ã°ããŒãã« (&G)...
[&For this Contact...]
ãã®ã³ã³ã¿ã¯ãã«ã€ã㊠(&F)...
[Send &Default]
ããã©ã«ãã§éä¿¡ (&D)
[Send to &multiple Users]
è€æ°ãŠãŒã¶ãŒã«éä¿¡ (&m)
[Send to &Container]
ã³ã³ããã«éã (&C)
[Send &Later]
åŸã§éä¿¡ (&L)
[Force &ANSI]
ANSI ã«åŒ·å¶ (&A)
[Send unsafe (ignore Timeouts)]
å®å
šã§ã¯ãªãéä¿¡ ( ã¿ã€ã ã¢ãŠããç¡èŠ )
[Splitter Position]
åå²äœçœ®
[Global]
ã°ããŒãã«
[Send Text Formatting]
éä¿¡çšããã¹ããã©ãŒããã
[BBCode]
BBCode
[Off]
ãªã
[This Contact]
ãã®ã³ã³ã¿ã¯ã
[Global Setting]
ã°ããŒãã«èšå®
[Force Off]
匷å¶ãªã
[Unread Menu]
æªèªã¡ãã¥ãŒ
[Recent Sessions]
æè¿ã®ã»ãã·ã§ã³
[Favorites]
ãæ°ã«å
¥ã
[Disable All Event Notifications]
å
šãŠã®ã€ãã³ãéç¥ãç¡å¹
[Don't create Windows automatically]
ãŠã£ã³ããŠãèªåçæããªã
[Hide all Message Containers]
å
šãŠã®ã¡ãã»ãŒãžã³ã³ãããé ã
[Restore all Message Containers]
å
šãŠã®ã¡ãã»ãŒãžã³ã³ããããªã¹ãã¢
[Don't play Sounds]
é³å£°ã鳎ãããªã
[Font]
ãã©ã³ã
[Default Color]
ããã©ã«ãè²
[Magenta]
ããŒã³ã¿
[Cyan]
ã·ã¢ã³
[Clear all Formatting]
å
šãŠã®æžåŒãã¯ãªã¢
[Dummy]
Dummy
[No Message Sessions opened]
ã¡ãã»ãŒãžã»ãã·ã§ã³ãéããŠããŸãã
[Add Contact to Favorites]
ã³ã³ã¿ã¯ãããæ°ã«å
¥ãã«è¿œå
[Remove Contact from Favorites]
ãæ°ã«å
¥ãããã³ã³ã¿ã¯ããåé€
[dummy]
dummy
[Set Position for this Session]
ãã®ã»ãã·ã§ã³ã®äœçœ®ãèšå®
[Set and Save for all Sessions]
å
šãŠã®ã»ãã·ã§ã³ãèšå®ããŠä¿å
[Set and Save for this Contact only]
ãã®ã³ã³ã¿ã¯ãã«ã®ã¿èšå®ããŠä¿å
[Revert to old Position]
åã®äœçœ®ã«æ»ã
[Queue manager]
ãã¥ãŒãããŒãžã£ãŒ
[Mark Selected for Removal]
åé€ãããã®ãéžæ
[Reset Selected]
éžæããªã»ãã
[Hold Selected]
éžæãä¿ç
[Resume Selected]
åéãéžææž
[Cancel all Multisend Jobs]
å
šãŠã®è€æ°éä¿¡ãžã§ãããã£ã³ã»ã«
[Copy Message to Clipboard]
ã¡ãã»ãŒãžãã¯ãªããããŒãã«ã³ããŒ
[&File]
ãã¡ã€ã« (&F)
[Save Message Log As...]
ååãä»ããŠã¡ãã»ãŒãžãã°ãä¿å...
[Close Message Session\tCtrl-W]
ã¡ãã»ãŒãžã»ãã·ã§ã³ãéãã\tCtrl-W
[Close Container\tAlt-F4]
ã³ã³ãããéãã\tAlt-F4
[&View]
衚瀺 (&V)
[Show Menu Bar]
ã¡ãã¥ãŒããŒã衚瀺
[Show Status Bar]
ã¹ããŒã¿ã¹ããŒã衚瀺
[Info Panel...]
æ
å ±ããã«...]
[Tool Bar]
ããŒã«ããŒ
[Show Tool Bar]
ããŒã«ããŒã衚瀺
[Place ToolBar at bottom]
ããŒã«ããŒãäžçªäžã«è¡šç€º
[Title Bar]
ã¿ã€ãã«ããŒ
[Tabs at the bottom]
ã¿ãã¯äžçªäž
[Window Flashing]
ãŠã£ã³ããŠã®ãã©ãã·ã¥
[Use default Value]
ããã©ã«ãå€ã䜿çš
[Show Multisend Contact List]
è€æ°éä¿¡ã³ã³ã¿ã¯ããªã¹ãã衚瀺
[Stay on Top]
åžžã«äžçªäž
[Message &Log]
ã¡ãã»ãŒãžãã° (&L)
[&Container]
ã³ã³ãã (&C)
[Event Popups]
ã€ãã³ããããã¢ãã
[Disable all Event Popups]
å
šãŠã®ã€ãã³ããããã¢ãããç¡å¹
[Show Popups if Window is minimized]
ãŠã£ã³ããŠæå°åã®æãããã¢ããã衚瀺
[Show Popups if Window is unfocused]
ãŠã£ã³ããŠãéžæãããŠããªãæãããã¢ããã衚瀺
[Show Popups if Window is focused]
ãŠã£ã³ããŠããã©ãŒã«ã¹ãããŠããæãããã¢ããã衚瀺
[Show Popups for all inactive sessions]
å
šãŠã®éã¢ã¯ãã£ãã»ãã·ã§ã³çšãããã¢ããã衚瀺
[Save current Window Position as Default]
çŸåšã®ãŠã£ã³ããŠäœçœ®ãããã©ã«ããšããŠä¿å
[Help]
ãã«ã
[About TabSRMM...]
TabSRMM ããŒãžã§ã³æ
å ±...
;file \plugins\TabSRMM\src\buttonsbar.cpp
[Message Log Options]
ã¡ãã»ãŒãžãã°ãªãã·ã§ã³
[View User's History]
ãŠãŒã¶ãŒã®å±¥æŽã衚瀺
[Edit user notes]
ãŠãŒã¶ãŒã¡ã¢ãç·šé
;file \plugins\TabSRMM\src\container.cpp
[Hide titlebar]
ã¿ã€ãã«ããŒãé衚瀺
[Message Session...]
ã¡ãã»ãŒãžã»ãã·ã§ã³...
[Default container]
ããã©ã«ãã³ã³ãã
[Attach to]
æ·»ä»
[Meta Contact]
ã¡ã¿ã³ã³ã¿ã¯ã
[(Forced)]
( åŒ·å¶ )
[Autoselect]
èªåéžæ
[Use Protocol]
ãããã³ã«ã䜿çš
[Set Default Protocol]
ããã©ã«ããããã³ã«ã®èšå®
;file \plugins\TabSRMM\src\containeroptions.cpp
[Window layout]
ãŠã£ã³ããŠã¬ã€ã¢ãŠã
[Tabs and switch bar]
ã¿ããšããŒã®åãæ¿ã
[Choose your options for the tabbed user interface. Not all options can be applied to open windows. You may need to close and re-open them.]
ã¿ããŠãŒã¶ãŒã€ã³ã¿ãŒãã§ãŒã¹çšã®ãªãã·ã§ã³ãéžãã§ãã ãããå
šãŠã®ãªãã·ã§ã³ãéããŠãããŠã£ã³ããŠã«é©çšå¯èœãšã¯éããŸãããéããŠããå床ãŠã£ã³ããŠãéãå¿
èŠããããŸã
[Select, when you want to see event notifications (popups) for this window. The settings apply to all tabs within this window.]
ãã®ãŠã£ã³ããŠã«å¯Ÿããã€ãã³ãéç¥ ( ãããã¢ãã ) ãèŠããå Žåã¯éžæããŠãã ããããã®ãŠã£ã³ããŠã«ããå
šãŠã®ã¿ãã«å¯ŸããŠèšå®ãé©çšãããŸã
[Window size and theme]
ãŠã€ã³ããŠãµã€ãºãšããŒã
[You can select a private theme (.tabsrmm file) for this container which will then override the default message log theme. You will have to close and re-open all message windows after changing this option.]
ããªãã¯ãã®ã³ã³ããã«ãã©ã€ããŒãããŒã ( .tabsrmm ãã¡ã€ã« ) ãéžæã㊠, ããã©ã«ãã¡ãã»ãŒãžãã°ããŒããäžæžãã§ããŸãããã®ãªãã·ã§ã³ãå€æŽåŸ , å
šãŠã®ã¡ãã»ãŒãžãŠã£ã³ããŠãéããŠå床éãå¿
èŠããããŸã
[This feature requires Windows 2000 or later and may be unavailable when using a container skin.]
ãã®æ©èœã«ã¯ Windows 2000 以éãå¿
èŠã§ãããŸã , ã³ã³ããã¹ãã³ã䜿çšããŠããæã¯å©çšã§ããŸãã
[Contact avatars]
ã³ã³ã¿ã¯ãã¢ãã¿ãŒ
[Sound notifications]
é³å£°éç¥
[Container options]
ã³ã³ãããªãã·ã§ã³
[Configure container options for\n%s]
以äžã®ã³ã³ãããªãã·ã§ã³ãèšå®\n%s
[Tabs at the top]
ã¿ããäžçªäž
[Switch bar on the left side]
ããŒãå·ŠåŽã«åãæ¿ã
[Switch bar on the right side]
ããŒãå³åŽã«åãæ¿ã
[Globally on]
ã°ããŒãã«ããªã³
[On, if present]
ååšããæ , ãªã³
[Globally OFF]
ã°ããŒãã«ããªã
[On, if present, always in bottom display]
åžžã«äžçªäžã«è¡šç€ºãååšããå Žå , ãªã³
[Don't show them]
ãããã衚瀺ããªã
;file \plugins\TabSRMM\src\controls.cpp
[&User]
ãŠãŒã¶ãŒ (&U)
[&Room]
ã«ãŒã (&R)
[Sounds are %s. Click to toggle status, hold SHIFT and click to set for all open containers]
é³å£°ã¯ %s ã§ããã¹ããŒã¿ã¹ã®åãæ¿ãã¯ã¯ãªã㯠, å
šãŠã®éããã³ã³ããã«èšå®ããã«ã¯ SHIFT ãæŒããªããã¯ãªãã¯
[disabled]
ç¡å¹
[Sending typing notifications is %s.]
éä¿¡äžã®å
¥åäžéç¥ã¯ %s ã§ã
[Session list.\nClick left for a list of open sessions.\nClick right to access favorites and quickly configure message window behavior]
ã»ãã·ã§ã³ãªã¹ã\nãªãŒãã³ã»ãã·ã§ã³ã®ãªã¹ãã¯å·Šã¯ãªãã¯\nãæ°ã«å
¥ããžã®ã¢ã¯ã»ã¹ãšã¡ãã»ãŒãžãŠã£ã³ããŠã®åäœã®ç°¡æèšå®ãããã«ã¯å³ã¯ãªãã¯
[There are %d pending send jobs. Message length: %d bytes, message length limit: %d bytes\n\n%d messages are queued for later delivery]
ä¿çäžã®éä¿¡ãžã§ã: %dãåãã¡ãã»ãŒãžé·: %d ãã€ããã¡ãã»ãŒãžé·å¶é: %d ãã€ã\n\nåŸã§é
ä¿¡ãã¥ãŒã«ããã¡ãã»ãŒãž: %d å
;file \plugins\TabSRMM\src\eventpopups.cpp
[Incoming file]
çä¿¡ãã¡ã€ã«
[Incoming file (invalid format]
çä¿¡ãã¡ã€ã« ( äžæ£ãªãã©ãŒããã )
[Unknown event]
äžæãªã€ãã³ã
[New messages: ]
æ°èŠã¡ãã»ãŒãž:\s
[Unknown module or contact]
äžæãªã¢ãžã¥ãŒã«ãããã¯ã³ã³ã¿ã¯ãã§ã
;file \plugins\TabSRMM\src\generic_msghandlers.cpp
[Rich Edit file]
ãªããç·šéãã¡ã€ã«
[Configuration issue|The unattended send feature is disabled. The \\b1 send later\\b0 and \\b1 send to multiple contacts\\b0 features depend on it.\n\nYou must enable it under \\b1Options->Message Sessions->Advanced tweaks\\b0. Changing this option requires a restart.]
èšå®ã®åé¡ | ç¡äººéä¿¡æ©èœã¯ç¡å¹ã«ãªã£ãŠããŸã \\b1 åŸã§éä¿¡ \\b0 ãš \\b1 è€æ°ã³ã³ã¿ã¯ãã«éä¿¡ \\b0 æ©èœã¯ãã®æ©èœã«äŸåããŠããŸã\n\nãã®ãã \\b1 ãªãã·ã§ã³ -> ã¡ãã»ãŒãžã»ãã·ã§ã³ -> é«åºŠãªèª¿æŽ ã§æå¹ã«èšå®ããŠãã ãã\\b0 ãã®ãªãã·ã§ã³ã®å€æŽã«ã¯åèµ·åãå¿
èŠã§ã
[You cannot edit user notes when there are unsent messages]
æªéä¿¡ã¡ãã»ãŒãžã«å¯ŸããŠãŠãŒã¶ãŒã¡ã¢ã®ç·šéã¯ã§ããŸãã
[%s is typing a message.]
%s ã¯ã¡ãã»ãŒãžãå
¥åäžã§ã
[Last received: %s at %s]
æçµåä¿¡: %s %s
[%s has entered text.]
%s ã¯ããã¹ããå
¥åããŸãã
[Autoscrolling is disabled, %d message(s) queued (press F12 to enable it)]
èªåã¹ã¯ããŒã«ã¯ç¡å¹ã§ãã%d ã¡ãã»ãŒãžããã¥ãŒã«ãããŸã ( æå¹ã«ããã«ã¯ F12 ãæŒããŠãã ãã )
[UID: %s (SHIFT click -> copy to clipboard)\nClick for User's Details\nRight click for MetaContact control\nClick dropdown to add or remove user from your favorites.]
UID: %s ( SHIFT click -> ã¯ãªããããŒãã«ã³ã㌠)\nãŠãŒã¶ãŒã®è©³çŽ°æ
å ±ã¯ã¯ãªãã¯\nã¡ã¿ã³ã³ã¿ã¯ãã³ã³ãããŒã«ã¯å³ã¯ãªãã¯\nãŠãŒã¶ãŒããæ°ã«å
¥ãã«è¿œå ãããã¯åé€ããã«ã¯ããããããŠã³ãã¯ãªãã¯
[No UID]
UID ãªã
[UID: %s (SHIFT click -> copy to clipboard)\nClick for User's Details\nClick dropdown to change this contact's favorite status.]
UID: %s ( SHIFT click -> ã¯ãªããããŒãã«ã³ã㌠)\nãŠãŒã¶ãŒã®è©³çŽ°æ
å ±ã¯ã¯ãªãã¯\nãã®ã³ã³ã¿ã¯ãã®ãæ°ã«å
¥ãã¹ããŒã¿ã¹ãå€æŽããã«ã¯ããããããŠã³ãã¯ãªãã¯
;file \plugins\TabSRMM\src\globals.cpp
[Instant messages]
ã€ã³ã¹ã¿ã³ãã¡ãã»ãŒãž
[Incoming (Focused Window)]
çä¿¡ ( ãã©ãŒã«ã¹äžã®ãŠã£ã³ã㊠)
[Incoming (Unfocused Window)]
çä¿¡ ( éãã©ãŒã«ã¹ãŠã£ã³ã㊠)
[Incoming (New Session)]
çä¿¡ ( æ°èŠã»ãã·ã§ã³ )
[Outgoing]
çºä¿¡
[Message send error]
ã¡ãã»ãŒãžéä¿¡ãšã©ãŒ
[No status message]
ã¹ããŒã¿ã¹ã¡ãã»ãŒãžãªã
[Other]
ãã®ä»
[&Messaging settings...]
ã¡ãã»ãŒãžã³ã°ã®èšå® (&M)...
[&Send later job list...]
ãžã§ããªã¹ããåŸã§éä¿¡ (&S)...
[Message from %s]
%s ããã®ã¡ãã»ãŒãž
[signed off.]
ãµã€ã³ãªãããŸãã
[signed on and is now %s.]
ãµã€ã³ãªã³ããŸãããçŸåš %s ã§ã
[changed status from %s to %s.]
%s ãã %s ã«ã¹ããŒã¿ã¹ãå€æŽããŸãã
;file \plugins\TabSRMM\src\hotkeyhandler.cpp
;file \plugins\TabSRMM\src\infopanel.cpp
[%s Idle: %dh,%02dm]
%s ã¢ã€ãã«: %d æé ,%02d å
[Topic is: %s]
ãããã¯: %s
[no topic set.]
ãããã¯ã®èšå®ãªã
[Open User Details...]
ãŠãŒã¶ãŒã®è©³çŽ°æ
å ±ãéã...
[Open History...]
å±¥æŽãéã...
[Messaging Settings...]
ã¡ãã»ãŒãžã³ã°ã®èšå®...
[Room Settings...]
ã«ãŒã èšå®...
[\\tab \\ul\\b Status message:\\ul0\\b0 \\par %s]
\\tab \\ul\\b ã¹ããŒã¿ã¹ã¡ãã»ãŒãž:\\ul0\\b0 \\par %s
[\\par\\par\\tab \\ul\\b Extended status information:\\ul0\\b0 \\par ]
\\par\\par\\tab \\ul\\b æ¡åŒµã¹ããŒã¿ã¹æ
å ±:\\ul0\\b0 \\par
[\\par\\par\\tab \\ul\\b Listening to:\\ul0\\b0 \\par %s]
\\par\\par\\tab \\ul\\b ãªãã¹ã³äž:\\ul0\\b0 \\par %s
[\\par\\par\\ul\\b Client:\\ul0\\b0 %s]
\\par\\par\\ul\\b ã¯ã©ã€ã¢ã³ã:\\ul0\\b0 %s
[TabSRMM Information]
TabSRMM æ
å ±
[Set panel visibility for this %s]
ãã® %s çšããã«ã®å¯èŠç¶æ
ãèšå®
[chat room]
ãã£ããã«ãŒã
[contact]
ã³ã³ã¿ã¯ã
[Do not synchronize the panel height with IM windows]
IM ãŠã£ã³ããŠãšããã«ã®é«ããåæããªã
[Do not synchronize the panel height with group chat windows]
ã°ã«ãŒããã£ãããŠã£ã³ããŠãšããã«ã®é«ããåæããªã
[Inherit from container setting]
ã³ã³ããèšå®ããã®ç¶æ¿
[Always off]
åžžã«ãªã
[Always on]
åžžã«ãªã³
[Use default size]
ããã©ã«ããµã€ãºã䜿çš
[Use private size]
ãã©ã€ããŒããµã€ãºã䜿çš
[Use Global Setting]
ã°ããŒãã«èšå®ã䜿çš
[Show always (if present)]
åžžã«è¡šç€º ( ååšãããªã )
[Never show it at all]
äºåºŠãšè¡šç€ºããªã
;file \plugins\TabSRMM\src\mim.cpp
[TabSRMM]
TabSRMM
;file \plugins\TabSRMM\src\modplus.cpp
;file \plugins\TabSRMM\src\msgdialog.cpp
[Add this contact permanently to your contact list]
ãã®ã³ã³ã¿ã¯ããå®å
šã«ããªãã®ã³ã³ã¿ã¯ããªã¹ãã«è¿œå
[Do not add this contact permanently]
ãã®ã³ã³ã¿ã¯ããå®å
šã«è¿œå ããªã
[Expand or collapse the side bar]
ãµã€ãããŒãå±éãããããã¯æãããã
[Character Encoding]
æåã®ãšã³ã³ãŒã
[Contact not on list. You may add it...]
ã³ã³ã¿ã¯ãã¯ãªã¹ãã«ãããŸãããè¿œå ã§ããŸã...
[A message failed to send successfully.]
ã¡ãã»ãŒãžã®æ£åžžãªéä¿¡ã«å€±æããŸãã
[WARNING: The message you are trying to paste exceeds the message size limit for the active protocol. It will be sent in chunks of max %d characters]
èŠå: ããªããããŒã¹ãããããšããŠããã¡ãã»ãŒãžã¯ã¢ã¯ãã£ããããã³ã«ã®ã¡ãã»ãŒãžãµã€ãºã®äžéãè¶
ããŸãããæ倧 %d æåã®ãã£ã³ã¯ãéä¿¡ãããŸã
[The message you are trying to paste exceeds the message size limit for the active protocol. Only the first %d characters will be sent.]
ããªããããŒã¹ãããããšããŠããã¡ãã»ãŒãžã¯ã¢ã¯ãã£ããããã³ã«ã®ã¡ãã»ãŒãžãµã€ãºã®å¶éãè¶
ããŠããŸããåãã® %d æåã®ã¿ãéä¿¡ãããŸã
[Save and close session]
ã»ãã·ã§ã³ãä¿åããŠçµäº
[Autoscrolling is disabled (press F12 to enable it)]
èªåã¹ã¯ããŒã«ãç¡å¹ ( F12 ãæŒããšæå¹ )
[Click for contact menu\nClick dropdown for window settings]
ã¯ãªãã¯ã§ã³ã³ã¿ã¯ãã¡ãã¥ãŒ\nããããããŠã³ãã¯ãªãã¯ã§ãŠã€ã³ããŠèšå®
[Send later]
åŸã§éä¿¡
[Selection copied to clipboard]
éžæããŠã¯ãªããããŒãã«ã³ããŒ
[Delivery failure: %s]
é
ä¿¡ã«å€±æããŸãã: %s
[The message send timed out]
ã¡ãã»ãŒãžéä¿¡ã¯ã¿ã€ã ã¢ãŠãããŸãã
[You are editing the user notes. Click the button again or use the hotkey (default: Alt-N) to save the notes and return to normal messaging mode]
ããªãã¯ãŠãŒã¶ãŒã¡ã¢ã®ç·šéäžã§ããããäžåºŠãã¿ã³ãã¯ãªãã¯ããããããã㌠( ããã©ã«ã: Alt-N ) ã䜿çšãããš , ã¡ã¢ãä¿åããŠéåžžã¡ãã»ãŒãžã³ã°ã¢ãŒãã«æ»ããŸã
[Unforce failed]
匷å¶è§£é€ã«å€±æããŸãã
[The selected protocol cannot be forced at this time]
éžæããããããã³ã«ã¯çŸæç¹ã§ã¯åŒ·å¶ã§ããŸãã
[Warning: you have selected a subprotocol for sending the following messages which is currently offline]
èŠå: ããªãã¯ã¡ãã»ãŒãžã®éä¿¡çšã«çŸåšãªãã©ã€ã³ã®ãµããããã³ã«ãéžæããŸãã
[Contact is offline and this protocol does not support sending files to offline users.]
ã³ã³ã¿ã¯ãã¯ãªãã©ã€ã³ã§ãããã®ãããã³ã«ã¯ãªãã©ã€ã³ãŠãŒã¶ãŒãžã®ãã¡ã€ã«éä¿¡ã¯ãµããŒããããŠããŸãã
;file \plugins\TabSRMM\src\msgdlgutils.cpp
[Error creating destination directory]
å®å
ãã£ã¬ã¯ããªã®äœæãšã©ãŒ
[Save contact picture]
ã³ã³ã¿ã¯ãç»åãä¿å
[Image files]
ç»åãã¡ã€ã«
[The file exists. Do you want to overwrite it?]
ãã¡ã€ã«ã¯ååšããŠããŸããäžæžãããŸãã ?
[Set Your Avatar...]
ããªãã®ã¢ãã¿ãŒãèšå®...
[The 'paste and send' feature is disabled. You can enable it on the 'General' options page in the 'Sending Messages' section]
'ããŒã¹ãããŠéä¿¡ ' æ©èœã¯ç¡å¹ã§ãã' å
šè¬ ' ãªãã·ã§ã³ã®ããŒãžã«ãã ' ã¡ãã»ãŒãžã®éä¿¡ ' ã»ã¯ã·ã§ã³ã§æå¹ã«ã§ããŸã
[Either the nudge plugin is not installed or the contact's protocol does not support sending a nudge event.]
nudge ãã©ã°ã€ã³ãã€ã³ã¹ããŒã«ãããŠããªãã , ãããã¯åŸ®èª¿æŽã€ãã³ãããµããŒãããŠããªãã³ã³ã¿ã¯ãã®ãããã³ã«
['(Unknown Contact)']
'( äžæãªã³ã³ã¿ã¯ã )'
[JPEG-compressed images]
JPEG å§çž®ç»å
;file \plugins\TabSRMM\src\msglog.cpp
;file \plugins\TabSRMM\src\msgoptions.cpp
[<no skin>]
< ã¹ãã³ãªã >
[Do you want to also read message templates from the theme?\nCaution: This will overwrite the stored template set which may affect the look of your message window significantly.\nSelect cancel to not load anything at all.]
ããŒãããã¡ãã»ãŒãžãã³ãã¬ãŒããèªã¿èŸŒã¿ããŸãã ?\nèŠå: ãã®æäœã¯ä¿åãããŠãããã³ãã¬ãŒãã»ãããäžæžãã , ã¡ãã»ãŒãžãŠã£ã³ããŠã®å€èŠ³ã«èãã圱é¿ãäžããŸã\nèªã¿èŸŒã¿ããªãå Žåã¯ãã£ã³ã»ã«ãéžæããŠãã ãã
[Load theme]
ããŒãã®èªã¿èŸŒã¿
[IEView plugin]
IEView ãã©ã°ã€ã³
[History++ plugin]
History++ ãã©ã°ã€ã³
[You have chosen to use an external plugin for displaying the message history in the chat window. Most of the settings on this page are for the standard message log viewer only and will have no effect. To change the appearance of the message log, you must configure either IEView or History++.]
ããªãã¯ãã£ãããŠã£ã³ããŠã§ã®ã¡ãã»ãŒãžå±¥æŽã®è¡šç€ºçšã«å€éšãã©ã°ã€ã³ã®äœ¿çšãéžæããŸããããã®ããŒãžã®èšå®ã®ã»ãšãã©ã¯æšæºã¡ãã»ãŒãžãã°ãã¥ãŒã¢ãŒåãã®ã¿ã§å¹æããããŸãããã¡ãã»ãŒãžãã°ã®å€èŠ³ãå€æŽããã«ã¯ IEView ããã㯠History++ ã®ããããã§èšå®ããå¿
èŠããããŸã
[** New contacts **]
** æ°ããã³ã³ã¿ã¯ã **
[** Unknown contacts **]
** äžæãªã³ã³ã¿ã¯ã **
[Show balloon popup (unsupported system)]
ãã«ãŒã³ãããã¢ããã衚瀺 ( æªãµããŒãã·ã¹ãã )
[Always, but no popup when window is focused]
ãŠã£ã³ããŠããã©ãŒã«ã¹ãããŠããæ , åžžã«ãããã¢ããããªã
[Only when no message window is open]
ã¡ãã»ãŒãžãŠã£ã³ããŠãéããŠããªãå Žåã®ã¿
[Normal - close tab, if last tab is closed also close the window]
éåžž - ã¿ããéãã , æçµã¿ããéããå Žåã¯ãŠã£ã³ããŠãéãã
[Minimize the window to the task bar]
ãŠã£ã³ããŠãã¿ã¹ã¯ããŒã§æå°å
[Close or hide window, depends on the close button setting above]
ãŠã£ã³ããŠãéãããããã¯é衚瀺㯠, äžèšã®éãããã¿ã³ã®èšå®ã«äŸåããŸã
[Message Sessions]
ã¡ãã»ãŒãžã»ãã·ã§ã³
[General]
å
šè¬
[Tabs and layout]
ã¿ããšã¬ã€ã¢ãŠã
[Containers]
ã³ã³ãã
[Tool bar]
ããŒã«ããŒ
[Typing Notify]
å
¥åäžéç¥
[Window layout tweaks]
ãŠã£ã³ããŠã¬ã€ã¢ãŠã調æŽ
[Log formatting]
ãã°æžåŒèšå®
[Events and filters]
ã€ãã³ããšãã£ã«ã¿ãŒ
[Highlighting]
匷調衚瀺
[Choose status modes]
ã¹ããŒã¿ã¹ã¢ãŒããéžæ
;file \plugins\TabSRMM\src\msgs.cpp
[Image tag]
ã€ã¡ãŒãžã¿ã°
[Quote text]
åŒçšããã¹ã
[Save and close]
ä¿åããŠéãã
[Smiley button]
é¡æåãã¿ã³
[Format bold]
倪å圢åŒ
[Format italic]
æäœåœ¢åŒ
[Format underline]
äžç·åœ¢åŒ
[Font face]
ãã©ã³ã ãã§ã€ã¹
[Font color]
ãã©ã³ãè²
[Format strike-through]
åãæ¶ãç·åœ¢åŒ
[Background color]
èæ¯è²
[Room settings]
ã«ãŒã èšå®
[Event filter]
ã€ãã³ããã£ã«ã¿ãŒ
[Message delivery error]
ã¡ãã»ãŒãžé
ä¿¡ãšã©ãŒ
[Incoming message]
çä¿¡ã¡ãã»ãŒãž
[Outgoing message]
çºä¿¡ã¡ãã»ãŒãž
[Status change]
ã¹ããŒã¿ã¹å€æŽ
[Static container icon]
éçã³ã³ããã¢ã€ã³ã³
[Sounds (status bar)]
é³å£° ( ã¹ããŒã¿ã¹ã㌠)
[Pulldown Arrow]
äžç¢å°
[Left Arrow]
å·Šç¢å°
[Right Arrow]
å³ç¢å°
[Up Arrow]
äžç¢å°
[Session List]
ã»ãã·ã§ã³ãªã¹ã
[Frame 1]
ãã¬ãŒã 1
[Frame 2]
ãã¬ãŒã 2
[Frame 3]
ãã¬ãŒã 3
[Frame 4]
ãã¬ãŒã 4
[Message Log]
ã¡ãã»ãŒãžãã°
;file \plugins\TabSRMM\src\msgs.h
;file \plugins\TabSRMM\src\selectcontainer.cpp
[Select container for %s]
%s çšã³ã³ãããéžæ
[You cannot delete the default container]
ããã©ã«ãã³ã³ããã¯åé€ã§ããŸãã
[Error]
ãšã©ãŒ
[You cannot rename the default container]
ããã©ã«ãã³ã³ããã®ååå€æŽã¯ã§ããŸãã
[This name is already in use]
ãã®ååã¯æ¢ã«äœ¿çšäžã§ã
;file \plugins\TabSRMM\src\sendlater.cpp
[A send later job completed successfully.\nThe original message: %s]
åŸã§éä¿¡ãžã§ãã¯æ£åžžã«å®äºããŸãã\nãªãªãžãã«ã¡ãã»ãŒãž: %s
[A send later job failed to complete.\nThe original message: %s]
åŸã§éä¿¡ãžã§ãã¯å®äºã«å€±æããŸãã\nãªãªãžãã«ã¡ãã»ãŒãž: %s
[<All contacts>]
< å
šãŠã®ã³ã³ã¿ã¯ã >
[Removed]
åé€æž
[Sent OK]
éä¿¡ OK
[Deferred]
ä¿ç
[Suspended]
äžæ
[Pending]
ä¿çäž
[Contact]
ã³ã³ã¿ã¯ã
[Original timestamp]
ãªãªãžãã«ã¿ã€ã ã¹ã¿ã³ã
[Message text]
ã¡ãã»ãŒãžããã¹ã
[Status]
ã¹ããŒã¿ã¹
[Last send info]
æçµéä¿¡æ
å ±
[You are about to modify the state of one or more items in the\nunattended send queue. The requested action(s) will be executed at the next scheduled queue processing.\n\nThis action cannot be made undone.]
ããªãã¯ç¡äººéä¿¡ãã¥ãŒã«ãã 1 ã€ãããã¯è€æ°é
ç®ã®ç¶æ
ãå€æŽããããšããŠããŸã\nãªã¯ãšã¹ããããæäœã¯æ¬¡ã«ã¹ã±ãžã¥ãŒã«ããããã¥ãŒåŠçæã«å®è¡ãããŸã\n\nãã®æäœã¯å
ã«æ»ããŸãã
;file \plugins\TabSRMM\src\sendqueue.cpp
[The message cannot be sent delayed or to multiple contacts, because it exceeds the maximum allowed message length of %d bytes]
ã¡ãã»ãŒãžã %d ãã€ãã®æ倧蚱容ã¡ãã»ãŒãžé·ãè¶
éããŠãããã , é
延ãã㊠, ãããã¯è€æ°ã®ã³ã³ã¿ã¯ãã«å¯ŸããŠéä¿¡ã§ããŸãã
[A message delivery has failed.\nClick to open the message window.]
ã¡ãã»ãŒãžé
ä¿¡ã«å€±æããŸãã\nã¯ãªãã¯ããŠã¡ãã»ãŒãžãŠã£ã³ããŠãéã
[A message delivery has failed after the contacts chat window was closed. You may want to resend the last message]
ã³ã³ã¿ã¯ããã£ãããŠã£ã³ããŠãéããåŸã®ã¡ãã»ãŒãžé
ä¿¡ã«å€±æããŸãããæçµã¡ãã»ãŒãžã®åéä¿¡ããã
[There are unsent messages waiting for confirmation.\nIf you close the window now, Miranda will try to send them but may be unable to inform you about possible delivery errors.\nDo you really want to close the window(s)?]
確èªåŸ
ã¡ã®æªéä¿¡ã¡ãã»ãŒãžããããŸãã\nä»ãŠã£ã³ããŠãéãããš , Miranda ã¯ãããã®éä¿¡ãè©Šã¿ãŸãã , çºçãããé
ä¿¡ãšã©ãŒã«ã€ããŠã®éç¥ãã§ããªãå¯èœæ§ããããŸããæ¬åœã«ãŠã£ã³ããŠãéããŸãã ?
[Message window warning]
ã¡ãã»ãŒãžãŠã£ã³ããŠã®èŠå
[Message successfully queued for later delivery.\nIt will be sent as soon as possible and a popup will inform you about the result.]
ã¡ãã»ãŒãžã¯æ£åžžã«åŸã§é
ä¿¡ãã¥ãŒã«æ ŒçŽãããŸãã\nãªãã¹ãæ©ãéä¿¡ãã , çµæããããã¢ããã§ç¥ããããŸã
[The send later feature is not available on this protocol.]
åŸã§éä¿¡æ©èœã¯ãã®ãããã³ã«ã§ã¯å©çšã§ããŸãã
[\n(Sent delayed. Original timestamp %s)]
\n( éä¿¡é
延 ãªãªãžãã«ã¿ã€ã ã¹ã¿ã³ã %s )
;file \plugins\TabSRMM\src\sidebar.cpp
;file \plugins\TabSRMM\src\srmm.cpp
[TabSRMM Message (%s)]
TabSRMM ã¡ãã»ãŒãž ( %s )
;file \plugins\TabSRMM\src\taskbar.cpp
[Previews not availble when using History++ plugin for message log display.]
ã¡ãã»ãŒãžãã°ã®è¡šç€ºã« History++ ãã©ã°ã€ã³ã䜿çšããŠããæã¯ãã¬ãã¥ãŒãå©çšã§ããŸãã
[%d Unread]
%d æªèª
[Chat room %s]
ãã£ããã«ãŒã %s
[%d User(s)]
%d ãŠãŒã¶ãŒ
[%s on %s%s]
%s ( %s%s )
;file \plugins\TabSRMM\src\templates.cpp
[Template Set Editor]
ãã³ãã¬ãŒãèšå®ãšãã£ã¿ãŒ
[This will reset the template set to the default built-in templates. Are you sure you want to do this?]
ãã®æäœã¯ãã³ãã¬ãŒããããã©ã«ãã§å
èµããŠãããã³ãã¬ãŒãã«ãªã»ããããŸããæ¬åœã«å®è¡ããŸããïŒ
[Template set was successfully reset, please close and reopen all message windows. This template editor window will now close.]
ãã³ãã¬ãŒãèšå®ã¯ãªã»ããã«æåããŸããããã¹ãŠã®ã¡ãã»ãŒãžãŠã£ã³ããŠãéããŠå床éããŠãã ããããã®ãã³ãã¬ãŒããšãã£ã¿ãŒã®ãŠã£ã³ããŠã¯äžæŠéããŸã
;file \plugins\TabSRMM\src\themeio.cpp
[TabSRMM themes]
TabSRMM ããŒã
;file \plugins\TabSRMM\src\themes.cpp
[All message containers need to close before the skin can be changed\nProceed?]
ã¹ãã³ãå€æŽå¯èœã«ããåã« , å
šãŠã®ã¡ãã»ãŒãžã³ã³ãããéããå¿
èŠããããŸã\nç¶è¡ããŸãã ?
[Change skin]
ã¹ãã³ã®å€æŽ
;file \plugins\TabSRMM\src\translator.cpp
[Message window tweaks]
ã¡ãã»ãŒãžãŠã£ã³ããŠã®èª¿æŽ
[Error feedback]
ãšã©ãŒãã£ãŒãããã¯
[Enable typing sounds]
å
¥åé³ãæå¹
[Disable animated GIF avatars (will not affect already open message windows)]
ã¢ãã¡ãŒã·ã§ã³ GIF ã¢ãã¿ãŒãç¡å¹ ( æ¢ã«éããŠããã¡ãã»ãŒãžãŠã£ã³ããŠã«ã¯åœ±é¿ããªã )
[Close current tab on send]
éä¿¡æã«ã«ã¬ã³ãã¿ããéãã
[Disable error popups on sending failures]
é信倱æã®ãšã©ãŒãããã¢ãããç¡å¹
[Automatic keyboard layout: Do not load the system default for new contacts]
èªåããŒããŒãã¬ã€ã¢ãŠã: æ°èŠã³ã³ã¿ã¯ãçšã«ã·ã¹ãã ã®æ¢å®å€ãèªã¿èŸŒãŸãªã
[Enable unattended send (experimental feature, required for multisend and send later) (*)]
ç¡äººéä¿¡ãæå¹ ( å®éšçæ©èœ , è€æ°éä¿¡ãšåŸã§éä¿¡ãå¿
èŠã§ã ) (*)
[Show a preview of the event]
ã€ãã³ãã®ãã¬ãã¥ãŒã衚瀺
[Don't announce event when message dialog is open]
ã¡ãã»ãŒãžãã€ã¢ãã°ãéãããšãã®ã€ãã³ããéç¥ããªã
[Don't announce events from RSS protocols]
RSS ãããã³ã«ããã®ã€ãã³ããéç¥ããªã
[Enable the system tray icon]
ã·ã¹ãã ãã¬ã€ã¢ã€ã³ã³ãæå¹
[Merge new events for the same contact into existing popup]
åãã³ã³ã¿ã¯ãã«å¯Ÿããæ°èŠã€ãã³ãã¯æ¢åã®ãããã¢ããã«ããŒãžãã
[Show headers]
ããããŒã衚瀺
[Open event]
ã€ãã³ããéã
[Dismiss event]
ã€ãã³ãã®æ¶å»
[Disable event notifications for instant messages]
ã€ã³ã¹ã¿ã³ãã¡ãã»ãŒãžçšã€ãã³ãéç¥ãç¡å¹
[Disable event notifications for group chats]
ã°ã«ãŒããã£ããã«å¯Ÿããã€ãã³ãéç¥ãç¡å¹
[Disable notifications for non-message events]
ã¡ãã»ãŒãžã®ãªãã€ãã³ãã«å¯Ÿããéç¥ãç¡å¹
[Remove popups for a contact when the message window is focused]
ã¡ãã»ãŒãžãŠã£ã³ããŠããã©ãŒã«ã¹ãããŠããæã³ã³ã¿ã¯ããžã®ãããã¢ãããåé€
[Remove popups for a contact when I start typing a reply]
è¿ä¿¡ãå
¥åãå§ãããã³ã³ã¿ã¯ãçšãããã¢ãããåé€
[Remove popups for a contact when I send a reply]
è¿ä¿¡ãéä¿¡ãããã³ã³ã¿ã¯ãçšãããã¢ãããåé€
[System tray icon]
ã·ã¹ãã ãã¬ã€ã¢ã€ã³ã³
[Left click actions (popups only)]
å·Šã¯ãªãã¯æäœ ( ãããã¢ããã®ã¿ )
[Right click actions (popups only)]
å³ã¯ãªãã¯ã®åäœ ( ãããã¢ããã®ã¿ )
[Timeout actions (popups only)]
ã¿ã€ã ã¢ãŠãã¢ã¯ã·ã§ã³ ( ãããã¢ããã®ã¿ )
[Combine notifications for the same contact]
åãã³ã³ã¿ã¯ãã«å¯Ÿããéç¥ããŸãšãã
[Remove popups under following conditions]
以äžã®æ¡ä»¶ã®æãããã¢ãããåé€
[Message window behavior]
ã¡ãã»ãŒãžãŠã£ã³ããŠã®åäœ
[Sending messages]
ã¡ãã»ãŒãžã®éä¿¡äž
[Send on SHIFT - Enter]
SHIFT - Enter ã§éä¿¡
[Close the message window on send]
éä¿¡çšã¡ãã»ãŒãžãŠã£ã³ããŠãéãã
[Always flash contact list and tray icon for new messages]
æ°èŠã¡ãã»ãŒãžçšãã¬ã€ã¢ã€ã³ã³ãšã³ã³ã¿ã¯ããªã¹ããåžžã«ãã©ãã·ã¥
[Delete temporary contacts on close]
çµäºæã«äžæçãªã³ã³ã¿ã¯ããåé€
[Allow BBCode formatting in outgoing messages]
çºä¿¡ã¡ãã»ãŒãžã« BBCode ãã©ãŒããããèš±å¯
[Automatically split long messages (experimental, use with care)]
èªåçã«é·ãã¡ãã»ãŒãžãåå² ( å®éšç , 泚æããŠäœ¿çš )
[Automatically copy selected text]
éžææžã¿ã®ããã¹ããèªåçã«ã³ããŒ
[Message log appearance]
ã¡ãã»ãŒãžãã°ã®å€èŠ³
[Support for external plugins]
å€éšãã©ã°ã€ã³ããµããŒã
[Timestamp settings (note: timstamps also depend on your templates)]
ã¿ã€ã ã¹ã¿ã³ãèšå® ( 泚æ: ã¿ã€ã ã¹ã¿ã³ããããªãã®ãã³ãã¬ãŒãã«äŸå )
[Message log icons]
ã¡ãã»ãŒãžãã°ã¢ã€ã³ã³
[Show dates in timestamps]
ã¿ã€ã ã¹ã¿ã³ãã«æ¥ä»ã衚瀺
[Use contacts local time (if timezone info available)]
ã³ã³ã¿ã¯ãã®çŸå°æéãäœ¿çš ( ã¿ã€ã ãŸãŒã³æ
å ±ãå©çšå¯èœãªæ )
[Draw grid lines]
ã°ãªããç·ãæç»
[Use Incoming/Outgoing Icons]
çä¿¡ / çºä¿¡ ã¢ã€ã³ã³ã䜿çš
[Use Message Grouping]
ã¡ãã»ãŒãžã°ã«ãŒãã䜿çš
[Simple text formatting (*bold* etc.)]
ã·ã³ãã«ããã¹ãæžåŒèšå® ( *bold* ç )
[Support BBCode formatting]
BBCode æžåŒèšå®ããµããŒã
[Place a separator in the log after a window lost its foreground status]
ãŠã£ã³ããŠãåé¢è¡šç€ºç¶æ
ã§ã¯ãªããªã£ãã , ãã°ã«åºåãç·ã衚瀺
[Only place a separator when an incoming event is announced with a popup]
çä¿¡ã€ãã³ãããããã¢ããã§ã¢ããŠã³ã¹ãããæåºåãç·ã®ã¿è¡šç€º
[Show events at the new line (IEView Compatibility Mode)]
æ°èŠè¡ã§ã€ãã³ãã衚瀺 ( IEView äºæã¢ãŒã )
[Underline timestamp/nickname (IEView Compatibility Mode)]
ã¿ã€ã ã¹ã¿ã³ã / ããã¯ããŒã ã«äžç· ( IEView äºæã¢ãŒã )
[Show timestamp after nickname (IEView Compatibility Mode)]
ããã¯ããŒã ã®åŸã«ã¿ã€ã ã¹ã¿ã³ãã衚瀺 ( IEView äºæã¢ãŒã )
[Use normal templates (uncheck to use simple templates if your template set supports them)]
éåžžãã³ãã¬ãŒããäœ¿çš ( æªãã§ãã¯ã®å Žå , ããªãã®ãã³ãã¬ãŒãã»ããããµããŒãããŠããã°ã·ã³ãã«ãã³ãã¬ãŒããäœ¿çš )
[How to create tabs and windows for incoming messages]
çä¿¡ã¡ãã»ãŒãžçšã¿ããšãŠã£ã³ããŠã®äœãæ¹
[Show status text on tabs]
ã¿ãã«ã¹ããŒã¿ã¹ããã¹ãã衚瀺
[Prefer xStatus icons when available]
å©çšå¯èœãªæ㯠xStatus ã¢ã€ã³ã³ãåªå
[Detailed tooltip on tabs (requires Tipper plugin)]
ã¿ãäžã®ããŒã«ãããã®è©³çŽ° ( Tipper ãã©ã°ã€ã³ãå¿
èŠ)
[ALWAYS activate new message sessions (has PRIORITY over the options below)]
ãåžžã«ãæ°èŠã¡ãã»ãŒãžã»ãã·ã§ã³ãã¢ã¯ãã£ãåãã ( åªå
床ã¯äžã®ãªãã·ã§ã³ãããé«ã )
[Automatically create new message sessions without activating them]
ã¢ã¯ãã£ãåããªã㧠, èªåçã«æ°èŠã¡ãã»ãŒãžã»ãã·ã§ã³ãäœæ
[New windows are minimized (the option above MUST be active)]
æ°èŠãŠã£ã³ããŠã¯æå°åãã( äžã®ãªãã·ã§ã³ã®ã¢ã¯ãã£ãå¿
é )
[Activate a minimized window when a new tab is created inside it]
å
éšã«æ°èŠã¿ããäœæãããã , æå°åããããŠã£ã³ããŠãã¢ã¯ãã£ãå
[Automatically switch existing tabs in minimized windows on incoming messages (ignored when using Aero Peek task bar features)]
çä¿¡ã¡ãã»ãŒãžã§æå°åãŠã£ã³ããŠå
ã«ããã¿ããèªåçã«åãæ¿ã ( Aero ãã¬ãã¥ãŒã¿ã¹ã¯ããŒæ©èœãç¡èŠ )
[Remember and set keyboard layout per contact]
ã³ã³ã¿ã¯ãæ¯ã®ããŒããŒãã¬ã€ã¢ãŠãã®ä¿åãšèšå®
[Close button only hides message windows]
éãããã¿ã³ã§ã¡ãã»ãŒãžãŠã£ã³ããŠã®ã¿ãé衚瀺
[Allow TAB key in typing area (this will disable focus selection by TAB key)]
å
¥åãšãªã¢ã§ã¿ãããŒãèš±å¯ ( ã¿ãããŒã«ãããã©ãŒã«ã¹éžæãç¡å¹ )
[Add offline contacts to multisend list]
è€æ°éä¿¡ãªã¹ãã«ãªãã©ã€ã³ã³ã³ã¿ã¯ããè¿œå
;file \plugins\TabSRMM\src\trayicon.cpp
;file \plugins\TabSRMM\src\typingnotify.cpp
[Disable &typing notification]
å
¥åäžéç¥ãç¡å¹ (&t)
[Enable &typing notification]
å
¥åäžéç¥ãæå¹ (&t)
[...is typing a message.]
...ã¯ã¡ãã»ãŒãžãå
¥åäž
[...has stopped typing.]
...ã¯å
¥åãäžæ
;file \plugins\TabSRMM\src\userprefs.cpp
[Always On]
åžžã«ãªã³
[Always Off]
åžžã«ãªã
[Force Default Message Log]
ããã©ã«ãã¡ãã»ãŒãžãã°ã匷å¶
[Force History++]
History++ ã匷å¶
[Force IEView]
IEView ã匷å¶
[Set messaging options for %s]
%s çšã¡ãã»ãŒãžãªãã·ã§ã³ãèšå®
;file \plugins\TabSRMM\src\utils.cpp
[Important release notes|A test warning message]
éèŠãªãªãªãŒã¹ããŒã | ãã¹ãèŠåã¡ãã»ãŒãž
[Edit user notes|You are editing the user notes. Click the button again or use the hotkey (default: Alt-N) to save the notes and return to normal messaging mode]
ãŠãŒã¶ãŒã¡ã¢ã®ç·šé | ããªãã¯ãŠãŒã¶ãŒã¡ã¢ãç·šéããŠããŸããã¡ã¢ãä¿åããŠéåžžã¡ãã»ãŒãžã³ã°ã¢ãŒãã«æ»ãã«ã¯ , ããäžåºŠãã¿ã³ãã¯ãªãã¯ããããããã㌠( ããã©ã«ã: Alt-N ) ã䜿çšããŠäžãã
[Aero peek warning|You have enabled Aero Peek features and loaded a custom container window skin\n\nThis can result in minor visual anomalies in the live preview feature.]
Aero ãã¬ãã¥ãŒèŠå | ããªã㯠Aero ãã¬ãã¥ãŒæ©èœãæå¹ãªç¶æ
ã§ã«ã¹ã¿ã ã³ã³ãããŠã€ã³ããŠã¹ãã³ãèªã¿èŸŒãã§ããŸã\n\nãã®ãã live ãã¬ãã¥ãŒæ©èœãšã¯å€å°èŠèŠçã«ç°ãªãçµæã«ãªããŸã
[Settings problem|The option \\b1 History->Imitate IEView API\\b0 is enabled and the History++ plugin is active. This can cause problems when using IEView as message log viewer.\n\nShould I correct the option (a restart is required)?]
èšå®ã®åé¡ | ãªãã·ã§ã³ \\b1 å±¥æŽ -> IEView API ã®åçŸ \\b0 ãæå¹ã§ãã , ã〠History++ ãã©ã°ã€ã³ãã¢ã¯ãã£ãã§ããããã¯ã¡ãã»ãŒãžãã°ãã¥ãŒã¢ãšã㊠IEView ã䜿çšããéã«åé¡ãåŒãèµ·ãããŸã\n\nãªãã·ã§ã³ãä¿®æ£ããŠãããããã§ãã ( èŠåèµ·å ) ?
[Closing Window|You are about to close a window with multiple tabs open.\n\nProceed?]
ãŠã£ã³ããŠãéããŠããŸã | ããªãã¯è€æ°ã®ã¿ããéãããŠã£ã³ããŠãéããããšããŠããŸã\\n\nç¶è¡ããŸãã ?
[Closing options dialog|To reflect the changes done by importing a theme in the options dialog, the dialog must be closed after loading a theme \\b1 and unsaved changes might be lost\\b0 .\n\nDo you want to continue?]
éãããªãã·ã§ã³ãã€ã¢ãã° | ãªãã·ã§ã³ãã€ã¢ãã°ã«ã€ã³ããŒãäžã®ããŒãã«ããå€æŽãåæ ãããã«ã¯ããŒãã®èªã¿èŸŒã¿åŸã«ãã€ã¢ãã°ãéããªããã°ãããŸãã \\b1 ä¿åãããŠããªãå€æŽã¯å€±ãããŸã\\b0 \n\nç¶ç¶ããŸãã ?
[Loading a theme|Loading a color and font theme can overwrite the settings defined by your skin.\n\nDo you want to continue?]
ããŒãã®èªã¿èŸŒã¿äž | èªã¿èŸŒã¿äžã®è²ãšãã©ã³ãããŒãã¯ããªãã®ã¹ãã³ã§å®çŸ©ãããŠããèšå®ãäžæžãããŸã\n\nç¶è¡ããŸãã ?
[TabSRMM warning message]
TabSRMM èŠåã¡ãã»ãŒãž
;file \plugins\TabSRMM\src\chat\clist.cpp
[Join chat]
ãã£ããã«åå
[Open chat window]
ãã£ãããŠã£ã³ããŠãéã
;file \plugins\TabSRMM\src\chat\colorchooser.cpp
;file \plugins\TabSRMM\src\chat\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 \plugins\TabSRMM\src\chat\muchighlight.cpp
[Add user to highlight list]
匷調衚瀺ãªã¹ãã«ãŠãŒã¶ãŒãè¿œå
[Edit user highlight list]
ãŠãŒã¶ãŒåŒ·èª¿è¡šç€ºãªã¹ããç·šé
;file \plugins\TabSRMM\src\chat\options.cpp
[Group chat log background]
ã°ã«ãŒããã£ãããã°ã®èæ¯
[Log background]
ãã°ã®èæ¯
[Status background]
ã¹ããŒã¿ã¹ã®èæ¯
[Incoming background(old)]
çä¿¡èæ¯ ( æ§ )
[Outgoing background(old)]
çºä¿¡èæ¯ ( æ§ )
[Horizontal Grid Lines]
æ°Žå¹³ã°ãªããç·
[Panel background low]
ããã«èæ¯ äœ
[Panel background high]
ããã«èæ¯ é«
[Toolbar background high]
ããŒã«ããŒã®èæ¯ é«
[Toolbar background low]
ããŒã«ããŒã®èæ¯ äœ
[Window fill color]
ãŠã£ã³ããŠå¡ãã€ã¶ãè²
[Text area borders]
ããã¹ããšãªã¢ã®æ ç·
[Aero glow effect]
Aero å
圩å¹æ
[Generic text color (only when fill color is set)]
æ±çšããã¹ãè² ( å¡ãã€ã¶ãè²ãèšå®ãããŠããæã®ã¿ )
[Normal text]
éåžžããã¹ã
[Active text]
ã¢ã¯ãã£ãããã¹ã
[Hovered text]
ãããŒããã¹ã
[Unread text]
æªèªããã¹ã
[Normal background]
éåžžèæ¯
[Active background]
ã¢ã¯ãã£ãèæ¯
[Hovered background]
ãããŒèæ¯
[Unread background]
æªèªèæ¯
[Timestamp]
ã¿ã€ã ã¹ã¿ã³ã
[Others nicknames]
ãã®ä»ã®ããã¯ããŒã
[Your nickname]
ããã¯ããŒã
[User has joined]
ãŠãŒã¶ãŒã¯åå ããŸãã
[User has left]
ãŠãŒã¶ãŒã¯é¢åžããŸãã
[User has disconnected]
ãŠãŒã¶ãŒã¯åæããŸãã
[User kicked ...]
ãŠãŒã¶ãŒã¯æé€ãããŸãã ...
[User is now known as ...]
ãŠãŒã¶ãŒã®çŸåšã®å称ã¯æ¬¡ã®éãã§ã ...
[Notice from user]
ãŠãŒã¶ãŒããã®éç¥
[The topic is ...]
ãããã¯ã¯ ...
[Information messages]
ã¡ãã»ãŒãžæ
å ±
[User enables status for ...]
ãŠãŒã¶ãŒã¯æ¬¡ã®ã¹ããŒã¿ã¹ãæå¹ã«ããŸãã ...
[User disables status for ...]
ãŠãŒã¶ãŒã¯æ¬¡ã®ã¹ããŒã¿ã¹ãç¡å¹ã«ããŸãã ...
[Action message]
ã¢ã¯ã·ã§ã³ã¡ãã»ãŒãž
[Highlighted message]
匷調衚瀺ãããã¡ãã»ãŒãž
[Chat log symbols (Webdings)]
ãã£ãããã°ã®èšå· ( Webdings )
[User list members (Online)]
ãŠãŒã¶ãŒãªã¹ãã¡ã³ã㌠( ãªã³ã©ã€ã³ )
[User list members (away)]
ãŠãŒã¶ãŒãªã¹ãã¡ã³ã㌠( é¢åžäž )
[>> Outgoing misc events]
>> çºä¿¡ãããã®ä»ã®ã€ãã³ã
[<< Incoming misc events]
<< çä¿¡ãããã®ä»ã®ã€ãã³ã
[>> Outgoing messages (old)]
>> çºä¿¡ã¡ãã»ãŒãž ( æ§ )
[>> Outgoing misc events (old)]
>> çºä¿¡ãããã®ä»ã®ã€ãã³ã ( æ§ )
[<< Incoming messages (old)]
<< çä¿¡ã¡ãã»ãŒãž ( æ§ )
[<< Incoming misc events (old)]
<< çä¿¡ãããã®ä»ã®ã€ãã³ã ( æ§ )
[>> Outgoing name (old)]
>> çºä¿¡å ( æ§ )
[>> Outgoing timestamp (old)]
>> çºä¿¡ã¿ã€ã ã¹ã¿ã³ã ( æ§ )
[<< Incoming name (old)]
<< çä¿¡å ( æ§ )
[<< Incoming timestamp (old)]
<< çä¿¡ã¿ã€ã ã¹ã¿ã³ã ( æ§ )
[* Message Input Area]
* ã¡ãã»ãŒãžå
¥åãšãªã¢
[* Status changes]
* ã¹ããŒã¿ã¹å€æŽ
[* Dividers]
* å¢çç·
[* Error and warning Messages]
* ã¡ãã»ãŒãžã®ãšã©ãŒãšèŠå
[* Symbols (incoming)]
* èšå· ( çä¿¡ )
[* Symbols (outgoing)]
* èšå· ( çºä¿¡ )
[Protocol]
ãããã³ã«
[Contacts local time]
ã³ã³ã¿ã¯ãã®çŸå°æé
[Window caption (skinned mode)]
ãŠã£ã³ããŠã®èŠåºã ( ã¹ãã³ã¢ãŒã )
[Open new chat rooms in the default container]
ããã©ã«ãã³ã³ããå
ã«æ°èŠãã£ããã«ãŒã ãéã
[Flash window when someone speaks]
誰ããçºèšäžã«ãŠã£ã³ããŠããã©ãã·ã¥
[Flash window when a word is highlighted]
åèªã匷調衚瀺ãããããŠã£ã³ããŠããã©ãã·ã¥
[Create tabs or windows for highlight events]
匷調衚瀺ã€ãã³ãçšã®ã¿ããããã¯ãŠã£ã³ããŠãäœæ
[Activate chat window on highlight]
ã¢ã¯ãã£ããªãã£ãããŠã£ã³ããŠã匷調衚瀺
[Show list of users in the chat room]
ãã£ããã«ãŒã ã®ãŠãŒã¶ãŒãªã¹ãã衚瀺
[Colorize nicknames in member list]
ã¡ã³ããŒãªã¹ãã®ããã¯ããŒã ãã«ã©ãŒè¡šç€º
[Show button menus when right clicking the buttons]
ãã¿ã³ãå³ã¯ãªãã¯ããæã¡ãã¥ãŒã衚瀺
[Show topic as status message on the contact list]
ã³ã³ã¿ã¯ããªã¹ãã®ã¹ããŒã¿ã¹ã¡ãã»ãŒãžãšããŠãããã¯ã衚瀺
[Do not pop up the window when joining a chat room]
ãã£ããã«ãŒã ã«åå äžã¯ãŠã£ã³ããŠããããã¢ããããªã
[Hide or show the window by double click in the contact list]
ã³ã³ã¿ã¯ããªã¹ãã®ããã«ã¯ãªãã¯ã§ãŠã£ã³ããŠã®é衚瀺ãããã¯è¡šç€º
[Sync splitter position with standard IM sessions]
ã¹ããªãã¿ããžã·ã§ã³ãæšæº IM ã»ãã·ã§ã³ãšåæãã
[Show contact's status modes if supported by the protocol]
ãããã³ã«ã«ãµããŒããããŠããæã³ã³ã¿ã¯ãã®ã¹ããŒã¿ã¹ã¢ãŒãã衚瀺
[Display contact's status icon before user role icon]
ãŠãŒã¶ãŒåœ¹å²ã¢ã€ã³ã³ã®åã«ã³ã³ã¿ã¯ãã¹ããŒã¿ã¹ã¢ã€ã³ã³ã衚瀺
[Use IRC style status indicators in the user list]
IRC ã¹ã¿ã€ã«ã®ã¹ããŒã¿ã¹è¡šèšããŠãŒã¶ãŒãªã¹ãã«äœ¿çš
[Use alternative sorting method in member list]
ã¡ã³ããŒãªã¹ãã§ä»£æ¿çãªãœãŒãæ¹åŒã䜿çš
[Prefix all events with a timestamp]
å
šãŠã®ã€ãã³ãã®åã«ã¿ã€ã ã¹ã¿ã³ãã衚瀺
[Timestamp only when event time differs]
ã€ãã³ãæéãšç°ãªããšãã®ã¿ã¿ã€ã ã¹ã¿ã³ã
[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 æåã«å¶é
[Add a colon (:) to auto-completed user names]
èªåè£å®ããããŠãŒã¶ãŒåã«ã³ãã³ (:) ãè¿œå
[Start private conversation on doubleclick in nick list (insert nick if unchecked)]
ããã¯ãªã¹ãã®ããã«ã¯ãªãã¯ã§ãã©ã€ããŒããªäŒè©±ãéå§ ( æªãã§ãã¯æã¯ããã¯ã®æ¿å
¥ )
[Strip colors from messages in the log]
ãã°ã®ã¡ãã»ãŒãžãåè²è¡šç€ºã«ãã
[Use IRC style status indicators in the log]
IRC ã¹ã¿ã€ã«ã®ã¹ããŒã¿ã¹è¡šèšããã°ã«äœ¿çš
[Allow clickable user names in the message log]
ã¡ãã»ãŒãžãã°ã«ã¯ãªãã¯å¯èœãªãŠãŒã¶ãŒåãèš±å¯
[Colorize user names in message log]
ã¡ãã»ãŒãžãã°ã®ãŠãŒã¶ãŒåãã«ã©ãŒè¡šç€º
[Scale down icons to 10x10 pixels in the chat log]
ãã£ãããã°ã«ããã¢ã€ã³ã³ã10x10ãã¯ã»ã«ã«çž®å°ºãã
[Support the math module plugin]
æ°åŠã¢ãžã¥ãŒã«ãã©ã°ã€ã³ããµããŒã
[Window Icon]
ãŠã£ã³ããŠã¢ã€ã³ã³
[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)
[Notice (10x10)]
éç¥ (10x10)
[Nickchange (10x10)]
ããã¯å€æŽ (10x10)
[Topic (10x10)]
ããã㯠(10x10)
[Highlight (10x10)]
匷調衚瀺 (10x10)
[Information (10x10)]
æ
å ± (10x10)
[Appearance and functionality of chat room windows]
ãã£ããã«ãŒã ãŠã£ã³ããŠã®å€èŠ³ãšæ©èœ
[Appearance of the message log]
ã¡ãã»ãŒãžãã°ã®å€èŠ³
[Channel operators]
ãã£ã³ãã«ãªãã¬ãŒã¿ãŒ
[Half operators]
å¶éä»ãªãã¬ãŒã¿ãŒ
[Voiced]
Voiced
[Extended mode 1]
æ¡åŒµã¢ãŒã 1
[Extended mode 2]
æ¡åŒµã¢ãŒã 2
[Selection background]
èæ¯ã®éžæ
[Incremental search highlight]
é次æ€çŽ¢ã匷調衚瀺
[Userlist background]
ãŠãŒã¶ãŒãªã¹ãã®èæ¯
[year without century, 01-99]
幎 , 01-99
[All Files]
å
šãŠã®ãã¡ã€ã«
[Select Folder]
ãã©ã«ããŒãéžæ
[No markers]
ããŒã«ãŒãªã
[Show as icons]
ã¢ã€ã³ã³ãšããŠè¡šç€º
[Show as text symbols]
ããã¹ãèšå·ãšããŠè¡šç€º
[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 \plugins\TabSRMM\src\chat\services.cpp
[&Join]
åå ãã (&J)
[&Leave]
çµäºãã (&L)
;file \plugins\TabSRMM\src\chat\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%s says:%s %s]
%s%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]
æ€çŽ¢èªãªã
[Highlight User...]
ãŠãŒã¶ãŒã匷調衚瀺...
[Edit Highlight List...]
匷調衚瀺ãªã¹ããç·šé...
;file \plugins\TabSRMM\src\chat\window.cpp
[Nick name]
ããã¯ããŒã
[Unique ID]
åºæ ID
[Nick]
ããã¯ããŒã
[%s: Chat Room (%u user%s)]
%s: ãã£ããã«ãŒã (%u ãŠãŒã¶ãŒ %s )
[%s: Chat Room (%u users%s)]
%s: ãã£ããã«ãŒã (%u ãŠãŒã¶ãŒ %s )
[, event filter active]
, ã€ãã³ããã£ã«ã¿ãŒã¯ã¢ã¯ãã£ã
[%s: Message Session]
%s: ã¡ãã»ãŒãžã»ãã·ã§ã³
[%s: Message Session (%u users)]
%s: ã¡ãã»ãŒãžã»ãã·ã§ã³ (%u ãŠãŒã¶ãŒ )
[, %d %s, %d %s idle]
, %d %s, %d %s ã¢ã€ãã«
[hour]
æé
[minute]
å
[, %d %s idle]
, %d %s ã¢ã€ãã«
[The filter canoot be enabled, because there are no event types selected either global or for this chat room]
ã°ããŒãã«ãããã¯ãã®ãã£ããã«ãŒã ã®ãããã«ãã€ãã³ãã¿ã€ããéžæãããŠããªããã , ãã£ã«ã¿ãŒã¯æå¹ã«ã§ããŸããã
[Event filter error]
ã€ãã³ããã£ã«ã¿ãŒãšã©ãŒ
[TabSRMM session list]
TabSRMMã»ãã·ã§ã³ãªã¹ã
[TabSRMM Menu]
TabSRMMã¡ãã¥ãŒ
|