1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
|
# translation of kalarm.po to Japanese
# Copyright (C) 2002,2003, 2004, 2005, 2006 Free Software Foundation, Inc.
#
# Taiki Komoda <kom@kde.gr.jp>, 2002,2003, 2004.
# Shinichi Tsunoda <tsuno@ngy.1st.ne.jp>, 2004, 2005.
# Toyohiro Asukai <toyohiro@ksmplus.com>, 2004.
# Yukiko Bando <ybando@k6.dion.ne.jp>, 2006, 2007, 2008.
# Fumiaki Okushi <okushi@kde.gr.jp>, 2006.
msgid ""
msgstr ""
"Project-Id-Version: kalarm\n"
"POT-Creation-Date: 2008-08-19 01:19+0200\n"
"PO-Revision-Date: 2008-01-29 20:00+0900\n"
"Last-Translator: Yukiko Bando <ybando@k6.dion.ne.jp>\n"
"Language-Team: Japanese <Kdeveloper@kde.gr.jp>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.4\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: fontcolour.h:42
msgid "Requested font"
msgstr "䜿çšãããã©ã³ã"
#: _translatorinfo.cpp:1
msgid ""
"_: NAME OF TRANSLATORS\n"
"Your names"
msgstr "Noboru Sinohara,Shinichi Tsunoda"
#: _translatorinfo.cpp:3
msgid ""
"_: EMAIL OF TRANSLATORS\n"
"Your emails"
msgstr "shinobo@leo.bekkoame.ne.jp,tsuno@ngy.1st.ne.jp"
#: alarmcalendar.cpp:115
msgid "%1: file name not permitted: %2"
msgstr "%1: ãã¡ã€ã«åã¯èš±å¯ãããŠããŸãã: %2"
#: alarmcalendar.cpp:136
msgid "%1, %2: file names must be different"
msgstr "%1, %2: ãã¡ã€ã«åã¯ç°ãªãå¿
èŠããããŸã"
#: alarmcalendar.cpp:143
#, c-format
msgid "Invalid calendar file name: %1"
msgstr "ç¡å¹ãªã«ã¬ã³ããŒãã¡ã€ã«å: %1"
#: alarmcalendar.cpp:324
#, c-format
msgid ""
"Cannot open calendar:\n"
"%1"
msgstr ""
"ã«ã¬ã³ããŒãéããŸãã:\n"
"%1"
#: alarmcalendar.cpp:341
msgid ""
"Error loading calendar:\n"
"%1\n"
"\n"
"Please fix or delete the file."
msgstr ""
"ã«ã¬ã³ããŒã®èªã¿èŸŒã¿ãšã©ãŒ:\n"
"%1\n"
"\n"
"ãã®ãã¡ã€ã«ãä¿®æ£ãããåé€ããŠãã ããã"
#: alarmcalendar.cpp:386
msgid ""
"Failed to save calendar to\n"
"'%1'"
msgstr ""
"ã«ã¬ã³ããŒã\n"
"'%1' ã«ä¿åã§ããŸããã"
#: alarmcalendar.cpp:395
msgid ""
"Cannot upload calendar to\n"
"'%1'"
msgstr "ã«ã¬ã³ããŒã '%1' ã«ã¢ããããŒãã§ããŸããã"
#: alarmcalendar.cpp:449
msgid "Calendar Files"
msgstr "ã«ã¬ã³ããŒãã¡ã€ã«"
#: alarmcalendar.cpp:471 alarmcalendar.cpp:493
msgid "Could not load calendar '%1'."
msgstr "ã«ã¬ã³ã㌠'%1' ãèªã¿èŸŒããŸããã§ããã"
#: alarmcalendar.cpp:480
#, c-format
msgid ""
"Cannot download calendar:\n"
"%1"
msgstr ""
"ã«ã¬ã³ããŒãããŠã³ããŒãã§ããŸãã:\n"
"%1"
#: alarmevent.cpp:2077
msgid ""
"_: Brief form of 'At Login'\n"
"Login"
msgstr "ãã°ã€ã³"
#: alarmevent.cpp:2077
msgid "At login"
msgstr "ãã°ã€ã³æ"
#: alarmevent.cpp:2085 alarmevent.cpp:2119
#, c-format
msgid ""
"_n: 1 Minute\n"
"%n Minutes"
msgstr "%n å"
#: alarmevent.cpp:2087 alarmevent.cpp:2121
#, c-format
msgid ""
"_n: 1 Hour\n"
"%n Hours"
msgstr "%n æé"
#: alarmevent.cpp:2091 alarmevent.cpp:2123
msgid ""
"_: Hours and Minutes\n"
"%1H %2M"
msgstr "%1 æé %2 å"
#: alarmevent.cpp:2094 alarmevent.cpp:2126
#, c-format
msgid ""
"_n: 1 Day\n"
"%n Days"
msgstr "%n æ¥"
#: alarmevent.cpp:2096 alarmevent.cpp:2127
#, c-format
msgid ""
"_n: 1 Week\n"
"%n Weeks"
msgstr "%n é±é"
#: alarmevent.cpp:2098
#, c-format
msgid ""
"_n: 1 Month\n"
"%n Months"
msgstr "%n ã«æ"
#: alarmevent.cpp:2100
#, c-format
msgid ""
"_n: 1 Year\n"
"%n Years"
msgstr "%n 幎"
#: alarmevent.cpp:2106 alarmevent.cpp:2129 soundpicker.cpp:52
msgid "None"
msgstr "ãªã"
#: alarmlistview.cpp:69 editdlg.cpp:293 editdlg.cpp:357
msgid "Time"
msgstr "æå»"
#: alarmlistview.cpp:70
msgid "Time To"
msgstr "次ã®ã¢ã©ãŒã ãŸã§ã®æé"
#: alarmlistview.cpp:71 sounddlg.cpp:65
msgid "Repeat"
msgstr "ç¹°ãè¿ã"
#: alarmlistview.cpp:74
msgid "Message, File or Command"
msgstr "ã¡ãã»ãŒãžããã¡ã€ã«ããŸãã¯ã³ãã³ã"
#: alarmlistview.cpp:329
msgid "Next scheduled date and time of the alarm"
msgstr "次ã«ã¢ã©ãŒã ãå®è¡ããæ¥ä»/æå»"
#: alarmlistview.cpp:331
msgid "How long until the next scheduled trigger of the alarm"
msgstr "次ã«ã¢ã©ãŒã ãå®è¡ãããŸã§ã®æé"
#: alarmlistview.cpp:333
msgid "How often the alarm recurs"
msgstr "ã¢ã©ãŒã ãç¹°ãè¿ãé »åºŠ"
#: alarmlistview.cpp:335
msgid "Background color of alarm message"
msgstr "ã¢ã©ãŒã ã¡ãã»ãŒãžã®èæ¯è²"
#: alarmlistview.cpp:337
msgid "Alarm type (message, file, command or email)"
msgstr "ã¢ã©ãŒã ã®ã¿ã€ã (ã¡ãã»ãŒãžããã¡ã€ã«ãã³ãã³ãããŸãã¯ã¡ãŒã«)"
#: alarmlistview.cpp:339
msgid ""
"Alarm message text, URL of text file to display, command to execute, or email "
"subject line"
msgstr "ã¢ã©ãŒã ã¡ãã»ãŒãžããã¹ãã衚瀺ããããã¹ãã® URLãå®è¡ã³ãã³ãããŸãã¯ã¡ãŒã«ã®ä»¶åè¡"
#: alarmlistview.cpp:340
msgid "List of scheduled alarms"
msgstr "ã»ããæžã¿ã¢ã©ãŒã ã®ãªã¹ã"
#: alarmlistview.cpp:534
#, c-format
msgid ""
"_: n days\n"
" %1d "
msgstr " %1 æ¥"
#: alarmlistview.cpp:543
msgid ""
"_: hours:minutes\n"
" %1:%2 "
msgstr " %1:%2 "
#: alarmlistview.cpp:546
msgid ""
"_: days hours:minutes\n"
" %1d %2:%3 "
msgstr " %1 æ¥ %2:%3 "
#: alarmtext.cpp:246
msgid ""
"_: Copy-to in email headers\n"
"Cc:"
msgstr "CC:"
#: alarmtext.cpp:247
msgid "Date:"
msgstr "æ¥ä»:"
#: alarmtimewidget.cpp:47
msgid "Time from no&w:"
msgstr "ä»ããã®æé(&W):"
#: alarmtimewidget.cpp:50
msgid ""
"Enter the length of time (in hours and minutes) after the current time to "
"schedule the alarm."
msgstr "ä»ããäœæéäœååŸã«ã¢ã©ãŒã ãå®è¡ããããæå®ããŸãã"
#: alarmtimewidget.cpp:82
msgid ""
"For a simple repetition, enter the date/time of the first occurrence.\n"
"If a recurrence is configured, the start date/time will be adjusted to the "
"first recurrence on or after the entered date/time."
msgstr ""
"åçŽãªå埩ã«ã€ããŠã¯ãæåã«ã¢ã©ãŒã ãå®è¡ããæ¥ä»/æå»ãæå®ããŠãã ããã\n"
"ç¹°ãè¿ããèšå®ããå Žåã¯ãéå§æ¥æã¯æå®ããæ¥æ以éã®æåã®ç¹°ãè¿ãã®æ¥æã«èª¿æŽãããŸãã"
#: alarmtimewidget.cpp:95
msgid "&Defer to date/time:"
msgstr "延æãããæ¥ä»/æå»(&D):"
#: alarmtimewidget.cpp:95
msgid "At &date/time:"
msgstr "æå®ããæ¥ä»/æå»ã«(&D):"
#: alarmtimewidget.cpp:98
msgid "Reschedule the alarm to the specified date and time."
msgstr "æå®ããæ¥ä»/æå»ã«ã¢ã©ãŒã ãåã»ããããŸãã"
#: alarmtimewidget.cpp:99
msgid "Schedule the alarm at the specified date and time."
msgstr "æå®ããæ¥ä»/æå»ã«ã¢ã©ãŒã ãã»ããããŸãã"
#: alarmtimewidget.cpp:105
msgid "Enter the date to schedule the alarm."
msgstr "ã¢ã©ãŒã ãã»ããããæ¥ä»ãæå®ããŸãã"
#: alarmtimewidget.cpp:116
msgid "Enter the time to schedule the alarm."
msgstr "ã¢ã©ãŒã ãã»ããããæå»ãæå®ããŸãã"
#: alarmtimewidget.cpp:130 editdlg.cpp:327
msgid "An&y time"
msgstr "ä»»æã®æå»(&Y)"
#: alarmtimewidget.cpp:133
msgid "Schedule the alarm for any time during the day"
msgstr "ãã®æ¥ã®ä»»æã®æå»ã«ã¢ã©ãŒã ãã»ããããŸãã"
#: alarmtimewidget.cpp:137
msgid "Defer for time &interval:"
msgstr "æå®ããæéã ã延æãã(&I):"
#: alarmtimewidget.cpp:141
msgid "Reschedule the alarm for the specified time interval after now."
msgstr "ä»ããæå®ããæéã ãã¢ã©ãŒã ã延æããŸãã"
#: alarmtimewidget.cpp:142
msgid "Schedule the alarm after the specified time interval from now."
msgstr "ä»ããæå®ããæéåŸã«ã¢ã©ãŒã ãã»ããããŸãã"
#: alarmtimewidget.cpp:239
msgid "Invalid date"
msgstr "ç¡å¹ãªæ¥ä»"
#: alarmtimewidget.cpp:246 alarmtimewidget.cpp:285
msgid "Invalid time"
msgstr "ç¡å¹ãªæé"
#: alarmtimewidget.cpp:260
msgid "Alarm date has already expired"
msgstr "ã¢ã©ãŒã ã®æ¥ã¯æ¢ã«éããŠããŸã"
#: alarmtimewidget.cpp:272
msgid "Alarm time has already expired"
msgstr "ã¢ã©ãŒã ã®æå»ã¯æ¢ã«éããŠããŸã"
#: birthdaydlg.cpp:74
msgid "Import Birthdays From KAddressBook"
msgstr "èªçæ¥ã KAddressBook ããã€ã³ããŒã"
#: birthdaydlg.cpp:85
msgid "Birthday: "
msgstr "èªçæ¥:"
#: birthdaydlg.cpp:88
msgid "Alarm Text"
msgstr "ã¢ã©ãŒã ããã¹ã"
#: birthdaydlg.cpp:90
msgid "Pre&fix:"
msgstr "æ¥é èŸ(&F):"
#: birthdaydlg.cpp:96
msgid ""
"Enter text to appear before the person's name in the alarm message, including "
"any necessary trailing spaces."
msgstr "ã¢ã©ãŒã ã¡ãã»ãŒãžã§äººã®ååã®åã«è¡šç€ºãããããã¹ããå
¥åããŸããå¿
èŠã§ããã°åŸã«ç¶ãã¹ããŒã¹ãå«ããŠãã ããã"
#: birthdaydlg.cpp:99
msgid "S&uffix:"
msgstr "æ¥å°ŸèŸ(&U):"
#: birthdaydlg.cpp:105
msgid ""
"Enter text to appear after the person's name in the alarm message, including "
"any necessary leading spaces."
msgstr "ã¢ã©ãŒã ã¡ãã»ãŒãžã§äººã®ååã®åŸã«è¡šç€ºãããããã¹ããå
¥åããŸããå¿
èŠã§ããã°å
è¡ããã¹ããŒã¹ãå«ããŠãã ããã"
#: birthdaydlg.cpp:108
msgid "Select Birthdays"
msgstr "èªçæ¥ãéžæ"
#: birthdaydlg.cpp:115 templatelistview.cpp:46
msgid "Name"
msgstr "åå"
#: birthdaydlg.cpp:116
msgid "Birthday"
msgstr "èªçæ¥"
#: birthdaydlg.cpp:119
msgid ""
"Select birthdays to set alarms for.\n"
"This list shows all birthdays in KAddressBook except those for which alarms "
"already exist.\n"
"\n"
"You can select multiple birthdays at one time by dragging the mouse over the "
"list, or by clicking the mouse while pressing Ctrl or Shift."
msgstr ""
"ã¢ã©ãŒã ãã»ããããèªçæ¥ãéžæããŠãã ããã\n"
"ãã®ãªã¹ãã¯ãæ¢ã«ã¢ã©ãŒã ãã»ãããããŠãããã®ãé€ããKAddressBook ã®ãã¹ãŠã®èªçæ¥ã衚瀺ããŠããŸãã\n"
"\n"
"ãªã¹ãã®äžãããŠã¹ã§ãã©ãã°ããããCtrl ãŸã㯠Shift ãæŒããªããããŠã¹ãã¯ãªãã¯ããããšã«ãããäžåºŠã«è€æ°ã®èªçæ¥ãéžæã§ããŸãã"
#: birthdaydlg.cpp:124
msgid "Alarm Configuration"
msgstr "ã¢ã©ãŒã ã®èšå®"
#: birthdaydlg.cpp:140
msgid "&Reminder"
msgstr "ãªãã€ã³ã(&R)"
#: birthdaydlg.cpp:141
msgid "Check to display a reminder in advance of the birthday."
msgstr "èªçæ¥ã«å
ç«ã£ãŠãªãã€ã³ãã衚瀺ãããã«ã¯ãããããã§ãã¯ããŠãã ããã"
#: birthdaydlg.cpp:142
msgid ""
"Enter the number of days before each birthday to display a reminder. This is in "
"addition to the alarm which is displayed on the birthday."
msgstr "ãªãã€ã³ãã衚瀺ããèªçæ¥ããšã«ãäœæ¥åã«ãªãã€ã³ãã衚瀺ããããæå®ããŸããããã¯èªçæ¥ã«è¡šç€ºãããã¢ã©ãŒã ãšã¯å¥ã§ãã"
#: birthdaydlg.cpp:160 editdlg.cpp:142
msgid "Special Actions..."
msgstr "è¿œå ã¢ã¯ã·ã§ã³..."
#: birthdaydlg.cpp:171 recurrenceedit.cpp:172
msgid "Sub-Repetition"
msgstr "åäžã¢ã©ãŒã ã®å埩"
#: birthdaydlg.cpp:173
msgid "Set up an additional alarm repetition"
msgstr "ã¢ã©ãŒã ã®ç¹°ãè¿ããè¿œå èšå®ããŸã"
#: birthdaydlg.cpp:211
msgid "Error reading address book"
msgstr "ã¢ãã¬ã¹åž³ã®èªã¿èŸŒã¿ãšã©ãŒ"
#: daemon.cpp:140
msgid "Alarm daemon not found."
msgstr "ã¢ã©ãŒã ããŒã¢ã³ãèŠã€ãããŸããã"
#: daemon.cpp:223
msgid ""
"Cannot enable alarms.\n"
"Installation or configuration error: Alarm Daemon (%1) version is incompatible."
msgstr ""
"ã¢ã©ãŒã ãæå¹ã«ã§ããŸããã\n"
"ã€ã³ã¹ããŒã«ãŸãã¯èšå®ã®åé¡: ã¢ã©ãŒã ããŒã¢ã³ (%1) ã®ããŒãžã§ã³ãéäºæã§ãã"
#: daemon.cpp:237
msgid ""
"Alarms will be disabled if you stop KAlarm.\n"
"(Installation or configuration error: %1 cannot locate %2 executable.)"
msgstr ""
"KKalarm ãåæ¢ãããšã¢ã©ãŒã ãç¡å¹ã«ãªããŸãã\n"
"(ã€ã³ã¹ããŒã«ãŸãã¯èšå®ãšã©ãŒ: %1 㯠%2 å®è¡ãã¡ã€ã«ãèŠã€ããããŸããã)"
#: daemon.cpp:250
msgid ""
"Cannot enable alarms:\n"
"Failed to register with Alarm Daemon (%1)"
msgstr ""
"ã¢ã©ãŒã ãæå¹ã«ã§ããŸãã:\n"
"ã¢ã©ãŒã ããŒã¢ã³ (%1) ã«ç»é²ã§ããŸããã§ããã"
#: daemon.cpp:307
msgid ""
"Cannot enable alarms:\n"
"Failed to start Alarm Daemon (%1)"
msgstr ""
"ã¢ã©ãŒã ãæå¹ã«ã§ããŸãã:\n"
"ã¢ã©ãŒã ããŒã¢ã³ (%1) ã®éå§ã«å€±æããŸããã"
#: daemon.cpp:727
msgid "Enable &Alarms"
msgstr "ã¢ã©ãŒã ãæå¹ã«ãã(&A)"
#: daemon.cpp:730
msgid "Disable &Alarms"
msgstr "ã¢ã©ãŒã ãç¡å¹ã«ãã(&A)"
#: deferdlg.cpp:44
msgid "Cancel &Deferral"
msgstr "延æãåãæ¶ã(&D)"
#: deferdlg.cpp:60
msgid "Defer the alarm until the specified time."
msgstr "æå®ãããæå»ãŸã§ã¢ã©ãŒã ã延æãããŸãã"
#: deferdlg.cpp:61
msgid "Cancel the deferred alarm. This does not affect future recurrences."
msgstr "延æãããã¢ã©ãŒã ãåãæ¶ããŸããããã¯å°æ¥ã®ç¹°ãè¿ãã«ã¯åœ±é¿ããŸããã"
#: deferdlg.cpp:96
msgid "Cannot defer past the alarm's next sub-repetition (currently %1)"
msgstr "ã¢ã©ãŒã ã®æ¬¡ã®å埩ããåŸã«å»¶æããããšã¯ã§ããŸãã (çŸåš %1)"
#: deferdlg.cpp:99
msgid "Cannot defer past the alarm's next recurrence (currently %1)"
msgstr "ã¢ã©ãŒã ã®æ¬¡ã®ç¹°ãè¿ãããåŸã«å»¶æããããšã¯ã§ããŸãã (çŸåš %1)"
#: deferdlg.cpp:102
msgid "Cannot defer past the alarm's next reminder (currently %1)"
msgstr "ã¢ã©ãŒã ã®æ¬¡ã®ãªãã€ã³ãããåŸã«å»¶æããããšã¯ã§ããŸãã (çŸåš %1)"
#: deferdlg.cpp:105
msgid "Cannot defer reminder past the main alarm time (%1)"
msgstr "ãªãã€ã³ããã¡ã€ã³ã¢ã©ãŒã ããåŸã«å»¶æããããšã¯ã§ããŸãã (çŸåš %1)"
#: editdlg.cpp:104
msgid "Choose Text or Image File to Display"
msgstr "衚瀺ããããã¹ããŸãã¯ç»åãã¡ã€ã«ãéžæ"
#: editdlg.cpp:121
msgid "Choose Log File"
msgstr "ãã°ãã¡ã€ã«ãéžæ"
#: editdlg.cpp:135
msgid "&Recurrence - [%1]"
msgstr "ç¹°ãè¿ã(&R) -[%1]"
#: editdlg.cpp:140
msgid "Confirm acknowledgment"
msgstr "äºè§£ã確èªãã"
#: editdlg.cpp:141
msgid "Confirm ac&knowledgment"
msgstr "äºè§£ã確èªãã(&K)"
#: editdlg.cpp:143
msgid "Show in KOrganizer"
msgstr "KOrganizer ã«è¡šç€ºãã"
#: editdlg.cpp:144
msgid "Show in KOr&ganizer"
msgstr "KOrganizer ã«è¡šç€ºãã(&G)"
#: editdlg.cpp:145
msgid "Enter a script"
msgstr "ã¹ã¯ãªãããå
¥å"
#: editdlg.cpp:146
msgid "Enter a scri&pt"
msgstr "ã¹ã¯ãªãããå
¥å(&P)"
#: editdlg.cpp:147
msgid "Execute in terminal window"
msgstr "ã¿ãŒããã«ãŠã£ã³ããŠã§å®è¡"
#: editdlg.cpp:148
msgid "Execute in terminal &window"
msgstr "ã¿ãŒããã«ãŠã£ã³ããŠã§å®è¡(&W)"
#: editdlg.cpp:149
msgid "Exec&ute in terminal window"
msgstr "ã¿ãŒããã«ãŠã£ã³ããŠã§å®è¡(&U)"
#: editdlg.cpp:150
msgid "Lo&g to file"
msgstr "ãã¡ã€ã«ã«ãã°ãèšé²(&G)"
#: editdlg.cpp:151
msgid "Copy email to self"
msgstr "èªåèªèº«ã«ã¡ãŒã«ã®ã³ããŒãéã"
#: editdlg.cpp:152
msgid "Copy &email to self"
msgstr "èªåèªèº«ã«ã¡ãŒã«ã®ã³ããŒãéã(&E)"
#: editdlg.cpp:153
msgid "Copy email to &self"
msgstr "èªåèªèº«ã«ã¡ãŒã«ã®ã³ããŒãéã(&S)"
#: editdlg.cpp:154
msgid ""
"_: 'From' email address\n"
"From:"
msgstr "å·®åºäºº:"
#: editdlg.cpp:155
msgid ""
"_: 'From' email address\n"
"&From:"
msgstr "å·®åºäºº(&F):"
#: editdlg.cpp:156 messagewin.cpp:456
msgid ""
"_: Email addressee\n"
"To:"
msgstr "To:"
#: editdlg.cpp:157 messagewin.cpp:463
msgid ""
"_: Email subject\n"
"Subject:"
msgstr "件å:"
#: editdlg.cpp:158
msgid ""
"_: Email subject\n"
"Sub&ject:"
msgstr "件å(&J):"
#: editdlg.cpp:190
msgid "Load Template..."
msgstr "ãã³ãã¬ãŒããèªã¿èŸŒã¿..."
#: editdlg.cpp:198
msgid "Template name:"
msgstr "ãã³ãã¬ãŒãå:"
#: editdlg.cpp:203
msgid "Enter the name of the alarm template"
msgstr "ã¢ã©ãŒã ãã³ãã¬ãŒãã®ååãå
¥åããŸã"
#: editdlg.cpp:211
msgid "&Alarm"
msgstr "ã¢ã©ãŒã (&A)"
#: editdlg.cpp:230
msgid "Action"
msgstr "ã¢ã¯ã·ã§ã³"
#: editdlg.cpp:238
msgid "Te&xt"
msgstr "ããã¹ã(&X)"
#: editdlg.cpp:241
msgid "If checked, the alarm will display a text message."
msgstr "ãããéžã¶ãšãã¢ã©ãŒã ã¯ããã¹ãã¡ãã»ãŒãžã衚瀺ããŸãã"
#: editdlg.cpp:249
msgid ""
"If checked, the alarm will display the contents of a text or image file."
msgstr "ãããéžã¶ãšãã¢ã©ãŒã ã¯ããã¹ããŸãã¯ç»åãã¡ã€ã«ã衚瀺ããŸãã"
#: editdlg.cpp:254 find.cpp:130
msgid "Co&mmand"
msgstr "ã³ãã³ã(&M)"
#: editdlg.cpp:257
msgid "If checked, the alarm will execute a shell command."
msgstr "ãããéžã¶ãšãã¢ã©ãŒã ã¯ã·ã§ã«ã³ãã³ããå®è¡ããŸãã"
#: editdlg.cpp:262 find.cpp:135
msgid "&Email"
msgstr "ã¡ãŒã«(&E)"
#: editdlg.cpp:265
msgid "If checked, the alarm will send an email."
msgstr "ãããéžã¶ãšãã¢ã©ãŒã ã¯Eã¡ãŒã«ãéä¿¡ããŸãã"
#: editdlg.cpp:276
msgid "Deferred Alarm"
msgstr "ã¢ã©ãŒã ã延æ"
#: editdlg.cpp:278
msgid "Deferred to:"
msgstr "次ã«å»¶æ:"
#: editdlg.cpp:282
msgid "C&hange..."
msgstr "å€æŽ(&H)..."
#: editdlg.cpp:285
msgid "Change the alarm's deferred time, or cancel the deferral"
msgstr "ã¢ã©ãŒã ã®å»¶ææéãå€æŽããŸãã¯å»¶æããã£ã³ã»ã«ããŸãã"
#: editdlg.cpp:301
msgid "&Default time"
msgstr "æšæºæé(&D)"
#: editdlg.cpp:305
msgid ""
"Do not specify a start time for alarms based on this template. The normal "
"default start time will be used."
msgstr "ãã®ãã³ãã¬ãŒãã«åºã¥ãã¢ã©ãŒã ã«ã¯éå§æéãæå®ããŸãããéåžžã®æšæºéå§æéã䜿çšãããŸãã"
#: editdlg.cpp:311
msgid "Time:"
msgstr "æå»:"
#: editdlg.cpp:315
msgid "Specify a start time for alarms based on this template."
msgstr "ãã®ãã³ãã¬ãŒãã«åºã¥ãã¢ã©ãŒã ã®éå§æéãæå®ããŸãã"
#: editdlg.cpp:321
msgid "Enter the start time for alarms based on this template."
msgstr "ãã®ãã³ãã¬ãŒãã«åºã¥ãã¢ã©ãŒã ã®éå§æéãå
¥åããŠãã ããã"
#: editdlg.cpp:331
msgid "Set the '%1' option for alarms based on this template."
msgstr "ãã®ãã³ãã¬ãŒãã«åºã¥ãã¢ã©ãŒã ã® '%1' ãªãã·ã§ã³ãèšå®ããŸãã"
#: editdlg.cpp:331 recurrenceedit.cpp:272
msgid "Any time"
msgstr "ä»»æã®æå»"
#: editdlg.cpp:340
msgid ""
"Set alarms based on this template to start after the specified time interval "
"from when the alarm is created."
msgstr "ãã®ãã³ãã¬ãŒãã«åºã¥ãã¢ã©ãŒã ããäœææããæå®ããæéåŸã«éå§ããããã«èšå®ããŸãã"
#: editdlg.cpp:363
msgid ""
"Enter how long in advance of the main alarm to display a reminder alarm."
msgstr "ã¡ã€ã³ã¢ã©ãŒã ã«å
ç«ã£ãŠãªãã€ã³ãã衚瀺ãããææãæå®ããŸãã"
#: editdlg.cpp:364
msgid "Rem&inder:"
msgstr "ãªãã€ã³ã(&I):"
#: editdlg.cpp:365
msgid ""
"Check to additionally display a reminder in advance of the main alarm time(s)."
msgstr "ã¡ã€ã³ã¢ã©ãŒã ã«å
ç«ã£ãŠãªãã€ã³ãã衚瀺ããã«ã¯ãããããã§ãã¯ããŸãã"
#: editdlg.cpp:388
msgid "Check to copy the alarm into KOrganizer's calendar"
msgstr "ã¢ã©ãŒã ã KOrganizer ã®ã«ã¬ã³ããŒã«ã³ããŒããã«ã¯ãããããã§ãã¯ããŸãã"
#: editdlg.cpp:392
msgid "Schedule the alarm at the specified time."
msgstr "æå®ããæ¥ä»/æå»ã«ã¢ã©ãŒã ãã»ããããŸãã"
#: editdlg.cpp:426
msgid "Enter the text of the alarm message. It may be multi-line."
msgstr "ã¢ã©ãŒã ã¡ãã»ãŒãžã®ããã¹ããå
¥åããŸããè€æ°è¡ãå¯èœã§ãã"
#: editdlg.cpp:434
msgid "Enter the name or URL of a text or image file to display."
msgstr "衚瀺ããããã¹ããŸãã¯ç»åãã¡ã€ã«ã®ååãŸã㯠URL ãå
¥åããŠãã ããã"
#: editdlg.cpp:440 editdlg.cpp:531 sounddlg.cpp:103
msgid "Choose a file"
msgstr "ãã¡ã€ã«ãéžæ"
#: editdlg.cpp:441
msgid "Select a text or image file to display."
msgstr "衚瀺ããããã¹ããŸãã¯ç»åãã¡ã€ã«ãéžæ"
#: editdlg.cpp:454 fontcolour.cpp:80
msgid "&Background color:"
msgstr "èæ¯è²(&B):"
#: editdlg.cpp:457 fontcolour.cpp:85
msgid "Select the alarm message background color"
msgstr "ã¢ã©ãŒã ã¡ãã»ãŒãžã®èæ¯è²ãéžæããŸãã"
#: editdlg.cpp:493
msgid "Check to enter the contents of a script instead of a shell command line"
msgstr "ã·ã§ã«ã³ãã³ãã©ã€ã³ã®ä»£ããã«ã¹ã¯ãªããã®å
容ãå
¥åããã«ã¯ãããããã§ãã¯ããŸãã"
#: editdlg.cpp:497
msgid "Enter a shell command to execute."
msgstr "å®è¡ããã·ã§ã«ã³ãã³ããå
¥åããŸãã"
#: editdlg.cpp:501
msgid "Enter the contents of a script to execute"
msgstr "å®è¡ããã¹ã¯ãªããã®å
容ãå
¥åããŸãã"
#: editdlg.cpp:506
msgid "Command Output"
msgstr "ã³ãã³ãåºå"
#: editdlg.cpp:514
msgid "Check to execute the command in a terminal window"
msgstr "ã¿ãŒããã«ãŠã£ã³ããŠã§ã³ãã³ããå®è¡ããã«ã¯ãããããã§ãã¯ããŸãã"
#: editdlg.cpp:524
msgid "Enter the name or path of the log file."
msgstr "ãã°ãã¡ã€ã«ã®ååãŸãã¯ãã¹ãå
¥åããŸãã"
#: editdlg.cpp:532
msgid "Select a log file."
msgstr "ãã°ãã¡ã€ã«ãéžæããŸãã"
#: editdlg.cpp:538
msgid ""
"Check to log the command output to a local file. The output will be appended to "
"any existing contents of the file."
msgstr "ããŒã«ã«ãã¡ã€ã«ã«ã³ãã³ãåºåãèšé²ããã«ã¯ãããããã§ãã¯ããŸããåºåã¯ãã¡ã€ã«ã®æ¢åã®å
容ã«è¿œå ãããŸãã"
#: editdlg.cpp:546
msgid "Check to discard command output."
msgstr "ã³ãã³ãåºåãç Žæ£ããã«ã¯ãããããã§ãã¯ããŸãã"
#: editdlg.cpp:579
msgid ""
"Your email identity, used to identify you as the sender when sending email "
"alarms."
msgstr "ã¡ãŒã«ã¢ã©ãŒã éä¿¡æã«éä¿¡è
ãšããŠäœ¿çšããããªãã®ã¡ãŒã«æ
å ±ãæå®ããŸãã"
#: editdlg.cpp:591
msgid ""
"Enter the addresses of the email recipients. Separate multiple addresses by "
"commas or semicolons."
msgstr "ã¡ãŒã«ãåãåãã¢ãã¬ã¹ãå
¥åããŸããè€æ°ã®ã¢ãã¬ã¹ã¯ã«ã³ããã»ãã³ãã³ã§åºåã£ãŠãã ããã"
#: editdlg.cpp:599
msgid "Open address book"
msgstr "ã¢ãã¬ã¹åž³ãéã"
#: editdlg.cpp:600
msgid "Select email addresses from your address book."
msgstr "ã¢ãã¬ã¹åž³ããã¡ãŒã«ã¢ãã¬ã¹ãéžæããŸãã"
#: editdlg.cpp:611
msgid "Enter the email subject."
msgstr "ã¡ãŒã«ã®ä»¶åãå
¥åããŸãã"
#: editdlg.cpp:616
msgid "Enter the email message."
msgstr "ã¡ãŒã«ã®ã¡ãã»ãŒãžãå
¥åããŸãã"
#: editdlg.cpp:621
msgid "Attachment&s:"
msgstr "æ·»ä»ãã¡ã€ã«(&S):"
#: editdlg.cpp:633
msgid "Files to send as attachments to the email."
msgstr "ã¡ãŒã«ã«æ·»ä»ããŠéä¿¡ãããã¡ã€ã«ãæå®ããŸãã"
#: editdlg.cpp:637
msgid "Add..."
msgstr "è¿œå ..."
#: editdlg.cpp:639
msgid "Add an attachment to the email."
msgstr "ã¡ãŒã«ã«æ·»ä»ãã¡ã€ã«ãè¿œå ããŸãã"
#: editdlg.cpp:642
msgid "Remo&ve"
msgstr "åé€(&V)"
#: editdlg.cpp:644
msgid "Remove the highlighted attachment from the email."
msgstr "éžæãããŠããæ·»ä»ãã¡ã€ã«ãã¡ãŒã«ããåé€ããŸãã"
#: editdlg.cpp:651
msgid "If checked, the email will be blind copied to you."
msgstr "ã¡ãŒã«ã®ãã©ã€ã³ãã³ããŒãåãåãã«ã¯ãããããã§ãã¯ããŸãã"
#: editdlg.cpp:979
msgid "Check to be prompted for confirmation when you acknowledge the alarm."
msgstr "ãã§ãã¯ãå
¥ãããšãã¢ã©ãŒã ãäºè§£ããåŸã«ããäžåºŠç¢ºèªãæ±ããããŸãã"
#: editdlg.cpp:1350
msgid "You must enter a name for the alarm template"
msgstr "ã¢ã©ãŒã ãã³ãã¬ãŒãã®ååãå
¥åããŠãã ãã"
#: editdlg.cpp:1355
msgid "Template name is already in use"
msgstr "ãã³ãã¬ãŒãåã¯æ¢ã«äœ¿çšãããŠããŸã"
#: editdlg.cpp:1398
msgid "Recurrence has already expired"
msgstr "ç¹°ãè¿ãã®æéã¯æ¢ã«çµäºããŸããã"
#: editdlg.cpp:1426
msgid ""
"Reminder period must be less than the recurrence interval, unless '%1' is "
"checked."
msgstr "ã%1ããéžæããŠããªãå Žåããªãã€ã³ãæéã¯ç¹°ãè¿ãã®ééãããçããªããã°ãªããŸããã"
#: editdlg.cpp:1441
msgid ""
"The duration of a repetition within the recurrence must be less than the "
"recurrence interval minus any reminder period"
msgstr "åäžã¢ã©ãŒã ã®å埩ç¶ç¶æéã¯ãç¹°ãè¿ãã®ééãããªãã€ã³ãæéãå·®ãåŒãããã®ããçããªããã°ãªããŸããã"
#: editdlg.cpp:1448
msgid ""
"For a repetition within the recurrence, its period must be in units of days or "
"weeks for a date-only alarm"
msgstr "åäžã¢ã©ãŒã ã®å埩ç¶ç¶æéã¯ãæ¥ä»ã®ã¿ã®ã¢ã©ãŒã ã®å Žåãæ¥ãé±ã®åäœã§ãªããã°ãªããŸããã"
#: editdlg.cpp:1470
msgid "Do you really want to send the email now to the specified recipient(s)?"
msgstr "æ¬åœã«ä»ããæå®ããåå人ã«ã¡ãŒã«ãéä¿¡ããŸããïŒ"
#: editdlg.cpp:1471
msgid "Confirm Email"
msgstr "ã¡ãŒã«éä¿¡ã®ç¢ºèª"
#: editdlg.cpp:1471
msgid "&Send"
msgstr "éä¿¡(&S)"
#: editdlg.cpp:1482
#, c-format
msgid ""
"Command executed:\n"
"%1"
msgstr ""
"ã³ãã³ããå®è¡ããŸãã:\n"
"%1"
#: editdlg.cpp:1489
#, c-format
msgid ""
"\n"
"Bcc: %1"
msgstr ""
"\n"
"BCC: %1"
#: editdlg.cpp:1490
msgid ""
"Email sent to:\n"
"%1%2"
msgstr ""
"ã¡ãŒã«ã以äžã«éä¿¡ããŸãã:\n"
"%1%2"
#: editdlg.cpp:1550 messagewin.cpp:1541
msgid "Defer Alarm"
msgstr "ã¢ã©ãŒã ã®å»¶æ"
#: editdlg.cpp:1704
msgid ""
"Log file must be the name or path of a local file, with write permission."
msgstr "ãã°ãã¡ã€ã«ã¯æžã蟌ã¿æš©éã®ããããŒã«ã«ãã¡ã€ã«ã®ååãŸãã¯ãã¹ã§ãªãã°ãªããŸããã"
#: editdlg.cpp:1730
#, c-format
msgid ""
"Invalid email address:\n"
"%1"
msgstr ""
"ç¡å¹ãªã¡ãŒã«ã¢ãã¬ã¹:\n"
"%1"
#: editdlg.cpp:1737
msgid "No email address specified"
msgstr "ã¡ãŒã«ã¢ãã¬ã¹ãæå®ãããŠããŸãã"
#: editdlg.cpp:1754
#, c-format
msgid ""
"Invalid email attachment:\n"
"%1"
msgstr ""
"ç¡å¹ãªã¡ãŒã«æ·»ä»ãã¡ã€ã«:\n"
"%1"
#: editdlg.cpp:1783
msgid "Display the alarm message now"
msgstr "ã¢ã©ãŒã ã¡ãã»ãŒãžãä»ãã衚瀺"
#: editdlg.cpp:1800
msgid "Display the file now"
msgstr "ãã¡ã€ã«ãä»ãã衚瀺"
#: editdlg.cpp:1812
msgid "Execute the specified command now"
msgstr "æå®ããã³ãã³ããä»ããå®è¡"
#: editdlg.cpp:1823
msgid "Send the email to the specified addressees now"
msgstr "æå®ããã¢ãã¬ã¹ã«ä»ããã¡ãŒã«ãéä¿¡"
#: editdlg.cpp:1897
msgid "Choose File to Attach"
msgstr "æ·»ä»ãããã¡ã€ã«ãéžæ"
#: editdlg.cpp:2004
msgid "Please select a file to display"
msgstr "衚瀺ãããã¡ã€ã«ãéžæããŠãã ããã"
#: editdlg.cpp:2006
msgid ""
"%1\n"
"not found"
msgstr ""
"%1\n"
"ãèŠã€ãããŸãã"
#: editdlg.cpp:2007
msgid ""
"%1\n"
"is a folder"
msgstr ""
"%1\n"
"ã¯ãã©ã«ãã§ã"
#: editdlg.cpp:2008
msgid ""
"%1\n"
"is not readable"
msgstr ""
"%1\n"
"ã¯èªããŸãã"
#: editdlg.cpp:2009
msgid ""
"%1\n"
"appears not to be a text or image file"
msgstr ""
"%1\n"
"ããã¹ããŸãã¯ç»åãã¡ã€ã«ã§ã¯ãªãããã§ã"
#: find.cpp:97
msgid "Alarm Type"
msgstr "ã¢ã©ãŒã ã¿ã€ã"
#: find.cpp:104
msgid "Acti&ve"
msgstr "æå¹(&V)"
#: find.cpp:106
msgid "Check to include active alarms in the search."
msgstr "æ€çŽ¢ã«çŸåšæå¹ã«ãªã£ãŠããã¢ã©ãŒã ãå«ããŸãã"
#: find.cpp:109
msgid "Ex&pired"
msgstr "æéåã(&P)"
#: find.cpp:112
msgid ""
"Check to include expired alarms in the search. This option is only available if "
"expired alarms are currently being displayed."
msgstr "æ€çŽ¢ã«æéåãã®ã¢ã©ãŒã ãå«ããŸãããã®ãªãã·ã§ã³ã¯æéåãã®ã¢ã©ãŒã ãçŸåšè¡šç€ºãããŠããå Žåã«ã®ã¿å©çšå¯èœã§ãã"
#: find.cpp:120
msgid "Text"
msgstr "ããã¹ã"
#: find.cpp:122
msgid "Check to include text message alarms in the search."
msgstr "æ€çŽ¢ã«ããã¹ãã¡ãã»ãŒãžã¢ã©ãŒã ãå«ããŸãã"
#: find.cpp:125
msgid "Fi&le"
msgstr "ãã¡ã€ã«(&L)"
#: find.cpp:127
msgid "Check to include file alarms in the search."
msgstr "æ€çŽ¢ã«ãã¡ã€ã«ã¢ã©ãŒã ãå«ããŸãã"
#: find.cpp:132
msgid "Check to include command alarms in the search."
msgstr "æ€çŽ¢ã«ã³ãã³ãã¢ã©ãŒã ãå«ããŸãã"
#: find.cpp:137
msgid "Check to include email alarms in the search."
msgstr "æ€çŽ¢ã«ã¡ãŒã«ã¢ã©ãŒã ãå«ããŸãã"
#: find.cpp:225
msgid "No alarm types are selected to search"
msgstr "æ€çŽ¢ããã¢ã©ãŒã ã¿ã€ããéžæãããŠããŸããã"
#: find.cpp:366
msgid ""
"End of alarm list reached.\n"
"Continue from the beginning?"
msgstr ""
"ã¢ã©ãŒã ãªã¹ãã®æ«å°Ÿã§ãã\n"
"å
é ããç¶ããŸããïŒ"
#: find.cpp:367
msgid ""
"Beginning of alarm list reached.\n"
"Continue from the end?"
msgstr ""
"ã¢ã©ãŒã ãªã¹ãã®å
é ã§ãã\n"
"æ«å°Ÿããç¶ããŸããïŒ"
#: fontcolour.cpp:68
msgid "&Foreground color:"
msgstr "åæ¯è²(&F):"
#: fontcolour.cpp:73
msgid "Select the alarm message foreground color"
msgstr "ã¢ã©ãŒã ã¡ãã»ãŒãžã®åæ¯è²ãéžæããŸãã"
#: fontcolour.cpp:91
msgid "Add Co&lor..."
msgstr "è²ãè¿œå (&L)..."
#: fontcolour.cpp:94
msgid "Choose a new color to add to the color selection list."
msgstr "è²éžæãªã¹ãã«è¿œå ããæ°ããè²ãéžæããŸãã"
#: fontcolour.cpp:97
msgid "&Remove Color"
msgstr "è²ãåé€(&R)"
#: fontcolour.cpp:101
msgid ""
"Remove the color currently shown in the background color chooser, from the "
"color selection list."
msgstr "çŸåšèæ¯è²ãšããŠè¡šç€ºãããŠããè²ãè²éžæãªã¹ãããåé€ããŸãã"
#: fontcolour.cpp:108
msgid "Use &default font"
msgstr "æšæºãã©ã³ãã䜿ã(&D)"
#: fontcolour.cpp:112
msgid ""
"Check to use the default font current at the time the alarm is displayed."
msgstr "ã¢ã©ãŒã ã®è¡šç€ºã«æšæºãã©ã³ãã䜿çšããã«ã¯ãããããã§ãã¯ããŸãã"
#: fontcolourbutton.cpp:48
msgid "Font && Co&lor..."
msgstr "ãã©ã³ããšè²(&L)..."
#: fontcolourbutton.cpp:52
msgid ""
"Choose the font, and foreground and background color, for the alarm message."
msgstr "ã¢ã©ãŒã ã¡ãã»ãŒãžã®ãã©ã³ããåæ¯è²ãèæ¯è²ãéžæããŸãã"
#: fontcolourbutton.cpp:59
msgid "The Quick Brown Fox Jumps Over The Lazy Dog"
msgstr "The Quick Brown Fox Jumps Over The Lazy Dog"
#: fontcolourbutton.cpp:63
msgid ""
"This sample text illustrates the current font and color settings. You may edit "
"it to test special characters."
msgstr "ãã®ãµã³ãã«ããã¹ãã¯çŸåšã®ãã©ã³ããšè²ã®èšå®ã瀺ããŠããŸããããã¹ããç·šéããŠä»ã®æåã§ãã¹ãããããšãã§ããŸãã"
#: fontcolourbutton.cpp:100
msgid "Choose Alarm Font & Color"
msgstr "ã¢ã©ãŒã ã®ãã©ã³ããšè²ãéžæ"
#: functions.cpp:505
msgid "Error saving alarms"
msgstr "ã¢ã©ãŒã ã®ä¿åãšã©ãŒ"
#: functions.cpp:506
msgid "Error saving alarm"
msgstr "ã¢ã©ãŒã ã®ä¿åãšã©ãŒ"
#: functions.cpp:509
msgid "Error deleting alarms"
msgstr "ã¢ã©ãŒã ã®åé€ãšã©ãŒ"
#: functions.cpp:510
msgid "Error deleting alarm"
msgstr "ã¢ã©ãŒã ã®åé€ãšã©ãŒ"
#: functions.cpp:513
msgid "Error saving reactivated alarms"
msgstr "åæå¹åãããã¢ã©ãŒã ã®ä¿åãšã©ãŒ"
#: functions.cpp:514
msgid "Error saving reactivated alarm"
msgstr "åæå¹åãããã¢ã©ãŒã ã®ä¿åãšã©ãŒ"
#: functions.cpp:517
msgid "Error saving alarm template"
msgstr "ã¢ã©ãŒã ãã³ãã¬ãŒãã®ä¿åãšã©ãŒ"
#: functions.cpp:532
msgid "Unable to show alarms in KOrganizer"
msgstr "KOrganizer ã«ã¢ã©ãŒã ã衚瀺ã§ããŸãã"
#: functions.cpp:533
msgid "Unable to show alarm in KOrganizer"
msgstr "KOrganizer ã«ã¢ã©ãŒã ã衚瀺ã§ããŸãã"
#: functions.cpp:536
msgid "Unable to update alarm in KOrganizer"
msgstr "KOrganizer ã§ã¢ã©ãŒã ãæŽæ°ã§ããŸãã"
#: functions.cpp:539
msgid "Unable to delete alarms from KOrganizer"
msgstr "KOrganizer ããã¢ã©ãŒã ãåé€ã§ããŸãã"
#: functions.cpp:540
msgid "Unable to delete alarm from KOrganizer"
msgstr "KOrganizer ããã¢ã©ãŒã ãåé€ã§ããŸãã"
#: functions.cpp:634
msgid ""
"_: Please set the 'From' email address...\n"
"%1\n"
"Please set it in the Preferences dialog."
msgstr ""
"%1\n"
"èšå®ãã€ã¢ãã°ã§èšå®ããŠãã ããã"
#: functions.cpp:638
msgid ""
"Alarms are currently disabled.\n"
"Do you want to enable alarms now?"
msgstr ""
"ã¢ã©ãŒã ã¯çŸåšç¡å¹ã«ãªã£ãŠããŸãã\n"
"æå¹ã«ããŸããïŒ"
#: functions.cpp:639
msgid "Enable"
msgstr "æå¹ã«ãã"
#: functions.cpp:639
msgid "Keep Disabled"
msgstr "ç¡å¹ã«ããŠãã"
#: functions.cpp:706
msgid ""
"Unable to start KMail\n"
"(%1)"
msgstr ""
"KMail ãèµ·åã§ããŸãã\n"
"(%1)"
#: kalarmapp.cpp:332
msgid "%1 requires %2, %3 or %4"
msgstr "%1 㯠%2, %3, %4 ã®ãããããå¿
èŠãšããŸã"
#: kalarmapp.cpp:334
msgid "%1, %2, %3 mutually exclusive"
msgstr "%1, %2, %3 ã¯äºãã«æä»çã§ã"
#: kalarmapp.cpp:344
msgid "%1: wrong calendar file"
msgstr "%1: äžæ£ãªã«ã¬ã³ããŒãã¡ã€ã«"
#: kalarmapp.cpp:372
msgid "%1: Event %2 not found, or not editable"
msgstr "%1: ã€ãã³ã %2 ã¯ãèŠã€ãããªããç·šéäžå¯ã§ã"
#: kalarmapp.cpp:404 kalarmapp.cpp:406 kalarmapp.cpp:416 kalarmapp.cpp:508
#: kalarmapp.cpp:510 kalarmapp.cpp:519 kalarmapp.cpp:585 kalarmapp.cpp:587
#: kalarmapp.cpp:589 kalarmapp.cpp:609 kalarmapp.cpp:619 kalarmapp.cpp:622
#: kalarmapp.cpp:624
msgid "%1 incompatible with %2"
msgstr "%1 㯠%2 ãšäžæŽåã§ã"
#: kalarmapp.cpp:408
#, c-format
msgid "message incompatible with %1"
msgstr "ã¡ãã»ãŒãžã¯ %1 ãšäžæŽåã§ã"
#: kalarmapp.cpp:438
msgid "%1: invalid email address"
msgstr "%1: ç¡å¹ãªã¡ãŒã«ã¢ãã¬ã¹ã§ã"
#: kalarmapp.cpp:456 kalarmapp.cpp:458 kalarmapp.cpp:460 kalarmapp.cpp:462
#: kalarmapp.cpp:528 kalarmapp.cpp:569 kalarmapp.cpp:571 kalarmapp.cpp:642
msgid "%1 requires %2"
msgstr "%1 ã«ã¯ %2 ãå¿
èŠã§ã"
#: kalarmapp.cpp:481 kalarmapp.cpp:492 kalarmapp.cpp:499 kalarmapp.cpp:525
#: kalarmapp.cpp:534 kalarmapp.cpp:546 kalarmapp.cpp:597 kalarmapp.cpp:628
#: kalarmapp.cpp:639
msgid "Invalid %1 parameter"
msgstr "ç¡å¹ãª %1 ãã©ã¡ãŒã¿"
#: kalarmapp.cpp:536
msgid "%1 earlier than %2"
msgstr "%1 㯠%2 ããæ©ãã§ã"
#: kalarmapp.cpp:548 kalarmapp.cpp:630
msgid "Invalid %1 parameter for date-only alarm"
msgstr "æ¥ä»ã®ã¿ã®ã¢ã©ãŒã ã«å¯Ÿããç¡å¹ãª %1 ãã©ã¡ãŒã¿"
#: kalarmapp.cpp:555
msgid "Invalid %1 and %2 parameters: repetition is longer than %3 interval"
msgstr "ç¡å¹ãª %1 ããã³ %2 ãã©ã¡ãŒã¿: å埩æéã %3 ééãããé·ããªã£ãŠããŸã"
#: kalarmapp.cpp:604
msgid "%1 requires %2 or %3"
msgstr "%1 ã«ã¯ %2 ã %3 ãå¿
èŠã§ã"
#: kalarmapp.cpp:611
msgid "%1 requires speech synthesis to be configured using KTTSD"
msgstr "%1 ã«ã¯é³å£°åæã KTTSD ãçšããŠèšå®ãããŠããããšãå¿
èŠã§ãã"
#: kalarmapp.cpp:731
msgid ": option(s) only valid with a message/%1/%2"
msgstr ": ãªãã·ã§ã³ã¯ãã¡ãã»ãŒãž/%1/%2 ã®å Žåã®ã¿æå¹ã§ã"
#: kalarmapp.cpp:751
msgid ""
"\n"
"Use --help to get a list of available command line options.\n"
msgstr ""
"\n"
"ã³ãã³ãã©ã€ã³ã§äœ¿çšå¯èœãªãªãã·ã§ã³ã«ã€ããŠã¯ --help ãåç
§ããŠãã ããã\n"
#: kalarmapp.cpp:824
msgid ""
"Quitting will disable alarms\n"
"(once any alarm message windows are closed)."
msgstr ""
"çµäºãããšã¢ã©ãŒã ãç¡å¹ã«ãªããŸãã\n"
"(ã¢ã©ãŒã ã¡ãã»ãŒãžãŠã£ã³ããŠãéããã)ã"
#: kalarmapp.cpp:1817
msgid "Error creating temporary script file"
msgstr "äžæã¹ã¯ãªãããã¡ã€ã«ã®äœæãšã©ãŒ"
#: kalarmapp.cpp:1908
msgid "Pre-alarm action:"
msgstr "ã¢ã©ãŒã åã®ã¢ã¯ã·ã§ã³:"
#: kalarmapp.cpp:1910
msgid "Post-alarm action:"
msgstr "ã¢ã©ãŒã åŸã®ã¢ã¯ã·ã§ã³:"
#: kamail.cpp:86
msgid ""
"A 'From' email address must be configured in order to execute email alarms."
msgstr "ã¡ãŒã«ã¢ã©ãŒã ã䜿çšããã«ã¯ãå·®åºäººã¡ãŒã«ã¢ãã¬ã¹ãèšå®ããå¿
èŠããããŸãã"
#: kamail.cpp:89
msgid ""
"_: KMail folder name: this should be translated the same as in kmail\n"
"sent-mail"
msgstr "éä¿¡æžã¿"
#: kamail.cpp:118
msgid ""
"Invalid 'From' email address.\n"
"KMail identity '%1' not found."
msgstr ""
"ç¡å¹ãªå·®åºäººã¡ãŒã«ã¢ãã¬ã¹ã\n"
"KMail å人æ
å ± \"%1\" ãèŠã€ãããŸããã"
#: kamail.cpp:125
msgid ""
"Invalid 'From' email address.\n"
"Email identity '%1' has no email address"
msgstr ""
"ç¡å¹ãªå·®åºäººã¡ãŒã«ã¢ãã¬ã¹ã\n"
"å人æ
å ± \"%1\" ã«ã¡ãŒã«ã¢ãã¬ã¹ããããŸããã"
#: kamail.cpp:134
msgid ""
"No 'From' email address is configured (no default KMail identity found)\n"
"Please set it in KMail or in the KAlarm Preferences dialog."
msgstr ""
"å·®åºäººã¡ãŒã«ã¢ãã¬ã¹ãèšå®ãããŠããŸãã (æšæºã® KMail å人æ
å ±ãèŠã€ãããŸãã)ã\n"
"KMail ãŸã㯠KAlarm èšå®ãã€ã¢ãã°ã§èšå®ããŠãã ããã"
#: kamail.cpp:137
msgid ""
"No 'From' email address is configured.\n"
"Please set it in the Trinity Control Center or in the KAlarm Preferences dialog."
msgstr ""
"å·®åºäººã¡ãŒã«ã¢ãã¬ã¹ãèšå®ãããŠããŸããã\n"
"TDE ã³ã³ãããŒã«ã»ã³ã¿ãŒãŸã㯠KAlarm èšå®ãã€ã¢ãã°ã§èšå®ããŠãã ããã"
#: kamail.cpp:141
msgid ""
"No 'From' email address is configured.\n"
"Please set it in the KAlarm Preferences dialog."
msgstr ""
"å·®åºäººã¡ãŒã«ã¢ãã¬ã¹ãèšå®ãããŠããŸããã\n"
"KAlarm èšå®ãã€ã¢ãã°ã§èšå®ããŠãã ããã"
#: kamail.cpp:170
msgid "%1 not found"
msgstr "%1 ãèŠã€ãããŸãã"
#: kamail.cpp:272 kamail.cpp:327
msgid "Error calling KMail"
msgstr "KMail ã®åŒã³åºããšã©ãŒ"
#: kamail.cpp:440
#, c-format
msgid ""
"Error attaching file:\n"
"%1"
msgstr "ãã¡ã€ã« %1 ã®æ·»ä»ãšã©ãŒ:"
#: kamail.cpp:449
#, c-format
msgid ""
"Attachment not found:\n"
"%1"
msgstr ""
"æ·»ä»ãã¡ã€ã«ãèŠã€ãããŸãã:\n"
"%1"
#: kamail.cpp:540
msgid "An email has been queued to be sent by KMail"
msgstr "ã¡ãŒã«ã KMail ã®éä¿¡åŸ
ã¡ã«è¿œå ããŸãã"
#: kamail.cpp:541
msgid "An email has been queued to be sent"
msgstr "ã¡ãŒã«ãéä¿¡åŸ
ã¡ã«è¿œå ããŸãã"
#: kamail.cpp:924
msgid "Failed to send email"
msgstr "ã¡ãŒã«éä¿¡ã«å€±æ"
#: kamail.cpp:925
msgid "Error copying sent email to KMail %1 folder"
msgstr "éä¿¡ããã¡ãŒã«ã KMail ã®ã%1ããã©ã«ããžã³ããŒã§ããŸããã§ãã"
#: latecancel.cpp:35
msgid "Cancel if late"
msgstr "é
ããå Žåã¯åãæ¶ã"
#: latecancel.cpp:36
msgid "Ca&ncel if late"
msgstr "é
ããå Žåã¯åãæ¶ã(&N)"
#: latecancel.cpp:37
msgid "Auto-close window after this time"
msgstr "ãã®æéã®åŸããŠã£ã³ããŠãèªåçã«éãã"
#: latecancel.cpp:38
msgid "Auto-close window after late-cancelation time"
msgstr "é
延ã«ããåãæ¶ãæéã®åŸããŠã£ã³ããŠãèªåçã«éããŸã"
#: latecancel.cpp:39
msgid "Auto-close w&indow after late-cancelation time"
msgstr "é
延ã«ããåãæ¶ãæéã®åŸããŠã£ã³ããŠãèªåçã«éãã(&I)"
#: latecancel.cpp:48
msgid ""
"If checked, the alarm will be canceled if it cannot be triggered within the "
"specified period after its scheduled time. Possible reasons for not triggering "
"include your being logged off, X not running, or the alarm daemon not running.\n"
"\n"
"If unchecked, the alarm will be triggered at the first opportunity after its "
"scheduled time, regardless of how late it is."
msgstr ""
"ãã®ãªãã·ã§ã³ãæå¹ã«ãããšãäºå®ãããæå»ãéããŠæå®ãããæéå
ã«å®è¡ã§ããªãã£ãã¢ã©ãŒã ã¯åãæ¶ãããŸããå®è¡ã§ããªãçç±ãšããŠã¯ããã°ã€ã³ããŠããªãã£ã"
"ãX ãç«ã¡äžãã£ãŠããªãã£ããã¢ã©ãŒã ããŒã¢ã³ãå®è¡ãããŠããªãã£ãããªã©ãèããããŸãã\n"
"\n"
"æå¹ã«ãªã£ãŠããªãå Žåã¯ãã©ãã ãé
ããŠããŠããã¢ã©ãŒã ã¯äºå®ãããæå»ä»¥éã®æåã®æ©äŒã«å®è¡ãããŸãã"
#: latecancel.cpp:72
msgid ""
"_: Cancel if late by 10 minutes\n"
"Ca&ncel if late by"
msgstr "次ã®æé以äžé
ããå Žåã¯åãæ¶ã(&N)"
#: latecancel.cpp:73
msgid "Enter how late will cause the alarm to be canceled"
msgstr "ã©ããããé
ãããã¢ã©ãŒã ãåãæ¶ãããæå®ããŸãã"
#: latecancel.cpp:83
msgid ""
"Automatically close the alarm window after the expiry of the late-cancelation "
"period"
msgstr "é
延ã«ããåãæ¶ãæéãçµéããããèªåçã«ã¢ã©ãŒã ãŠã£ã³ããŠãéããŸã"
#: main.cpp:37
msgid "Prompt for confirmation when alarm is acknowledged"
msgstr "ã¢ã©ãŒã ãäºè§£ããåŸã«å床確èªãä¿ã"
#: main.cpp:39
msgid "Attach file to email (repeat as needed)"
msgstr "ã¡ãŒã«ã«ãã¡ã€ã«ãæ·»ä» (å¿
èŠãªãç¹°ãè¿ã)"
#: main.cpp:40
msgid "Auto-close alarm window after --late-cancel period"
msgstr "é
延ã«ããåãæ¶ãæéãçµéããããèªåçã«ã¢ã©ãŒã ãŠã£ã³ããŠãéãã"
#: main.cpp:41
msgid "Blind copy email to self"
msgstr "èªåèªèº«ã«ã¡ãŒã«ã®ãã©ã€ã³ãã³ããŒãéã"
#: main.cpp:43
msgid "Beep when message is displayed"
msgstr "ã¡ãã»ãŒãžè¡šç€ºæã«ããŒã"
#: main.cpp:46
msgid "Message background color (name or hex 0xRRGGBB)"
msgstr "ã¡ãã»ãŒãžã®èæ¯è² (ååãŸãã¯16é²è¡šçŸ 0xRRGGBB)"
#: main.cpp:49
msgid "Message foreground color (name or hex 0xRRGGBB)"
msgstr "ã¡ãã»ãŒãžåæ¯è² (è²åãŸãã¯8é² 0xRRGGBB 圢åŒ)"
#: main.cpp:50
msgid "URL of calendar file"
msgstr "ã«ã¬ã³ããŒãã¡ã€ã«ã® URL"
#: main.cpp:51
msgid "Cancel alarm with the specified event ID"
msgstr "æå®ãããã€ãã³ã ID ã®ã¡ãã»ãŒãžããã£ã³ã»ã«"
#: main.cpp:53
msgid "Disable the alarm"
msgstr "ã¢ã©ãŒã ãç¡å¹ã«ãã"
#: main.cpp:55
msgid "Execute a shell command line"
msgstr "ã·ã§ã«ã³ãã³ãã©ã€ã³ãå®è¡"
#: main.cpp:56
msgid "Display the alarm edit dialog to edit the specified alarm"
msgstr "æå®ãããã¢ã©ãŒã ãç·šéããããã«ã¢ã©ãŒã ç·šéãã€ã¢ãã°ã衚瀺"
#: main.cpp:58
msgid "Display the alarm edit dialog to edit a new alarm"
msgstr "æ°ããã¢ã©ãŒã ãç·šéããããã«ã¢ã©ãŒã ç·šéãã€ã¢ãã°ã衚瀺"
#: main.cpp:59
msgid "Display the alarm edit dialog, preset with a template"
msgstr "ã¢ã©ãŒã ç·šéãã€ã¢ãã°ã衚瀺 (ãã³ãã¬ãŒãã䜿çš)"
#: main.cpp:61
msgid "File to display"
msgstr "衚瀺ãããã¡ã€ã«"
#: main.cpp:63
msgid "KMail identity to use as sender of email"
msgstr "ã¡ãŒã«ã®éä¿¡è
ãšããŠäœ¿çšãã KMail ã®å人æ
å ±"
#: main.cpp:64
msgid "Trigger or cancel alarm with the specified event ID"
msgstr "æå®ãããã€ãã³ã ID ã®ã¢ã©ãŒã ãå®è¡ãŸãã¯ãã£ã³ã»ã«"
#: main.cpp:66
msgid "Interval between alarm repetitions"
msgstr "ç¹°ãè¿ãã¢ã©ãŒã ã®éé"
#: main.cpp:68
msgid "Show alarm as an event in KOrganizer"
msgstr "KOrganizer ã®ã€ãã³ããšããŠã¢ã©ãŒã ã衚瀺"
#: main.cpp:70
msgid "Cancel alarm if more than 'period' late when triggered"
msgstr "æéãéããŠå®è¡ã§ããªãã£ãã¢ã©ãŒã ã¯ãã£ã³ã»ã«ãã"
#: main.cpp:72
msgid "Repeat alarm at every login"
msgstr "ãã°ã€ã³æã«ã¢ã©ãŒã ãç¹°ãè¿ã"
#: main.cpp:74
msgid "Send an email to the given address (repeat as needed)"
msgstr "æå®ããã¢ãã¬ã¹ã«ã¡ãŒã«ãéä¿¡ (å¿
èŠãªãç¹°ãè¿ã)"
#: main.cpp:76
msgid "Audio file to play once"
msgstr "äžåºŠåçãããªãŒãã£ãªãã¡ã€ã«"
#: main.cpp:79
msgid "Audio file to play repeatedly"
msgstr "ç¹°ãè¿ãåçãããªãŒãã£ãªãã¡ã€ã«"
#: main.cpp:81
msgid "Specify alarm recurrence using iCalendar syntax"
msgstr "iCalendar ææ³ãçšããŠã¢ã©ãŒã ã®ç¹°ãè¿ããæå®ãã"
#: main.cpp:83
msgid "Display reminder in advance of alarm"
msgstr "ã¢ã©ãŒã ã«å
ç«ã¡ãªãã€ã³ãã衚瀺"
#: main.cpp:84
msgid "Display reminder once, before first alarm recurrence"
msgstr "æåã®ã¢ã©ãŒã ã«å
ç«ã¡ãäžåºŠã ããªãã€ã³ãã衚瀺"
#: main.cpp:86
msgid "Number of times to repeat alarm (including initial occasion)"
msgstr "ã¢ã©ãŒã ãç¹°ãè¿ãåæ° (æåã® 1 åãå«ã)"
#: main.cpp:87
msgid "Reset the alarm scheduling daemon"
msgstr "ã¢ã©ãŒã ã¹ã±ãžã¥ãŒã«ããŒã¢ã³ããªã»ãã"
#: main.cpp:89
msgid "Speak the message when it is displayed"
msgstr "ã¡ãã»ãŒãžè¡šç€ºæã«ã¡ãã»ãŒãžãèªã¿äžãã"
#: main.cpp:90
msgid "Stop the alarm scheduling daemon"
msgstr "ã¢ã©ãŒã ã¹ã±ãžã¥ãŒã«ããŒã¢ã³ãåæ¢"
#: main.cpp:92
msgid "Email subject line"
msgstr "ã¡ãŒã«ã®ä»¶åè¡"
#: main.cpp:94
msgid "Trigger alarm at time [[[yyyy-]mm-]dd-]hh:mm, or date yyyy-mm-dd"
msgstr "æé [[[yyyy-]mm-]dd-]hh:mm ãŸãã¯æ¥æ yyyy-mm-dd ã«ã¢ã©ãŒã ãå®è¡"
#: main.cpp:95
msgid "Display system tray icon"
msgstr "ã·ã¹ãã ãã¬ã€ã¢ã€ã³ã³ã衚瀺"
#: main.cpp:96
msgid "Trigger alarm with the specified event ID"
msgstr "æå®ãããã€ãã³ã ID ã®ã¢ã©ãŒã ãå®è¡"
#: main.cpp:98
msgid "Repeat until time [[[yyyy-]mm-]dd-]hh:mm, or date yyyy-mm-dd"
msgstr "æé [[[yyyy-]mm-]dd-]hh:mm ãŸãã¯æ¥æ yyyy-mm-dd ãŸã§ç¹°ãè¿ã"
#: main.cpp:101
msgid "Volume to play audio file"
msgstr "ãªãŒãã£ãªãã¡ã€ã«ãåçããé³é"
#: main.cpp:103
msgid "Message text to display"
msgstr "衚瀺ããã¡ãã»ãŒãžã®ããã¹ã"
#: main.cpp:110
msgid "KAlarm"
msgstr "KAlarm"
#: main.cpp:111
msgid "Personal alarm message, command and email scheduler for TDE"
msgstr "TDE çšã®å人ã¢ã©ãŒã ã¡ãã»ãŒãžãã³ãã³ãããã³ Eã¡ãŒã«ã¹ã±ãžã¥ãŒã«"
#: mainwindow.cpp:99
msgid "Show &Alarm Times"
msgstr "ã¢ã©ãŒã æå»ã衚瀺(&A)"
#: mainwindow.cpp:100
msgid "Show alarm ti&me"
msgstr "ã¢ã©ãŒã æå»ã衚瀺(&M)"
#: mainwindow.cpp:101
msgid "Show Time t&o Alarms"
msgstr "ã¢ã©ãŒã ãŸã§ã®æéã衚瀺(&O)"
#: mainwindow.cpp:102
msgid "Show time unti&l alarm"
msgstr "ã¢ã©ãŒã ãŸã§ã®æéã衚瀺(&L)"
#: mainwindow.cpp:103
msgid "Show Expired Alarms"
msgstr "æéåãã®ã¢ã©ãŒã ã衚瀺"
#: mainwindow.cpp:104
msgid "Show &Expired Alarms"
msgstr "æéåãã®ã¢ã©ãŒã ã衚瀺(&E)"
#: mainwindow.cpp:105
msgid "Hide Expired Alarms"
msgstr "æéåãã®ã¢ã©ãŒã ãé ã"
#: mainwindow.cpp:106
msgid "Hide &Expired Alarms"
msgstr "æéåãã®ã¢ã©ãŒã ãé ã(&E)"
#: mainwindow.cpp:297
msgid ""
"Failure to create menus\n"
"(perhaps %1 missing or corrupted)"
msgstr ""
"ã¡ãã¥ãŒäœæ倱æ\n"
"(ãããã %1 ããªããå£ããŠããŸã)"
#: mainwindow.cpp:329
msgid "&Templates..."
msgstr "ãã³ãã¬ãŒã(&T)..."
#: mainwindow.cpp:330 templatedlg.cpp:61
msgid "&New..."
msgstr "æ°èŠ(&N)..."
#: mainwindow.cpp:331
msgid "New &From Template"
msgstr "ãã³ãã¬ãŒãããæ°èŠäœæ(&F)"
#: mainwindow.cpp:332
msgid "Create Tem&plate..."
msgstr "ãã³ãã¬ãŒããäœæ(&P)..."
#: mainwindow.cpp:333
msgid "&Copy..."
msgstr "ã³ããŒ(&C)..."
#: mainwindow.cpp:334 messagewin.cpp:520 templatedlg.cpp:66
msgid "&Edit..."
msgstr "ç·šé(&E)..."
#: mainwindow.cpp:336
msgid "Reac&tivate"
msgstr "åã³æå¹ã«ãã(&T)"
#: mainwindow.cpp:340
msgid "Hide &Alarm Times"
msgstr "ã¢ã©ãŒã æå»ãé ã(&A)"
#: mainwindow.cpp:342
msgid "Hide Time t&o Alarms"
msgstr "ã¢ã©ãŒã ãŸã§ã®æéãé ã(&O)"
#: mainwindow.cpp:345
msgid "Show in System &Tray"
msgstr "ã·ã¹ãã ãã¬ã€ã«è¡šç€º(&T)"
#: mainwindow.cpp:346
msgid "Hide From System &Tray"
msgstr "ã·ã¹ãã ãã¬ã€ããé ã(&T)"
#: mainwindow.cpp:347
msgid "Import &Alarms..."
msgstr "ã¢ã©ãŒã ãã€ã³ããŒã(&A)..."
#: mainwindow.cpp:348
msgid "Import &Birthdays..."
msgstr "èªçæ¥ãã€ã³ããŒã(&B)..."
#: mainwindow.cpp:349
msgid "&Refresh Alarms"
msgstr "ã¢ã©ãŒã ãæŽæ°(&R)"
#: mainwindow.cpp:541
msgid "New Alarm"
msgstr "æ°èŠã¢ã©ãŒã "
#: mainwindow.cpp:611 messagewin.cpp:1459
msgid "Edit Alarm"
msgstr "ã¢ã©ãŒã ãç·šé"
#: mainwindow.cpp:646
msgid "Expired Alarm"
msgstr "æéåãã®ã¢ã©ãŒã "
#: mainwindow.cpp:646
msgid "read-only"
msgstr "èªã¿åãå°çš"
#: mainwindow.cpp:647
msgid "View Alarm"
msgstr "ã¢ã©ãŒã ã®è¡šç€º"
#: mainwindow.cpp:674
#, c-format
msgid ""
"_n: Do you really want to delete the selected alarm?\n"
"Do you really want to delete the %n selected alarms?"
msgstr "æ¬åœã«éžæãã %n åã®ã¢ã©ãŒã ãåé€ããŸããïŒ"
#: mainwindow.cpp:675
msgid ""
"_n: Delete Alarm\n"
"Delete Alarms"
msgstr "ã¢ã©ãŒã ãåé€"
#: mainwindow.cpp:1026
msgid ""
"_: Undo/Redo [action]\n"
"%1 %2"
msgstr "%1 %2"
#: mainwindow.cpp:1027
msgid ""
"_: Undo [action]: message\n"
"%1 %2: %3"
msgstr "%1 %2: %3"
#: mainwindow.cpp:1391
msgid "Ena&ble"
msgstr "æå¹ã«ãã(&B)"
#: mainwindow.cpp:1391
msgid "Disa&ble"
msgstr "ç¡å¹ã«ãã(&B)"
#: messagewin.cpp:290 messagewin.cpp:323
msgid "Reminder"
msgstr "ãªãã€ã³ã"
#: messagewin.cpp:290
msgid "Message"
msgstr "ã¡ãã»ãŒãž"
#: messagewin.cpp:318
msgid ""
"The scheduled date/time for the message (as opposed to the actual time of "
"display)."
msgstr "äºå®ãããã¡ãã»ãŒãžã®æ¥ä»/æå» (衚瀺ã®å®æå»ãšã¯å¥)"
#: messagewin.cpp:341
msgid "The file whose contents are displayed below"
msgstr "äžã«å
容ã衚瀺ãããã¡ã€ã«"
#: messagewin.cpp:367
msgid "The contents of the file to be displayed"
msgstr "衚瀺ãããã¡ã€ã«ã®å
容"
#: messagewin.cpp:375
msgid "File is a folder"
msgstr "ãã¡ã€ã«ã¯ãã©ã«ãã§ã"
#: messagewin.cpp:375
msgid "Failed to open file"
msgstr "ãã¡ã€ã«ãéããŸããã§ãã"
#: messagewin.cpp:375 sounddlg.cpp:445
msgid "File not found"
msgstr "ãã¡ã€ã«ãèŠã€ãããŸãã"
#: messagewin.cpp:394
msgid "The alarm message"
msgstr "ã¢ã©ãŒã ã¡ãã»ãŒãž"
#: messagewin.cpp:452
msgid "The email to send"
msgstr "éä¿¡ããã¡ãŒã«"
#: messagewin.cpp:515
msgid "Acknowledge the alarm"
msgstr "ã¡ãã»ãŒãžã確èª"
#: messagewin.cpp:525
msgid "Edit the alarm."
msgstr "ã¢ã©ãŒã ãç·šé"
#: messagewin.cpp:531
msgid "&Defer..."
msgstr "延æ(&D)..."
#: messagewin.cpp:537
msgid ""
"Defer the alarm until later.\n"
"You will be prompted to specify when the alarm should be redisplayed."
msgstr ""
"ã¢ã©ãŒã ãåŸã§ããäžåºŠè¡šç€ºãããŸãã\n"
"ãã€å衚瀺ãããæå®ããããä¿ãããŸãã"
#: messagewin.cpp:553 sounddlg.cpp:314
msgid "Stop sound"
msgstr "ãµãŠã³ããåæ¢"
#: messagewin.cpp:554 sounddlg.cpp:315
msgid "Stop playing the sound"
msgstr "ãµãŠã³ãã®åçãåæ¢"
#: messagewin.cpp:570
msgid ""
"_: Locate this email in KMail\n"
"Locate in KMail"
msgstr "KMail ã«çœ®ã"
#: messagewin.cpp:571
msgid "Locate and highlight this email in KMail"
msgstr "ãã®ã¡ãŒã«ã KMail ã«çœ®ããŠåŒ·èª¿ãã"
#: messagewin.cpp:583
msgid "Activate KAlarm"
msgstr "KAlarm ãæå¹ã«ãã"
#: messagewin.cpp:625
msgid "Today"
msgstr "ä»æ¥"
#: messagewin.cpp:627
#, c-format
msgid ""
"_n: Tomorrow\n"
"in %n days' time"
msgstr "%n æ¥åŸ"
#: messagewin.cpp:629
#, c-format
msgid ""
"_n: in 1 week's time\n"
"in %n weeks' time"
msgstr "%n é±éåŸ"
#: messagewin.cpp:643
#, c-format
msgid ""
"_n: in 1 minute's time\n"
"in %n minutes' time"
msgstr "%n ååŸ"
#: messagewin.cpp:645
#, c-format
msgid ""
"_n: in 1 hour's time\n"
"in %n hours' time"
msgstr "%n æéåŸ"
#: messagewin.cpp:647
#, c-format
msgid ""
"_n: in 1 hour 1 minute's time\n"
"in %n hours 1 minute's time"
msgstr "%n æé 1 ååŸ"
#: messagewin.cpp:649
msgid ""
"_n: in 1 hour %1 minutes' time\n"
"in %n hours %1 minutes' time"
msgstr "%n æé %1 ååŸ"
#: messagewin.cpp:822 messagewin.cpp:836
msgid "Unable to speak message"
msgstr "ã¡ãã»ãŒãžãèªã¿äžããããŸãã"
#: messagewin.cpp:836
msgid "DCOP Call sayMessage failed"
msgstr "DCOP Call sayMessage 倱æ"
#: messagewin.cpp:858 sounddlg.cpp:302
#, c-format
msgid ""
"Cannot open audio file:\n"
"%1"
msgstr ""
"ãªãŒãã£ãªãã¡ã€ã«ãéããŸãã:\n"
"%1"
#: messagewin.cpp:882
msgid ""
"Unable to set master volume\n"
"(Error accessing KMix:\n"
"%1)"
msgstr ""
"ãã¹ã¿ãŒããªã¥ãŒã ãèšå®ã§ããŸãã\n"
"(KMix ãžã®ã¢ã¯ã»ã¹ãšã©ãŒ:\n"
"%1)"
#: messagewin.cpp:1403
msgid "Do you really want to acknowledge this alarm?"
msgstr "æ¬åœã«ãã®ã¢ã©ãŒã ãäºè§£ããŸãããïŒ"
#: messagewin.cpp:1404
msgid "Acknowledge Alarm"
msgstr "ã¢ã©ãŒã ãäºè§£"
#: messagewin.cpp:1404
msgid "&Acknowledge"
msgstr "äºè§£(&A)"
#: messagewin.cpp:1449
msgid "Unable to locate this email in KMail"
msgstr "ãã®ã¡ãŒã«ã KMail ã«é
眮ã§ããŸãã"
#: prefdlg.cpp:120
msgid "Preferences"
msgstr "èšå®"
#: prefdlg.cpp:125
msgid "General"
msgstr "å
šè¬"
#: prefdlg.cpp:128
msgid "Email"
msgstr "ã¡ãŒã«"
#: prefdlg.cpp:128
msgid "Email Alarm Settings"
msgstr "ã¡ãŒã«ã¢ã©ãŒã èšå®"
#: prefdlg.cpp:131
msgid "View Settings"
msgstr "衚瀺èšå®"
#: prefdlg.cpp:134
msgid "Font & Color"
msgstr "ãã©ã³ããšè²"
#: prefdlg.cpp:134
msgid "Default Font and Color"
msgstr "æšæºã®ãã©ã³ããšè²"
#: prefdlg.cpp:137
msgid "Default Alarm Edit Settings"
msgstr "ã¢ã©ãŒã ç·šéãã€ã¢ãã°ã®æšæºèšå®"
#: prefdlg.cpp:256
msgid "Run Mode"
msgstr "å®è¡ã¢ãŒã"
#: prefdlg.cpp:264
msgid "&Run only on demand"
msgstr "èŠæ±æã«ã®ã¿å®è¡ãã(&R)"
#: prefdlg.cpp:268
msgid ""
"Check to run KAlarm only when required.\n"
"\n"
"Notes:\n"
"1. Alarms are displayed even when KAlarm is not running, since alarm monitoring "
"is done by the alarm daemon.\n"
"2. With this option selected, the system tray icon can be displayed or hidden "
"independently of KAlarm."
msgstr ""
"KAlarm ãå¿
èŠãªãšãã ãå®è¡ããã«ã¯ããããéžæããŠãã ããã\n"
"\n"
"泚æ:\n"
"1. ã¢ã©ãŒã ã¯ã¢ã©ãŒã ããŒã¢ã³ãç£èŠããã®ã§ãKAlarm ãèµ·åããŠããªããŠã衚瀺ãããŸãã\n"
"2. ãã®ãªãã·ã§ã³ãéžæãããšãKAlarm ãšã¯é¢ä¿ãªãã·ã¹ãã ãã¬ã€ã¢ã€ã³ã³ã®è¡šç€º/é衚瀺ãèšå®ã§ããŸãã"
#: prefdlg.cpp:275
msgid "Run continuously in system &tray"
msgstr "ã·ã¹ãã ãã¬ã€ã§ç¶ç¶çã«å®è¡ãã(&T)"
#: prefdlg.cpp:279
msgid ""
"Check to run KAlarm continuously in the TDE system tray.\n"
"\n"
"Notes:\n"
"1. With this option selected, closing the system tray icon will quit KAlarm.\n"
"2. You do not need to select this option in order for alarms to be displayed, "
"since alarm monitoring is done by the alarm daemon. Running in the system tray "
"simply provides easy access and a status indication."
msgstr ""
"KAlarm ã TDE ã·ã¹ãã ãã¬ã€ã§å®è¡ãç¶ããã«ã¯ããããéžæããŠãã ããã\n"
"\n"
"泚æ:\n"
"1. ãã®ãªãã·ã§ã³ãéžæãããšãã·ã¹ãã ãã¬ã€ã¢ã€ã³ã³ãéãããš KAlarm ãçµäºããŸãã\n"
"2. ã¢ã©ãŒã ã¯ã¢ã©ãŒã ããŒã¢ã³ãç£èŠããã®ã§ããã®ãªãã·ã§ã³ãéžæããªããŠãã¢ã©ãŒã ã¯è¡šç€ºãããŸããã·ã¹ãã ãã¬ã€ã«è¡šç€ºããŠããå©ç¹ã¯ãKAlarm "
"ã«ç°¡åã«ã¢ã¯ã»ã¹ã§ãããšããããšãšãç¶æ
ã衚瀺ããããšããããšã ãã§ãã"
#: prefdlg.cpp:287
msgid "Disa&ble alarms while not running"
msgstr "KAlarm ãèµ·åããŠããªããšãã¯ã¢ã©ãŒã ãç¡å¹ã«ãã(&B)"
#: prefdlg.cpp:291
msgid ""
"Check to disable alarms whenever KAlarm is not running. Alarms will only appear "
"while the system tray icon is visible."
msgstr "KAlarm ãèµ·åããŠããªããšãã¯ã¢ã©ãŒã ãç¡å¹ã«ããŸããã¢ã©ãŒã ã¯ã·ã¹ãã ãã¬ã€ã¢ã€ã³ã³ã衚瀺ãããŠããéã ãå®è¡ãããããã«ãªããŸãã"
#: prefdlg.cpp:294
msgid "Warn before &quitting"
msgstr "çµäºåã«èŠåãã(&Q)"
#: prefdlg.cpp:297
msgid "Check to display a warning prompt before quitting KAlarm."
msgstr "KAlarm ãçµäºããããšãããšèŠåã衚瀺ããŸãã"
#: prefdlg.cpp:300 prefdlg.cpp:537
msgid "Autostart at &login"
msgstr "ãã°ã€ã³æã«èªåçã«éå§ãã(&L)"
#: prefdlg.cpp:307
msgid "Start alarm monitoring at lo&gin"
msgstr "ãã°ã€ã³æã«ã¢ã©ãŒã ã®ç£èŠãéå§ãã(&G)"
#: prefdlg.cpp:311
msgid ""
"Automatically start alarm monitoring whenever you start TDE, by running the "
"alarm daemon (%1).\n"
"\n"
"This option should always be checked unless you intend to discontinue use of "
"KAlarm."
msgstr ""
"TDE éå§æã«ã¢ã©ãŒã ããŒã¢ã³ (%1) ãèµ·åããŠãèªåçã«ã¢ã©ãŒã ç£èŠãéå§ããŸãã\n"
"\n"
"KAlarm ã®äœ¿çšãäžæ¢ããäºå®ããªãéãããã®ãªãã·ã§ã³ã¯åžžã«ãã§ãã¯ããŠãããŠãã ããã"
#: prefdlg.cpp:322
msgid "&Start of day for date-only alarms:"
msgstr "æ¥ä»ã®ã¿ã®ã¢ã©ãŒã ã®éå§æé(&S):"
#: prefdlg.cpp:326
msgid ""
"The earliest time of day at which a date-only alarm (i.e. an alarm with \"any "
"time\" specified) will be triggered."
msgstr "ãä»»æã®æå»ããéžæãããŠããæ¥ä»ã®ã¿ã®ã¢ã©ãŒã ãå®è¡ããæãæ©ãæå»ãæå®ããŸãã"
#: prefdlg.cpp:334
msgid "Con&firm alarm deletions"
msgstr "ã¢ã©ãŒã ãåé€ããåã«ç¢ºèªãã(&F)"
#: prefdlg.cpp:337
msgid "Check to be prompted for confirmation each time you delete an alarm."
msgstr "ã¢ã©ãŒã ãåé€ããåã«ç¢ºèªãæ±ããŸãã"
#: prefdlg.cpp:342
msgid "Expired Alarms"
msgstr "æéåãã®ã¢ã©ãŒã "
#: prefdlg.cpp:347
msgid "Keep alarms after e&xpiry"
msgstr "æéåãã®ã¢ã©ãŒã ãä¿åããŠãã(&X)"
#: prefdlg.cpp:351
msgid ""
"Check to store alarms after expiry or deletion (except deleted alarms which "
"were never triggered)."
msgstr ""
"æéåããŸãã¯åé€ããã¢ã©ãŒã ãä¿åããŠããã«ã¯ãããããã§ãã¯ããŸãã\n"
"(äžåºŠãå®è¡ãããã«åé€ããã¢ã©ãŒã ã¯é€ã)"
#: prefdlg.cpp:356
msgid "Discard ex&pired alarms after:"
msgstr "次ã®æ¥æ°ãçµéãããç Žæ£ãã(&P):"
#: prefdlg.cpp:363
msgid "da&ys"
msgstr "æ¥åŸ(&Y)"
#: prefdlg.cpp:367
msgid ""
"Uncheck to store expired alarms indefinitely. Check to enter how long expired "
"alarms should be stored."
msgstr ""
"æéåãã®ã¢ã©ãŒã ãç¡å¶éã«ä¿åããŠããå Žåã¯ããã§ãã¯ãå€ããŠãã ããããã§ãã¯ãå
¥ãããšãæéåãã®ã¢ã©ãŒã ãä¿åããŠããæéãæå®ã§ããŸãã"
#: prefdlg.cpp:370
msgid "Clear Expired Alar&ms"
msgstr "æéåãã¢ã©ãŒã ãã¯ãªã¢(&M)"
#: prefdlg.cpp:374
msgid "Delete all existing expired alarms."
msgstr "æ¢åã®ãã¹ãŠã®æéåãã¢ã©ãŒã ãåé€ããŸãã"
#: prefdlg.cpp:379
msgid "Terminal for Command Alarms"
msgstr "ã³ãã³ãã¢ã©ãŒã ã«äœ¿çšããã¿ãŒããã«"
#: prefdlg.cpp:381
msgid ""
"Choose which application to use when a command alarm is executed in a terminal "
"window"
msgstr "ã¿ãŒããã«ãŠã£ã³ããŠã§ã³ãã³ãã¢ã©ãŒã ãå®è¡ãããšãã«äœ¿çšããã¢ããªã±ãŒã·ã§ã³ãéžæããŸãã"
#: prefdlg.cpp:388
msgid ""
"_: The parameter is a command line, e.g. 'xterm -e'\n"
"Check to execute command alarms in a terminal window by '%1'"
msgstr "'%1' ã«ããã¿ãŒããã«ãŠã£ã³ããŠã§ã³ãã³ãã¢ã©ãŒã ãå®è¡ããã«ã¯ããããéžæããŸãã"
#: prefdlg.cpp:414
msgid "Other:"
msgstr "ãã®ä»:"
#: prefdlg.cpp:422
msgid ""
"Enter the full command line needed to execute a command in your chosen terminal "
"window. By default the alarm's command string will be appended to what you "
"enter here. See the KAlarm Handbook for details of special codes to tailor the "
"command line."
msgstr ""
"奜ã¿ã®ã¿ãŒããã«ãŠã£ã³ããŠã§ã³ãã³ããå®è¡ããããã«å¿
èŠãªå®å
šãªã³ãã³ãã©ã€ã³ãå
¥åããŸããæšæºã§ã¯ã¢ã©ãŒã ã®ã³ãã³ãåã¯ããã§å
¥åãããã®ã«è¿œå ãããŸããã³ã"
"ã³ãã©ã€ã³ã調æŽããããã®ç¹å¥ãªã³ãŒãã®è©³çŽ°ã«ã€ããŠã¯ KAlarm ãã³ãããã¯ãã芧ãã ããã"
#: prefdlg.cpp:473
#, c-format
msgid ""
"Command to invoke terminal window not found:\n"
"%1"
msgstr ""
"ã¿ãŒããã«ãŠã£ã³ããŠãèµ·åããããã®ã³ãã³ããèŠã€ãããŸãã:\n"
"%1"
#: prefdlg.cpp:528
msgid ""
"You should not uncheck this option unless you intend to discontinue use of "
"KAlarm"
msgstr "KAlarm ã®äœ¿çšãäžæ¢ããäºå®ããªãéãããã®ãªãã·ã§ã³ã®ãã§ãã¯ãå€ããªãã§ãã ããã"
#: prefdlg.cpp:537
msgid "Autostart system tray &icon at login"
msgstr "ãã°ã€ã³æã«ã·ã¹ãã ãã¬ã€ã¢ã€ã³ã³ãèµ·åãã(&I)"
#: prefdlg.cpp:538
msgid "Check to run KAlarm whenever you start TDE."
msgstr "TDE ã®èµ·åæã« KAlarm ãéå§ããŸãã"
#: prefdlg.cpp:539
msgid "Check to display the system tray icon whenever you start TDE."
msgstr "TDE ã®éå§æã«ã·ã¹ãã ãã¬ã€ã¢ã€ã³ã³ãèµ·åããã«ã¯ãããããã§ãã¯ããŠãã ããã"
#: prefdlg.cpp:603
msgid "Email client:"
msgstr "ã¡ãŒã«ã¯ã©ã€ã¢ã³ã:"
#: prefdlg.cpp:606
msgid "&KMail"
msgstr "&KMail"
#: prefdlg.cpp:609
msgid "&Sendmail"
msgstr "&Sendmail"
#: prefdlg.cpp:615
msgid ""
"Choose how to send email when an email alarm is triggered.\n"
"KMail: The email is sent automatically via KMail. KMail is started first if "
"necessary.\n"
"Sendmail: The email is sent automatically. This option will only work if your "
"system is configured to use sendmail or a sendmail compatible mail transport "
"agent."
msgstr ""
"ã¡ãŒã«ã¢ã©ãŒã ã®ã¡ãŒã«éä¿¡æ¹æ³ãéžæããŸãã\n"
"KMail: KMail ã䜿ã£ãŠèªåçã«ã¡ãŒã«ãéä¿¡ããŸããå¿
èŠã§ããã°å
ã« KMail ãèµ·åããŸãã\n"
"Sendmail: èªåçã«ã¡ãŒã«ãéä¿¡ããŸãããã®ãªãã·ã§ã³ã¯ sendmail ãŸã㯠sendmail "
"äºæãªã¡ãŒã«è»¢éãšãŒãžã§ã³ãã䜿ãããã«ã·ã¹ãã ãèšå®ããŠããå Žåã®ã¿æ©èœããŸãã"
#: prefdlg.cpp:621
msgid "Co&py sent emails into KMail's %1 folder"
msgstr "éä¿¡æžã¿ã¡ãŒã«ã KMail ã®ã%1ããã©ã«ãã«ã³ããŒãã(&P)"
#: prefdlg.cpp:624
msgid "After sending an email, store a copy in KMail's %1 folder"
msgstr "ã¡ãŒã«éä¿¡åŸãKMail ã®ã%1ããã©ã«ãã«ã³ããŒãä¿åããŸãã"
#: prefdlg.cpp:629
msgid "Your Email Address"
msgstr "ã¡ãŒã«ã¢ãã¬ã¹"
#: prefdlg.cpp:650
msgid ""
"Your email address, used to identify you as the sender when sending email "
"alarms."
msgstr "ã¡ãŒã«ã¢ã©ãŒã ã®éä¿¡è
ã«äœ¿çšããããªãã®ã¡ãŒã«ã¢ãã¬ã¹ãå
¥åããŸãã"
#: prefdlg.cpp:657
msgid "&Use address from Control Center"
msgstr "ã³ã³ãããŒã«ã»ã³ã¿ãŒã®ã¢ãã¬ã¹ã䜿ã(&U)"
#: prefdlg.cpp:661
msgid ""
"Check to use the email address set in the Trinity Control Center, to identify you "
"as the sender when sending email alarms."
msgstr "TDE ã³ã³ãããŒã«ã»ã³ã¿ãŒã§èšå®ãããã¡ãŒã«ã¢ãã¬ã¹ãã¡ãŒã«ã¢ã©ãŒã ã®éä¿¡è
ã«äœ¿ãå ŽåããããéžæããŠãã ããã"
#: prefdlg.cpp:665
msgid "Use KMail &identities"
msgstr "KMail ã®å人æ
å ±ã䜿ã(&I)"
#: prefdlg.cpp:669
msgid ""
"Check to use KMail's email identities to identify you as the sender when "
"sending email alarms. For existing email alarms, KMail's default identity will "
"be used. For new email alarms, you will be able to pick which of KMail's "
"identities to use."
msgstr ""
"KMail ã®Eã¡ãŒã«å人æ
å ±ãã¡ãŒã«ã¢ã©ãŒã ã®éä¿¡è
ã«äœ¿ãå ŽåããããéžæããŠãã ãããæ¢åã®ã¡ãŒã«ã¢ã©ãŒã ã«ã¯ KMail "
"ã®æšæºã®å人æ
å ±ã䜿çšãããŸããæ°èŠã¡ãŒã«ã¢ã©ãŒã ã«ã€ããŠã¯ãã©ã® KMail å人æ
å ±ã䜿çšããããéžæã§ããŸãã"
#: prefdlg.cpp:676
msgid ""
"_: 'Bcc' email address\n"
"&Bcc:"
msgstr "&BCC:"
#: prefdlg.cpp:690
msgid ""
"Your email address, used for blind copying email alarms to yourself. If you "
"want blind copies to be sent to your account on the computer which KAlarm runs "
"on, you can simply enter your user login name."
msgstr ""
"ã¡ãŒã«ã¢ã©ãŒã ã®ãã©ã€ã³ãã³ããŒãéä¿¡ããããªãã®ã¡ãŒã«ã¢ãã¬ã¹ãå
¥åããŸããKAlarm "
"ãèµ·åããŠããã³ã³ãã¥ãŒã¿äžã®ã¢ã«ãŠã³ãã«ãã©ã€ã³ãã³ããŒãéä¿¡ããå Žåã¯ããã°ã€ã³åãå
¥åããŠãããŸããŸããã"
#: prefdlg.cpp:698
msgid "Us&e address from Control Center"
msgstr "ã³ã³ãããŒã«ã»ã³ã¿ãŒã®ã¢ãã¬ã¹ã䜿ã(&E)"
#: prefdlg.cpp:702
msgid ""
"Check to use the email address set in the Trinity Control Center, for blind copying "
"email alarms to yourself."
msgstr "TDE ã³ã³ãããŒã«ã»ã³ã¿ãŒã§èšå®ãããã¡ãŒã«ã¢ãã¬ã¹ã«ã¡ãŒã«ã¢ã©ãŒã ã®ãã©ã€ã³ãã³ããŒãéãå ŽåããããéžæããŠãã ããã"
#: prefdlg.cpp:708
msgid "&Notify when remote emails are queued"
msgstr "ãªã¢ãŒãã·ã¹ãã ãžã®ã¡ãŒã«ãéä¿¡åŸ
ã¡ã«ãªã£ããšãã«éç¥ãã(&N)"
#: prefdlg.cpp:711
msgid ""
"Display a notification message whenever an email alarm has queued an email for "
"sending to a remote system. This could be useful if, for example, you have a "
"dial-up connection, so that you can then ensure that the email is actually "
"transmitted."
msgstr ""
"ã¡ãŒã«ã¢ã©ãŒã ã«ãã£ãŠãªã¢ãŒãã·ã¹ãã ãžã®ã¡ãŒã«ãéä¿¡åŸ
ã¡ã«ãªã£ããšãã«éç¥ã¡ãã»ãŒãžã衚瀺ããŸãããããæå¹ã«ãããšãäŸãã°ãã€ã¢ã«ã¢ããæ¥ç¶ããŠããå Žåãã¡"
"ãŒã«ãå®éã«éããããã©ããã確èªããããšãã§ããŸãã"
#: prefdlg.cpp:789
msgid "No valid 'Bcc' email address is specified."
msgstr "æå¹ãª BCC ã¡ãŒã«ã¢ãã¬ã¹ãæå®ãããŠããŸããã"
#: prefdlg.cpp:796
msgid ""
"%1\n"
"Are you sure you want to save your changes?"
msgstr ""
"%1\n"
"æ¬åœã«ãã®å€æŽãä¿åããŸããïŒ"
#: prefdlg.cpp:802
#, c-format
msgid "No email address is currently set in the Trinity Control Center. %1"
msgstr "TDE ã³ã³ãããŒã«ã»ã³ã¿ãŒã«ã¡ãŒã«ã¢ãã¬ã¹ãèšå®ãããŠããŸããã%1"
#: prefdlg.cpp:807
#, c-format
msgid "No KMail identities currently exist. %1"
msgstr "KMail å人æ
å ±ããããŸããã%1"
#: prefdlg.cpp:825
msgid "Message Font && Color"
msgstr "ã¡ãã»ãŒãžã®ãã©ã³ããšè²"
#: prefdlg.cpp:836
msgid "Di&sabled alarm color:"
msgstr "ç¡å¹ã«ããã¢ã©ãŒã ã®è²(&S):"
#: prefdlg.cpp:841
msgid "Choose the text color in the alarm list for disabled alarms."
msgstr "ã¢ã©ãŒã ãªã¹ãäžã®ç¡å¹ã«ãªã£ãŠããã¢ã©ãŒã ã«äœ¿çšããããã¹ãè²ãéžæããŸãã"
#: prefdlg.cpp:846
msgid "E&xpired alarm color:"
msgstr "æéåãã®ã¢ã©ãŒã è²(&X):"
#: prefdlg.cpp:851
msgid "Choose the text color in the alarm list for expired alarms."
msgstr "ã¢ã©ãŒã ãªã¹ãäžã®æéåãã®ã¢ã©ãŒã ã«äœ¿çšããããã¹ãè²ãéžæããŸãã"
#: prefdlg.cpp:895
msgid "The default setting for \"%1\" in the alarm edit dialog."
msgstr "ã¢ã©ãŒã ç·šéãã€ã¢ãã°ã®ã%1ãã®æšæºèšå®ãæå®ããŸãã"
#: prefdlg.cpp:896
msgid ""
"Check to select %1 as the default setting for \"%2\" in the alarm edit dialog."
msgstr "ã¢ã©ãŒã ç·šéãã€ã¢ãã°ã®ã%2ãã«æšæºã§ã%1ããéžæããŸãã"
#: prefdlg.cpp:899
msgid "Display Alarms"
msgstr "衚瀺ã¢ã©ãŒã "
#: prefdlg.cpp:916
msgid "Reminder &units:"
msgstr "ãªãã€ã³ãã®åäœ(&U):"
#: prefdlg.cpp:926
msgid "The default units for the reminder in the alarm edit dialog."
msgstr "ã¢ã©ãŒã ç·šéãŠã£ã³ããŠã§ãªãã€ã³ãã«äœ¿çšããæšæºã®åäœãéžæããŸãã"
#: prefdlg.cpp:950
msgid "Repea&t sound file"
msgstr "ãµãŠã³ããã¡ã€ã«ãç¹°ãè¿ãåçãã(&T)"
#: prefdlg.cpp:952
msgid ""
"_: sound file \"Repeat\" checkbox\n"
"The default setting for sound file \"%1\" in the alarm edit dialog."
msgstr "ã¢ã©ãŒã ç·šéãã€ã¢ãã°ã®ãµãŠã³ããã¡ã€ã«ã%1ãã®æšæºèšå®ãæå®ããŸãã"
#: prefdlg.cpp:958
msgid "Sound &file:"
msgstr "ãµãŠã³ããã¡ã€ã«(&F):"
#: prefdlg.cpp:966
msgid "Choose a sound file"
msgstr "ãµãŠã³ããã¡ã€ã«ãéžæ"
#: prefdlg.cpp:968
msgid "Enter the default sound file to use in the alarm edit dialog."
msgstr "ã¢ã©ãŒã ç·šéãã€ã¢ãã°ã§äœ¿çšããæšæºãµãŠã³ããã¡ã€ã«ãæå®ããŸãã"
#: prefdlg.cpp:974
msgid "Command Alarms"
msgstr "ã³ãã³ãã¢ã©ãŒã "
#: prefdlg.cpp:991
msgid "Email Alarms"
msgstr "ã¡ãŒã«ã¢ã©ãŒã "
#: prefdlg.cpp:1018
msgid "&Recurrence:"
msgstr "ç¹°ãè¿ã(&R):"
#: prefdlg.cpp:1031
msgid "The default setting for the recurrence rule in the alarm edit dialog."
msgstr "ã¢ã©ãŒã ç·šéãŠã£ã³ããŠã®ç¹°ãè¿ãã®æ³åã®æšæºèšå®ãéžæããŸãã"
#: prefdlg.cpp:1037
msgid "In non-leap years, repeat yearly February 29th alarms on:"
msgstr "ããã幎以å€ã®å¹Žã§2æ29æ¥ã®ã¢ã©ãŒã ãå®è¡ããæ¥:"
#: prefdlg.cpp:1045
msgid "February 2&8th"
msgstr "2æ2&8æ¥"
#: prefdlg.cpp:1048
msgid "March &1st"
msgstr "3æ&1æ¥"
#: prefdlg.cpp:1051
msgid "Do ¬ repeat"
msgstr "ç¹°ãè¿ããªã(&N)"
#: prefdlg.cpp:1056
msgid ""
"For yearly recurrences, choose what date, if any, alarms due on February 29th "
"should occur in non-leap years.\n"
"Note that the next scheduled occurrence of existing alarms is not re-evaluated "
"when you change this setting."
msgstr ""
"2æ29æ¥ã«ã»ãããã幎åäœã§ç¹°ãè¿ãã¢ã©ãŒã ãããå Žåããããããã幎以å€ã®å¹Žã«ã¯ãã€å®è¡ããããæå®ããŸãã\n"
"泚æ: ãã®èšå®ãå€æŽããŠããæ¢åã®ã¢ã©ãŒã ã®æ¬¡ã®ç¹°ãè¿ãã¯åèšç®ãããŸããã"
#: prefdlg.cpp:1182
msgid ""
"You must enter a sound file when %1 is selected as the default sound type"
msgstr "%1 ãæšæºã®ãµãŠã³ãã¿ã€ããšããŠéžæããå ŽåããµãŠã³ããã¡ã€ã«ãå
¥åããå¿
èŠããããŸãã"
#: prefdlg.cpp:1195
msgid "System Tray Tooltip"
msgstr "ã·ã¹ãã ãã¬ã€ã®ããŒã«ããã"
#: prefdlg.cpp:1202
msgid "Show next &24 hours' alarms"
msgstr "24æé以å
ã®ã¢ã©ãŒã ã衚瀺ãã(&2)"
#: prefdlg.cpp:1206
msgid ""
"Specify whether to include in the system tray tooltip, a summary of alarms due "
"in the next 24 hours"
msgstr "24æé以å
ã®ã¢ã©ãŒã ã®èŠçŽãã·ã¹ãã ãã¬ã€ã®ããŒã«ãããã«å«ãããã©ãããæå®ããŸãã"
#: prefdlg.cpp:1211
msgid "Ma&ximum number of alarms to show:"
msgstr "ã¢ã©ãŒã ã®æ倧衚瀺æ°(&X):"
#: prefdlg.cpp:1218
msgid ""
"Uncheck to display all of the next 24 hours' alarms in the system tray tooltip. "
"Check to enter an upper limit on the number to be displayed."
msgstr ""
"ãã§ãã¯ãå€ããšã·ã¹ãã ãã¬ã€ããŒã«ãããã«24æé以å
ã®ãã¹ãŠã®ã¢ã©ãŒã ã衚瀺ãããŸããæ倧衚瀺æ°ãæå®ããå Žåã¯ãããããã§ãã¯ããŠãã ããã"
#: prefdlg.cpp:1226
msgid ""
"Specify whether to show in the system tray tooltip, the time at which each "
"alarm is due"
msgstr "ã·ã¹ãã ãã¬ã€ããŒã«ãããã«ã¢ã©ãŒã ãã»ãããããŠããæå»ã衚瀺ãããã©ãããæå®ããŸãã"
#: prefdlg.cpp:1233
msgid ""
"Specify whether to show in the system tray tooltip, how long until each alarm "
"is due"
msgstr "ã·ã¹ãã ãã¬ã€ã®ããŒã«ãããã«ã¢ã©ãŒã ãŸã§ã®æéã衚瀺ãããã©ãããæå®ããŸãã"
#: prefdlg.cpp:1238
msgid "&Prefix:"
msgstr "æ¥é èŸ(&P):"
#: prefdlg.cpp:1243
msgid ""
"Enter the text to be displayed in front of the time until the alarm, in the "
"system tray tooltip"
msgstr "ã·ã¹ãã ãã¬ã€ã®ããŒã«ãããã«è¡šç€ºãããã¢ã©ãŒã ãŸã§ã®æéã®åã«ä»ããããã¹ããæå®ããŸãã"
#: prefdlg.cpp:1248
msgid "Message &windows have a title bar and take keyboard focus"
msgstr "ã¡ãã»ãŒãžãŠã€ã³ããŠã¯ã¿ã€ãã«ããŒãæã¡ãããŒããŒãã®ãã©ãŒã«ã¹ãã€ãã(&W)"
#: prefdlg.cpp:1251
msgid ""
"Specify the characteristics of alarm message windows:\n"
"- If checked, the window is a normal window with a title bar, which grabs "
"keyboard input when it is displayed.\n"
"- If unchecked, the window does not interfere with your typing when it is "
"displayed, but it has no title bar and cannot be moved or resized."
msgstr ""
"ã¢ã©ãŒã ã¡ãã»ãŒãžãŠã£ã³ããŠã®ç¹æ§ãæå®ããŸã:\n"
"- ãã§ãã¯ããå ŽåããŠã£ã³ããŠã¯ã¿ã€ãã«ããŒãæã€éåžžã®ãŠã£ã³ããŠã«ãªãã衚瀺äžã¯ããŒããŒãå
¥åãã€ãã¿ãŸãã\n"
"- ãã§ãã¯ããªãå Žåã衚瀺äžã«ãŠã£ã³ããŠã¯ããŒããŒãå
¥åã«å¹²æžããŸããããã¿ã€ãã«ããŒãæããã移åããªãµã€ãºãã§ããŸããã"
#: prefdlg.cpp:1259
msgid "System tray icon &update interval:"
msgstr "ã·ã¹ãã ãã¬ã€ã¢ã€ã³ã³ã®æŽæ°éé(&U):"
#: prefdlg.cpp:1264 sounddlg.cpp:161
msgid "seconds"
msgstr "ç§"
#: prefdlg.cpp:1266
msgid ""
"How often to update the system tray icon to indicate whether or not the Alarm "
"Daemon is monitoring alarms."
msgstr "ã·ã¹ãã ãã¬ã€ã¢ã€ã³ã³ã®ã¢ã©ãŒã ããŒã¢ã³ã®ã¢ãã¿ç¶æ³ã®è¡šç€ºãæŽæ°ããééãæå®ããŸãã"
#. i18n: file kalarmui.rc line 32
#: rc.cpp:9 rc.cpp:21
#, no-c-format
msgid "&Actions"
msgstr "ã¢ã¯ã·ã§ã³(&A)"
#: recurrenceedit.cpp:69
msgid "No recurrence"
msgstr "ç¹°ãè¿ããªã "
#: recurrenceedit.cpp:70
msgid "No Recurrence"
msgstr "ç¹°ãè¿ããªã"
#: recurrenceedit.cpp:71
msgid "At Login"
msgstr "ãã°ã€ã³æ"
#: recurrenceedit.cpp:72
msgid "At &login"
msgstr "ãã°ã€ã³æ(&L)"
#: recurrenceedit.cpp:73
msgid "Hourly/Minutely"
msgstr "æé/ååäœ"
#: recurrenceedit.cpp:74
msgid "Ho&urly/Minutely"
msgstr "æé/ååäœ(&U)"
#: recurrenceedit.cpp:75
msgid "Daily"
msgstr "æ¥åäœ"
#: recurrenceedit.cpp:76
msgid "&Daily"
msgstr "æ¥åäœ(&D)"
#: recurrenceedit.cpp:77
msgid "Weekly"
msgstr "é±åäœ"
#: recurrenceedit.cpp:78
msgid "&Weekly"
msgstr "é±åäœ(&W)"
#: recurrenceedit.cpp:79
msgid "Monthly"
msgstr "æåäœ"
#: recurrenceedit.cpp:80
msgid "&Monthly"
msgstr "æåäœ(&M)"
#: recurrenceedit.cpp:81
msgid "Yearly"
msgstr "幎åäœ"
#: recurrenceedit.cpp:82
msgid "&Yearly"
msgstr "幎åäœ(&Y)"
#: recurrenceedit.cpp:106
msgid "Recurrence Rule"
msgstr "ç¹°ãè¿ãã®æ³å"
#: recurrenceedit.cpp:124
msgid "Do not repeat the alarm"
msgstr "ã¢ã©ãŒã ãç¹°ãè¿ããŸããã"
#: recurrenceedit.cpp:130
msgid ""
"Trigger the alarm at the specified date/time and at every login until then.\n"
"Note that it will also be triggered any time the alarm daemon is restarted."
msgstr ""
"æå®ãããæ¥ä»/æå»ãšããããŸã§ã®ãã°ã€ã³ããšã«ã¢ã©ãŒã ãå®è¡ããŸãã\n"
"ã¢ã©ãŒã ããŒã¢ã³ãåèµ·åãããå Žåã«ããã¢ã©ãŒã ãåºãããšã«æ³šæããŠãã ããã"
#: recurrenceedit.cpp:137
msgid "Repeat the alarm at hourly/minutely intervals"
msgstr "ã¢ã©ãŒã ãæé/ååäœã®ééã§ç¹°ãè¿ããŸãã"
#: recurrenceedit.cpp:143
msgid "Repeat the alarm at daily intervals"
msgstr "ã¢ã©ãŒã ãæ¥åäœã®ééã§ç¹°ãè¿ããŸãã"
#: recurrenceedit.cpp:149
msgid "Repeat the alarm at weekly intervals"
msgstr "ã¢ã©ãŒã ãé±åäœã®ééã§ç¹°ãè¿ããŸãã"
#: recurrenceedit.cpp:155
msgid "Repeat the alarm at monthly intervals"
msgstr "ã¢ã©ãŒã ãæåäœã®ééã§ç¹°ãè¿ããŸãã"
#: recurrenceedit.cpp:161
msgid "Repeat the alarm at annual intervals"
msgstr "ã¢ã©ãŒã ã幎åäœã®ééã§ç¹°ãè¿ããŸãã"
#: recurrenceedit.cpp:177
msgid ""
"Set up a repetition within the recurrence, to trigger the alarm multiple times "
"each time the recurrence is due."
msgstr "åäžã¢ã©ãŒã ã®å埩ãèšå®ããŸããç¹°ãè¿ãã«ãã£ãŠå®è¡ãããäžåã®ã¢ã©ãŒã ãäœåºŠãå埩ãããããšãã§ããŸãã"
#: recurrenceedit.cpp:219
msgid "Recurrence End"
msgstr "ç¹°ãè¿ãã®çµäº"
#: recurrenceedit.cpp:225
msgid "No &end"
msgstr "çµäºãªã(&E)"
#: recurrenceedit.cpp:228
msgid "Repeat the alarm indefinitely"
msgstr "ã¢ã©ãŒã ãç¡éã«ç¹°ãè¿ããŸãã"
#: recurrenceedit.cpp:233
msgid "End a&fter:"
msgstr "次ã®åæ°ã§çµäº(&F):"
#: recurrenceedit.cpp:236
msgid "Repeat the alarm for the number of times specified"
msgstr "æå®ãããåæ°ã ãã¢ã©ãŒã ãç¹°ãè¿ããŸãã"
#: recurrenceedit.cpp:244
msgid "Enter the total number of times to trigger the alarm"
msgstr "ã¢ã©ãŒã ãå®è¡ããåæ°ãæå®ããŸãã"
#: recurrenceedit.cpp:246
msgid "occurrence(s)"
msgstr "å"
#: recurrenceedit.cpp:256
msgid "End &by:"
msgstr "次ãŸã§ã«çµäº(&B):"
#: recurrenceedit.cpp:259
msgid ""
"Repeat the alarm until the date/time specified.\n"
"\n"
"Note: This applies to the main recurrence only. It does not limit any "
"sub-repetition which will occur regardless after the last main recurrence."
msgstr ""
"æå®ãããæ¥ä»/æéãŸã§ã¢ã©ãŒã ãç¹°ãè¿ããŸãã\n"
"\n"
"泚: ããã¯ã¡ã€ã³ã®ç¹°ãè¿ãã«ã®ã¿é©çšãããŸããæåŸã®ç¹°ãè¿ãåŸã®åäžã¢ã©ãŒã ã®å埩ãå¶éãããã®ã§ã¯ãããŸããã"
#: recurrenceedit.cpp:265
msgid "Enter the last date to repeat the alarm"
msgstr "æåŸã«ã¢ã©ãŒã ãç¹°ãè¿ãæ¥ãæå®ããŸãã"
#: recurrenceedit.cpp:270
msgid "Enter the last time to repeat the alarm."
msgstr "æåŸã«ã¢ã©ãŒã ãç¹°ãè¿ãæå»ãæå®ããŸãã"
#: recurrenceedit.cpp:277
msgid ""
"Stop repeating the alarm after your first login on or after the specified end "
"date"
msgstr "æå®ããçµäºæ¥ãŸãã¯ãã以éã®æåã®ãã°ã€ã³åŸã«ç¹°ãè¿ããçµäºããŸãã"
#: recurrenceedit.cpp:293
msgid "E&xceptions"
msgstr "äŸå€(&X)"
#: recurrenceedit.cpp:305
msgid "The list of exceptions, i.e. dates/times excluded from the recurrence"
msgstr "äŸå€ãªã¹ããããªãã¡ç¹°ãè¿ãããé€å€ããæ¥ä»/æå»"
#: recurrenceedit.cpp:321
msgid ""
"Enter a date to insert in the exceptions list. Use in conjunction with the Add "
"or Change button below."
msgstr "äŸå€ãªã¹ãã«è¿œå ããæ¥ä»ãéžæããŸããäžã®ãè¿œå ãããå€æŽããã¿ã³ãšçµã¿åãããŠäœ¿çšããŸãã"
#: recurrenceedit.cpp:330
msgid "Add the date entered above to the exceptions list"
msgstr "äžã®æ¥ä»ãäŸå€ãªã¹ãã«è¿œå ããŸãã"
#: recurrenceedit.cpp:337
msgid ""
"Replace the currently highlighted item in the exceptions list with the date "
"entered above"
msgstr "äŸå€ãªã¹ãã§çŸåšéžæãããŠããæ¥ä»ãäžã®æ¥ä»ãšçœ®ãæããŸãã"
#: recurrenceedit.cpp:344
msgid "Remove the currently highlighted item from the exceptions list"
msgstr "çŸåšéžæãããŠããæ¥ä»ãäŸå€ãªã¹ãããåé€ããŸãã"
#: recurrenceedit.cpp:372
msgid "End date is earlier than start date"
msgstr "çµäºæ¥ãéå§æ¥ãããå
ã§ã"
#: recurrenceedit.cpp:373
msgid "End date/time is earlier than start date/time"
msgstr "çµäºæ¥/æéãéå§æ¥/æéãããå
ã§ã"
#: recurrenceedit.cpp:641
msgid ""
"_: Date cannot be earlier than start date\n"
"start date"
msgstr "éå§æ¥ä»"
#: recurrenceedit.cpp:1031
msgid "Recur e&very"
msgstr "次ããšã«ç¹°ãè¿ã(&V)"
#: recurrenceedit.cpp:1099
msgid "hours:minutes"
msgstr "æé:å"
#: recurrenceedit.cpp:1100
msgid "Enter the number of hours and minutes between repetitions of the alarm"
msgstr "ã¢ã©ãŒã ãç¹°ãè¿ãå®è¡ããééãæéãšååäœã§æå®ããŸãã"
#: recurrenceedit.cpp:1118
msgid ""
"_: On: Tuesday\n"
"O&n:"
msgstr "ææ¥(&N):"
#: recurrenceedit.cpp:1196
msgid "No day selected"
msgstr "ææ¥ãéžæãããŠããŸãã"
#: recurrenceedit.cpp:1225
msgid "day(s)"
msgstr "æ¥"
#: recurrenceedit.cpp:1226
msgid "Enter the number of days between repetitions of the alarm"
msgstr "ã¢ã©ãŒã ãç¹°ãè¿ãå®è¡ããééãæ¥æ°ã§æå®ããŸãã"
#: recurrenceedit.cpp:1228
msgid "Select the days of the week on which the alarm is allowed to occur"
msgstr "ã¢ã©ãŒã ãå®è¡ããææ¥ãéžæããŸãã"
#: recurrenceedit.cpp:1230 recurrenceedit.cpp:1244
msgid "Select the days of the week on which to repeat the alarm"
msgstr "ã¢ã©ãŒã ãç¹°ãè¿ãå®è¡ããææ¥ãéžæããŸãã"
#: recurrenceedit.cpp:1242
msgid "week(s)"
msgstr "é±é"
#: recurrenceedit.cpp:1243
msgid "Enter the number of weeks between repetitions of the alarm"
msgstr "ã¢ã©ãŒã ãç¹°ãè¿ãå®è¡ããééãé±æ°ã§æå®ããŸãã"
#: recurrenceedit.cpp:1267
msgid ""
"_: On day number in the month\n"
"O&n day"
msgstr "æ¥ä»(&N)"
#: recurrenceedit.cpp:1271
msgid "Repeat the alarm on the selected day of the month"
msgstr "ã¢ã©ãŒã ãç¹°ãè¿ãæ¥ãæå®ããŸãã"
#: recurrenceedit.cpp:1277
msgid ""
"_: Last day of month\n"
"Last"
msgstr "ææ«"
#: recurrenceedit.cpp:1280
msgid "Select the day of the month on which to repeat the alarm"
msgstr "ã¢ã©ãŒã ãå®è¡ããæ¥ãéžæããŸãã"
#: recurrenceedit.cpp:1292
msgid ""
"_: On the 1st Tuesday\n"
"On t&he"
msgstr "é±ãšææ¥(&H)"
#: recurrenceedit.cpp:1297
msgid ""
"Repeat the alarm on one day of the week, in the selected week of the month"
msgstr "ã¢ã©ãŒã ãç¹°ãè¿ãé±ãšææ¥ãæå®ããŸãã"
#: recurrenceedit.cpp:1300
msgid "1st"
msgstr "1çªç®"
#: recurrenceedit.cpp:1301
msgid "2nd"
msgstr "2çªç®"
#: recurrenceedit.cpp:1302
msgid "3rd"
msgstr "3çªç®"
#: recurrenceedit.cpp:1303
msgid "4th"
msgstr "4çªç®"
#: recurrenceedit.cpp:1304
msgid "5th"
msgstr "5çªç®"
#: recurrenceedit.cpp:1305
msgid ""
"_: Last Monday in March\n"
"Last"
msgstr "æåŸ"
#: recurrenceedit.cpp:1306
msgid "2nd Last"
msgstr "æåŸãã2çªç®"
#: recurrenceedit.cpp:1307
msgid "3rd Last"
msgstr "æåŸãã3çªç®"
#: recurrenceedit.cpp:1308
msgid "4th Last"
msgstr "æåŸãã4çªç®"
#: recurrenceedit.cpp:1309
msgid "5th Last"
msgstr "æåŸãã5çªç®"
#: recurrenceedit.cpp:1312
msgid ""
"_: Every (Monday...) in month\n"
"Every"
msgstr "æ¯"
#: recurrenceedit.cpp:1315
msgid "Select the week of the month in which to repeat the alarm"
msgstr "ã¢ã©ãŒã ãç¹°ãè¿ãé±ãéžæããŸãã"
#: recurrenceedit.cpp:1328
msgid "Select the day of the week on which to repeat the alarm"
msgstr "ã¢ã©ãŒã ãç¹°ãè¿ãææ¥ãéžæããŸãã"
#: recurrenceedit.cpp:1446
msgid "month(s)"
msgstr "ã«æ"
#: recurrenceedit.cpp:1447
msgid "Enter the number of months between repetitions of the alarm"
msgstr "ã¢ã©ãŒã ãç¹°ãè¿ãå®è¡ããééãææ°ã§æå®ããŸãã"
#: recurrenceedit.cpp:1458
msgid "year(s)"
msgstr "幎"
#: recurrenceedit.cpp:1459
msgid "Enter the number of years between repetitions of the alarm"
msgstr "ã¢ã©ãŒã ãç¹°ãè¿ãå®è¡ããééã幎æ°ã§æå®ããŸãã"
#: recurrenceedit.cpp:1464
msgid ""
"_: List of months to select\n"
"Months:"
msgstr "æ:"
#: recurrenceedit.cpp:1483
msgid "Select the months of the year in which to repeat the alarm"
msgstr "ã¢ã©ãŒã ãç¹°ãè¿ãæãéžæããŸãã"
#: recurrenceedit.cpp:1490
msgid "February 2&9th alarm in non-leap years:"
msgstr "ããã幎以å€ã®å¹Žã§2æ29æ¥ã®ã¢ã©ãŒã ãå®è¡ããæ¥(&9):"
#: recurrenceedit.cpp:1493
msgid ""
"_: No date\n"
"None"
msgstr "ãªã"
#: recurrenceedit.cpp:1494
msgid ""
"_: 1st March (short form)\n"
"1 Mar"
msgstr "3æ1æ¥"
#: recurrenceedit.cpp:1495
msgid ""
"_: 28th February (short form)\n"
"28 Feb"
msgstr "2æ28æ¥"
#: recurrenceedit.cpp:1501
msgid ""
"Select which date, if any, the February 29th alarm should trigger in non-leap "
"years"
msgstr "ããã幎以å€ã®å¹Žã§2æ29æ¥ã®ã¢ã©ãŒã ãå®è¡ããæ¥ãããã°æå®ããŠãã ããã"
#: recurrenceedit.cpp:1585
msgid "No month selected"
msgstr "æãéžæãããŠããŸãã"
#: reminder.cpp:39
msgid "Reminder for first recurrence only"
msgstr "ååã®ã¢ã©ãŒã ã«ã®ã¿ãªãã€ã³ãã衚瀺ãã"
#: reminder.cpp:40
msgid "Reminder for first rec&urrence only"
msgstr "ååã®ã¢ã©ãŒã ã«ã®ã¿ãªãã€ã³ãã衚瀺ãã(&U)"
#: reminder.cpp:52
msgid "in advance"
msgstr "åã«"
#: reminder.cpp:64
msgid "Display the reminder only before the first time the alarm is scheduled"
msgstr "ååã®ã¢ã©ãŒã ã®åã«ã®ã¿ãªãã€ã³ãã衚瀺ããŸã"
#: repetition.cpp:85
msgid "Alarm Sub-Repetition"
msgstr "åäžã¢ã©ãŒã ã®å埩"
#: repetition.cpp:163
msgid ""
"_: Repeat every 10 minutes\n"
"&Repeat every"
msgstr "次ã®ééã§å埩(&R)"
#: repetition.cpp:164
msgid ""
"Instead of the alarm triggering just once at each recurrence, checking this "
"option makes the alarm trigger multiple times at each recurrence."
msgstr "ãã®ãªãã·ã§ã³ãæå¹ã«ãããšãäžåã®ç¹°ãè¿ãã«å¯ŸããŠã¢ã©ãŒã ãäœåºŠãå埩ãããããšãã§ããŸãã"
#: repetition.cpp:166
msgid "Enter the time between repetitions of the alarm"
msgstr "ã¢ã©ãŒã ãå埩ããééãèšå®ããŸãã"
#: repetition.cpp:179
msgid "&Number of repetitions:"
msgstr "å埩åæ°(&N):"
#: repetition.cpp:182
msgid ""
"Check to specify the number of times the alarm should repeat after each "
"recurrence"
msgstr "ããããã®ç¹°ãè¿ãã«å¯ŸããŠã¢ã©ãŒã ãå埩ããåæ°ãæå®ããå Žåãããããã§ãã¯ããŸãã"
#: repetition.cpp:190
msgid ""
"Enter the number of times to trigger the alarm after its initial occurrence"
msgstr "ã¢ã©ãŒã ãæåã«å®è¡ãããåŸã«åãã¢ã©ãŒã ãå埩ããåæ°ãæå®ããŸãã"
#: repetition.cpp:196
msgid "&Duration:"
msgstr "å埩ç¶ç¶æé(&D):"
#: repetition.cpp:199
msgid "Check to specify how long the alarm is to be repeated"
msgstr "ã¢ã©ãŒã ãå埩ããæéãæå®ããå Žåã¯ãããããã§ãã¯ããŸãã"
#: repetition.cpp:205
msgid "Enter the length of time to repeat the alarm"
msgstr "ã¢ã©ãŒã ãå埩ããæéãæå®ããŸãã"
#: sounddlg.cpp:63
msgid "Set volume"
msgstr "é³éèšå®"
#: sounddlg.cpp:64
msgid "Set &volume"
msgstr "é³éèšå®(&V)"
#: sounddlg.cpp:66
msgid "Re&peat"
msgstr "ç¹°ãè¿ã(&P)"
#: sounddlg.cpp:90 sounddlg.cpp:376
msgid "Test the sound"
msgstr "ãµãŠã³ãããã¹ã"
#: sounddlg.cpp:91 sounddlg.cpp:377
msgid "Play the selected sound file."
msgstr "éžæãããµãŠã³ããã¡ã€ã«ãåçããŸãã"
#: sounddlg.cpp:96
msgid "Enter the name or URL of a sound file to play."
msgstr "åçãããµãŠã³ãã®ãã¡ã€ã«åãŸã㯠URL ãå
¥åããŸãã"
#: sounddlg.cpp:104
msgid "Select a sound file to play."
msgstr "åçãããµãŠã³ããã¡ã€ã«ãéžæããŸãã"
#: sounddlg.cpp:110
msgid ""
"If checked, the sound file will be played repeatedly for as long as the message "
"is displayed."
msgstr "ããããã§ãã¯ãããšãã¡ãã»ãŒãžã衚瀺ãããŠããéããµãŠã³ããã¡ã€ã«ãç¹°ãè¿ãåçãããŸãã"
#: sounddlg.cpp:114
msgid "Volume"
msgstr "é³é"
#: sounddlg.cpp:133
msgid "Select to choose the volume for playing the sound file."
msgstr "ãµãŠã³ããã¡ã€ã«ãåçããé³éãæå®ããå Žåãããããã§ãã¯ããŸãã"
#: sounddlg.cpp:140
msgid "Choose the volume for playing the sound file."
msgstr "ãµãŠã³ããã¡ã€ã«ãåçããé³éãæå®ããŸãã"
#: sounddlg.cpp:144
msgid "Fade"
msgstr "ãã§ãŒãã€ã³"
#: sounddlg.cpp:148
msgid "Select to fade the volume when the sound file first starts to play."
msgstr "ãµãŠã³ããã¡ã€ã«ã®åçéå§æã«ãã§ãŒãã€ã³å¹æã䜿ãã«ã¯ãããããã§ãã¯ããŠãã ããã"
#: sounddlg.cpp:155
msgid ""
"_: Time period over which to fade the sound\n"
"Fade time:"
msgstr "ãã§ãŒãæé:"
#: sounddlg.cpp:163
msgid ""
"Enter how many seconds to fade the sound before reaching the set volume."
msgstr "èšå®ããé³éã«éãããŸã§ã®ç§æ°ãæå®ããŸãã"
#: sounddlg.cpp:169
msgid "Initial volume:"
msgstr "åæé³é:"
#: sounddlg.cpp:176
msgid "Choose the initial volume for playing the sound file."
msgstr "ãµãŠã³ããã¡ã€ã«ã®åçéå§æã®é³éãèšå®ããŸãã"
#: soundpicker.cpp:51
msgid ""
"_: An audio sound\n"
"Sound"
msgstr "ãµãŠã³ã"
#: soundpicker.cpp:53
msgid "Beep"
msgstr "ããŒã"
#: soundpicker.cpp:54
msgid "Speak"
msgstr "èªã¿äžã"
#: soundpicker.cpp:55
msgid "Sound file"
msgstr "ãµãŠã³ããã¡ã€ã«"
#: soundpicker.cpp:66
msgid ""
"_: An audio sound\n"
"&Sound:"
msgstr "ãµãŠã³ã(&S):"
#: soundpicker.cpp:86
msgid "Configure sound file"
msgstr "ãµãŠã³ããã¡ã€ã«ãèšå®"
#: soundpicker.cpp:87
msgid "Configure a sound file to play when the alarm is displayed."
msgstr "ã¢ã©ãŒã ã衚瀺ãããšãã«åçãããµãŠã³ããã¡ã€ã«ãèšå®ããŸãã"
#: soundpicker.cpp:116
msgid "Choose a sound to play when the message is displayed."
msgstr "ã¡ãã»ãŒãžã衚瀺ãããšãã«åçãããµãŠã³ããéžæããŸãã"
#: soundpicker.cpp:117
msgid "%1: the message is displayed silently."
msgstr "%1: ãµãŠã³ããªãã§ã¡ãã»ãŒãžã衚瀺ããŸãã"
#: soundpicker.cpp:118
msgid "%1: a simple beep is sounded."
msgstr "%1: åçŽãªããŒãé³ã鳎ãããŸãã"
#: soundpicker.cpp:119
msgid ""
"%1: an audio file is played. You will be prompted to choose the file and set "
"play options."
msgstr "%1: ãªãŒãã£ãªãã¡ã€ã«ãåçããŸããåçãããã¡ã€ã«ãéžæããåçãªãã·ã§ã³ãèšå®ããŸãã"
#: soundpicker.cpp:127
msgid "%1: the message text is spoken."
msgstr "%1: ã¡ãã»ãŒãžã®ããã¹ããèªã¿äžããŸãã"
#: soundpicker.cpp:239
msgid "Sound File"
msgstr "ãµãŠã³ããã¡ã€ã«"
#: soundpicker.cpp:286
msgid "Sound Files"
msgstr "ãµãŠã³ããã¡ã€ã«"
#: soundpicker.cpp:286
msgid "All Files"
msgstr "ãã¹ãŠã®ãã¡ã€ã«"
#: soundpicker.cpp:291
msgid "Choose Sound File"
msgstr "ãµãŠã³ããã¡ã€ã«ãéžæ"
#: specialactions.cpp:51
msgid "Specify actions to execute before and after the alarm is displayed."
msgstr "ã¢ã©ãŒã ã衚瀺ããååŸã«å®è¡ããã¢ã¯ã·ã§ã³ãèšå®ããŸãã"
#: specialactions.cpp:72
msgid "Special Alarm Actions"
msgstr "ã¢ã©ãŒã ã®è¿œå ã¢ã¯ã·ã§ã³"
#: specialactions.cpp:144
msgid "Pre-a&larm action:"
msgstr "ã¢ã©ãŒã åã®ã¢ã¯ã·ã§ã³(&L):"
#: specialactions.cpp:151
msgid ""
"Enter a shell command to execute before the alarm is displayed.\n"
"Note that it is executed only when the alarm proper is displayed, not when a "
"reminder or deferred alarm is displayed.\n"
"N.B. KAlarm will wait for the command to complete before displaying the alarm."
msgstr ""
"ã¢ã©ãŒã ã衚瀺ããåã«å®è¡ããã·ã§ã«ã³ãã³ããå
¥åããŸãã\n"
"ããã¯æ¬æ¥ã®ã¢ã©ãŒã ã衚瀺ãããšãã«ã®ã¿å®è¡ããŸãããªãã€ã³ããé
延ãããã¢ã©ãŒã ã衚瀺ãããšãã«ã¯å®è¡ããŸããã\n"
"泚æ: ã³ãã³ããå®äºãããŸã§ã¢ã©ãŒã ã¯è¡šç€ºãããŸããã"
#: specialactions.cpp:158
msgid "Post-alar&m action:"
msgstr "ã¢ã©ãŒã åŸã®ã¢ã¯ã·ã§ã³(&M):"
#: specialactions.cpp:165
msgid ""
"Enter a shell command to execute after the alarm window is closed.\n"
"Note that it is not executed after closing a reminder window. If you defer the "
"alarm, it is not executed until the alarm is finally acknowledged or closed."
msgstr ""
"ã¢ã©ãŒã ãŠã£ã³ããŠãéããåŸã«å®è¡ããã·ã§ã«ã³ãã³ããå
¥åããŸãã\n"
"ããã¯ãªãã€ã³ãã®ãŠã£ã³ããŠãéãããšãã«ã¯å®è¡ããŸãããã¢ã©ãŒã ãé
延ãããå Žåã¯ããã®ã¢ã©ãŒã ãæçµçã«äºè§£ããŠãŠã£ã³ããŠãéãããšãã«å®è¡ããŸãã"
#: templatedlg.cpp:47
msgid "Alarm Templates"
msgstr "ã¢ã©ãŒã ãã³ãã¬ãŒã"
#: templatedlg.cpp:54
msgid "The list of alarm templates"
msgstr "ã¢ã©ãŒã ãã³ãã¬ãŒãã®ãªã¹ã"
#: templatedlg.cpp:63
msgid "Create a new alarm template"
msgstr "æ°ããã¢ã©ãŒã ãã³ãã¬ãŒããäœæããŸã"
#: templatedlg.cpp:68
msgid "Edit the currently highlighted alarm template"
msgstr "çŸåšéžæãããŠããã¢ã©ãŒã ãã³ãã¬ãŒããç·šéããŸã"
#: templatedlg.cpp:71
msgid "Co&py"
msgstr "ã³ããŒ(&P)"
#: templatedlg.cpp:74
msgid ""
"Create a new alarm template based on a copy of the currently highlighted "
"template"
msgstr "çŸåšéžæãããŠããã¢ã©ãŒã ãã³ãã¬ãŒãã«åºã¥ããŠæ°ããã¢ã©ãŒã ãã³ãã¬ãŒããäœæããŸã"
#: templatedlg.cpp:79
msgid "Delete the currently highlighted alarm template"
msgstr "çŸåšéžæãããŠããã¢ã©ãŒã ãã³ãã¬ãŒããåé€ããŸã"
#: templatedlg.cpp:143
msgid "New Alarm Template"
msgstr "æ°èŠã¢ã©ãŒã ãã³ãã¬ãŒã"
#: templatedlg.cpp:165
msgid "Edit Alarm Template"
msgstr "ã¢ã©ãŒã ãã³ãã¬ãŒããç·šéããŸã"
#: templatedlg.cpp:189
#, c-format
msgid ""
"_n: Do you really want to delete the selected alarm template?\n"
"Do you really want to delete the %n selected alarm templates?"
msgstr "æ¬åœã«éžæãã %n åã®ã¢ã©ãŒã ãã³ãã¬ãŒããåé€ããŸããïŒ"
#: templatedlg.cpp:190
msgid ""
"_n: Delete Alarm Template\n"
"Delete Alarm Templates"
msgstr "ã¢ã©ãŒã ãã³ãã¬ãŒããåé€"
#: templatelistview.cpp:83
msgid "Alarm type"
msgstr "ã¢ã©ãŒã ã¿ã€ã"
#: templatelistview.cpp:85
msgid "Name of the alarm template"
msgstr "ã¢ã©ãŒã ãã³ãã¬ãŒãã®åå"
#: templatepickdlg.cpp:38
msgid "Choose Alarm Template"
msgstr "ã¢ã©ãŒã ãã³ãã¬ãŒããéžæ"
#: templatepickdlg.cpp:46
msgid "Select a template to base the new alarm on."
msgstr "æ°èŠã¢ã©ãŒã ã«æµçšãããã³ãã¬ãŒããéžæããŸãã"
#: traywindow.cpp:83
msgid "Cannot load system tray icon."
msgstr "ã·ã¹ãã ãã¬ã€ã¢ã€ã³ã³ãããŒãã§ããŸããã"
#: traywindow.cpp:91
msgid "&New Alarm..."
msgstr "æ°èŠã¢ã©ãŒã (&N)..."
#: traywindow.cpp:92
msgid "New Alarm From &Template"
msgstr "ãã³ãã¬ãŒãããæ°èŠã¢ã©ãŒã ãäœæ(&T)"
#: traywindow.cpp:269
msgid ""
"_: prefix + hours:minutes\n"
"(%1%2:%3)"
msgstr "(%1%2:%3)"
#: traywindow.cpp:271
msgid ""
"_: prefix + hours:minutes\n"
"%1%2:%3"
msgstr "%1%2:%3"
#: traywindow.cpp:356
msgid "%1 - disabled"
msgstr "%1 - ç¡å¹"
#: undo.cpp:353
msgid "Alarm not found"
msgstr "ã¢ã©ãŒã ãèŠã€ãããŸãã"
#: undo.cpp:354
msgid "Error recreating alarm"
msgstr "ã¢ã©ãŒã ã®åäœæãšã©ãŒ"
#: undo.cpp:355
msgid "Error recreating alarm template"
msgstr "ã¢ã©ãŒã ãã³ãã¬ãŒãã®åäœæãšã©ãŒ"
#: undo.cpp:356
msgid "Cannot reactivate expired alarm"
msgstr "æéåãã¢ã©ãŒã ãåæå¹åã§ããŸãã"
#: undo.cpp:357
msgid "Program error"
msgstr "ããã°ã©ã ãšã©ãŒ"
#: undo.cpp:358
msgid "Unknown error"
msgstr "æªç¥ã®ãšã©ãŒ"
#: undo.cpp:360
msgid ""
"_: Undo-action: message\n"
"%1: %2"
msgstr "%1: %2"
#: undo.cpp:595
msgid ""
"_: Action to create a new alarm\n"
"New alarm"
msgstr "æ°èŠã¢ã©ãŒã "
#: undo.cpp:597
msgid ""
"_: Action to delete an alarm\n"
"Delete alarm"
msgstr "ã¢ã©ãŒã ãåé€"
#: undo.cpp:600
msgid ""
"_: Action to create a new alarm template\n"
"New template"
msgstr "æ°èŠãã³ãã¬ãŒã"
#: undo.cpp:602
msgid ""
"_: Action to delete an alarm template\n"
"Delete template"
msgstr "ã¢ã©ãŒã ãåé€"
#: undo.cpp:604
msgid "Delete expired alarm"
msgstr "æéåãã®ã¢ã©ãŒã ãåé€"
#: undo.cpp:864
msgid ""
"_: Action to edit an alarm\n"
"Edit alarm"
msgstr "ã¢ã©ãŒã ãç·šé"
#: undo.cpp:866
msgid ""
"_: Action to edit an alarm template\n"
"Edit template"
msgstr "ãã³ãã¬ãŒããç·šé"
#: undo.cpp:1007
msgid "Delete multiple alarms"
msgstr "è€æ°ã®ã¢ã©ãŒã ãåé€"
#: undo.cpp:1009
msgid "Delete multiple templates"
msgstr "è€æ°ã®ãã³ãã¬ãŒããåé€"
#: undo.cpp:1016
msgid "Delete multiple expired alarms"
msgstr "è€æ°ã®æéåãã¢ã©ãŒã ãåé€"
#: undo.cpp:1059 undo.cpp:1103
msgid "Reactivate alarm"
msgstr "ã¢ã©ãŒã ãåæå¹å"
#: undo.cpp:1126
msgid "Reactivate multiple alarms"
msgstr "è€æ°ã®ã¢ã©ãŒã ãåæå¹å"
#: lib/colourcombo.cpp:185
msgid "Custom..."
msgstr "ã«ã¹ã¿ã ..."
#: lib/dateedit.cpp:63
#, c-format
msgid "Date cannot be earlier than %1"
msgstr "æ¥ä»ã¯ %1 ããåŸã§ãªããã°ãªããŸãã"
#: lib/dateedit.cpp:68
#, c-format
msgid "Date cannot be later than %1"
msgstr "æ¥ä»ã¯ %1 ããåã§ãªããã°ãªããŸãã"
#: lib/dateedit.cpp:79
msgid "today"
msgstr "ä»æ¥"
#: lib/shellprocess.cpp:146
msgid "Failed to execute command (shell access not authorized):"
msgstr "ã³ãã³ãå®è¡ã«å€±æ (ã·ã§ã«ã¢ã¯ã»ã¹ãèš±å¯ãããŠããŸãã):"
#: lib/shellprocess.cpp:149
msgid "Failed to execute command:"
msgstr "ã³ãã³ãã®å®è¡ã«å€±æ:"
#: lib/shellprocess.cpp:151
msgid "Command execution error:"
msgstr "ã³ãã³ãå®è¡ãšã©ãŒ:"
#: lib/timeperiod.cpp:37
msgid "minutes"
msgstr "å"
#: lib/timeperiod.cpp:38
msgid "Minutes"
msgstr "å"
#: lib/timeperiod.cpp:39
msgid "hours/minutes"
msgstr "æé/å"
#: lib/timeperiod.cpp:40
msgid "Hours/Minutes"
msgstr "æé/å"
#: lib/timeperiod.cpp:41
msgid "days"
msgstr "æ¥"
#: lib/timeperiod.cpp:42
msgid "Days"
msgstr "æ¥"
#: lib/timeperiod.cpp:43
msgid "weeks"
msgstr "é±é"
#: lib/timeperiod.cpp:44
msgid "Weeks"
msgstr "é±é"
#: lib/timespinbox.cpp:96
msgid ""
"Press the Shift key while clicking the spin buttons to adjust the time by a "
"larger step (6 hours / 5 minutes)."
msgstr "Shift ããŒãæŒããªããã¹ãã³ãã¿ã³ãã¯ãªãã¯ãããšããã倧ããªåäœã§ (6æé/5å) æéã調æŽããããšãã§ããŸãã"
#: kalarmd/admain.cpp:42
msgid "KAlarm Daemon"
msgstr "KAlarm ããŒã¢ã³"
#: kalarmd/admain.cpp:43
msgid "KAlarm Alarm Daemon"
msgstr "KAlarm ã¢ã©ãŒã ããŒã¢ã³"
#: kalarmd/admain.cpp:46
msgid "Maintainer"
msgstr "ã¡ã³ãã"
#: kalarmd/admain.cpp:47
msgid "Author"
msgstr "äœè
"
#: kalarmd/admain.cpp:48
msgid "Original Author"
msgstr "ãªãªãžãã«ã®äœè
"
|