~ubuntu-branches/ubuntu/precise/kde-l10n-ja/precise-proposed

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
# Translation of kontact into Japanese.
# This file is distributed under the same license as the kdepim package.
# Shinichi Tsunoda <tsuno@ngy.1st.ne.jp>, 2004, 2005.
# Toyohiro Asukai <toyohiro@ksmplus.com>, 2004.
# Taiki Komoda <kom@kde.gr.jp>, 2004.
# Yukiko Bando <ybando@k6.dion.ne.jp>, 2006, 2007, 2008, 2009.
# Daniel E. Moctezuma <democtezuma@gmail.com>, 2010.
#
msgid ""
msgstr ""
"Project-Id-Version: kontact\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
"POT-Creation-Date: 2011-12-14 03:50+0100\n"
"PO-Revision-Date: 2010-07-16 22:09-0700\n"
"Last-Translator: Fumiaki Okushi <okushi@kde.gr.jp>\n"
"Language-Team: Japanese <Kdeveloper@kde.gr.jp>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: &\n"
"X-Text-Markup: kde4\n"
"X-Generator: Lokalize 1.0\n"

#: rc.cpp:1
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr "Taiki Komoda,Shinichi Tsunoda,Yukiko Bando,Daniel E. Moctezuma"

#: rc.cpp:2
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr ""
"kom@kde.gr.jp,tsuno@ngy.1st.ne.jp,ybando@k6.dion.ne.jp,democtezuma@gmail.com"

#. i18n: file: src/kontact.kcfg:11
#. i18n: ectx: tooltip, entry (ActivePlugin), group (View)
#. i18n: file: src/kontact.kcfg:12
#. i18n: ectx: whatsthis, entry (ActivePlugin), group (View)
#: rc.cpp:5 rc.cpp:8
msgid "The currently active plugin"
msgstr "現在アクティブなプラグイン"

#. i18n: file: src/kontact.kcfg:16
#. i18n: ectx: label, entry (ForceStartupPlugin), group (View)
#: rc.cpp:11
msgid "Always start with plugin:"
msgstr "常に指定したプラグインで起動する:"

#. i18n: file: src/kontact.kcfg:17
#. i18n: ectx: tooltip, entry (ForceStartupPlugin), group (View)
#: rc.cpp:14
msgid "Set the initial plugin on each start"
msgstr ""

#. i18n: file: src/kontact.kcfg:18
#. i18n: ectx: whatsthis, entry (ForceStartupPlugin), group (View)
#: rc.cpp:17
msgid ""
"Usually Kontact will come up with the plugin used before shutdown. Check "
"this box if you would like the specified plugin to come up on start instead."
msgstr ""
"通常 Kontact はシャットダウン前に使用されていたプラグインで起動します。常に特"
"定のプラグインで起動するようにするには、このボックスをチェックします。"

#. i18n: file: plugins/knotes/knotes_part.rc:4
#. i18n: ectx: Menu (file)
#. i18n: file: src/kontactui.rc:6
#. i18n: ectx: Menu (file)
#: rc.cpp:20 rc.cpp:539
msgid "&File"
msgstr "ファイル(&F)"

#. i18n: file: plugins/knotes/knotes_part.rc:8
#. i18n: ectx: Menu (edit)
#: rc.cpp:23
msgid "&Edit"
msgstr "編集(&E)"

#. i18n: file: plugins/korganizer/apptsummaryconfig_base.ui:8
#. i18n: ectx: property (windowTitle), widget (QWidget, ApptSummaryConfig_Base)
#: rc.cpp:26
msgid "Event Summary Configuration"
msgstr "イベントの要約設定"

#. i18n: file: plugins/korganizer/apptsummaryconfig_base.ui:14
#. i18n: ectx: property (title), widget (QGroupBox, mDaysButtonGroup)
#: rc.cpp:29
msgid "Show Upcoming Events Starting"
msgstr "表示する近日中のイベントの開始日"

#. i18n: file: plugins/korganizer/apptsummaryconfig_base.ui:20
#. i18n: ectx: property (toolTip), widget (QRadioButton, mDateTodayButton)
#. i18n: file: plugins/planner/plannerconfig_base.ui:147
#. i18n: ectx: property (toolTip), widget (QRadioButton, mDateTodayButton)
#: rc.cpp:32 rc.cpp:269
msgid "Show events for today only"
msgstr "今日のイベントのみを表示します"

#. i18n: file: plugins/korganizer/apptsummaryconfig_base.ui:23
#. i18n: ectx: property (whatsThis), widget (QRadioButton, mDateTodayButton)
#. i18n: file: plugins/planner/plannerconfig_base.ui:150
#. i18n: ectx: property (whatsThis), widget (QRadioButton, mDateTodayButton)
#: rc.cpp:35 rc.cpp:272
msgid "Check this box if you want to see events occurring on this date only."
msgstr "今日のイベントのみを表示する場合、このボックスをチェックします。"

#. i18n: file: plugins/korganizer/apptsummaryconfig_base.ui:26
#. i18n: ectx: property (text), widget (QRadioButton, mDateTodayButton)
#. i18n: file: plugins/korganizer/todosummaryconfig_base.ui:34
#. i18n: ectx: property (text), widget (QRadioButton, mDateTodayButton)
#. i18n: file: plugins/planner/plannerconfig_base.ui:153
#. i18n: ectx: property (text), widget (QRadioButton, mDateTodayButton)
#. i18n: file: plugins/specialdates/sdsummaryconfig_base.ui:34
#. i18n: ectx: property (text), widget (QRadioButton, mDateTodayButton)
#: rc.cpp:38 rc.cpp:116 rc.cpp:275 rc.cpp:431
msgid "&Today only"
msgstr "今日(&T)"

#. i18n: file: plugins/korganizer/apptsummaryconfig_base.ui:36
#. i18n: ectx: property (toolTip), widget (QRadioButton, mDateMonthButton)
#. i18n: file: plugins/planner/plannerconfig_base.ui:163
#. i18n: ectx: property (toolTip), widget (QRadioButton, mDateMonthButton)
#: rc.cpp:41 rc.cpp:278
msgid "Show events starting within the next month"
msgstr "1 カ月以内に開始するイベントを表示します"

#. i18n: file: plugins/korganizer/apptsummaryconfig_base.ui:39
#. i18n: ectx: property (whatsThis), widget (QRadioButton, mDateMonthButton)
#. i18n: file: plugins/planner/plannerconfig_base.ui:166
#. i18n: ectx: property (whatsThis), widget (QRadioButton, mDateMonthButton)
#: rc.cpp:44 rc.cpp:281
msgid ""
"Check this box if you want to see events that start sometime during the next "
"31 days."
msgstr ""
"1 カ月以内に開始するイベントを表示する場合、このボックスをチェックします。"

#. i18n: file: plugins/korganizer/apptsummaryconfig_base.ui:42
#. i18n: ectx: property (text), widget (QRadioButton, mDateMonthButton)
#. i18n: file: plugins/korganizer/todosummaryconfig_base.ui:50
#. i18n: ectx: property (text), widget (QRadioButton, mDateMonthButton)
#. i18n: file: plugins/planner/plannerconfig_base.ui:169
#. i18n: ectx: property (text), widget (QRadioButton, mDateMonthButton)
#. i18n: file: plugins/specialdates/sdsummaryconfig_base.ui:50
#. i18n: ectx: property (text), widget (QRadioButton, mDateMonthButton)
#: rc.cpp:47 rc.cpp:125 rc.cpp:284 rc.cpp:440
msgid "Within the next &month (31 days)"
msgstr "1 カ月 (31 日) 以内(&M)"

#. i18n: file: plugins/korganizer/apptsummaryconfig_base.ui:57
#. i18n: ectx: property (toolTip), widget (QRadioButton, mDateRangeButton)
#. i18n: file: plugins/planner/plannerconfig_base.ui:184
#. i18n: ectx: property (toolTip), widget (QRadioButton, mDateRangeButton)
#: rc.cpp:50 rc.cpp:287
msgid "Select the days for showing upcoming events"
msgstr "何日先までのイベントを表示するかを指定します"

#. i18n: file: plugins/korganizer/apptsummaryconfig_base.ui:60
#. i18n: ectx: property (whatsThis), widget (QRadioButton, mDateRangeButton)
#. i18n: file: plugins/planner/plannerconfig_base.ui:187
#. i18n: ectx: property (whatsThis), widget (QRadioButton, mDateRangeButton)
#: rc.cpp:53 rc.cpp:290
msgid ""
"Check this box if you want to specify the number of days in the future for "
"upcoming events."
msgstr ""
"何日先までのイベントを表示するかを指定する場合、このボックスをチェックしま"
"す。"

#. i18n: file: plugins/korganizer/apptsummaryconfig_base.ui:63
#. i18n: ectx: property (text), widget (QRadioButton, mDateRangeButton)
#. i18n: file: plugins/korganizer/todosummaryconfig_base.ui:74
#. i18n: ectx: property (text), widget (QRadioButton, mDateRangeButton)
#. i18n: file: plugins/planner/plannerconfig_base.ui:190
#. i18n: ectx: property (text), widget (QRadioButton, mDateRangeButton)
#. i18n: file: plugins/specialdates/sdsummaryconfig_base.ui:71
#. i18n: ectx: property (text), widget (QRadioButton, mDateRangeButton)
#: rc.cpp:56 rc.cpp:134 rc.cpp:293 rc.cpp:449
msgid "Within the &next:"
msgstr "この日数以内(&N):"

#. i18n: file: plugins/korganizer/apptsummaryconfig_base.ui:76
#. i18n: ectx: property (toolTip), widget (QSpinBox, mCustomDays)
#. i18n: file: plugins/planner/plannerconfig_base.ui:203
#. i18n: ectx: property (toolTip), widget (QSpinBox, mCustomDays)
#: rc.cpp:59 rc.cpp:296
msgid "Set the number of days to show upcoming events"
msgstr "何日先までのイベントを表示するかを設定します"

#. i18n: file: plugins/korganizer/apptsummaryconfig_base.ui:79
#. i18n: ectx: property (whatsThis), widget (QSpinBox, mCustomDays)
#. i18n: file: plugins/planner/plannerconfig_base.ui:206
#. i18n: ectx: property (whatsThis), widget (QSpinBox, mCustomDays)
#: rc.cpp:62 rc.cpp:299
msgid ""
"Use this spinbox to set the number of days to show upcoming events up to 1 "
"year in the future."
msgstr ""
"このスピンボックスを使って何日先までのイベントを表示するかを設定します。最大"
"で 1 年に設定できます。"

#. i18n: file: plugins/korganizer/apptsummaryconfig_base.ui:82
#. i18n: ectx: property (specialValueText), widget (QSpinBox, mCustomDays)
#. i18n: file: plugins/korganizer/todosummaryconfig_base.ui:93
#. i18n: ectx: property (specialValueText), widget (QSpinBox, mCustomDays)
#. i18n: file: plugins/planner/plannerconfig_base.ui:209
#. i18n: ectx: property (specialValueText), widget (QSpinBox, mCustomDays)
#. i18n: file: plugins/specialdates/sdsummaryconfig_base.ui:90
#. i18n: ectx: property (specialValueText), widget (QSpinBox, mCustomDays)
#: rc.cpp:65 rc.cpp:143 rc.cpp:302 rc.cpp:458
msgid "1 day"
msgstr "1 日"

#. i18n: file: plugins/korganizer/apptsummaryconfig_base.ui:85
#. i18n: ectx: property (suffix), widget (QSpinBox, mCustomDays)
#. i18n: file: plugins/korganizer/todosummaryconfig_base.ui:96
#. i18n: ectx: property (suffix), widget (QSpinBox, mCustomDays)
#. i18n: file: plugins/planner/plannerconfig_base.ui:212
#. i18n: ectx: property (suffix), widget (QSpinBox, mCustomDays)
#. i18n: file: plugins/specialdates/sdsummaryconfig_base.ui:93
#. i18n: ectx: property (suffix), widget (QSpinBox, mCustomDays)
#: rc.cpp:68 rc.cpp:146 rc.cpp:305 rc.cpp:461
msgctxt "days to show in summary"
msgid " days"
msgstr " 日"

#. i18n: file: plugins/korganizer/apptsummaryconfig_base.ui:122
#. i18n: ectx: property (title), widget (QGroupBox, mShowButtonGroup)
#: rc.cpp:71
msgid "Show These Upcoming Events From Your Calendar"
msgstr "カレンダーから表示する近日中のイベント"

#. i18n: file: plugins/korganizer/apptsummaryconfig_base.ui:128
#. i18n: ectx: property (toolTip), widget (QCheckBox, mShowBirthdaysFromCal)
#: rc.cpp:74
msgid "Show birthdays from your calendar when also using the Birthday resource"
msgstr "誕生日リソースが使われていれば、カレンダーから誕生日を表示します"

#. i18n: file: plugins/korganizer/apptsummaryconfig_base.ui:131
#. i18n: ectx: property (whatsThis), widget (QCheckBox, mShowBirthdaysFromCal)
#: rc.cpp:77
msgid ""
"Enable this option to include birthdays from your calendar in the upcoming "
"events summary. This option is only available if you are using the Birthdays "
"resource in your calendar."
msgstr ""
"カレンダーの誕生日を近日中のイベントの要約に含めるには、このオプションを有効"
"にします。このオプションは、カレンダーで誕生日リソースを使っている場合にのみ"
"利用できます。"

#. i18n: file: plugins/korganizer/apptsummaryconfig_base.ui:134
#. i18n: ectx: property (text), widget (QCheckBox, mShowBirthdaysFromCal)
#. i18n: file: plugins/specialdates/sdsummaryconfig_base.ui:142
#. i18n: ectx: property (text), widget (QCheckBox, mShowBirthdaysFromCalBox)
#: rc.cpp:80 rc.cpp:473
msgid "Show &birthdays"
msgstr "誕生日(&B)"

#. i18n: file: plugins/korganizer/apptsummaryconfig_base.ui:141
#. i18n: ectx: property (toolTip), widget (QCheckBox, mShowAnniversariesFromCal)
#: rc.cpp:83
msgid ""
"Shows anniversaries from your calendar when using the Birthdays resource"
msgstr "誕生日リソースが使われていれば、カレンダーから記念日を表示します"

#. i18n: file: plugins/korganizer/apptsummaryconfig_base.ui:144
#. i18n: ectx: property (whatsThis), widget (QCheckBox, mShowAnniversariesFromCal)
#: rc.cpp:86
msgid ""
"Enable this option to include anniversaries from your calendar in the "
"upcoming events summary. This option is only available if you are using the "
"Birthdays resource in your calendar."
msgstr ""
"カレンダーの記念日を近日中のイベントの要約に含めるには、このオプションを有効"
"にします。このオプションは、カレンダーで誕生日リソースを使っている場合にのみ"
"利用できます。"

# ACCELERATOR changed by translator
#. i18n: file: plugins/korganizer/apptsummaryconfig_base.ui:147
#. i18n: ectx: property (text), widget (QCheckBox, mShowAnniversariesFromCal)
#. i18n: file: plugins/specialdates/sdsummaryconfig_base.ui:158
#. i18n: ectx: property (text), widget (QCheckBox, mShowAnniversariesFromCalBox)
#: rc.cpp:89 rc.cpp:482
msgid "Show &anniversaries"
msgstr "記念日(&S)"

#. i18n: file: plugins/korganizer/apptsummaryconfig_base.ui:157
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. i18n: file: plugins/korganizer/todosummaryconfig_base.ui:216
#. i18n: ectx: property (title), widget (QGroupBox, mGroupwareGroup)
#. i18n: file: plugins/specialdates/sdsummaryconfig_base.ui:244
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#: rc.cpp:92 rc.cpp:197 rc.cpp:524
msgid "Groupware Settings"
msgstr "グループウェアの設定"

#. i18n: file: plugins/korganizer/apptsummaryconfig_base.ui:163
#. i18n: ectx: property (toolTip), widget (QCheckBox, mShowMineOnly)
#. i18n: file: plugins/planner/plannerconfig_base.ui:253
#. i18n: ectx: property (toolTip), widget (QCheckBox, mShowMyEventsOnly)
#. i18n: file: plugins/specialdates/sdsummaryconfig_base.ui:250
#. i18n: ectx: property (toolTip), widget (QCheckBox, mShowMineOnly)
#: rc.cpp:95 rc.cpp:308 rc.cpp:527
msgid "Show events belonging to my calendars only"
msgstr "自分のカレンダーのイベントのみを表示します"

#. i18n: file: plugins/korganizer/apptsummaryconfig_base.ui:166
#. i18n: ectx: property (whatsThis), widget (QCheckBox, mShowMineOnly)
#. i18n: file: plugins/planner/plannerconfig_base.ui:256
#. i18n: ectx: property (whatsThis), widget (QCheckBox, mShowMyEventsOnly)
#. i18n: file: plugins/specialdates/sdsummaryconfig_base.ui:253
#. i18n: ectx: property (whatsThis), widget (QCheckBox, mShowMineOnly)
#: rc.cpp:98 rc.cpp:311 rc.cpp:530
msgid ""
"Check this box if you want the summary to show events belonging to your "
"calendars only."
msgstr ""
"自分のカレンダーにあるイベントのみを要約に表示する場合、このボックスをチェッ"
"クします。"

#. i18n: file: plugins/korganizer/apptsummaryconfig_base.ui:169
#. i18n: ectx: property (text), widget (QCheckBox, mShowMineOnly)
#. i18n: file: plugins/planner/plannerconfig_base.ui:259
#. i18n: ectx: property (text), widget (QCheckBox, mShowMyEventsOnly)
#. i18n: file: plugins/specialdates/sdsummaryconfig_base.ui:256
#. i18n: ectx: property (text), widget (QCheckBox, mShowMineOnly)
#: rc.cpp:101 rc.cpp:314 rc.cpp:533
msgid "Show &my events only"
msgstr "自分のイベントのみを表示する(&M)"

#. i18n: file: plugins/korganizer/todosummaryconfig_base.ui:16
#. i18n: ectx: property (windowTitle), widget (QWidget, TodoSummaryConfig_Base)
#: rc.cpp:104
msgid "To-do Summary Configuration"
msgstr "To-Do 要約の設定"

#. i18n: file: plugins/korganizer/todosummaryconfig_base.ui:22
#. i18n: ectx: property (title), widget (QGroupBox, mDaysGroup)
#: rc.cpp:107
msgid "Show To-dos Due"
msgstr "表示する To-Do の締切日"

#. i18n: file: plugins/korganizer/todosummaryconfig_base.ui:28
#. i18n: ectx: property (toolTip), widget (QRadioButton, mDateTodayButton)
#: rc.cpp:110
msgid "Show To-dos due today only"
msgstr "今日締切の To-Do のみを表示します"

#. i18n: file: plugins/korganizer/todosummaryconfig_base.ui:31
#. i18n: ectx: property (whatsThis), widget (QRadioButton, mDateTodayButton)
#: rc.cpp:113
msgid "Check this box if you want to see To-dos due on this date only."
msgstr "今日締切の To-Do のみを表示する場合、このボックスをチェックします。"

#. i18n: file: plugins/korganizer/todosummaryconfig_base.ui:44
#. i18n: ectx: property (toolTip), widget (QRadioButton, mDateMonthButton)
#: rc.cpp:119
msgid "Show To-dos due within the next month"
msgstr "締切が 1 カ月以内の To-Do を表示します"

#. i18n: file: plugins/korganizer/todosummaryconfig_base.ui:47
#. i18n: ectx: property (whatsThis), widget (QRadioButton, mDateMonthButton)
#: rc.cpp:122
msgid ""
"Check this box if you want to see To-dos that are due sometime during the "
"next 31 days."
msgstr ""
"1 カ月以内に締切が到来する To-Do を表示する場合、このボックスをチェックしま"
"す。"

#. i18n: file: plugins/korganizer/todosummaryconfig_base.ui:65
#. i18n: ectx: property (toolTip), widget (QRadioButton, mDateRangeButton)
#: rc.cpp:128
msgid "Select the days for showing pending To-dos"
msgstr "何日先までの未完了 To-Do を表示するかを指定します"

#. i18n: file: plugins/korganizer/todosummaryconfig_base.ui:71
#. i18n: ectx: property (whatsThis), widget (QRadioButton, mDateRangeButton)
#: rc.cpp:131
msgid ""
"Check this box if you want specify the number of days in the future for "
"pending To-dos."
msgstr ""
"何日先までの未完了 To-Do を表示するかを指定する場合、このボックスをチェックし"
"ます。"

#. i18n: file: plugins/korganizer/todosummaryconfig_base.ui:87
#. i18n: ectx: property (toolTip), widget (QSpinBox, mCustomDays)
#: rc.cpp:137
msgid "Set the number of days to show pending To-dos"
msgstr "何日先までの 未完了 To-Do を表示するかを設定します"

#. i18n: file: plugins/korganizer/todosummaryconfig_base.ui:90
#. i18n: ectx: property (whatsThis), widget (QSpinBox, mCustomDays)
#: rc.cpp:140
msgid ""
"Use this spinbox to set the number of days to show pending To-dos up to 1 "
"year in the future."
msgstr ""
"このスピンボックスを使って何日先までの未完了 To-Do を表示するかを設定します。"
"最大で 1 年に設定できます。"

#. i18n: file: plugins/korganizer/todosummaryconfig_base.ui:133
#. i18n: ectx: property (title), widget (QGroupBox, mHideGroup)
#. i18n: file: plugins/planner/plannerconfig_base.ui:289
#. i18n: ectx: property (title), widget (QGroupBox, mHideGroup)
#: rc.cpp:149 rc.cpp:320
msgid "Hide Following To-do Types"
msgstr "表示しない To-Do"

#. i18n: file: plugins/korganizer/todosummaryconfig_base.ui:139
#. i18n: ectx: property (toolTip), widget (QCheckBox, mHideCompletedBox)
#: rc.cpp:152
msgid "Hide completed To-dos"
msgstr "完了済みの To-Do を非表示にします"

#. i18n: file: plugins/korganizer/todosummaryconfig_base.ui:142
#. i18n: ectx: property (whatsThis), widget (QCheckBox, mHideCompletedBox)
#: rc.cpp:155
msgid ""
"Check this box if you do not want to see To-dos that have already been "
"completed."
msgstr "既に完了した To-Do を表示しない場合、このボックスをチェックします。"

#. i18n: file: plugins/korganizer/todosummaryconfig_base.ui:145
#. i18n: ectx: property (text), widget (QCheckBox, mHideCompletedBox)
#. i18n: file: plugins/planner/plannerconfig_base.ui:301
#. i18n: ectx: property (text), widget (QCheckBox, mHideCompletedBox)
#: rc.cpp:158 rc.cpp:329
msgid "&Completed"
msgstr "完了済み(&C)"

#. i18n: file: plugins/korganizer/todosummaryconfig_base.ui:155
#. i18n: ectx: property (toolTip), widget (QCheckBox, mHideOpenEndedBox)
#: rc.cpp:161
msgid "Hide To-dos without a due date"
msgstr "締切日のない To-Do を非表示にします"

#. i18n: file: plugins/korganizer/todosummaryconfig_base.ui:158
#. i18n: ectx: property (whatsThis), widget (QCheckBox, mHideOpenEndedBox)
#: rc.cpp:164
msgid "Check this box if you do not want to see open-ended To-dos."
msgstr "締切日のない To-Do を表示しない場合、このボックスをチェックします。"

#. i18n: file: plugins/korganizer/todosummaryconfig_base.ui:161
#. i18n: ectx: property (text), widget (QCheckBox, mHideOpenEndedBox)
#. i18n: file: plugins/planner/plannerconfig_base.ui:317
#. i18n: ectx: property (text), widget (QCheckBox, mHideOpenEndedBox)
#: rc.cpp:167 rc.cpp:338
msgid "&Open-ended (no due date)"
msgstr "締切日がない(&O)"

#. i18n: file: plugins/korganizer/todosummaryconfig_base.ui:171
#. i18n: ectx: property (toolTip), widget (QCheckBox, mHideUnstartedBox)
#: rc.cpp:170
msgid "Hide unstarted To-dos"
msgstr "まだ開始されていない To-Do を非表示にします"

#. i18n: file: plugins/korganizer/todosummaryconfig_base.ui:174
#. i18n: ectx: property (whatsThis), widget (QCheckBox, mHideUnstartedBox)
#: rc.cpp:173
msgid ""
"Check this box if you do not want to see To-dos with a start date in the "
"future."
msgstr ""
"まだ開始日になっていない To-Do を表示しない場合、このボックスをチェックしま"
"す。"

#. i18n: file: plugins/korganizer/todosummaryconfig_base.ui:177
#. i18n: ectx: property (text), widget (QCheckBox, mHideUnstartedBox)
#. i18n: file: plugins/planner/plannerconfig_base.ui:333
#. i18n: ectx: property (text), widget (QCheckBox, mHideUnstartedBox)
#: rc.cpp:176 rc.cpp:347
msgid "&Unstarted (start date is in the future)"
msgstr "開始日が到来していない(&U)"

#. i18n: file: plugins/korganizer/todosummaryconfig_base.ui:184
#. i18n: ectx: property (toolTip), widget (QCheckBox, mHideInProgressBox)
#: rc.cpp:179
msgid "Hide in-progress To-dos"
msgstr "進行中の To-Do を非表示にします"

#. i18n: file: plugins/korganizer/todosummaryconfig_base.ui:187
#. i18n: ectx: property (whatsThis), widget (QCheckBox, mHideInProgressBox)
#: rc.cpp:182
msgid ""
"Check this box if you do not want to see To-dos that have been started but "
"are not yet completed."
msgstr ""
"既に開始している未完了 To-Do を表示しない場合、このボックスをチェックします。"

#. i18n: file: plugins/korganizer/todosummaryconfig_base.ui:190
#. i18n: ectx: property (text), widget (QCheckBox, mHideInProgressBox)
#. i18n: file: plugins/planner/plannerconfig_base.ui:346
#. i18n: ectx: property (text), widget (QCheckBox, mHideInProgressBox)
#: rc.cpp:185 rc.cpp:356
msgid "&In-progress (started but not completed)"
msgstr "進行中(&I)"

#. i18n: file: plugins/korganizer/todosummaryconfig_base.ui:197
#. i18n: ectx: property (toolTip), widget (QCheckBox, mHideOverdueBox)
#: rc.cpp:188
msgid "Hide overdue To-dos"
msgstr "締切超過の To-Do を非表示にします"

#. i18n: file: plugins/korganizer/todosummaryconfig_base.ui:203
#. i18n: ectx: property (whatsThis), widget (QCheckBox, mHideOverdueBox)
#: rc.cpp:191
msgid ""
"Check this box if you do not want to see To-dos that are past their due date "
"but have not yet been completed."
msgstr ""
"締切日を過ぎた未完了 To-Do を表示しない場合、このボックスをチェックします。"

#. i18n: file: plugins/korganizer/todosummaryconfig_base.ui:206
#. i18n: ectx: property (text), widget (QCheckBox, mHideOverdueBox)
#. i18n: file: plugins/planner/plannerconfig_base.ui:359
#. i18n: ectx: property (text), widget (QCheckBox, mHideOverdueBox)
#: rc.cpp:194 rc.cpp:365
msgid "Over&due (not completed and beyond due-date)"
msgstr "未完了で締切超過(&D)"

#. i18n: file: plugins/korganizer/todosummaryconfig_base.ui:222
#. i18n: ectx: property (toolTip), widget (QCheckBox, mShowMineOnly)
#. i18n: file: plugins/planner/plannerconfig_base.ui:373
#. i18n: ectx: property (toolTip), widget (QCheckBox, mShowMyTodosOnly)
#: rc.cpp:200 rc.cpp:368
msgid "Show To-dos belonging to my calendars only"
msgstr "自分のカレンダーの To-Do のみを表示します"

#. i18n: file: plugins/korganizer/todosummaryconfig_base.ui:225
#. i18n: ectx: property (whatsThis), widget (QCheckBox, mShowMineOnly)
#. i18n: file: plugins/planner/plannerconfig_base.ui:376
#. i18n: ectx: property (whatsThis), widget (QCheckBox, mShowMyTodosOnly)
#: rc.cpp:203 rc.cpp:371
msgid ""
"Check this box if you want the summary to show To-dos belonging to your "
"calendars only."
msgstr ""
"自分のカレンダーにある To-Do のみを要約に表示する場合、このボックスをチェック"
"します。"

#. i18n: file: plugins/korganizer/todosummaryconfig_base.ui:228
#. i18n: ectx: property (text), widget (QCheckBox, mShowMineOnly)
#. i18n: file: plugins/planner/plannerconfig_base.ui:379
#. i18n: ectx: property (text), widget (QCheckBox, mShowMyTodosOnly)
#: rc.cpp:206 rc.cpp:374
msgid "Show &my To-dos only"
msgstr "自分の To-Do のみ表示する(&M)"

#. i18n: file: plugins/planner/plannerconfig_base.ui:16
#. i18n: ectx: property (windowTitle), widget (QWidget, PlannerSummaryConfig_Base)
#: rc.cpp:209
msgid "Planner Summary Configuration"
msgstr "スケジュール帳の要約の設定"

#. i18n: file: plugins/planner/plannerconfig_base.ui:26
#. i18n: ectx: attribute (title), widget (QWidget, GeneralTab)
#: rc.cpp:212
msgctxt "general settings"
msgid "General"
msgstr "全般"

#. i18n: file: plugins/planner/plannerconfig_base.ui:32
#. i18n: ectx: property (title), widget (QGroupBox, mGeneralBox)
#: rc.cpp:215
msgid "General Configuration"
msgstr "全般設定"

#. i18n: file: plugins/planner/plannerconfig_base.ui:38
#. i18n: ectx: property (toolTip), widget (QCheckBox, mShowRecurrence)
#: rc.cpp:218
msgid "Show an icon indicating a recurring item"
msgstr "アイテムに繰り返しがあることを示すアイコンを表示します"

#. i18n: file: plugins/planner/plannerconfig_base.ui:41
#. i18n: ectx: property (whatsThis), widget (QCheckBox, mShowRecurrence)
#: rc.cpp:221
msgid ""
"Check this box if you want to see an icon that indicates an event or to-do "
"is recurring."
msgstr ""
"イベントや To-Do が繰り返されることを示すアイコンを表示する場合、このボックス"
"をチェックします。"

#. i18n: file: plugins/planner/plannerconfig_base.ui:44
#. i18n: ectx: property (text), widget (QCheckBox, mShowRecurrence)
#: rc.cpp:224
msgid "Show recurrence icon"
msgstr "繰り返しのアイコンを表示する"

#. i18n: file: plugins/planner/plannerconfig_base.ui:54
#. i18n: ectx: property (toolTip), widget (QCheckBox, mShowReminder)
#: rc.cpp:227
msgid "Show an icon indicating the item has a reminder"
msgstr "アイテムにリマインダが設定されていることを示すアイコンを表示します"

#. i18n: file: plugins/planner/plannerconfig_base.ui:57
#. i18n: ectx: property (whatsThis), widget (QCheckBox, mShowReminder)
#: rc.cpp:230
msgid ""
"Check this box if you want to see an icon indicating that the event or to-do "
"has a reminder."
msgstr ""
"イベントや To-Do にリマインダが設定されていることを示すアイコンを表示する場"
"合、このボックスをチェックします。"

#. i18n: file: plugins/planner/plannerconfig_base.ui:60
#. i18n: ectx: property (text), widget (QCheckBox, mShowReminder)
#: rc.cpp:233
msgid "Show reminder icon"
msgstr "リマインダのアイコンを表示する"

#. i18n: file: plugins/planner/plannerconfig_base.ui:70
#. i18n: ectx: property (toolTip), widget (QCheckBox, mUnderline)
#: rc.cpp:236
msgid "Underline links in descriptions"
msgstr "説明中のリンクに下線を付けます"

#. i18n: file: plugins/planner/plannerconfig_base.ui:73
#. i18n: ectx: property (whatsThis), widget (QCheckBox, mUnderline)
#: rc.cpp:239
msgid "Check this box if you want URL links to be underlined."
msgstr "URL リンクに下線を付ける場合、このボックスをチェックします。"

#. i18n: file: plugins/planner/plannerconfig_base.ui:76
#. i18n: ectx: property (text), widget (QCheckBox, mUnderline)
#: rc.cpp:242
msgid "Underline links"
msgstr "リンクに下線を付ける"

#. i18n: file: plugins/planner/plannerconfig_base.ui:86
#. i18n: ectx: property (toolTip), widget (QCheckBox, mTodo)
#: rc.cpp:245
msgid "Show to-dos in the summary"
msgstr "要約に To-Do を表示します"

#. i18n: file: plugins/planner/plannerconfig_base.ui:89
#. i18n: ectx: property (whatsThis), widget (QCheckBox, mTodo)
#: rc.cpp:248
msgid "Check this box if you want to see to-dos in the summary."
msgstr "要約に To-Do を表示する場合、このボックスをチェックします。"

#. i18n: file: plugins/planner/plannerconfig_base.ui:92
#. i18n: ectx: property (text), widget (QCheckBox, mTodo)
#: rc.cpp:251
msgid "Show To-dos in planner"
msgstr "スケジュール帳に To-Do を表示する"

#. i18n: file: plugins/planner/plannerconfig_base.ui:102
#. i18n: ectx: property (toolTip), widget (QCheckBox, mSd)
#: rc.cpp:254
msgid "Show special dates in the summary"
msgstr "要約に特別な日を表示します"

#. i18n: file: plugins/planner/plannerconfig_base.ui:105
#. i18n: ectx: property (whatsThis), widget (QCheckBox, mSd)
#: rc.cpp:257
msgid "Check this box if you want to see special dates in the summary."
msgstr "要約に特別な日を表示する場合、このボックスをチェックします。"

#. i18n: file: plugins/planner/plannerconfig_base.ui:108
#. i18n: ectx: property (text), widget (QCheckBox, mSd)
#: rc.cpp:260
msgid "Show special dates in planner"
msgstr "スケジュール帳に特別な日を表示する"

#. i18n: file: plugins/planner/plannerconfig_base.ui:135
#. i18n: ectx: attribute (title), widget (QWidget, CalendarTab)
#: rc.cpp:263
msgid "Events"
msgstr "イベント"

#. i18n: file: plugins/planner/plannerconfig_base.ui:141
#. i18n: ectx: property (title), widget (QGroupBox, mDaysGroup)
#: rc.cpp:266
msgid "Show Calendar Events"
msgstr "カレンダーに表示するイベント"

#. i18n: file: plugins/planner/plannerconfig_base.ui:283
#. i18n: ectx: attribute (title), widget (QWidget, TodoTab)
#: rc.cpp:317
msgid "To-dos"
msgstr "To-Do"

#. i18n: file: plugins/planner/plannerconfig_base.ui:295
#. i18n: ectx: property (toolTip), widget (QCheckBox, mHideCompletedBox)
#: rc.cpp:323
msgid "Hide completed to-dos"
msgstr "完了済みの To-Do を非表示にします"

#. i18n: file: plugins/planner/plannerconfig_base.ui:298
#. i18n: ectx: property (whatsThis), widget (QCheckBox, mHideCompletedBox)
#: rc.cpp:326
msgid ""
"Check this box if you do not want to see to-dos that have already been "
"completed."
msgstr "既に完了した To-Do を表示しない場合、このボックスをチェックします。"

#. i18n: file: plugins/planner/plannerconfig_base.ui:311
#. i18n: ectx: property (toolTip), widget (QCheckBox, mHideOpenEndedBox)
#: rc.cpp:332
msgid "Hide to-dos without a due date"
msgstr "締切日のない To-Do を非表示にします"

#. i18n: file: plugins/planner/plannerconfig_base.ui:314
#. i18n: ectx: property (whatsThis), widget (QCheckBox, mHideOpenEndedBox)
#: rc.cpp:335
msgid "Check this box if you do not want to see open-ended to-dos."
msgstr "締切日のない To-Do を表示しない場合、このボックスをチェックします。"

#. i18n: file: plugins/planner/plannerconfig_base.ui:327
#. i18n: ectx: property (toolTip), widget (QCheckBox, mHideUnstartedBox)
#: rc.cpp:341
msgid "Hide unstarted to-dos"
msgstr "開始日が到来していない To-Do を非表示にします"

#. i18n: file: plugins/planner/plannerconfig_base.ui:330
#. i18n: ectx: property (whatsThis), widget (QCheckBox, mHideUnstartedBox)
#: rc.cpp:344
msgid ""
"Check this box if you do not want to see to-dos with a start date in the "
"future."
msgstr ""
"まだ開始日になっていない To-Do を表示しない場合、このボックスをチェックしま"
"す。"

#. i18n: file: plugins/planner/plannerconfig_base.ui:340
#. i18n: ectx: property (toolTip), widget (QCheckBox, mHideInProgressBox)
#: rc.cpp:350
msgid "Hide in-progress to-dos"
msgstr "進行中の To-Do を非表示にします"

#. i18n: file: plugins/planner/plannerconfig_base.ui:343
#. i18n: ectx: property (whatsThis), widget (QCheckBox, mHideInProgressBox)
#: rc.cpp:353
msgid ""
"Check this box if you do not want to see to-dos that have been started but "
"are not yet completed."
msgstr ""
"既に開始している未完了の To-Do を表示しない場合、このボックスをチェックしま"
"す。"

#. i18n: file: plugins/planner/plannerconfig_base.ui:353
#. i18n: ectx: property (toolTip), widget (QCheckBox, mHideOverdueBox)
#: rc.cpp:359
msgid "Hide overdue to-dos"
msgstr "締切超過の To-Do を非表示にします"

#. i18n: file: plugins/planner/plannerconfig_base.ui:356
#. i18n: ectx: property (whatsThis), widget (QCheckBox, mHideOverdueBox)
#: rc.cpp:362
msgid ""
"Check this box if you do not want to see to-dos that are past their due date "
"but have not yet been completed."
msgstr ""
"既に締切日が過ぎている未完了の To-Do を表示しない場合、このボックスをチェック"
"します。"

#. i18n: file: plugins/planner/plannerconfig_base.ui:403
#. i18n: ectx: attribute (title), widget (QWidget, SdTab)
#: rc.cpp:377
msgid "Special Dates"
msgstr "特別な日"

#. i18n: file: plugins/planner/plannerconfig_base.ui:409
#. i18n: ectx: property (title), widget (QGroupBox, mSdBox)
#: rc.cpp:380
msgid "Show these Special Dates"
msgstr "表示する特別な日"

#. i18n: file: plugins/planner/plannerconfig_base.ui:418
#. i18n: ectx: property (toolTip), widget (QCheckBox, mBirthdayConList)
#. i18n: file: plugins/specialdates/sdsummaryconfig_base.ui:209
#. i18n: ectx: property (toolTip), widget (QCheckBox, mShowBirthdaysFromKABBox)
#: rc.cpp:383 rc.cpp:506
msgid "Show birthdays from your address book"
msgstr "アドレス帳から誕生日を表示します"

#. i18n: file: plugins/planner/plannerconfig_base.ui:421
#. i18n: ectx: property (whatsThis), widget (QCheckBox, mBirthdayConList)
#: rc.cpp:386
msgid ""
"Enable this option to include birthdays from your address book in the "
"planner summary."
msgstr ""
"アドレス帳に登録されている誕生日をスケジュール帳の要約に含めるには、このオプ"
"ションを有効にします。"

#. i18n: file: plugins/planner/plannerconfig_base.ui:424
#. i18n: ectx: property (text), widget (QCheckBox, mBirthdayConList)
#: rc.cpp:389
msgid "Show birthdays from address book"
msgstr "アドレス帳から誕生日を表示する"

#. i18n: file: plugins/planner/plannerconfig_base.ui:434
#. i18n: ectx: property (toolTip), widget (QCheckBox, mAnniversariesConList)
#. i18n: file: plugins/specialdates/sdsummaryconfig_base.ui:225
#. i18n: ectx: property (toolTip), widget (QCheckBox, mShowAnniversariesFromKABBox)
#: rc.cpp:392 rc.cpp:515
msgid "Show anniversaries from your address book"
msgstr "アドレス帳から記念日を表示します"

#. i18n: file: plugins/planner/plannerconfig_base.ui:437
#. i18n: ectx: property (whatsThis), widget (QCheckBox, mAnniversariesConList)
#: rc.cpp:395
msgid ""
"Enable this option to include anniversaries from your address book in the "
"planner summary."
msgstr ""
"アドレス帳に登録されている記念日をスケジュール帳の要約に含めるには、このオプ"
"ションを有効にします。"

#. i18n: file: plugins/planner/plannerconfig_base.ui:440
#. i18n: ectx: property (text), widget (QCheckBox, mAnniversariesConList)
#: rc.cpp:398
msgid "Show anniversaries from address book"
msgstr "アドレス帳から記念日を表示する"

#. i18n: file: plugins/planner/plannerconfig_base.ui:450
#. i18n: ectx: property (toolTip), widget (QCheckBox, mHolidaysCal)
#. i18n: file: plugins/specialdates/sdsummaryconfig_base.ui:168
#. i18n: ectx: property (toolTip), widget (QCheckBox, mShowHolidaysFromCalBox)
#: rc.cpp:401 rc.cpp:485
msgid "Show holidays from your calendar"
msgstr "カレンダーから休日を表示します"

#. i18n: file: plugins/planner/plannerconfig_base.ui:453
#. i18n: ectx: property (whatsThis), widget (QCheckBox, mHolidaysCal)
#: rc.cpp:404
msgid ""
"Enable this option to include holidays from your calendar in the planner "
"summary. These are events from your configured holiday region, or events "
"with the \"Holiday\" category."
msgstr ""
"カレンダーの休日をスケジュール帳の要約に含めるには、このオプションを有効にし"
"ます。表示されるのは、休日のために設定した地域のイベントや、カテゴリが「休"
"日」であるイベントです。"

#. i18n: file: plugins/planner/plannerconfig_base.ui:456
#. i18n: ectx: property (text), widget (QCheckBox, mHolidaysCal)
#: rc.cpp:407
msgid "Show holidays from calendar"
msgstr "カレンダーから休日を表示する"

#. i18n: file: plugins/planner/plannerconfig_base.ui:466
#. i18n: ectx: property (toolTip), widget (QCheckBox, mSpecialOccasionsCal)
#. i18n: file: plugins/specialdates/sdsummaryconfig_base.ui:184
#. i18n: ectx: property (toolTip), widget (QCheckBox, mShowSpecialsFromCalBox)
#: rc.cpp:410 rc.cpp:494
msgid "Show special occasions from your calendar"
msgstr "カレンダーから特別な日を表示します"

#. i18n: file: plugins/planner/plannerconfig_base.ui:469
#. i18n: ectx: property (whatsThis), widget (QCheckBox, mSpecialOccasionsCal)
#. i18n: file: plugins/specialdates/sdsummaryconfig_base.ui:187
#. i18n: ectx: property (whatsThis), widget (QCheckBox, mShowSpecialsFromCalBox)
#: rc.cpp:413 rc.cpp:497
msgid ""
"Enable this option to include events from your calendar with the \"special "
"occasion\" category."
msgstr ""
"カテゴリが「特別な日」であるカレンダーのイベントを含めるには、このオプション"
"を有効にします。"

#. i18n: file: plugins/planner/plannerconfig_base.ui:472
#. i18n: ectx: property (text), widget (QCheckBox, mSpecialOccasionsCal)
#: rc.cpp:416
msgid "Show special occasions from calendar"
msgstr "カレンダーから特別な日を表示する"

#. i18n: file: plugins/specialdates/sdsummaryconfig_base.ui:16
#. i18n: ectx: property (windowTitle), widget (QWidget, SDSummaryConfig_Base)
#: rc.cpp:419
msgid "Special Dates Summary Configuration"
msgstr "特別な日の要約の設定"

#. i18n: file: plugins/specialdates/sdsummaryconfig_base.ui:22
#. i18n: ectx: property (title), widget (QGroupBox, mDaysGroup)
#: rc.cpp:422
msgid "Show Special Dates Starting"
msgstr "表示する特別な日の開始日"

#. i18n: file: plugins/specialdates/sdsummaryconfig_base.ui:28
#. i18n: ectx: property (toolTip), widget (QRadioButton, mDateTodayButton)
#: rc.cpp:425
msgid "Show special occasions for today only"
msgstr "今日開始する特別な日のみを表示します"

#. i18n: file: plugins/specialdates/sdsummaryconfig_base.ui:31
#. i18n: ectx: property (whatsThis), widget (QRadioButton, mDateTodayButton)
#: rc.cpp:428
msgid ""
"Check this box if you want to see special occasions occurring on this date "
"only."
msgstr "今日開始する特別な日のみを表示する場合、このボックスをチェックします。"

#. i18n: file: plugins/specialdates/sdsummaryconfig_base.ui:44
#. i18n: ectx: property (toolTip), widget (QRadioButton, mDateMonthButton)
#: rc.cpp:434
msgid "Show special occasions starting within the next month"
msgstr "1 カ月以内に開始する特別な日を表示します"

#. i18n: file: plugins/specialdates/sdsummaryconfig_base.ui:47
#. i18n: ectx: property (whatsThis), widget (QRadioButton, mDateMonthButton)
#: rc.cpp:437
msgid ""
"Check this box if you want to see special occasions that start sometime "
"during the next 31 days."
msgstr ""
"1 カ月以内に開始する特別な日を表示する場合、このボックスをチェックします。"

#. i18n: file: plugins/specialdates/sdsummaryconfig_base.ui:65
#. i18n: ectx: property (toolTip), widget (QRadioButton, mDateRangeButton)
#: rc.cpp:443
msgid "Select the days for showing upcoming special occasions"
msgstr "何日先までの特別な日を表示するかを指定します"

#. i18n: file: plugins/specialdates/sdsummaryconfig_base.ui:68
#. i18n: ectx: property (whatsThis), widget (QRadioButton, mDateRangeButton)
#: rc.cpp:446
msgid ""
"Check this box if you want to specify the number of days in the future for "
"upcoming special occasions."
msgstr ""
"何日先までの特別な日を表示するかを指定する場合、このボックスをチェックしま"
"す。"

#. i18n: file: plugins/specialdates/sdsummaryconfig_base.ui:84
#. i18n: ectx: property (toolTip), widget (QSpinBox, mCustomDays)
#: rc.cpp:452
msgid "Set the number of days to show upcoming special occasions"
msgstr "何日先までの特別な日を表示するかを設定します"

#. i18n: file: plugins/specialdates/sdsummaryconfig_base.ui:87
#. i18n: ectx: property (whatsThis), widget (QSpinBox, mCustomDays)
#: rc.cpp:455
msgid ""
"Use this spinbox to set the number of days to show upcoming special "
"occasions up to one year in the future."
msgstr ""
"このスピンボックスを使って何日先までの特別な日を表示するかを設定します。最大"
"で 1 年に設定できます。"

#. i18n: file: plugins/specialdates/sdsummaryconfig_base.ui:130
#. i18n: ectx: property (title), widget (QGroupBox, mShowFromCalGroup)
#: rc.cpp:464
msgid "Show These Special Dates From Your Calendar"
msgstr "カレンダーから表示する特別な日"

#. i18n: file: plugins/specialdates/sdsummaryconfig_base.ui:136
#. i18n: ectx: property (toolTip), widget (QCheckBox, mShowBirthdaysFromCalBox)
#: rc.cpp:467
msgid "Show birthdays from your calendar"
msgstr "カレンダーから誕生日を表示します"

#. i18n: file: plugins/specialdates/sdsummaryconfig_base.ui:139
#. i18n: ectx: property (whatsThis), widget (QCheckBox, mShowBirthdaysFromCalBox)
#: rc.cpp:470
msgid ""
"Enable this option to include birthdays from your calendar in the upcoming "
"special occasions summary. Typically, these are events with the \"Birthday\" "
"category."
msgstr ""
"カレンダーの誕生日を近日中の特別な日の要約に含めるには、このオプションを有効"
"にします。表示されるのは主にカテゴリが「誕生日」であるイベントです。"

#. i18n: file: plugins/specialdates/sdsummaryconfig_base.ui:152
#. i18n: ectx: property (toolTip), widget (QCheckBox, mShowAnniversariesFromCalBox)
#: rc.cpp:476
msgid "Show anniversaries from your calendar"
msgstr "カレンダーから記念日を表示します"

#. i18n: file: plugins/specialdates/sdsummaryconfig_base.ui:155
#. i18n: ectx: property (whatsThis), widget (QCheckBox, mShowAnniversariesFromCalBox)
#: rc.cpp:479
msgid ""
"Enable this option to include anniversaries from your calendar in the "
"upcoming special occasions summary. Typically, these are events with the "
"\"Anniversary\" category."
msgstr ""
"カレンダーの記念日を近日中の特別な日の要約に含めるには、このオプションを有効"
"にします。表示されるのは主にカテゴリが「記念日」であるイベントです。"

#. i18n: file: plugins/specialdates/sdsummaryconfig_base.ui:171
#. i18n: ectx: property (whatsThis), widget (QCheckBox, mShowHolidaysFromCalBox)
#: rc.cpp:488
msgid ""
"Enable this option to include holidays from your calendar in the upcoming "
"special occasions summary. These are events from your configured holiday "
"region, or events with the \"Holiday\" category."
msgstr ""
"カレンダーの休日を近日中の特別な日の要約に含めるには、このオプションを有効に"
"します。表示されるのは、休日のために設定した地域のイベントや、カテゴリが「休"
"日」であるイベントです。"

# ACCELERATOR changed by translator
#. i18n: file: plugins/specialdates/sdsummaryconfig_base.ui:174
#. i18n: ectx: property (text), widget (QCheckBox, mShowHolidaysFromCalBox)
#: rc.cpp:491
msgid "Show &holidays"
msgstr "休日(&W)"

#. i18n: file: plugins/specialdates/sdsummaryconfig_base.ui:190
#. i18n: ectx: property (text), widget (QCheckBox, mShowSpecialsFromCalBox)
#: rc.cpp:500
msgid "Show s&pecial occasions"
msgstr "特別な日(&P)"

#. i18n: file: plugins/specialdates/sdsummaryconfig_base.ui:203
#. i18n: ectx: property (title), widget (QGroupBox, mShowFromKABButtonGroup)
#: rc.cpp:503
msgid "Show These Special Dates From Your Contact List"
msgstr "アドレス帳から表示する特別な日"

#. i18n: file: plugins/specialdates/sdsummaryconfig_base.ui:212
#. i18n: ectx: property (whatsThis), widget (QCheckBox, mShowBirthdaysFromKABBox)
#: rc.cpp:509
msgid ""
"Enable this option to include birthdays from your address book in the "
"upcoming special occasions summary."
msgstr ""
"アドレス帳の誕生日を近日中の特別な日の要約に含めるには、このオプションを有効"
"にします。"

# ACCELERATOR changed by translator
#. i18n: file: plugins/specialdates/sdsummaryconfig_base.ui:215
#. i18n: ectx: property (text), widget (QCheckBox, mShowBirthdaysFromKABBox)
#: rc.cpp:512
msgid "Show birth&days"
msgstr "誕生日(&I)"

#. i18n: file: plugins/specialdates/sdsummaryconfig_base.ui:228
#. i18n: ectx: property (whatsThis), widget (QCheckBox, mShowAnniversariesFromKABBox)
#: rc.cpp:518
msgid ""
"Enable this option to include anniversaries from your address book in the "
"upcoming special occasions summary."
msgstr ""
"アドレス帳の記念日を近日中の特別な日の要約に含めるには、このオプションを有効"
"にします。"

#. i18n: file: plugins/specialdates/sdsummaryconfig_base.ui:231
#. i18n: ectx: property (text), widget (QCheckBox, mShowAnniversariesFromKABBox)
#: rc.cpp:521
msgid "Show anni&versaries"
msgstr "記念日(&V)"

#. i18n: file: plugins/summary/kontactsummary_part.rc:5
#. i18n: ectx: Menu (settings)
#. i18n: file: src/kontactui.rc:16
#. i18n: ectx: Menu (settings)
#: rc.cpp:536 rc.cpp:542
msgid "&Settings"
msgstr "設定(&S)"

#. i18n: file: src/kontactui.rc:24
#. i18n: ectx: Menu (help)
#: rc.cpp:545
msgid "&Help"
msgstr "ヘルプ(&H)"

#. i18n: file: src/kontactui.rc:29
#. i18n: ectx: ToolBar (mainToolBar)
#: rc.cpp:548
msgid "Main Toolbar"
msgstr "メインツールバー"

#. i18n: file: src/kontactui.rc:34
#. i18n: ectx: ToolBar (navigatorToolBar)
#: rc.cpp:551
msgid "Navigator"
msgstr "ナビゲータ"

#: src/aboutdialog.cpp:43
msgid "About Kontact"
msgstr "このプログラムについて"

#: src/aboutdialog.cpp:49
msgid "Kontact Container"
msgstr "Kontact コンテナ"

#: src/aboutdialog.cpp:92
msgid "No about information available."
msgstr "このプログラムについての情報はありません。"

#: src/aboutdialog.cpp:101
#, kde-format
msgid "Version %1"
msgstr "バージョン %1"

#: src/aboutdialog.cpp:130
msgid "<p><b>Authors:</b></p>"
msgstr "<p><b>作者:</b></p>"

#: src/aboutdialog.cpp:143
msgid "<p><b>Thanks to:</b></p>"
msgstr "<p><b>Thanks to:</b></p>"

#: src/aboutdialog.cpp:156
msgid "<p><b>Translators:</b></p>"
msgstr "<p><b>翻訳者:</b></p>"

#: src/aboutdialog.cpp:284
#, kde-format
msgid "%1 License"
msgstr "%1 ライセンス"

#: src/iconsidepane.cpp:248
msgctxt "@action:inmenu"
msgid "Show Icons Only"
msgstr "アイコンのみ表示"

#: src/iconsidepane.cpp:254
msgctxt "@info:status"
msgid "Show sidebar items with icons and without text"
msgstr ""

#: src/iconsidepane.cpp:257
msgctxt "@info:whatsthis"
msgid ""
"Choose this option if you want the sidebar items to have icons without text."
msgstr ""

#: src/iconsidepane.cpp:260
msgctxt "@action:inmenu"
msgid "Show Text Only"
msgstr "テキストのみ表示"

#: src/iconsidepane.cpp:266
msgctxt "@info:status"
msgid "Show sidebar items with text and without icons"
msgstr ""

#: src/iconsidepane.cpp:269
msgctxt "@info:whatsthis"
msgid ""
"Choose this option if you want the sidebar items to have text without icons."
msgstr ""

#: src/iconsidepane.cpp:272
msgctxt "@action:inmenu"
msgid "Show Icons && Text"
msgstr "アイコンとテキストを表示"

#: src/iconsidepane.cpp:278
msgctxt "@info:status"
msgid "Show sidebar items with icons and text"
msgstr ""

#: src/iconsidepane.cpp:281
msgctxt "@info:whatsthis"
msgid ""
"Choose this option if you want the sidebar items to have icons and text."
msgstr ""

#: src/iconsidepane.cpp:289
msgctxt "@action:inmenu"
msgid "Big Icons"
msgstr "大きいアイコン"

#: src/iconsidepane.cpp:295
msgctxt "@info:status"
msgid "Show large size sidebar icons"
msgstr "サイドバーに大きいサイズのアイコンを表示"

#: src/iconsidepane.cpp:298
msgctxt "@info:whatsthis"
msgid "Choose this option if you want the sidebar icons to be extra big."
msgstr ""

#: src/iconsidepane.cpp:301
msgctxt "@action:inmenu"
msgid "Normal Icons"
msgstr "標準のアイコン"

#: src/iconsidepane.cpp:307
msgctxt "@info:status"
msgid "Show normal size sidebar icons"
msgstr "サイドバーに標準サイズのアイコンを表示"

#: src/iconsidepane.cpp:310
msgctxt "@info:whatsthis"
msgid "Choose this option if you want the sidebar icons to be normal size."
msgstr ""

#: src/iconsidepane.cpp:313
msgctxt "@action:inmenu"
msgid "Small Icons"
msgstr "小さいアイコン"

#: src/iconsidepane.cpp:319
msgctxt "@info:status"
msgid "Show small size sidebar icons"
msgstr "サイドバーに小さいサイズのアイコンを表示"

#: src/iconsidepane.cpp:322
msgctxt "@info:whatsthis"
msgid "Choose this option if you want the sidebar icons to be extra small."
msgstr ""

#: src/kcmkontact.cpp:78
msgctxt "@title"
msgid "KDE Kontact"
msgstr "KDE Kontact"

#: src/kcmkontact.cpp:82
msgctxt "@info:credit"
msgid "(c), 2003 Cornelius Schumacher"
msgstr "(c) 2003 Cornelius Schumacher"

#: src/kcmkontact.cpp:84
msgctxt "@info:credit"
msgid "Cornelius Schumacher"
msgstr "Cornelius Schumacher"

#: src/kcmkontact.cpp:85 src/kcmkontact.cpp:88
#: plugins/knotes/knotes_plugin.cpp:119
msgctxt "@info:credit"
msgid "Developer"
msgstr "開発者"

#: src/kcmkontact.cpp:87 plugins/knotes/knotes_plugin.cpp:118
msgctxt "@info:credit"
msgid "Tobias Koenig"
msgstr "Tobias Koenig"

#: src/kcmkontact.cpp:99
msgctxt "@info:tooltip"
msgid "Select the initial plugin to use on each start"
msgstr "Kontact の起動時に使うプラグインを選択します"

#: src/kcmkontact.cpp:102
msgctxt "@info:whatsthis"
msgid ""
"Select the plugin from this drop down list to be used as the initial plugin "
"each time Kontact is started. Otherwise, Kontact will restore the last "
"active plugin from the previous usage."
msgstr ""

#: src/main.cpp:48
msgid "KDE personal information manager"
msgstr "KDE 個人情報マネージャ (PIM)"

#: src/main.cpp:109
msgid "Start with a specific Kontact module"
msgstr "指定したモジュールで起動"

#: src/main.cpp:110
msgid "Start in iconified (minimized) mode"
msgstr "アイコン化 (最小化) モードで起動"

#: src/main.cpp:111
msgid "List all possible modules and exit"
msgstr "利用可能なすべてのモジュールを表示して終了"

#: src/main.cpp:161
msgid "Kontact"
msgstr "Kontact"

#: src/main.cpp:163
msgid "Copyright © 2001–2010 Kontact authors"
msgstr "Copyright © 2001–2010 Kontact 作者"

#: src/main.cpp:166 plugins/korganizer/kcmapptsummary.cpp:169
#: plugins/korganizer/kcmtodosummary.cpp:165
#: plugins/planner/kcmplanner.cpp:251 plugins/planner/plannerplugin.cpp:62
#: plugins/specialdates/kcmsdsummary.cpp:181
#: plugins/specialdates/specialdates_plugin.cpp:62
msgid "Allen Winter"
msgstr "Allen Winter"

#: src/main.cpp:167
msgid "Rafael Fernández López"
msgstr "Rafael Fernández López"

#: src/main.cpp:168
msgid "Daniel Molkentin"
msgstr "Daniel Molkentin"

#: src/main.cpp:169
msgid "Don Sanders"
msgstr "Don Sanders"

#: src/main.cpp:170 plugins/summary/summaryview_plugin.cpp:126
msgid "Cornelius Schumacher"
msgstr "Cornelius Schumacher"

#: src/main.cpp:171
msgid "Tobias König"
msgstr "Tobias König"

#: src/main.cpp:172
msgid "David Faure"
msgstr "David Faure"

#: src/main.cpp:173
msgid "Ingo Klöcker"
msgstr "Ingo Klöcker"

#: src/main.cpp:174
msgid "Sven Lüppken"
msgstr "Sven Lüppken"

#: src/main.cpp:175
msgid "Zack Rusin"
msgstr "Zack Rusin"

#: src/main.cpp:176
msgid "Matthias Hoelzer-Kluepfel"
msgstr "Matthias Hoelzer-Kluepfel"

#: src/main.cpp:177
msgid "Original Author"
msgstr "オリジナルの作者"

#: src/main.cpp:178
msgid "Torgny Nyblom"
msgstr ""

#: src/main.cpp:178
msgid "Git Migration"
msgstr ""

#: src/mainwindow.cpp:358
msgctxt "@item:intext"
msgid "Loading Kontact..."
msgstr "Kontact を起動中..."

#: src/mainwindow.cpp:357
#, kde-format
msgctxt "@item"
msgid ""
"<h2 style='text-align:center; margin-top: 0px; margin-bottom: 0px'>%1</h2>"
msgstr ""
"<h2 style='text-align:center; margin-top: 0px; margin-bottom: 0px'>%1</h2>"

#: src/mainwindow.cpp:369
msgctxt "@info:status"
msgid " Initializing..."
msgstr " 初期化中..."

#: src/mainwindow.cpp:397
msgctxt "@item:intext"
msgid "KDE Kontact"
msgstr "KDE Kontact"

#: src/mainwindow.cpp:398
msgctxt "@item:intext"
msgid "Get Organized!"
msgstr "情報を整理!"

#: src/mainwindow.cpp:399
msgctxt "@item:intext"
msgid "The KDE Personal Information Management Suite"
msgstr "KDE 個人情報管理スイート"

#: src/mainwindow.cpp:426
msgctxt "@title:menu create new pim items (message,calendar,to-do,etc.)"
msgid "New"
msgstr "新規作成"

#: src/mainwindow.cpp:448
msgctxt "@title:menu synchronize pim items (message,calendar,to-do,etc.)"
msgid "Sync"
msgstr "同期"

# ACCELERATOR added by translator
#: src/mainwindow.cpp:456
msgctxt "@action:inmenu"
msgid "Configure Kontact..."
msgstr "Kontact を設定(&K)..."

#: src/mainwindow.cpp:458
msgctxt "@info:status"
msgid "Configure Kontact"
msgstr "Kontact を設定"

#: src/mainwindow.cpp:461
msgctxt "@info:whatsthis"
msgid "You will be presented with a dialog where you can configure Kontact."
msgstr ""

# ACCELERATOR changed by translator
#: src/mainwindow.cpp:467
msgctxt "@action:inmenu"
msgid "&Kontact Introduction"
msgstr "Kontact はじめに(&O)"

#: src/mainwindow.cpp:469
msgctxt "@info:status"
msgid "Show the Kontact Introduction page"
msgstr "Kontact の開始ページを表示"

# ACCELERATOR changed by translator
#: src/mainwindow.cpp:472
#, fuzzy
#| msgid "&Kontact Introduction"
msgctxt "@info:whatsthis"
msgid "Choose this option to see the Kontact Introduction page."
msgstr "Kontact はじめに(&O)"

# ACCELERATOR changed by translator
#: src/mainwindow.cpp:478
msgctxt "@action:inmenu"
msgid "&Tip of the Day"
msgstr "今日の一言(&D)"

#: src/mainwindow.cpp:480
msgctxt "@info:status"
msgid "Show the Tip-of-the-Day dialog"
msgstr "今日の一言を表示"

#: src/mainwindow.cpp:483
msgctxt "@info:whatsthis"
msgid ""
"You will be presented with a dialog showing small tips to help you use this "
"program more effectively."
msgstr ""

#: src/mainwindow.cpp:680
#, kde-format
msgctxt "@info:status"
msgid "Plugin %1"
msgstr "プラグイン <resource>%1</resource>"

#: src/mainwindow.cpp:683
#, kde-format
msgctxt "@info:whatsthis"
msgid "Switch to plugin %1"
msgstr "プラグイン <resource>%1</resource> に切り替えます"

#: src/mainwindow.cpp:783
msgctxt "@info:status"
msgid "Application is running standalone. Foregrounding..."
msgstr "アプリケーションはスタンドアローンで実行中です。最前面に表示します..."

#: src/mainwindow.cpp:802
#, kde-format
msgctxt "@info"
msgid "Cannot load part for %1."
msgstr "%1 のためのコンポーネントをロードできません。"

#: src/mainwindow.cpp:871
#, kde-format
msgctxt "@title:window Plugin dependent window title"
msgid "%1 - Kontact"
msgstr "%1 - Kontact"

#: src/mainwindow.cpp:1210
#, kde-format
msgctxt "@info"
msgid ""
"<h2 style='text-align:center; margin-top: 0px;'>Welcome to Kontact %1</h2><p "
"align=\"center\">%2</p><table align=\"center\"><tr><td><a href=\"%3\"><img "
"width=\"%4\" height=\"%5\" src=\"%6\" /></a></td><td><a href=\"%7\">%8</"
"a><br /><span id=\"subtext\"><nobr>%9</nobr></span></td></tr><tr><td><a href="
"\"%10\"><img width=\"%11\" height=\"%12\" src=\"%13\" /></a></td><td><a href="
"\"%14\">%15</a><br /><span id=\"subtext\"><nobr>%16</nobr></span></td></"
"tr><tr><td><a href=\"%17\"><img width=\"%18\" height=\"%19\" src=\"%20\" /></"
"a></td><td><a href=\"%21\">%22</a><br /><span id=\"subtext\"><nobr>%23</"
"nobr></span></td></tr></table><p style=\"margin-bottom: 0px\"> <a href="
"\"%24\">Skip this introduction</a></p>"
msgstr ""
"<h2 style='text-align:center; margin-top: 0px;'>Kontact %1 へようこそ</h2><p "
"align=\"center\">%2</p><table align=\"center\"><tr><td><a href=\"%3\"><img "
"width=\"%4\" height=\"%5\" src=\"%6\" /></a></td><td><a href=\"%7\">%8</"
"a><br /><span id=\"subtext\"><nobr>%9</nobr></span></td></tr><tr><td><a href="
"\"%10\"><img width=\"%11\" height=\"%12\" src=\"%13\" /></a></td><td><a href="
"\"%14\">%15</a><br /><span id=\"subtext\"><nobr>%16</nobr></span></td></"
"tr><tr><td><a href=\"%17\"><img width=\"%18\" height=\"%19\" src=\"%20\" /></"
"a></td><td><a href=\"%21\">%22</a><br /><span id=\"subtext\"><nobr>%23</"
"nobr></span></td></tr></table><p style=\"margin-bottom: 0px\"> <a href="
"\"%24\">この開始ページを省略する</a></p>"

#: src/mainwindow.cpp:1223
msgctxt "@item:intext"
msgid ""
"Kontact handles your e-mail, address book, calendar, to-do list and more."
msgstr ""
"Kontact はあなたのメール、アドレス帳、カレンダー、To-Do リストなどを管理しま"
"す。"

#: src/mainwindow.cpp:1229
msgctxt "@item:intext"
msgid "Read Manual"
msgstr "マニュアルを読む"

#: src/mainwindow.cpp:1230
msgctxt "@item:intext"
msgid "Learn more about Kontact and its components"
msgstr "Kontact とそのコンポーネントについて"

#: src/mainwindow.cpp:1236
msgctxt "@item:intext"
msgid "Visit Kontact Website"
msgstr "Kontact ウェブサイトを訪問"

#: src/mainwindow.cpp:1237
msgctxt "@item:intext"
msgid "Access online resources and tutorials"
msgstr "オンラインリソースとチュートリアルにアクセス"

#: src/mainwindow.cpp:1243
msgctxt "@item:intext"
msgid "Configure Kontact as Groupware Client"
msgstr "Kontact をグループウェアクライアントとして設定"

#: src/mainwindow.cpp:1244
msgctxt "@item:intext"
msgid "Prepare Kontact for use in corporate networks"
msgstr "社内ネットワークで使用するために Kontact を設定"

#: plugins/akregator/akregator_plugin.cpp:46
msgctxt "@action:inmenu"
msgid "New Feed..."
msgstr "新しいフィード..."

#: plugins/akregator/akregator_plugin.cpp:50
msgctxt "@info:status"
msgid "Create a new feed"
msgstr "新しいフィードを作成"

#: plugins/akregator/akregator_plugin.cpp:53
msgctxt "@info:whatsthis"
msgid "You will be presented with a dialog where you can add a new feed."
msgstr ""

#: plugins/kaddressbook/kaddressbook_plugin.cpp:48
msgctxt "@action:inmenu"
msgid "New Contact..."
msgstr "新しい連絡先..."

#: plugins/kaddressbook/kaddressbook_plugin.cpp:53
msgctxt "@info:status"
msgid "Create a new contact"
msgstr "新しい連絡先を作成"

#: plugins/kaddressbook/kaddressbook_plugin.cpp:56
msgctxt "@info:whatsthis"
msgid "You will be presented with a dialog where you can create a new contact."
msgstr ""

#: plugins/kaddressbook/kaddressbook_plugin.cpp:61
msgctxt "@action:inmenu"
msgid "New Contact Group..."
msgstr "新しい連絡先グループ..."

#: plugins/kaddressbook/kaddressbook_plugin.cpp:66
msgctxt "@info:status"
msgid "Create a new contact group"
msgstr "新しい連絡先グループを作成"

#: plugins/kaddressbook/kaddressbook_plugin.cpp:69
msgctxt "@info:whatsthis"
msgid ""
"You will be presented with a dialog where you can create a new contact group."
msgstr ""

#: plugins/kaddressbook/kaddressbook_plugin.cpp:74
msgctxt "@action:inmenu"
msgid "Sync Contacts"
msgstr "連絡先を同期"

#: plugins/kaddressbook/kaddressbook_plugin.cpp:78
msgctxt "@info:status"
msgid "Synchronize groupware contacts"
msgstr "グループウェアの連絡先を同期"

#: plugins/kaddressbook/kaddressbook_plugin.cpp:81
#, fuzzy
#| msgid "Synchronize Contacts"
msgctxt "@info:whatsthis"
msgid "Choose this option to synchronize your groupware contacts."
msgstr "連絡先を同期"

#: plugins/kjots/kjots_plugin.cpp:44
msgctxt "@action:inmenu"
msgid "New KJots Page"
msgstr "新しい KJots ページ"

#: plugins/kjots/kjots_plugin.cpp:48
msgctxt "@info:status"
msgid "Create a new jots page"
msgstr "KJots の新しいページを作成"

#: plugins/kjots/kjots_plugin.cpp:51
msgctxt "@info:whatsthis"
msgid ""
"You will be presented with a dialog where you can create a new jots page."
msgstr ""

#: plugins/kjots/kjots_plugin.cpp:56
msgctxt "@action:inmenu"
msgid "New KJots Book"
msgstr "新しい KJots ブック"

#: plugins/kjots/kjots_plugin.cpp:60
msgctxt "@info:status"
msgid "Create a new jots book"
msgstr "KJots の新しいブックを作成"

#: plugins/kjots/kjots_plugin.cpp:63
msgctxt "@info:whatsthis"
msgid ""
"You will be presented with a dialog where you can create a new jots book."
msgstr ""

#: plugins/kmail/kcmkmailsummary.cpp:68
msgid "kcmkmailsummary"
msgstr "kcmkmailsummary"

#: plugins/kmail/kcmkmailsummary.cpp:69
msgid "Mail Summary Configuration Dialog"
msgstr "メール要約の設定ダイアログ"

#: plugins/kmail/kcmkmailsummary.cpp:71
msgid "Copyright © 2004–2010 Tobias Koenig"
msgstr "Copyright © 2004–2010 Tobias Koenig"

#: plugins/kmail/kcmkmailsummary.cpp:73
#: plugins/korganizer/kcmapptsummary.cpp:168
#: plugins/korganizer/kcmtodosummary.cpp:163
#: plugins/planner/kcmplanner.cpp:250 plugins/planner/plannerplugin.cpp:64
#: plugins/specialdates/kcmsdsummary.cpp:182
#: plugins/specialdates/specialdates_plugin.cpp:64
#: plugins/summary/kcmkontactsummary.cpp:119
#: plugins/summary/summaryview_plugin.cpp:128
msgid "Tobias Koenig"
msgstr "Tobias Koenig"

#: plugins/kmail/kcmkmailsummary.cpp:91
msgid "Show full path for folders"
msgstr "フォルダのフルパスを表示する"

#: plugins/kmail/kcmkmailsummary.cpp:93
msgctxt "@info:tooltip"
msgid "Show full path for each folder"
msgstr "各フォルダにフルパスを表示する"

#: plugins/kmail/kcmkmailsummary.cpp:96
msgctxt "@info:whatsthis"
msgid ""
"Enable this option if you want to see the full path for each folder listed "
"in the summary. If this option is not enabled, then only the base folder "
"path will be shown."
msgstr ""

#: plugins/kmail/kmail_plugin.cpp:59
msgctxt "@action:inmenu"
msgid "New Message..."
msgstr "新しいメッセージ..."

#: plugins/kmail/kmail_plugin.cpp:63
msgctxt "@info:status"
msgid "Create a new mail message"
msgstr "新しいメールメッセージを作成"

#: plugins/kmail/kmail_plugin.cpp:66
msgctxt "@info:whatsthis"
msgid ""
"You will be presented with a dialog where you can create and send a new "
"email message."
msgstr ""

#: plugins/kmail/kmail_plugin.cpp:73
msgctxt "@action:inmenu"
msgid "Sync Mail"
msgstr "メールを同期"

#: plugins/kmail/kmail_plugin.cpp:75
msgctxt "@info:status"
msgid "Synchronize groupware mail"
msgstr "グループウェアのメールを同期"

#: plugins/kmail/kmail_plugin.cpp:78
#, fuzzy
#| msgid "Synchronize Contacts"
msgctxt "@info:whatsthis"
msgid "Choose this option to synchronize your groupware email."
msgstr "連絡先を同期"

#: plugins/kmail/summarywidget.cpp:61
msgid "New Messages"
msgstr "未読メッセージ"

#: plugins/kmail/summarywidget.cpp:169
#, kde-format
msgid "<qt><b>%1</b><br/>Total: %2<br/>Unread: %3</qt>"
msgstr "<qt>%1<br/>合計: %2 件<br/>未読: %3 件</qt>"

#: plugins/kmail/summarywidget.cpp:182
#, kde-format
msgctxt "%1: number of unread messages %2: total number of messages"
msgid "%1 / %2"
msgstr "%1 件 (合計 %2 件)"

#: plugins/kmail/summarywidget.cpp:220
msgid "No unread messages in your monitored folders"
msgstr "監視中のフォルダに未読メッセージはありません"

#: plugins/kmail/summarywidget.cpp:238
#, kde-format
msgid "Open Folder: \"%1\""
msgstr "フォルダ <resource>%1</resource> を開く"

#: plugins/knode/knode_plugin.cpp:45
msgctxt "@action:inmenu"
msgid "New Article..."
msgstr "新しい記事..."

#: plugins/knode/knode_plugin.cpp:49
msgctxt "@info:status"
msgid "Create a new Usenet article"
msgstr "新しい Usenet 記事を作成"

#: plugins/knode/knode_plugin.cpp:52
msgctxt "@info:whatsthis"
msgid ""
"You will be presented with a dialog where you can create a new article to "
"post on Usenet."
msgstr ""

#: plugins/knotes/knotes_part.cpp:72
msgctxt "@action:inmenu create new popup note"
msgid "&New"
msgstr "新規(&N)"

#: plugins/knotes/knotes_part.cpp:77
msgctxt "@info:status"
msgid "Create a new popup note"
msgstr "新しいポップアップメモを作成"

#: plugins/knotes/knotes_part.cpp:80
msgctxt "@info:whatsthis"
msgid "You will be presented with a dialog where you can add a new popup note."
msgstr ""

#: plugins/knotes/knotes_part.cpp:83
msgctxt "@action:inmenu"
msgid "Edit..."
msgstr "編集..."

#: plugins/knotes/knotes_part.cpp:87
msgctxt "@info:status"
msgid "Edit popup note"
msgstr "ポップアップメモを編集"

#: plugins/knotes/knotes_part.cpp:90
msgctxt "@info:whatsthis"
msgid ""
"You will be presented with a dialog where you can modify an existing popup "
"note."
msgstr ""

#: plugins/knotes/knotes_part.cpp:93
msgctxt "@action:inmenu"
msgid "Rename..."
msgstr "名前変更..."

#: plugins/knotes/knotes_part.cpp:97
msgctxt "@info:status"
msgid "Rename popup note"
msgstr "ポップアップメモの名前を変更"

#: plugins/knotes/knotes_part.cpp:100
msgctxt "@info:whatsthis"
msgid ""
"You will be presented with a dialog where you can rename an existing popup "
"note."
msgstr ""

#: plugins/knotes/knotes_part.cpp:103
msgctxt "@action:inmenu"
msgid "Delete"
msgstr "削除"

#: plugins/knotes/knotes_part.cpp:108
msgctxt "@info:status"
msgid "Delete popup note"
msgstr "ポップアップメモを削除"

#: plugins/knotes/knotes_part.cpp:111
msgctxt "@info:whatsthis"
msgid ""
"You will be prompted if you really want to permanently remove the selected "
"popup note."
msgstr ""

#: plugins/knotes/knotes_part.cpp:115
msgctxt "@action:inmenu"
msgid "Print Selected Notes..."
msgstr "選択したメモを印刷..."

#: plugins/knotes/knotes_part.cpp:120
msgctxt "@info:status"
msgid "Print popup note"
msgstr "ポップアップメモを印刷"

#: plugins/knotes/knotes_part.cpp:123
msgctxt "@info:whatsthis"
msgid "You will be prompted to print the selected popup note."
msgstr ""

#: plugins/knotes/knotes_part.cpp:185
msgctxt "@info"
msgid "To print notes, first select the notes to print from the list."
msgstr "先に印刷するメモをリストから選択してください。"

#: plugins/knotes/knotes_part.cpp:186
msgctxt "@title:window"
msgid "Print Popup Notes"
msgstr "ポップアップメモを印刷"

#: plugins/knotes/knotes_part.cpp:266 plugins/knotes/knotes_part.cpp:346
#, kde-format
msgctxt "@info"
msgid "Do you really want to delete this note?"
msgid_plural "Do you really want to delete these %1 notes?"
msgstr[0] "本当にこのメモを削除しますか?"
msgstr[1] "本当にこれら %1 件のメモを削除しますか?"

#: plugins/knotes/knotes_part.cpp:268 plugins/knotes/knotes_part.cpp:348
msgctxt "@title:window"
msgid "Confirm Delete"
msgstr "削除の確認"

#: plugins/knotes/knotes_part.cpp:446
msgctxt "@title:window"
msgid "Rename Popup Note"
msgstr "ポップアップメモの名前を変更"

#: plugins/knotes/knotes_part.cpp:447
msgctxt "@label:textbox"
msgid "New Name:"
msgstr "新しい名前:"

#: plugins/knotes/knotes_plugin.cpp:58
msgctxt "@action:inmenu"
msgid "New Popup Note..."
msgstr "新しいポップアップメモ..."

#: plugins/knotes/knotes_plugin.cpp:63
msgctxt "@info:status"
msgid "Create new popup note"
msgstr "新しいポップアップメモを作成"

#: plugins/knotes/knotes_plugin.cpp:66
msgctxt "@info:whatsthis"
msgid ""
"You will be presented with a dialog where you can create a new popup note."
msgstr ""

#: plugins/knotes/knotes_plugin.cpp:71
msgctxt "@action:inmenu"
msgid "Sync Popup Notes"
msgstr "ポップアップメモを同期"

#: plugins/knotes/knotes_plugin.cpp:75
msgctxt "@info:status"
msgid "Synchronize groupware notes"
msgstr "グループウェアのメモを同期"

#: plugins/knotes/knotes_plugin.cpp:78
msgctxt "@info:whatsthis"
msgid "Choose this option to synchronize your groupware notes."
msgstr "グループウェアのメモを同期するには、このオプションを選択します。"

#: plugins/knotes/knotes_plugin.cpp:109
msgctxt "@title"
msgid "KNotes"
msgstr "KNotes"

#: plugins/knotes/knotes_plugin.cpp:111
msgctxt "@title"
msgid "Popup Notes"
msgstr "ポップアップメモ"

#: plugins/knotes/knotes_plugin.cpp:113
msgctxt "@info:credit"
msgid "Copyright © 2003–2010 Kontact authors"
msgstr "Copyright © 2003–2010 Kontact authors"

#: plugins/knotes/knotes_plugin.cpp:115
msgctxt "@info:credit"
msgid "Michael Brade"
msgstr "Michael Brade"

#: plugins/knotes/knotes_plugin.cpp:116
msgctxt "@info:credit"
msgid "Current Maintainer"
msgstr "現在のメンテナ"

#: plugins/knotes/knotes_plugin.cpp:157
#: plugins/korganizer/korganizerplugin.cpp:208
#: plugins/korganizer/todoplugin.cpp:212
msgctxt "@item"
msgid "Meeting"
msgstr "会議"

#: plugins/knotes/knotes_plugin.cpp:169
#: plugins/korganizer/korganizerplugin.cpp:224
#: plugins/korganizer/todoplugin.cpp:227
#, kde-format
msgctxt "@item"
msgid "Note: %1"
msgstr "メモ: %1"

#: plugins/knotes/knotes_plugin.cpp:178
msgctxt "@item"
msgid "New Note"
msgstr "新しいメモ"

#: plugins/knotes/knotes_plugin.cpp:188
#: plugins/korganizer/korganizerplugin.cpp:248
#: plugins/korganizer/todoplugin.cpp:250
msgctxt "@info"
msgid "Dropping multiple mails is not supported."
msgstr "複数のメールのドロップはサポートしていません。"

#: plugins/knotes/knotes_plugin.cpp:191
#: plugins/korganizer/korganizerplugin.cpp:251
#: plugins/korganizer/todoplugin.cpp:253
#, kde-format
msgctxt "@item"
msgid ""
"From: %1\n"
"To: %2\n"
"Subject: %3"
msgstr ""
"差出人: %1\n"
"宛先: %2\n"
"件名: %3"

#: plugins/knotes/knotes_plugin.cpp:194
#: plugins/korganizer/korganizerplugin.cpp:260
#: plugins/korganizer/todoplugin.cpp:262
#, kde-format
msgctxt "@item"
msgid "Mail: %1"
msgstr "メール: %1"

#: plugins/knotes/summarywidget.cpp:49
msgid "Popup Notes"
msgstr "ポップアップメモ"

#: plugins/knotes/summarywidget.cpp:117
msgid "No Notes Available"
msgstr "メモはありません"

#: plugins/knotes/summarywidget.cpp:142
#, kde-format
msgid "Read Popup Note: \"%1\""
msgstr "ポップアップメモ <resource>%1</resource> を読む"

#: plugins/korganizer/apptsummarywidget.cpp:69
msgid "Upcoming Events"
msgstr "近日中のイベント"

#: plugins/korganizer/apptsummarywidget.cpp:230
#, kde-format
msgid "No upcoming events starting within the next day"
msgid_plural "No upcoming events starting within the next %1 days"
msgstr[0] "1 日以内に開始するイベントはありません"
msgstr[1] "%1 日以内に開始するイベントはありません"

#: plugins/korganizer/apptsummarywidget.cpp:266
#: plugins/planner/planner.cpp:802
msgid "&Edit Appointment..."
msgstr "約束を編集(&E)..."

#: plugins/korganizer/apptsummarywidget.cpp:268
#: plugins/planner/planner.cpp:803
msgid "&Delete Appointment"
msgstr "約束を削除(&D)"

#: plugins/korganizer/apptsummarywidget.cpp:289
#, kde-format
msgid "Edit Event: \"%1\""
msgstr "イベント <resource>%1</resource> を編集"

#: plugins/korganizer/journalplugin.cpp:48
msgctxt "@action:inmenu"
msgid "New Journal..."
msgstr "新しい日記..."

#: plugins/korganizer/journalplugin.cpp:52
msgctxt "@info:status"
msgid "Create a new journal"
msgstr "新しい日記を作成"

#: plugins/korganizer/journalplugin.cpp:55
msgctxt "@info:whatsthis"
msgid ""
"You will be presented with a dialog where you can create a new journal entry."
msgstr ""

#: plugins/korganizer/journalplugin.cpp:62
msgctxt "@action:inmenu"
msgid "Sync Journal"
msgstr "日記を同期"

#: plugins/korganizer/journalplugin.cpp:65
msgctxt "@info:status"
msgid "Synchronize groupware journal"
msgstr "グループウェアの日記を同期"

#: plugins/korganizer/journalplugin.cpp:68
msgctxt "@info:whatsthis"
msgid "Choose this option to synchronize your groupware journal entries."
msgstr ""

#: plugins/korganizer/kcmapptsummary.cpp:83
#: plugins/korganizer/kcmtodosummary.cpp:76 plugins/planner/kcmplanner.cpp:90
#: plugins/specialdates/kcmsdsummary.cpp:82
msgid " day"
msgid_plural " days"
msgstr[0] " 日"
msgstr[1] " 日"

#: plugins/korganizer/kcmapptsummary.cpp:162
msgid "kcmapptsummary"
msgstr "kcmapptsummary"

#: plugins/korganizer/kcmapptsummary.cpp:163
msgid "Upcoming Events Configuration Dialog"
msgstr "近日中のイベントの設定ダイアログ"

#: plugins/korganizer/kcmapptsummary.cpp:165
#: plugins/korganizer/kcmtodosummary.cpp:160
msgid ""
"Copyright © 2003–2004 Tobias Koenig\n"
"Copyright © 2005–2010 Allen Winter"
msgstr ""
"Copyright © 2003–2004 Tobias Koenig\n"
"Copyright © 2005–2010 Allen Winter"

#: plugins/korganizer/kcmtodosummary.cpp:157
msgid "kcmtodosummary"
msgstr "kcmtodosummary"

#: plugins/korganizer/kcmtodosummary.cpp:158
msgid "Pending To-dos Configuration Dialog"
msgstr "未決 To-Do の設定ダイアログ"

#: plugins/korganizer/korganizerplugin.cpp:65
msgctxt "@action:inmenu"
msgid "New Event..."
msgstr "新しいイベント..."

#: plugins/korganizer/korganizerplugin.cpp:69
msgctxt "@info:status"
msgid "Create a new event"
msgstr "新しいイベントを作成"

#: plugins/korganizer/korganizerplugin.cpp:72
msgctxt "@info:whatsthis"
msgid ""
"You will be presented with a dialog where you can create a new event item."
msgstr ""

#: plugins/korganizer/korganizerplugin.cpp:78
msgctxt "@action:inmenu"
msgid "Sync Calendar"
msgstr "カレンダーを同期"

#: plugins/korganizer/korganizerplugin.cpp:81
msgctxt "@info:status"
msgid "Synchronize groupware calendar"
msgstr "グループウェアのカレンダーを同期"

#: plugins/korganizer/korganizerplugin.cpp:84
msgctxt "@info:whatsthis"
msgid "Choose this option to synchronize your groupware events."
msgstr "グループウェアのイベントを同期するには、このオプションを選択します。"

#: plugins/korganizer/summaryeventinfo.cpp:190
msgctxt "the appointment is today"
msgid "Today"
msgstr "今日"

#: plugins/korganizer/summaryeventinfo.cpp:194
msgctxt "the appointment is tomorrow"
msgid "Tomorrow"
msgstr "明日"

#: plugins/korganizer/summaryeventinfo.cpp:216
#: plugins/korganizer/todosummarywidget.cpp:238
#: plugins/specialdates/sdsummarywidget.cpp:524
#, kde-format
msgid "in 1 day"
msgid_plural "in %1 days"
msgstr[0] "1 日後"
msgstr[1] "%1 日後"

#: plugins/korganizer/summaryeventinfo.cpp:229
msgctxt "eg. in 1 hour 2 minutes"
msgid "in "
msgstr " "

#: plugins/korganizer/summaryeventinfo.cpp:233
#, kde-format
msgctxt "use abbreviation for hour to keep the text short"
msgid "1 hr"
msgid_plural "%1 hrs"
msgstr[0] "1 時間後"
msgstr[1] "%1 時間後"

#: plugins/korganizer/summaryeventinfo.cpp:240
#, kde-format
msgctxt "use abbreviation for minute to keep the text short"
msgid "1 min"
msgid_plural "%1 mins"
msgstr[0] "1 分後"
msgstr[1] "%1 分後"

#: plugins/korganizer/summaryeventinfo.cpp:243
#: plugins/specialdates/sdsummarywidget.cpp:522
msgid "now"
msgstr "今"

#: plugins/korganizer/summaryeventinfo.cpp:246
msgid "all day"
msgstr "終日"

#: plugins/korganizer/summaryeventinfo.cpp:278 plugins/planner/planner.cpp:528
#, kde-format
msgctxt "Time from - to"
msgid "%1 - %2"
msgstr "%1 - %2"

#: plugins/korganizer/summaryeventinfo.cpp:296
#, kde-format
msgctxt "next occurrence"
msgid "Next: %1"
msgstr "次: %1"

#: plugins/korganizer/todoplugin.cpp:63
msgctxt "@action:inmenu"
msgid "New To-do..."
msgstr "新しい To-Do..."

#: plugins/korganizer/todoplugin.cpp:67
msgctxt "@info:status"
msgid "Create a new to-do"
msgstr "新しい To-Do を作成"

#: plugins/korganizer/todoplugin.cpp:70
msgctxt "@info:whatsthis"
msgid ""
"You will be presented with a dialog where you can create a new to-do item."
msgstr ""

#: plugins/korganizer/todoplugin.cpp:76
msgctxt "@action:inmenu"
msgid "Sync To-do List"
msgstr "To-Do リストを同期"

#: plugins/korganizer/todoplugin.cpp:78
msgctxt "@info:status"
msgid "Synchronize groupware to-do list"
msgstr "グループウェアの To-Do リストを同期"

#: plugins/korganizer/todoplugin.cpp:81
#, fuzzy
#| msgid "Synchronize Contacts"
msgctxt "@info:whatsthis"
msgid "Choose this option to synchronize your groupware to-do list."
msgstr "連絡先を同期"

#: plugins/korganizer/todosummarywidget.cpp:68
msgid "Pending To-dos"
msgstr "未決 To-Do"

#: plugins/korganizer/todosummarywidget.cpp:216
msgctxt "the to-do is due today"
msgid "Today"
msgstr "今日"

#: plugins/korganizer/todosummarywidget.cpp:218
msgctxt "the to-do is due tomorrow"
msgid "Tomorrow"
msgstr "明日"

#: plugins/korganizer/todosummarywidget.cpp:240
#, kde-format
msgid "1 day ago"
msgid_plural "%1 days ago"
msgstr[0] "1 日前"
msgstr[1] "%1 日前"

#: plugins/korganizer/todosummarywidget.cpp:242
msgctxt "the to-do is due"
msgid "due"
msgstr "締切"

#: plugins/korganizer/todosummarywidget.cpp:305
#, kde-format
msgid "No pending to-dos due within the next day"
msgid_plural "No pending to-dos due within the next %1 days"
msgstr[0] "1 日以内に締切が到来する To-Do はありません"
msgstr[1] "%1 日以内に締切が到来する To-Do はありません"

#: plugins/korganizer/todosummarywidget.cpp:356
#: plugins/planner/planner.cpp:864
msgid "&Edit To-do..."
msgstr "To-Do を編集(&E)..."

#: plugins/korganizer/todosummarywidget.cpp:357
#: plugins/planner/planner.cpp:865
msgid "&Delete To-do"
msgstr "To-Do を削除(&D)"

#: plugins/korganizer/todosummarywidget.cpp:368
#: plugins/planner/planner.cpp:870
msgid "&Mark To-do Completed"
msgstr "To-Do を完了としてマーク(&M)"

#: plugins/korganizer/todosummarywidget.cpp:389
#: plugins/planner/planner.cpp:962
#, kde-format
msgid "Edit To-do: \"%1\""
msgstr "To-Do <resource>%1</resource> を編集"

#: plugins/korganizer/todosummarywidget.cpp:414
msgid "open-ended"
msgstr "締切なし"

#: plugins/korganizer/todosummarywidget.cpp:417
msgctxt "the to-do is overdue"
msgid "overdue"
msgstr "締切超過"

#: plugins/korganizer/todosummarywidget.cpp:420
msgctxt "the to-do starts today"
msgid "starts today"
msgstr "今日開始"

#: plugins/korganizer/todosummarywidget.cpp:424
msgctxt "the to-do has not been started yet"
msgid "not-started"
msgstr "未開始"

#: plugins/korganizer/todosummarywidget.cpp:426
msgctxt "the to-do is completed"
msgid "completed"
msgstr "完了"

#: plugins/korganizer/todosummarywidget.cpp:428
msgctxt "the to-do is in-progress"
msgid "in-progress "
msgstr "進行中"

#: plugins/korganizer/todosummarywidget.cpp:433
msgctxt "Separator for status like this: overdue, completed"
msgid ","
msgstr "、"

#: plugins/ktimetracker/ktimetracker_plugin.cpp:48
msgctxt "@action:inmenu"
msgid "New Task"
msgstr "新しいタスク"

#: plugins/ktimetracker/ktimetracker_plugin.cpp:51
#, fuzzy
#| msgid "New Contact..."
msgctxt "@info:status"
msgid "Create a new time tracker"
msgstr "新規連絡先..."

#: plugins/ktimetracker/ktimetracker_plugin.cpp:54
msgctxt "@info:whatsthis"
msgid ""
"You will be presented with a dialog where you can create and start a new "
"time tracker."
msgstr ""

#: plugins/ktimetracker/ktimetracker_plugin.cpp:98
msgid "task_popup"
msgstr ""

#: plugins/planner/kcmplanner.cpp:240
msgid "kcmplanner"
msgstr "kcmplanner"

#: plugins/planner/kcmplanner.cpp:242
msgid "Planner Summary Configuration Dialog"
msgstr "スケジュール帳の要約の設定ダイアログ"

#: plugins/planner/kcmplanner.cpp:246
msgid ""
"Copyright © 2004 Tobias Koenig\n"
"Copyright © 2006–2008 Oral Timocin\n"
"Copyright © 2009–2010 Allen Winter"
msgstr ""
"Copyright © 2004 Tobias Koenig\n"
"Copyright © 2006–2008 Oral Timocin\n"
"Copyright © 2009–2010 Allen Winter"

#: plugins/planner/kcmplanner.cpp:252 plugins/planner/plannerplugin.cpp:66
msgid "Oral Timocin"
msgstr "Oral Timocin"

#: plugins/planner/planner.cpp:92
msgid "Planner"
msgstr "スケジュール帳"

#: plugins/planner/planner.cpp:183
msgctxt "today"
msgid "Today"
msgstr "今日"

#: plugins/planner/planner.cpp:187
msgctxt "tomorrow"
msgid "Tomorrow"
msgstr "明日"

#: plugins/planner/planner.cpp:229
#, kde-format
msgid "No appointments pending within the next day"
msgid_plural "No appointments pending within the next %1 days"
msgstr[0] "1 日以内に約束はありません"
msgstr[1] "%1 日以内に約束はありません"

#: plugins/planner/planner.cpp:335 plugins/planner/planner.cpp:363
#: plugins/planner/planner.cpp:386 plugins/planner/planner.cpp:836
msgctxt "to-do is overdue"
msgid "overdue"
msgstr "締切超過"

#: plugins/planner/planner.cpp:721
#: plugins/specialdates/sdsummarywidget.cpp:535
msgid "Birthday"
msgstr "誕生日"

#: plugins/planner/planner.cpp:724
#: plugins/specialdates/sdsummarywidget.cpp:538
msgid "Anniversary"
msgstr "記念日"

#: plugins/planner/planner.cpp:727
#: plugins/specialdates/sdsummarywidget.cpp:541
msgid "Holiday"
msgstr "休日"

#: plugins/planner/planner.cpp:730
#: plugins/specialdates/sdsummarywidget.cpp:544
msgid "Special Occasion"
msgstr "特別な日"

#: plugins/planner/planner.cpp:771
#: plugins/specialdates/sdsummarywidget.cpp:586
#, kde-format
msgid "one year"
msgid_plural "%1 years"
msgstr[0] "1 年"
msgstr[1] "%1 年"

#: plugins/planner/planner.cpp:819
#, kde-format
msgid "Edit Appointment: \"%1\""
msgstr "約束 <resource>%1</resource> を編集"

#: plugins/planner/planner.cpp:843
msgctxt "work on to-do is in progress"
msgid "in progress"
msgstr "進行中"

#: plugins/planner/planner.cpp:848
msgctxt "to-do starts today"
msgid "starts today"
msgstr "今日開始"

#: plugins/planner/planner.cpp:853
msgctxt "to-do due today"
msgid "due today"
msgstr "今日締切"

#: plugins/planner/planner.cpp:856
msgctxt "to-do is completed"
msgid "completed"
msgstr "完了"

#: plugins/planner/planner.cpp:914 plugins/planner/planner.cpp:915
#: plugins/planner/planner.cpp:916 plugins/planner/planner.cpp:917
#: plugins/planner/planner.cpp:918 plugins/planner/planner.cpp:919
#: plugins/planner/planner.cpp:920 plugins/planner/planner.cpp:921
#: plugins/planner/planner.cpp:922 plugins/planner/planner.cpp:923
#: plugins/planner/planner.cpp:924
#, kde-format
msgid "%1%"
msgstr "%1%"

#: plugins/planner/plannerplugin.cpp:56
msgid "Planner Summary"
msgstr "スケジュール帳の要約"

#: plugins/planner/plannerplugin.cpp:58
msgid "Kontact Planner Summary"
msgstr "Kontact スケジュール帳の要約"

#: plugins/planner/plannerplugin.cpp:60
#: plugins/specialdates/specialdates_plugin.cpp:60
msgid ""
"Copyright © 2003 Tobias Koenig\n"
"Copyright © 2004–2010 Allen Winter"
msgstr ""
"Copyright © 2003 Tobias Koenig\n"
"Copyright © 2004–2010 Allen Winter"

#: plugins/planner/plannerplugin.cpp:63
#: plugins/specialdates/specialdates_plugin.cpp:63
msgid "Current Maintainer"
msgstr "現在のメンテナ"

#: plugins/planner/stdcalendar.cpp:73
msgid "Active Calendar"
msgstr "アクティブなカレンダー"

#: plugins/planner/stdcalendar.cpp:83
msgid "Default Calendar"
msgstr "デフォルトのカレンダー"

#: plugins/planner/stdcalendar.cpp:98
msgid "Birthdays"
msgstr "誕生日"

#: plugins/specialdates/kcmsdsummary.cpp:175
msgid "kcmsdsummary"
msgstr "kcmkabsummary"

#: plugins/specialdates/kcmsdsummary.cpp:176
msgid "Upcoming Special Dates Configuration Dialog"
msgstr "近日中の特別な日の設定ダイアログ"

#: plugins/specialdates/kcmsdsummary.cpp:178
msgid ""
"Copyright © 2004 Tobias Koenig\n"
"Copyright © 2004–2010 Allen Winter"
msgstr ""
"Copyright © 2004 Tobias Koenig\n"
"Copyright © 2004–2010 Allen Winter"

#: plugins/specialdates/sdsummarywidget.cpp:147
msgid "Upcoming Special Dates"
msgstr "近日中の特別な日"

#: plugins/specialdates/sdsummarywidget.cpp:495
msgctxt "the special day is today"
msgid "Today"
msgstr "今日"

#: plugins/specialdates/sdsummarywidget.cpp:497
msgctxt "the special day is tomorrow"
msgid "Tomorrow"
msgstr "明日"

#: plugins/specialdates/sdsummarywidget.cpp:597
#, kde-format
msgid "No special dates within the next 1 day"
msgid_plural "No special dates pending within the next %1 days"
msgstr[0] "1 日以内に誕生日や記念日はありません"
msgstr[1] "%1 日以内に誕生日や記念日はありません"

#: plugins/specialdates/sdsummarywidget.cpp:688
msgid "Send &Mail"
msgstr "メールを送信(&M)"

#: plugins/specialdates/sdsummarywidget.cpp:691
msgid "View &Contact"
msgstr "連絡先を表示(&C)"

#: plugins/specialdates/sdsummarywidget.cpp:706
#, kde-format
msgid "Mail to:\"%1\""
msgstr "“%1” へメール"

#: plugins/specialdates/specialdates_plugin.cpp:56
msgid "Special Dates Summary"
msgstr "特別な日の要約"

#: plugins/specialdates/specialdates_plugin.cpp:58
msgid "Kontact Special Dates Summary"
msgstr "Kontact 特別な日の要約"

#: plugins/summary/kcmkontactsummary.cpp:86
msgctxt "@title:column plugin name"
msgid "Summary Plugin Name"
msgstr "要約プラグインの名前"

#: plugins/summary/kcmkontactsummary.cpp:102
msgid "Select the plugin summaries to show on the summary page."
msgstr "要約のページに表示するプラグインを選択します。"

#: plugins/summary/kcmkontactsummary.cpp:114
msgid "kontactsummary"
msgstr "Kontactsummary"

#: plugins/summary/kcmkontactsummary.cpp:115
msgid "KDE Kontact Summary"
msgstr "KDE Kontact 要約"

#: plugins/summary/kcmkontactsummary.cpp:117
msgid "(c), 2004 Tobias Koenig"
msgstr "(c) 2004 Tobias Koenig"

#: plugins/summary/summaryview_part.cpp:70
msgid "&Configure Summary View..."
msgstr "要約ビューの設定(&C)..."

#: plugins/summary/summaryview_part.cpp:73
msgid "Configure the summary view"
msgstr "要約ビューの設定"

#: plugins/summary/summaryview_part.cpp:76
msgctxt "@info:whatsthis"
msgid ""
"Choosing this will show a dialog where you can select which summaries you "
"want to see and also allow you to configure the summaries to your liking."
msgstr ""

#: plugins/summary/summaryview_part.cpp:123
#, kde-format
msgid "Summary for %1"
msgstr "%1 の要約"

#: plugins/summary/summaryview_part.cpp:391
msgid "What's next?"
msgstr "次は何?"

#: plugins/summary/summaryview_plugin.cpp:45
msgid "Sync All"
msgstr "すべて同期"

#: plugins/summary/summaryview_plugin.cpp:57
msgctxt "@action:inmenu sync everything"
msgid "All"
msgstr "すべて"

#: plugins/summary/summaryview_plugin.cpp:73
msgctxt "sync everything"
msgid "All"
msgstr "すべて"

#: plugins/summary/summaryview_plugin.cpp:118
msgid "Kontact Summary"
msgstr "Kontact 要約"

#: plugins/summary/summaryview_plugin.cpp:120
msgid "Kontact Summary View"
msgstr "Konatct 要約ビュー"

#: plugins/summary/summaryview_plugin.cpp:122
msgid "(c) 2003 The Kontact developers"
msgstr "(c) 2003 The Kontact developers"

#: plugins/summary/summaryview_plugin.cpp:124
msgid "Sven Lueppken"
msgstr "Sven Lueppken"

#: plugins/knotes/knotes_part_p.h:121
msgctxt "@title:window"
msgid "Edit Popup Note"
msgstr "ポップアップメモを編集"

#: plugins/knotes/knotes_part_p.h:140
msgctxt "@label popup note name"
msgid "Name:"
msgstr "名前:"