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
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
|
# Japanese translations for Ampache package
# Ampache.
# Copyright (C) 2009 Ampache.org
# This file is distributed under the same license as the Ampache package.
# momo-i <webmaster at momo-i.org>, 2008.
#
msgid ""
msgstr ""
"Project-Id-Version: Ampache SVN $Rev$\n"
"Report-Msgid-Bugs-To: translations at ampache.org\n"
"POT-Creation-Date: 2009-09-08 19:27-0300\n"
"PO-Revision-Date: 2008-07-14 20:44+0900\n"
"Last-Translator: momo-i <webmaster at momo-i.org>\n"
"Language-Team: Japanese\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: ../../register.php:73
msgid "Error Captcha Required"
msgstr "エラー: Captchaは必須です"
#: ../../register.php:80
msgid "Error Captcha Failed"
msgstr "エラー: Captcha失敗"
#: ../../register.php:87
msgid "You <U>must</U> accept the user agreement"
msgstr "同意しなければなりません。"
#: ../../register.php:92
msgid "You did not enter a username"
msgstr "ユーザ名が入力されていません"
#: ../../register.php:96
msgid "Please fill in your full name (Firstname Lastname)"
msgstr "フルネームを記入してください"
#: ../../register.php:117
msgid "Error Email address not confirmed"
msgstr "エラー: メールアドレスが確認されません"
#: ../../register.php:123
msgid "You must enter a password"
msgstr "パスワードを入力してください"
#: ../../register.php:127
msgid "Your passwords do not match"
msgstr "パスワードが一致しません"
#: ../../register.php:131 ../../admin/users.php:110
msgid "Error Username already exists"
msgstr "エラー: ユーザ名はすでに存在します"
#: ../../register.php:159 ../../admin/users.php:117
msgid "Error: Insert Failed"
msgstr "エラー: 挿入失敗"
#: ../../update.php:47 ../../update.php:51
msgid "Ampache Update"
msgstr "Apmache更新"
#: ../../update.php:56
#, php-format
msgid ""
"This page handles all database updates to Ampache starting with "
"<strong>3.3.3.5</strong>. According to your database your current version "
"is: <strong>%s</strong>."
msgstr ""
"このページは<strong>3.3.3.5</strong>から始まるAmpacheの全データベースの更新を"
"扱います。あなたのデータベースによると、あなたの最新版は以下の通りです: "
"<strong>%s</strong>"
#: ../../update.php:57
msgid "the following updates need to be performed"
msgstr "以下の必要な更新が実行されました"
#: ../../update.php:64
msgid "Update Now!"
msgstr "今すぐ更新!"
#: ../../update.php:68
msgid "Ampache Installation."
msgstr "Ampache インストール"
#: ../../play/index.php:84
msgid "Session Expired: please log in again at"
msgstr "セッション期限切れ: 再ログインしてください"
#. HINT: Artist, Song Title
#: ../../song.php:42 ../../song.php:60
#, php-format
msgid "%1$s - %2$s Lyrics Detail"
msgstr "%1$s - %2$s 歌詞詳細"
#: ../../radio.php:50
msgid "Radio Station Added"
msgstr "ラジオステーションを追加しました"
#: ../../admin/flag.php:88
msgid "Song Updated"
msgstr "曲を更新しました"
#: ../../admin/flag.php:88
msgid "The requested song has been updated"
msgstr "要求された曲を更新しました"
#: ../../admin/flag.php:130
msgid "Album Updated"
msgstr "アルバムを更新しました"
#: ../../admin/flag.php:172
msgid "Artist Updated"
msgstr "アーティストを更新しました"
#: ../../admin/flag.php:237
msgid "Songs Updated"
msgstr "曲を更新しました"
#: ../../admin/flag.php:245
msgid "Flag Removed"
msgstr "フラグを削除しました"
#: ../../admin/flag.php:246
msgid "Flag Removed from"
msgstr "次からフラグを削除しました:"
#: ../../admin/flag.php:261
msgid "Flags Updated"
msgstr "フラグを更新しました"
#: ../../admin/flag.php:280
msgid "Songs Disabled"
msgstr "曲を無効にしました"
#: ../../admin/flag.php:280
msgid "The requested song(s) have been disabled"
msgstr "要求された曲は無効化されました"
#: ../../admin/flag.php:291
msgid "Songs Enabled"
msgstr "曲を有効にしました"
#: ../../admin/flag.php:291
msgid "The requested song(s) have been enabled"
msgstr "要求された曲は有効化されました"
#: ../../admin/catalog.php:54 ../../admin/catalog.php:74
#: ../../admin/catalog.php:99 ../../admin/catalog.php:171
msgid "Catalog Updated"
msgstr "カタログを更新しました"
#: ../../admin/catalog.php:116
msgid "Catalog Deleted"
msgstr "カタログを削除しました"
#: ../../admin/catalog.php:116
msgid "The Catalog and all associated records have been deleted"
msgstr "カタログと全ての割り当てられたレコードを削除しました"
#: ../../admin/catalog.php:122
msgid "Catalog Delete"
msgstr "カタログの削除"
#: ../../admin/catalog.php:122
msgid "Confirm Deletion Request"
msgstr "削除要求の確認"
#: ../../admin/catalog.php:131
msgid "Song Removed"
msgid_plural "Songs Removed"
msgstr[0] "曲を削除しました"
#: ../../admin/catalog.php:134
msgid "No Songs Removed"
msgstr "曲は削除されませんでした"
#: ../../admin/catalog.php:137
msgid "Disabled Song Processed"
msgid_plural "Disabled Songs Processed"
msgstr[0] "曲の無効化を実行しました"
#: ../../admin/catalog.php:158
msgid "Catalog Cleaned"
msgstr "カタログをクリーンにしました"
#: ../../admin/catalog.php:202
msgid "Error: Name and path not specified"
msgstr ""
#: ../../admin/catalog.php:206
msgid "Error: Remote selected, but path is not a URL"
msgstr ""
#: ../../admin/catalog.php:210
msgid "Error: Remote Catalog specified, but no key provided"
msgstr ""
#: ../../admin/catalog.php:215
msgid "Error: Defined Path is inside an existing catalog"
msgstr "エラー: 定義されたパスは既存のカタログ内です"
#: ../../admin/catalog.php:234
msgid "Catalog Created"
msgstr "カタログを作成しました"
#: ../../admin/catalog.php:251
msgid "Catalog statistics cleared"
msgstr "カタログ統計を削除しました"
#: ../../admin/catalog.php:264
msgid "Now Playing Cleared"
msgstr "現在再生中のものをクリアしました"
#: ../../admin/catalog.php:264
msgid "All now playing data has been cleared"
msgstr "現在再生中のデータは全てクリアされました"
#: ../../admin/catalog.php:275
msgid "No Disabled songs found"
msgstr "無効にした曲は見つかりませんでした"
#: ../../admin/catalog.php:284
msgid "Delete Catalog"
msgstr "カタログの削除"
#: ../../admin/catalog.php:284
msgid "Do you really want to delete this catalog?"
msgstr "このカタログを削除してもよろしいですか?"
#: ../../admin/catalog.php:304
msgid "Album Art Search Finished"
msgstr "アルバムアート検索が完了しました"
#: ../../admin/users.php:55 ../../admin/users.php:105
#: ../../lib/class/user.class.php:379
msgid "Error Username Required"
msgstr "エラー: ユーザ名は必須です"
#: ../../admin/users.php:58 ../../admin/users.php:101
#: ../../lib/class/user.class.php:383
msgid "Error Passwords don't match"
msgstr "エラー: パスワードが一致しません"
#: ../../admin/users.php:83
msgid "User Updated"
msgstr "ユーザを更新しました"
#: ../../admin/users.php:83
msgid "updated"
msgstr "更新しました"
#: ../../admin/users.php:125 ../../templates/show_edit_user.inc.php:77
#: ../../templates/show_preference_admin.inc.php:41
#: ../../templates/show_add_user.inc.php:74
#: ../../templates/show_preference_box.inc.php:58
#: ../../lib/class/democratic.class.php:145
msgid "Guest"
msgstr "ゲスト"
#: ../../admin/users.php:126 ../../templates/show_add_access_local.inc.php:41
#: ../../templates/show_flagged.inc.php:35
#: ../../templates/show_flagged.inc.php:54
#: ../../templates/show_access_list.inc.php:59
#: ../../templates/show_edit_user.inc.php:78
#: ../../templates/show_create_democratic.inc.php:42
#: ../../templates/show_add_access_current.inc.php:44
#: ../../templates/show_preference_admin.inc.php:42
#: ../../templates/show_edit_access.inc.php:60
#: ../../templates/show_mail_users.inc.php:31
#: ../../templates/show_add_user.inc.php:75
#: ../../templates/show_add_access.inc.php:41
#: ../../templates/show_preference_box.inc.php:59
#: ../../templates/show_manage_shoutbox.inc.php:35
#: ../../templates/show_manage_shoutbox.inc.php:59
#: ../../templates/show_add_access_rpc.inc.php:41
#: ../../lib/class/democratic.class.php:148 ../../lib/preferences.php:232
msgid "User"
msgstr "ユーザ"
#: ../../admin/users.php:127 ../../templates/show_edit_user.inc.php:81
#: ../../templates/show_create_democratic.inc.php:45
#: ../../templates/sidebar.inc.php:31
#: ../../templates/show_preference_admin.inc.php:43
#: ../../templates/show_mail_users.inc.php:32
#: ../../templates/show_add_user.inc.php:78
#: ../../templates/show_preference_box.inc.php:62
#: ../../templates/show_democratic_playlist.inc.php:61
#: ../../templates/show_democratic_playlist.inc.php:101
#: ../../lib/class/democratic.class.php:157 ../../lib/preferences.php:234
msgid "Admin"
msgstr "管理者"
#. HINT: %1 Username, %2 Access num
#: ../../admin/users.php:130
msgid "New User Added"
msgstr "新規ユーザを追加しました"
#: ../../admin/users.php:130
#, php-format
msgid "%1$s has been created with an access level of %2$s"
msgstr ""
#: ../../admin/users.php:135
msgid "User Enabled"
msgstr "ユーザを有効化しました"
#: ../../admin/users.php:140
msgid "User Disabled"
msgstr "ユーザを無効化しました"
#: ../../admin/users.php:143 ../../lib/class/artist.class.php:354
#: ../../lib/class/catalog.class.php:1240
msgid "Error"
msgstr "エラー"
#: ../../admin/users.php:143
msgid "Unable to Disabled last Administrator"
msgstr "最後の管理者は無効に出来ません"
#: ../../admin/users.php:155
msgid "User Deleted"
msgstr "ユーザを削除しました"
#: ../../admin/users.php:155
#, fuzzy, php-format
msgid "%s has been Deleted"
msgstr "を作成しました"
#: ../../admin/users.php:158
msgid "Delete Error"
msgstr "削除エラー"
#: ../../admin/users.php:158
msgid "Unable to delete last Admin User"
msgstr "最後の管理者は削除できません"
#: ../../admin/users.php:164
msgid "Deletion Request"
msgstr "削除要求"
#: ../../admin/users.php:165
#, fuzzy, php-format
msgid "Are you sure you want to permanently delete %s?"
msgstr "完全に削除してもよろしいですか?"
#: ../../admin/modules.php:38
msgid "Install Failed, Controller Error"
msgstr "コントロールエラーのためインストール失敗"
#: ../../admin/modules.php:56 ../../admin/modules.php:101
msgid "Are you sure you want to remove this plugin?"
msgstr "このプラグインを削除してもよろしいですか?"
#: ../../admin/modules.php:68 ../../admin/modules.php:120
msgid "Plugin Deactivated"
msgstr "プラグインを無効化しました"
#: ../../admin/modules.php:83
msgid "Unable to Install Plugin"
msgstr "プラグインをインストールできませんでした"
#: ../../admin/modules.php:94
msgid "Plugin Activated"
msgstr "プラグインを有効化しました"
#: ../../admin/modules.php:129
msgid "Plugins"
msgstr "プラグイン"
#: ../../admin/modules.php:135
msgid "Localplay Controllers"
msgstr "ローカル再生コントローラ"
#: ../../admin/shout.php:35
msgid "Shoutbox Post Updated"
msgstr "シャウトボックスの投稿を更新しました"
#: ../../admin/shout.php:47
msgid "Shoutbox Post Deleted"
msgstr "シャウトボックスの投稿を削除しました"
#: ../../admin/access.php:35
msgid "Deleted"
msgstr "削除しました"
#: ../../admin/access.php:35
msgid "Your Access List Entry has been removed"
msgstr "アクセスリストエントリを削除しました"
#: ../../admin/access.php:93 ../../templates/show_song.inc.php:60
#: ../../lib/class/catalog.class.php:1348
msgid "Added"
msgstr "追加しました"
#: ../../admin/access.php:93
msgid "Your new Access Control List(s) have been created"
msgstr "新しいアクセスコントロールリストを作成しました"
#: ../../admin/access.php:109 ../../preferences.php:111
#: ../../lib/class/catalog.class.php:1032
#: ../../lib/class/catalog.class.php:1936
msgid "Updated"
msgstr "更新しました"
#: ../../admin/access.php:109
msgid "Access List Entry updated"
msgstr "アクセスリストエントリを更新しました"
#: ../../admin/system.php:49
msgid "Database Charset Updated"
msgstr "データベースCharsetを更新しました"
#: ../../admin/system.php:49
msgid ""
"Your Database and associated tables have been updated to match your "
"currently configured charset"
msgstr ""
"データベースと割り当てられたテーブルは現在設定されたCharsetに一致する更新をし"
"ました。"
#: ../../admin/mail.php:79
msgid "E-mail Sent"
msgstr "メール送信"
#: ../../admin/mail.php:80
msgid "Your E-mail was successfully sent."
msgstr "メールは送信されました。"
#: ../../preferences.php:40 ../../preferences.php:75
msgid "Server"
msgstr "サーバ"
#: ../../preferences.php:107
msgid "Error Update Failed"
msgstr "エラー: 更新失敗"
#: ../../preferences.php:112
msgid "Your Account has been updated"
msgstr "アカウントを更新しました"
#: ../../flag.php:45
msgid "Item Flagged"
msgstr "アイテムをフラグしました"
#: ../../flag.php:45
msgid "The specified item has been flagged"
msgstr "指定されたアイテムはフラグ済みです"
#: ../../templates/show_add_access_local.inc.php:22
#: ../../templates/show_access_list.inc.php:40
#: ../../templates/show_access_list.inc.php:41
msgid "Add Local Network Definition"
msgstr "ローカルネットワーク定義の追加"
#: ../../templates/show_add_access_local.inc.php:26
#: ../../templates/show_admin_tools.inc.php:33
#: ../../templates/show_admin_tools.inc.php:73
#: ../../templates/show_catalogs.inc.php:33
#: ../../templates/show_catalogs.inc.php:57
#: ../../templates/show_access_list.inc.php:55
#: ../../templates/show_create_democratic.inc.php:26
#: ../../templates/show_localplay_controllers.inc.php:32
#: ../../templates/show_localplay_controllers.inc.php:63
#: ../../templates/show_add_playlist.inc.php:28
#: ../../templates/show_add_access_current.inc.php:26
#: ../../templates/show_localplay_playlist.inc.php:34
#: ../../templates/show_localplay_playlist.inc.php:60
#: ../../templates/show_stats.inc.php:63
#: ../../templates/show_add_live_stream.inc.php:28
#: ../../templates/show_edit_access.inc.php:26
#: ../../templates/show_add_access.inc.php:26
#: ../../templates/show_playlist_edit.inc.php:30
#: ../../templates/show_edit_catalog.inc.php:26
#: ../../templates/show_edit_artist.inc.php:27
#: ../../templates/show_edit_album.inc.php:27
#: ../../templates/show_plugins.inc.php:32
#: ../../templates/show_plugins.inc.php:61
#: ../../templates/show_live_streams.inc.php:36
#: ../../templates/show_live_streams.inc.php:58
#: ../../templates/show_edit_live_stream_row.inc.php:26
#: ../../templates/show_account.inc.php:27
#: ../../templates/show_add_access_rpc.inc.php:26
msgid "Name"
msgstr "名前"
#: ../../templates/show_add_access_local.inc.php:32
#: ../../templates/show_access_list.inc.php:58
#: ../../templates/show_manage_democratic.inc.php:37
#: ../../templates/show_create_democratic.inc.php:39
#: ../../templates/show_add_access_current.inc.php:35
#: ../../templates/show_preference_admin.inc.php:31
#: ../../templates/show_preference_admin.inc.php:50
#: ../../templates/show_edit_access.inc.php:72
#: ../../templates/show_add_access.inc.php:32
#: ../../templates/show_add_access_rpc.inc.php:32
msgid "Level"
msgstr "レベル"
#: ../../templates/show_add_access_local.inc.php:34
#: ../../templates/show_add_access_current.inc.php:37
#: ../../templates/show_edit_access.inc.php:75
#: ../../templates/show_add_access.inc.php:34
#: ../../templates/show_play_selected.inc.php:49
#: ../../templates/show_add_access_rpc.inc.php:34
#: ../../lib/class/access.class.php:411
msgid "View"
msgstr "閲覧"
#: ../../templates/show_add_access_local.inc.php:35
#: ../../templates/show_add_access_current.inc.php:38
#: ../../templates/show_edit_access.inc.php:76
#: ../../templates/show_add_access.inc.php:35
#: ../../templates/show_add_access_rpc.inc.php:35
#: ../../lib/class/access.class.php:414
msgid "Read"
msgstr "読取"
#: ../../templates/show_add_access_local.inc.php:36
#: ../../templates/show_add_access_current.inc.php:39
#: ../../templates/show_edit_access.inc.php:77
#: ../../templates/show_add_access.inc.php:36
#: ../../templates/show_add_access_rpc.inc.php:36
#: ../../lib/class/access.class.php:417
msgid "Read/Write"
msgstr "読取/書込"
#: ../../templates/show_add_access_local.inc.php:37
#: ../../templates/show_add_access_local.inc.php:52
#: ../../templates/show_admin_tools.inc.php:51
#: ../../templates/show_add_access_current.inc.php:40
#: ../../templates/show_edit_access.inc.php:78
#: ../../templates/show_mail_users.inc.php:30
#: ../../templates/show_add_access.inc.php:37
#: ../../templates/show_random.inc.php:38
#: ../../templates/show_export.inc.php:35
#: ../../templates/show_add_access_rpc.inc.php:37
#: ../../templates/show_add_access_rpc.inc.php:52
#: ../../lib/class/access.class.php:408 ../../lib/class/access.class.php:428
#: ../../lib/ui.lib.php:543
msgid "All"
msgstr "全て"
#: ../../templates/show_add_access_local.inc.php:48
#: ../../templates/show_access_list.inc.php:61
#: ../../templates/show_add_playlist.inc.php:32
#: ../../templates/show_playlist_edit.inc.php:36
#: ../../templates/show_random.inc.php:58
#: ../../templates/show_add_access_rpc.inc.php:48
msgid "Type"
msgstr "タイプ"
#: ../../templates/show_add_access_local.inc.php:50
#: ../../templates/show_add_access_local.inc.php:51
#: ../../templates/show_add_access_local.inc.php:52
#: ../../templates/show_edit_access.inc.php:36
#: ../../templates/show_add_access.inc.php:53
#: ../../lib/class/access.class.php:447
msgid "Local Network Definition"
msgstr "ローカルネットワーク定義"
#: ../../templates/show_add_access_local.inc.php:51
#: ../../templates/show_edit_access.inc.php:34
#: ../../templates/show_add_access.inc.php:51
#: ../../templates/show_add_access_rpc.inc.php:51
#: ../../lib/class/access.class.php:454
msgid "Stream Access"
msgstr "ストリームアクセス"
#: ../../templates/show_add_access_local.inc.php:51
#: ../../templates/show_edit_access.inc.php:35
#: ../../templates/show_add_access.inc.php:52
#: ../../lib/class/access.class.php:450
msgid "Web Interface"
msgstr "ウェブインタフェース"
#: ../../templates/show_add_access_local.inc.php:56
#: ../../templates/show_add_access_current.inc.php:50
#: ../../templates/show_add_access.inc.php:59
#: ../../templates/show_add_access_rpc.inc.php:56
msgid "RPC Options"
msgstr "RPCオプション"
#: ../../templates/show_add_access_local.inc.php:59
#: ../../templates/show_add_access_current.inc.php:53
#: ../../templates/show_edit_access.inc.php:66
#: ../../templates/show_add_access.inc.php:62
#: ../../templates/show_add_access_rpc.inc.php:59
msgid "Remote Key"
msgstr "リモートキー"
#: ../../templates/show_add_access_local.inc.php:66
#: ../../templates/show_add_access_current.inc.php:32
#: ../../templates/show_edit_access.inc.php:43
#: ../../templates/show_add_access.inc.php:69
#: ../../templates/show_add_access_rpc.inc.php:66
msgid "IPv4 or IPv6 Addresses"
msgstr "IPv4又はIPv6アドレス"
#: ../../templates/show_add_access_local.inc.php:71
#: ../../templates/show_edit_access.inc.php:48
#: ../../templates/show_add_access.inc.php:74
#: ../../templates/show_add_access_rpc.inc.php:71
msgid "Start"
msgstr "開始"
#: ../../templates/show_add_access_local.inc.php:76
#: ../../templates/show_edit_access.inc.php:53
#: ../../templates/show_add_access.inc.php:79
#: ../../templates/show_add_access_rpc.inc.php:76
msgid "End"
msgstr "終了"
#: ../../templates/show_add_access_local.inc.php:85
#: ../../templates/show_add_access_current.inc.php:61
#: ../../templates/show_add_access.inc.php:88
#: ../../templates/show_add_access_rpc.inc.php:85
msgid "Create ACL"
msgstr "ACL作成"
#: ../../templates/show_admin_tools.inc.php:26
#: ../../templates/show_stats.inc.php:25
#: ../../templates/sidebar_admin.inc.php:24
#: ../../lib/class/browse.class.php:187
msgid "Catalogs"
msgstr "カタログ"
#: ../../templates/show_admin_tools.inc.php:34
#: ../../templates/show_admin_tools.inc.php:74
#: ../../templates/show_flagged.inc.php:39
#: ../../templates/show_flagged.inc.php:58
#: ../../templates/show_song.inc.php:30 ../../templates/show_songs.inc.php:51
#: ../../templates/show_songs.inc.php:78
#: ../../templates/show_random_rules.inc.php:36
#: ../../templates/show_access_list.inc.php:62
#: ../../templates/show_users.inc.php:46 ../../templates/show_users.inc.php:68
#: ../../templates/show_manage_democratic.inc.php:40
#: ../../templates/show_genres.inc.php:39
#: ../../templates/show_genres.inc.php:75
#: ../../templates/show_localplay_controllers.inc.php:35
#: ../../templates/show_localplay_controllers.inc.php:66
#: ../../templates/show_localplay_playlist.inc.php:35
#: ../../templates/show_localplay_playlist.inc.php:61
#: ../../templates/show_localplay_instances.inc.php:29
#: ../../templates/show_artists.inc.php:43
#: ../../templates/show_artists.inc.php:71
#: ../../templates/show_democratic_playlist.inc.php:54
#: ../../templates/show_democratic_playlist.inc.php:94
#: ../../templates/show_plugins.inc.php:35
#: ../../templates/show_plugins.inc.php:64
#: ../../templates/show_videos.inc.php:42
#: ../../templates/show_videos.inc.php:66
#: ../../templates/show_playlist_songs.inc.php:48
#: ../../templates/show_playlist_songs.inc.php:69
#: ../../templates/show_manage_shoutbox.inc.php:39
#: ../../templates/show_manage_shoutbox.inc.php:63
#: ../../templates/show_live_streams.inc.php:40
#: ../../templates/show_live_streams.inc.php:62
msgid "Action"
msgstr "操作"
#. HINT: Artist Fullname
#: ../../templates/show_admin_tools.inc.php:45
#: ../../templates/show_video_row.inc.php:23
#: ../../templates/show_song.inc.php:32 ../../templates/show_songs.inc.php:39
#: ../../templates/show_songs.inc.php:68
#: ../../templates/show_song_row.inc.php:23
#: ../../templates/show_shoutbox.inc.php:34
#: ../../templates/show_genres.inc.php:36
#: ../../templates/show_genres.inc.php:49
#: ../../templates/show_genres.inc.php:72
#: ../../templates/show_albums.inc.php:40
#: ../../templates/show_albums.inc.php:71
#: ../../templates/show_playlist_song_row.inc.php:22
#: ../../templates/show_recently_played.inc.php:37
#: ../../templates/show_recently_played.inc.php:80
#: ../../templates/show_recently_played.inc.php:99
#: ../../templates/show_add_live_stream.inc.php:68
#: ../../templates/show_artist.inc.php:43
#: ../../templates/show_artists.inc.php:36
#: ../../templates/show_artists.inc.php:64
#: ../../templates/show_live_stream_row.inc.php:23
#: ../../templates/show_videos.inc.php:36
#: ../../templates/show_videos.inc.php:60
#: ../../templates/show_live_stream.inc.php:26
#: ../../templates/show_artist_row.inc.php:23
#: ../../templates/show_live_streams.inc.php:35
#: ../../templates/show_live_streams.inc.php:57
#: ../../templates/show_album_row.inc.php:23
#: ../../templates/show_catalog_row.inc.php:29
#: ../../templates/show_playlist_row.inc.php:23
#: ../../templates/show_album.inc.php:51
#: ../../templates/show_playlists.inc.php:34
#: ../../templates/show_playlists.inc.php:57
msgid "Add"
msgstr "追加"
#: ../../templates/show_admin_tools.inc.php:47
#: ../../templates/show_catalog_row.inc.php:30
msgid "Verify"
msgstr "確認"
#: ../../templates/show_admin_tools.inc.php:49
#: ../../templates/show_catalog_row.inc.php:31
msgid "Clean"
msgstr "クリーン"
#: ../../templates/show_admin_tools.inc.php:53
#: ../../templates/show_flag.inc.php:56
#: ../../templates/show_access_list.inc.php:80
#: ../../templates/show_manage_democratic.inc.php:58
#: ../../templates/show_playlist_song_row.inc.php:38
#: ../../templates/show_localplay_playlist.inc.php:50
#: ../../templates/show_localplay_instances.inc.php:40
#: ../../templates/show_shout_row.inc.php:36
#: ../../templates/show_live_stream_row.inc.php:34
#: ../../templates/show_democratic_playlist.inc.php:86
#: ../../templates/show_catalog_row.inc.php:34
#: ../../templates/show_playlist_row.inc.php:38
#: ../../templates/show_user_row.inc.php:49
#: ../../templates/rightbar.inc.php:105 ../../lib/class/flag.class.php:325
msgid "Delete"
msgstr "削除"
#: ../../templates/show_admin_tools.inc.php:59
msgid "Fast"
msgstr "Fast"
#: ../../templates/show_admin_tools.inc.php:60
#: ../../templates/show_catalog_row.inc.php:33
msgid "Gather Art"
msgstr "アート収集"
#: ../../templates/show_admin_tools.inc.php:68
msgid "No Catalogs Found"
msgstr "カタログは見つかりませんでした"
#: ../../templates/show_admin_tools.inc.php:78
#: ../../templates/show_manage_catalogs.inc.php:31
msgid "Clean All"
msgstr "全て削除"
#: ../../templates/show_admin_tools.inc.php:79
#: ../../templates/show_manage_catalogs.inc.php:30
msgid "Verify All"
msgstr "全て確認"
#: ../../templates/show_admin_tools.inc.php:80
#: ../../templates/show_manage_catalogs.inc.php:29
msgid "Add to All"
msgstr "全てに追加"
#: ../../templates/show_admin_tools.inc.php:81
#: ../../templates/show_manage_catalogs.inc.php:32
msgid "Update All"
msgstr "全て更新"
#: ../../templates/show_admin_tools.inc.php:82
#: ../../templates/show_add_catalog.inc.php:26
#: ../../templates/sidebar_admin.inc.php:26
msgid "Add a Catalog"
msgstr "カタログを追加"
#: ../../templates/show_admin_tools.inc.php:83
msgid "Clear Catalog Stats"
msgstr "カタログステータスをクリア"
#: ../../templates/show_admin_tools.inc.php:84
#: ../../templates/show_add_catalog.inc.php:74
msgid "Gather Album Art"
msgstr "アルバムアートを収集"
#: ../../templates/show_admin_tools.inc.php:88
#: ../../templates/sidebar_modules.inc.php:31
#: ../../templates/sidebar_admin.inc.php:43
msgid "Other Tools"
msgstr "その他ツール"
#: ../../templates/show_admin_tools.inc.php:90
msgid "Show Duplicate Songs"
msgstr "重複している曲を表示"
#: ../../templates/show_admin_tools.inc.php:91
#: ../../templates/sidebar_admin.inc.php:46
msgid "Clear Now Playing"
msgstr "再生中の曲をクリア"
#: ../../templates/show_admin_tools.inc.php:92
#: ../../templates/header.inc.php:79
msgid "Generate New Config"
msgstr "新規設定を生成"
#: ../../templates/show_admin_tools.inc.php:93
msgid "Preferences Permissions"
msgstr "設定パーミッション"
#: ../../templates/show_admin_tools.inc.php:94
msgid "Export To Itunes DB"
msgstr "iTunesのDBへエクスポート"
#: ../../templates/show_admin_tools.inc.php:95
msgid "Show Inactive Users"
msgstr "非活発ユーザを表示"
#: ../../templates/show_admin_tools.inc.php:96
msgid "Check for New Version"
msgstr "新バージョンのチェック"
#: ../../templates/show_flagged.inc.php:34
#: ../../templates/show_flagged.inc.php:53
#: ../../templates/show_manage_shoutbox.inc.php:34
#: ../../templates/show_manage_shoutbox.inc.php:58
msgid "Object"
msgstr "オブジェクト"
#: ../../templates/show_flagged.inc.php:36
#: ../../templates/show_flagged.inc.php:55
#: ../../templates/show_flag.inc.php:69
msgid "Flag"
msgstr "フラグ"
#: ../../templates/show_flagged.inc.php:37
#: ../../templates/show_flagged.inc.php:56
#: ../../templates/show_song.inc.php:49 ../../templates/show_flag.inc.php:64
#: ../../templates/show_search.inc.php:34
#: ../../templates/show_edit_song.inc.php:65
#: ../../templates/show_manage_shoutbox.inc.php:37
#: ../../templates/show_manage_shoutbox.inc.php:61
msgid "Comment"
msgstr "コメント"
#: ../../templates/show_flagged.inc.php:38
#: ../../templates/show_flagged.inc.php:57
msgid "Status"
msgstr "ステータス"
#: ../../templates/show_flagged.inc.php:49
#: ../../templates/show_disabled_songs.inc.php:52
#: ../../templates/show_localplay_controllers.inc.php:59
#: ../../templates/show_localplay_playlist.inc.php:55
#: ../../templates/show_plugins.inc.php:57
#: ../../templates/show_manage_shoutbox.inc.php:54
msgid "No Records Found"
msgstr "レコードはありません"
#: ../../templates/show_install_account.inc.php:34
#: ../../templates/show_install_lang.inc.php:35
#: ../../templates/show_install_config.inc.php:34
#: ../../templates/show_install.inc.php:35
msgid "Ampache Installation"
msgstr "Ampache インストール"
#: ../../templates/show_install_account.inc.php:41
#: ../../templates/show_install_lang.inc.php:42
#: ../../templates/show_install_config.inc.php:40
#: ../../templates/show_install.inc.php:43
msgid ""
"This Page handles the installation of the Ampache database and the creation "
"of the ampache.cfg.php file. Before you continue please make sure that you "
"have the following pre-requisites"
msgstr ""
"このページはAmpacheデータベースとampache.cfg.phpファイルの生成のインストール"
"を扱います。続ける前に以下の事前準備をお願いします。"
#: ../../templates/show_install_account.inc.php:44
#: ../../templates/show_install_lang.inc.php:45
#: ../../templates/show_install_config.inc.php:43
#: ../../templates/show_install.inc.php:46
msgid ""
"A MySQL Server with a username and password that can create/modify databases"
msgstr "データベースを作成/修正できるユーザ名とパスワードをもったMySQLサーバ"
#: ../../templates/show_install_account.inc.php:45
#: ../../templates/show_install_lang.inc.php:46
#: ../../templates/show_install_config.inc.php:44
#: ../../templates/show_install.inc.php:47
#, fuzzy, php-format
msgid "Your webserver has read access to the %s file and the %s file"
msgstr ""
"ウェブサーバが/sql/ampache.sqlファイルと/config/ampache.cfg.php.distファイル"
"への読み取り権限を持っている"
#: ../../templates/show_install_account.inc.php:47
msgid ""
"Once you have ensured that you have the above requirements please fill out "
"the information below. You will only be asked for the required config "
"values. If you would like to make changes to your ampache install at a later "
"date simply edit /config/ampache.cfg.php"
msgstr ""
"上記の要件を確認したら以下の情報を記入してください。必要なコンフィグの値を求"
"めるだけです。後々Ampacheへの変更を加えたい場合、単に/config/ampache.cfg.php"
"を編集するだけです。"
#: ../../templates/show_install_account.inc.php:50
#: ../../templates/show_install_config.inc.php:51
#: ../../templates/show_install.inc.php:55
msgid "Step 1 - Creating and Inserting the Ampache Database"
msgstr "ステップ1 - Ampacheデータベースの作成と挿入"
#: ../../templates/show_install_account.inc.php:51
msgid "Step 2 - Creating the ampache.cfg.php file"
msgstr "ステップ2 - ampache.cfg.phpファイルの作成"
#: ../../templates/show_install_account.inc.php:52
#: ../../templates/show_install_config.inc.php:56
#: ../../templates/show_install.inc.php:60
msgid "Step 3 - Setup Initial Account"
msgstr "ステップ3 - 初期アカウントのセットアップ"
#: ../../templates/show_install_account.inc.php:54
msgid ""
"This step creates your initial Ampache admin account. Once your admin "
"account has been created you will be directed to the login page"
msgstr ""
"このステップはAmpacheの管理者アカウントを初期化します。一旦管理者アカウントが"
"作成されるとログインページに飛びます。"
#: ../../templates/show_install_account.inc.php:58
msgid "Create Admin Account"
msgstr "管理者アカウントの作成"
#: ../../templates/show_install_account.inc.php:62
#: ../../templates/show_users.inc.php:39 ../../templates/show_users.inc.php:61
#: ../../templates/show_now_playing_row.inc.php:29
#: ../../templates/show_edit_user.inc.php:32
#: ../../templates/show_recently_played.inc.php:41
#: ../../templates/show_recently_played.inc.php:100
#: ../../templates/show_user_registration.inc.php:73
#: ../../templates/show_login_form.inc.php:58
#: ../../templates/show_add_user.inc.php:29
msgid "Username"
msgstr "ユーザ名"
#: ../../templates/show_install_account.inc.php:66
#: ../../templates/show_edit_user.inc.php:55
#: ../../templates/show_user_registration.inc.php:101
#: ../../templates/show_login_form.inc.php:62
#: ../../templates/show_add_user.inc.php:52
#: ../../modules/localplay/httpq.controller.php:219
#: ../../modules/localplay/mpd.controller.php:235
msgid "Password"
msgstr "パスワード"
#: ../../templates/show_install_account.inc.php:70
#: ../../templates/show_edit_user.inc.php:64
#: ../../templates/show_user_registration.inc.php:110
#: ../../templates/show_add_user.inc.php:61
#: ../../templates/show_account.inc.php:46
msgid "Confirm Password"
msgstr "パスワード確認"
#: ../../templates/show_install_account.inc.php:75
msgid "Create Account"
msgstr "アカウント作成"
#: ../../templates/show_catalogs.inc.php:34
#: ../../templates/show_catalogs.inc.php:58
#: ../../templates/show_stats.inc.php:64
#: ../../templates/show_add_catalog.inc.php:47
msgid "Path"
msgstr "パス"
#: ../../templates/show_catalogs.inc.php:35
#: ../../templates/show_catalogs.inc.php:59
#: ../../templates/show_stats.inc.php:65
msgid "Last Verify"
msgstr "最終確認"
#: ../../templates/show_catalogs.inc.php:36
#: ../../templates/show_catalogs.inc.php:60
#: ../../templates/show_stats.inc.php:66
msgid "Last Add"
msgstr "最終追加"
#: ../../templates/show_catalogs.inc.php:37
#: ../../templates/show_catalogs.inc.php:61
#: ../../templates/show_stats.inc.php:67
msgid "Last Clean"
msgstr "最終クリーン"
#: ../../templates/show_catalogs.inc.php:38
#: ../../templates/show_catalogs.inc.php:62
#: ../../templates/show_albums.inc.php:50
#: ../../templates/show_albums.inc.php:81
#: ../../templates/show_album.inc.php:48
#: ../../templates/show_playlists.inc.php:39
#: ../../templates/show_playlists.inc.php:62
msgid "Actions"
msgstr "操作"
#: ../../templates/show_catalogs.inc.php:52
#: ../../templates/show_songs.inc.php:64
#: ../../templates/show_objects.inc.php:44
#: ../../templates/show_manage_democratic.inc.php:63
#: ../../templates/show_tagcloud.inc.php:33
#: ../../templates/show_genres.inc.php:68
#: ../../templates/show_albums.inc.php:67
#: ../../templates/show_recently_played.inc.php:95
#: ../../templates/show_artists.inc.php:60
#: ../../templates/show_videos.inc.php:56
#: ../../templates/show_user_recommendations.inc.php:32
#: ../../templates/show_user_recommendations.inc.php:43
#: ../../templates/show_user_recommendations.inc.php:54
#: ../../templates/show_user_stats.inc.php:34
#: ../../templates/show_user_stats.inc.php:47
#: ../../templates/show_user_stats.inc.php:60
#: ../../templates/show_live_streams.inc.php:53
#: ../../templates/rightbar.inc.php:108
#: ../../templates/show_playlists.inc.php:53
msgid "Not Enough Data"
msgstr "データは全くありません"
#: ../../templates/show_embed_xspf.inc.php:54
msgid "XSPF Player"
msgstr "XSPFプレーヤー"
#: ../../templates/show_video_row.inc.php:32
#: ../../templates/show_song.inc.php:35
#: ../../templates/show_song_row.inc.php:43
#: ../../templates/show_playlist_song_row.inc.php:33
#: ../../templates/show_artist.inc.php:59
#: ../../templates/show_artist.inc.php:60
#: ../../templates/show_album.inc.php:76 ../../templates/show_album.inc.php:77
msgid "Download"
msgstr "ダウンロード"
#: ../../templates/show_flag_row.inc.php:31
msgid "Reject"
msgstr "拒否"
#: ../../templates/show_flag_row.inc.php:33
#: ../../templates/show_user_row.inc.php:43 ../../lib/preferences.php:165
#: ../../lib/preferences.php:272
msgid "Enable"
msgstr "有効"
#: ../../templates/show_song.inc.php:24
msgid "Details"
msgstr "詳細"
#: ../../templates/show_song.inc.php:27 ../../templates/show_songs.inc.php:49
#: ../../templates/show_songs.inc.php:76
#: ../../templates/show_now_playing_row.inc.php:36
#: ../../templates/show_albums.inc.php:49
#: ../../templates/show_albums.inc.php:80
#: ../../templates/show_search.inc.php:104
#: ../../templates/show_artists.inc.php:42
#: ../../templates/show_artists.inc.php:70
msgid "Rating"
msgstr "評価"
#: ../../templates/show_song.inc.php:34
msgid "Link"
msgstr "リンク"
#: ../../templates/show_song.inc.php:44
#: ../../templates/show_disabled_songs.inc.php:34
#: ../../templates/show_disabled_songs.inc.php:57
#: ../../templates/show_search.inc.php:40
#: ../../templates/show_edit_song.inc.php:31
#: ../../templates/show_duplicate.inc.php:33
#: ../../templates/show_democratic_playlist.inc.php:56
#: ../../templates/show_democratic_playlist.inc.php:96
#: ../../templates/show_videos.inc.php:37
#: ../../templates/show_videos.inc.php:61
msgid "Title"
msgstr "タイトル"
#: ../../templates/show_song.inc.php:45 ../../templates/show_songs.inc.php:41
#: ../../templates/show_songs.inc.php:70
#: ../../templates/show_disabled_songs.inc.php:36
#: ../../templates/show_disabled_songs.inc.php:59
#: ../../templates/show_lyrics_song.inc.php:56
#: ../../templates/show_now_playing_row.inc.php:68
#: ../../templates/show_similar_artists.inc.php:33
#: ../../templates/show_similar_artists.inc.php:86
#: ../../templates/show_albums.inc.php:45
#: ../../templates/show_albums.inc.php:76
#: ../../templates/show_recently_played.inc.php:40
#: ../../templates/show_recently_played.inc.php:103
#: ../../templates/show_search.inc.php:44
#: ../../templates/show_edit_song.inc.php:45
#: ../../templates/show_duplicates.inc.php:38
#: ../../templates/show_duplicates.inc.php:77
#: ../../templates/show_artists.inc.php:37
#: ../../templates/show_artists.inc.php:65
#: ../../templates/show_get_albumart.inc.php:28
#: ../../templates/show_democratic_playlist.inc.php:58
#: ../../templates/show_democratic_playlist.inc.php:98
#: ../../templates/show_play_selected.inc.php:60
#: ../../templates/show_playlist_songs.inc.php:43
#: ../../templates/show_playlist_songs.inc.php:64
#: ../../templates/sidebar_home.inc.php:81
#: ../../templates/sidebar_home.inc.php:108
msgid "Artist"
msgstr "アーティスト"
#: ../../templates/show_song.inc.php:46 ../../templates/show_songs.inc.php:42
#: ../../templates/show_songs.inc.php:71
#: ../../templates/show_disabled_songs.inc.php:35
#: ../../templates/show_disabled_songs.inc.php:58
#: ../../templates/show_lyrics_song.inc.php:49
#: ../../templates/show_now_playing_row.inc.php:61
#: ../../templates/show_albums.inc.php:44
#: ../../templates/show_albums.inc.php:75
#: ../../templates/show_recently_played.inc.php:39
#: ../../templates/show_recently_played.inc.php:102
#: ../../templates/show_search.inc.php:50
#: ../../templates/show_edit_song.inc.php:37
#: ../../templates/show_duplicates.inc.php:39
#: ../../templates/show_duplicates.inc.php:78
#: ../../templates/show_get_albumart.inc.php:36
#: ../../templates/show_democratic_playlist.inc.php:57
#: ../../templates/show_democratic_playlist.inc.php:97
#: ../../templates/show_play_selected.inc.php:59
#: ../../templates/show_playlist_songs.inc.php:44
#: ../../templates/show_playlist_songs.inc.php:65
#: ../../templates/sidebar_home.inc.php:107
msgid "Album"
msgstr "アルバム"
#: ../../templates/show_song.inc.php:47 ../../templates/show_genres.inc.php:37
#: ../../templates/show_genres.inc.php:73
#: ../../templates/show_play_selected.inc.php:58
#: ../../templates/show_playlist_songs.inc.php:45
#: ../../templates/show_playlist_songs.inc.php:66 ../../lib/ui.lib.php:370
msgid "Genre"
msgstr "ジャンル"
#: ../../templates/show_song.inc.php:48
#: ../../templates/show_duplicates.inc.php:40
#: ../../templates/show_duplicates.inc.php:79
#: ../../templates/show_random.inc.php:43
msgid "Length"
msgstr "長さ"
#: ../../templates/show_song.inc.php:50
msgid "Label"
msgstr "ラベル"
#: ../../templates/show_song.inc.php:51
msgid "Song Language"
msgstr "曲言語"
#: ../../templates/show_song.inc.php:52
msgid "Catalog Number"
msgstr "カタログ番号"
#: ../../templates/show_song.inc.php:53
#: ../../templates/show_duplicates.inc.php:41
#: ../../templates/show_duplicates.inc.php:80
msgid "Bitrate"
msgstr "ビットレート"
#: ../../templates/show_song.inc.php:55
#: ../../templates/show_disabled_songs.inc.php:37
#: ../../templates/show_disabled_songs.inc.php:60
#: ../../templates/show_search.inc.php:66
#: ../../templates/show_duplicates.inc.php:43
#: ../../templates/show_duplicates.inc.php:82
#: ../../templates/show_import_playlist.inc.php:28
msgid "Filename"
msgstr "フルネーム"
#: ../../templates/show_song.inc.php:58
msgid "Last Updated"
msgstr "最終更新"
#: ../../templates/show_dynamic.inc.php:22
msgid "Advanced Random Rules"
msgstr "高度なランダムルール"
#: ../../templates/show_dynamic.inc.php:31
#: ../../templates/show_random_rules.inc.php:32
msgid "Field"
msgstr "フィールド"
#: ../../templates/show_dynamic.inc.php:32
#: ../../templates/show_random_rules.inc.php:33
#: ../../templates/show_search.inc.php:115
msgid "Operator"
msgstr "オペレータ"
#: ../../templates/show_dynamic.inc.php:33
#: ../../templates/show_random_rules.inc.php:34
#: ../../templates/show_debug.inc.php:45 ../../templates/show_debug.inc.php:94
#: ../../templates/show_preference_box.inc.php:41
#: ../../templates/show_preference_box.inc.php:71
#: ../../templates/show_user_preferences.inc.php:37
msgid "Value"
msgstr "値"
#: ../../templates/show_dynamic.inc.php:34
#: ../../templates/show_random_rules.inc.php:35
#: ../../templates/show_search.inc.php:124
msgid "Method"
msgstr "方法"
#: ../../templates/show_dynamic.inc.php:56
msgid "Like"
msgstr "Like"
#: ../../templates/show_dynamic.inc.php:64
#: ../../templates/show_rename_artist.inc.php:33
#: ../../templates/show_search.inc.php:119
#: ../../templates/show_edit_song.inc.php:40
#: ../../templates/show_edit_song.inc.php:48
msgid "OR"
msgstr "OR"
#: ../../templates/show_dynamic.inc.php:65
#: ../../templates/show_search.inc.php:118
msgid "AND"
msgstr "AND"
#: ../../templates/show_dynamic.inc.php:71
msgid "Add Rule"
msgstr "ルールを追加"
#: ../../templates/show_dynamic.inc.php:74
msgid "Save Rules As"
msgstr "次のルールで保存"
#: ../../templates/show_dynamic.inc.php:77
msgid "Load Saved Rules"
msgstr "保存したルールを読み込む"
#: ../../templates/show_user.inc.php:22 ../../templates/show_users.inc.php:53
#: ../../lib/class/user.class.php:671 ../../lib/class/catalog.class.php:146
#: ../../lib/class/catalog.class.php:147 ../../lib/class/catalog.class.php:148
#: ../../lib/preferences.php:263
msgid "Never"
msgstr "Never"
#: ../../templates/show_user.inc.php:23 ../../templates/show_users.inc.php:54
#: ../../lib/class/flag.class.php:337 ../../lib/class/user.class.php:675
#: ../../lib/class/localplay.class.php:648 ../../lib/general.lib.php:339
#: ../../modules/localplay/mpd.controller.php:529
msgid "Unknown"
msgstr "不明"
#: ../../templates/show_user.inc.php:30
#: ../../templates/show_edit_user.inc.php:40
#: ../../templates/show_user_registration.inc.php:83
#: ../../templates/show_add_user.inc.php:37
msgid "Full Name"
msgstr "フルネーム"
#: ../../templates/show_user.inc.php:31
msgid "Create Date"
msgstr "作成日"
#: ../../templates/show_user.inc.php:32 ../../templates/show_users.inc.php:40
#: ../../templates/show_users.inc.php:62
msgid "Last Seen"
msgstr "最終ログイン"
#: ../../templates/show_user.inc.php:33 ../../templates/show_users.inc.php:42
#: ../../templates/show_users.inc.php:64
msgid "Activity"
msgstr "活動"
#: ../../templates/show_user.inc.php:35
msgid "User is Online Now"
msgstr "ユーザは現在オンラインです"
#: ../../templates/show_user.inc.php:37
msgid "User is Offline Now"
msgstr "ユーザは現在オフラインです"
#: ../../templates/show_user.inc.php:42
msgid "Active Playlist"
msgstr "アクティブなプレイリスト"
#: ../../templates/show_songs.inc.php:40 ../../templates/show_songs.inc.php:69
#: ../../templates/show_playlist_songs.inc.php:42
#: ../../templates/show_playlist_songs.inc.php:63
#: ../../templates/sidebar_home.inc.php:75
msgid "Song Title"
msgstr "曲タイトル"
#: ../../templates/show_songs.inc.php:43 ../../templates/show_songs.inc.php:72
#: ../../templates/show_albums.inc.php:48
#: ../../templates/show_albums.inc.php:79
#: ../../templates/show_stats.inc.php:34
#: ../../templates/show_artists.inc.php:41
#: ../../templates/show_artists.inc.php:69
#: ../../templates/show_videos.inc.php:41
#: ../../templates/show_videos.inc.php:65
msgid "Tags"
msgstr "タグ"
#: ../../templates/show_songs.inc.php:44 ../../templates/show_songs.inc.php:73
#: ../../templates/show_localplay_playlist.inc.php:33
#: ../../templates/show_localplay_playlist.inc.php:59
#: ../../templates/show_edit_song.inc.php:53
#: ../../templates/show_playlist_songs.inc.php:41
#: ../../templates/show_playlist_songs.inc.php:46
#: ../../templates/show_playlist_songs.inc.php:62
#: ../../templates/show_playlist_songs.inc.php:67
msgid "Track"
msgstr "トラック"
#: ../../templates/show_songs.inc.php:45 ../../templates/show_songs.inc.php:74
#: ../../templates/show_search.inc.php:72
#: ../../templates/show_artists.inc.php:40
#: ../../templates/show_artists.inc.php:68
#: ../../templates/show_democratic_playlist.inc.php:59
#: ../../templates/show_democratic_playlist.inc.php:99
#: ../../templates/show_videos.inc.php:40
#: ../../templates/show_videos.inc.php:64
#: ../../templates/show_playlist_songs.inc.php:47
#: ../../templates/show_playlist_songs.inc.php:68
msgid "Time"
msgstr "時間"
#: ../../templates/show_big_art.inc.php:29
#: ../../templates/show_album_art.inc.php:41
msgid "Album Art"
msgstr "アルバムアート"
#: ../../templates/show_big_art.inc.php:33
msgid "Click to close window"
msgstr "ウィンドウを閉じる"
#: ../../templates/show_song_row.inc.php:35
msgid "Song Information"
msgstr "曲情報"
#: ../../templates/show_song_row.inc.php:38
#: ../../templates/show_album_row.inc.php:45
msgid "Post Shout"
msgstr "シャウトの投稿"
#: ../../templates/show_song_row.inc.php:47
#: ../../templates/show_access_list.inc.php:79
#: ../../templates/show_playlist_song_row.inc.php:37
#: ../../templates/show_shout_row.inc.php:32
#: ../../templates/show_live_stream_row.inc.php:31
#: ../../templates/show_play_selected.inc.php:50
#: ../../templates/show_artist_row.inc.php:39
#: ../../templates/show_album_row.inc.php:54
#: ../../templates/show_playlist_row.inc.php:37
#: ../../templates/show_user_row.inc.php:38
msgid "Edit"
msgstr "編集"
#: ../../templates/show_flag.inc.php:41
msgid "Flag Song"
msgstr "フラグ曲"
#: ../../templates/show_flag.inc.php:45
#: ../../templates/show_edit_song.inc.php:27
msgid "File"
msgstr "ファイル"
#: ../../templates/show_flag.inc.php:49
msgid "Item"
msgstr "アイテム"
#: ../../templates/show_flag.inc.php:53
msgid "Reason to flag"
msgstr "フラグする理由"
#: ../../templates/show_flag.inc.php:57
msgid "Incorrect Tags"
msgstr "不正なタグ"
#: ../../templates/show_flag.inc.php:58 ../../lib/class/flag.class.php:331
msgid "Re-encode"
msgstr "再エンコード"
#: ../../templates/show_flag.inc.php:59 ../../lib/class/flag.class.php:334
msgid "Other"
msgstr "その他"
#: ../../templates/show_object_rating_static.inc.php:34
#: ../../templates/show_object_rating.inc.php:34
msgid "Current rating: "
msgstr "現在の評価:"
#: ../../templates/show_object_rating_static.inc.php:36
#: ../../templates/show_object_rating.inc.php:36
msgid "not rated yet"
msgstr "まだ評価されていません"
#: ../../templates/show_object_rating_static.inc.php:38
#: ../../templates/show_object_rating.inc.php:38
#, php-format
msgid "%s of 5"
msgstr "5点中%s点"
#: ../../templates/show_object_rating_static.inc.php:44
msgid "out of"
msgstr "out of"
#: ../../templates/sidebar_modules.inc.php:25
#: ../../templates/sidebar.inc.php:30
msgid "Modules"
msgstr "モジュール"
#: ../../templates/sidebar_modules.inc.php:27
msgid "Localplay Modules"
msgstr "ローカル再生モジュール"
#: ../../templates/sidebar_modules.inc.php:28
msgid "Available Plugins"
msgstr "有効なプラグイン"
#: ../../templates/sidebar_modules.inc.php:33
#: ../../templates/show_duplicate.inc.php:23
#: ../../templates/show_duplicate.inc.php:42
msgid "Find Duplicates"
msgstr "重複を見つける"
#: ../../templates/sidebar_modules.inc.php:34
msgid "Mail Users"
msgstr "ユーザへメール"
#: ../../templates/sidebar_modules.inc.php:35
msgid "Manage Flagged"
msgstr "フラグ済みの管理"
#: ../../templates/sidebar_modules.inc.php:36
msgid "Show Disabled"
msgstr "表示を無効にしました"
#: ../../templates/sidebar_modules.inc.php:41
#: ../../templates/show_edit_user.inc.php:93
#: ../../templates/show_playtype_switch.inc.php:36
#: ../../templates/sidebar_home.inc.php:91 ../../lib/preferences.php:180
#: ../../modules/localplay/httpq.controller.php:488
#: ../../modules/localplay/mpd.controller.php:495
msgid "Democratic"
msgstr "デモクラティック"
#: ../../templates/sidebar_modules.inc.php:43
msgid "Manage Playlist"
msgstr "再生リストの管理"
#: ../../templates/show_run_add_catalog.inc.php:24
#: ../../templates/show_adds_catalog.inc.php:26
msgid "Found"
msgstr "見つかりました"
#: ../../templates/show_run_add_catalog.inc.php:25
#: ../../templates/show_verify_catalog.inc.php:29
#: ../../templates/show_gather_art.inc.php:25
#: ../../templates/show_clean_catalog.inc.php:27
#: ../../templates/show_adds_catalog.inc.php:27
msgid "Reading"
msgstr "読み込み中"
#: ../../templates/show_edit_artist_row.inc.php:32
#: ../../templates/show_edit_album_row.inc.php:48
#: ../../templates/show_edit_playlist_row.inc.php:38
#: ../../templates/show_edit_playlist_song_row.inc.php:38
#: ../../templates/show_edit_song_row.inc.php:45
#: ../../templates/show_edit_live_stream_row.inc.php:52
msgid "Save Changes"
msgstr "変更を保存"
#: ../../templates/show_install_lang.inc.php:40
#: ../../templates/show_install.inc.php:41
msgid "Requirements"
msgstr "必要条件"
#: ../../templates/show_install_lang.inc.php:49
#: ../../templates/show_install_config.inc.php:47
#: ../../templates/show_install.inc.php:50
#, fuzzy, php-format
msgid ""
"Once you have ensured that you have the above requirements please fill out "
"the information below. You will only be asked for the required config "
"values. If you would like to make changes to your ampache install at a later "
"date simply edit %s"
msgstr ""
"上記の要件を確認したら以下の情報を記入してください。必要なコンフィグの値を求"
"めるだけです。後々Ampacheへの変更を加えたい場合、単に/config/ampache.cfg.php"
"を編集するだけです。"
#: ../../templates/show_install_lang.inc.php:55
msgid "Minimum Requirements not met. Unable to Install Ampache."
msgstr "必要最低限の構成を満たしていません。Ampacheをインストールできません。"
#: ../../templates/show_install_lang.inc.php:60
msgid "Choose installation language."
msgstr "インストールする言語を選択してください。"
#: ../../templates/show_install_lang.inc.php:81
msgid "Start configuration"
msgstr "設定の開始"
#: ../../templates/show_random_albums.inc.php:22
msgid "Refresh"
msgstr "更新"
#: ../../templates/show_random_albums.inc.php:24
#: ../../templates/show_index.inc.php:38
msgid "Albums of the Moment"
msgstr "現在のアルバム"
#: ../../templates/show_random_albums.inc.php:48
msgid "Play Album"
msgstr "アルバム再生"
#: ../../templates/show_localplay_status.inc.php:26
msgid "Localplay Control"
msgstr "ローカル再生のコントロール"
#: ../../templates/show_localplay_status.inc.php:27
#: ../../templates/header.inc.php:36
#: ../../templates/show_now_playing.inc.php:33
#: ../../lib/class/ampacherss.class.php:70
#: ../../lib/class/localplay.class.php:639
msgid "Now Playing"
msgstr "現在の演奏曲"
#: ../../templates/show_localplay_status.inc.php:31
msgid "Mute"
msgstr "消音"
#: ../../templates/show_localplay_status.inc.php:32
msgid "Decrease Volume"
msgstr "音量を下げる"
#: ../../templates/show_localplay_status.inc.php:33
msgid "Increase Volume"
msgstr "音量を上げる"
#: ../../templates/show_localplay_status.inc.php:34
msgid "Volume"
msgstr "音量"
#: ../../templates/show_localplay_status.inc.php:39
msgid "Repeat"
msgstr "リピート"
#. HINT: Artist Fullname
#: ../../templates/show_localplay_status.inc.php:44
#: ../../templates/show_genres.inc.php:52
#: ../../templates/show_artist.inc.php:48
#: ../../templates/show_artist_row.inc.php:24
#: ../../templates/sidebar_home.inc.php:105
#: ../../templates/show_album_row.inc.php:24
#: ../../templates/show_playlist_row.inc.php:24
#: ../../templates/show_album.inc.php:55
#: ../../modules/localplay/httpq.controller.php:492
#: ../../modules/localplay/mpd.controller.php:499
msgid "Random"
msgstr "ランダム"
#: ../../templates/show_localplay_status.inc.php:47
#: ../../templates/show_democratic.inc.php:43
#: ../../templates/show_democratic.inc.php:44
#: ../../templates/rightbar.inc.php:54
msgid "Clear Playlist"
msgstr "プレイリストをクリア"
#: ../../templates/show_random_rules.inc.php:22
msgid "Rules"
msgstr "ルール"
#: ../../templates/show_disabled_songs.inc.php:33
#: ../../templates/show_disabled_songs.inc.php:56
#: ../../templates/show_album_art.inc.php:49
msgid "Select"
msgstr "選択"
#: ../../templates/show_disabled_songs.inc.php:38
#: ../../templates/show_disabled_songs.inc.php:61
msgid "Addition Time"
msgstr "追加時間"
#: ../../templates/show_disabled_songs.inc.php:65
msgid "Remove"
msgstr "削除"
#: ../../templates/show_access_list.inc.php:28
#: ../../templates/sidebar_admin.inc.php:37
msgid "Access Control"
msgstr "アクセスコントロール"
#: ../../templates/show_access_list.inc.php:32
#: ../../templates/show_access_list.inc.php:33
#: ../../templates/show_add_access_current.inc.php:22
msgid "Add Current Host"
msgstr "現在ホストの追加"
#: ../../templates/show_access_list.inc.php:36
#: ../../templates/show_access_list.inc.php:37
#: ../../templates/show_add_access_rpc.inc.php:22
msgid "Add API / RPC Host"
msgstr "API/RPCホストの追加"
#: ../../templates/show_access_list.inc.php:43
#: ../../templates/show_access_list.inc.php:44
#: ../../templates/show_add_access.inc.php:22
msgid "Advanced Add"
msgstr "高度を追加"
#: ../../templates/show_access_list.inc.php:50
msgid "Access Control Entries"
msgstr "アクセスコントロールエントリ"
#: ../../templates/show_access_list.inc.php:56
msgid "Start Address"
msgstr "開始アドレス"
#: ../../templates/show_access_list.inc.php:57
msgid "End Address"
msgstr "終了アドレス"
#: ../../templates/show_access_list.inc.php:60
msgid "Key"
msgstr "キー"
#: ../../templates/show_lyrics_song.inc.php:42
#: ../../templates/show_now_playing_row.inc.php:54
#: ../../templates/show_recently_played.inc.php:38
#: ../../templates/show_recently_played.inc.php:101
#: ../../templates/show_duplicates.inc.php:37
#: ../../templates/show_duplicates.inc.php:76
msgid "Song"
msgstr "曲"
#: ../../templates/show_users.inc.php:39 ../../templates/show_users.inc.php:61
msgid "Fullname"
msgstr "フルネーム"
#: ../../templates/show_users.inc.php:41 ../../templates/show_users.inc.php:63
msgid "Registration Date"
msgstr "登録日"
#: ../../templates/show_users.inc.php:44 ../../templates/show_users.inc.php:66
msgid "Last Ip"
msgstr "最終IP"
#: ../../templates/show_users.inc.php:47 ../../templates/show_users.inc.php:69
msgid "On-line"
msgstr "オンライン"
#: ../../templates/show_manage_democratic.inc.php:22
msgid "Manage Democratic Playlists"
msgstr "デモクラティックプレイリスト管理"
#: ../../templates/show_manage_democratic.inc.php:34
#: ../../templates/show_play_selected.inc.php:47
#: ../../templates/sidebar_home.inc.php:87
#: ../../templates/sidebar_home.inc.php:109 ../../lib/ui.lib.php:321
msgid "Playlist"
msgstr "再生リスト"
#: ../../templates/show_manage_democratic.inc.php:35
#: ../../templates/show_create_democratic.inc.php:30
msgid "Base Playlist"
msgstr "基となるプレイリスト"
#: ../../templates/show_manage_democratic.inc.php:36
#: ../../templates/show_democratic.inc.php:29
msgid "Cooldown"
msgstr "クールダウン"
#: ../../templates/show_manage_democratic.inc.php:38
#: ../../lib/preferences.php:257 ../../lib/preferences.php:264
msgid "Default"
msgstr "デフォルト"
#: ../../templates/show_manage_democratic.inc.php:39
#: ../../templates/show_genres.inc.php:38
#: ../../templates/show_genres.inc.php:74
#: ../../templates/show_albums.inc.php:46
#: ../../templates/show_albums.inc.php:77
#: ../../templates/show_stats.inc.php:32 ../../templates/show_stats.inc.php:68
#: ../../templates/show_artists.inc.php:38
#: ../../templates/show_artists.inc.php:66
#: ../../templates/show_genre.inc.php:39
#: ../../templates/show_popular.inc.php:23
#: ../../lib/class/browse.class.php:142
msgid "Songs"
msgstr "曲"
#: ../../templates/show_manage_democratic.inc.php:57
#: ../../templates/show_democratic.inc.php:39
#: ../../templates/show_localplay_control.inc.php:28
#: ../../templates/rightbar.inc.php:25
msgid "Play"
msgstr "再生"
#: ../../templates/show_manage_democratic.inc.php:69
msgid "Create New Playlist"
msgstr "新規プレイリスト作成"
#: ../../templates/show_now_playing_row.inc.php:46
msgid "Show Lyrics"
msgstr "歌詞の表示"
#: ../../templates/show_install_config.inc.php:52
#: ../../templates/show_install.inc.php:59
msgid "Step 2 - Creating the Ampache.cfg.php file"
msgstr "ステップ2 - Ampache.cfg.phpファイルの作成"
#: ../../templates/show_install_config.inc.php:54
#, fuzzy, php-format
msgid ""
"This steps takes the basic config values and generates the config file. It "
"will prompt you to download the config file. Please put the downloaded "
"config file in %s"
msgstr ""
"このステップは基本的なコンフィグの値の取得とコンフィグファイルの作成を行いま"
"す。それはコンフィグファイルをダウンロードするように促されます。ダウンロード"
"したコンフィグファイルを/configディレクトリへ置いてください。"
#: ../../templates/show_install_config.inc.php:60
msgid "Generate Config File"
msgstr "設定ファイルの生成"
#: ../../templates/show_install_config.inc.php:65
#: ../../templates/show_test.inc.php:223
msgid "Web Path"
msgstr "Webパス"
#: ../../templates/show_install_config.inc.php:69
#: ../../templates/show_install.inc.php:68
msgid "Desired Database Name"
msgstr "希望するデータベース名"
#: ../../templates/show_install_config.inc.php:73
#: ../../templates/show_install.inc.php:72
msgid "MySQL Hostname"
msgstr "MySQLのホスト名"
#: ../../templates/show_install_config.inc.php:77
msgid "MySQL Username"
msgstr "MySQLのユーザ名"
#: ../../templates/show_install_config.inc.php:81
msgid "MySQL Password"
msgstr "MySQLのパスワード"
#: ../../templates/show_install_config.inc.php:86
msgid "Write Config"
msgstr "コンフィグの書込み"
#: ../../templates/show_install_config.inc.php:93
msgid "Ampache.cfg.php Exists"
msgstr "Ampache.cfg.phpは存在します"
#: ../../templates/show_install_config.inc.php:108
#: ../../templates/show_test.inc.php:166
msgid "Ampache.cfg.php Configured?"
msgstr "Ampache.cfg.phpは設定されていますか?"
#: ../../templates/show_install_config.inc.php:127
msgid "Check for Config"
msgstr "コンフィグのチェック"
#: ../../templates/show_install_config.inc.php:133
msgid "Continue to Step 3"
msgstr "ステップ3へ続ける"
#: ../../templates/show_edit_user.inc.php:23
msgid "Editing existing User"
msgstr "既存のユーザを編集"
#: ../../templates/show_edit_user.inc.php:28
msgid "User Properties"
msgstr "ユーザプロパティ"
#: ../../templates/show_edit_user.inc.php:47
#: ../../templates/show_user_registration.inc.php:92
#: ../../templates/show_add_user.inc.php:44
#: ../../templates/show_account.inc.php:33
msgid "E-mail"
msgstr "メールアドレス"
#: ../../templates/show_edit_user.inc.php:72
#: ../../templates/show_add_user.inc.php:69
msgid "User Access Level"
msgstr "ユーザアクセスレベル"
#: ../../templates/show_edit_user.inc.php:79
#: ../../templates/show_create_democratic.inc.php:43
#: ../../templates/show_add_user.inc.php:76
#: ../../templates/show_preference_box.inc.php:60
#: ../../lib/class/democratic.class.php:151
msgid "Content Manager"
msgstr "コンテンツマネージャ"
#: ../../templates/show_edit_user.inc.php:80
#: ../../templates/show_create_democratic.inc.php:44
#: ../../templates/show_add_user.inc.php:77
#: ../../templates/show_preference_box.inc.php:61
#: ../../lib/class/democratic.class.php:154
msgid "Catalog Manager"
msgstr "カタログマネージャ"
#: ../../templates/show_edit_user.inc.php:86
msgid "Other Options"
msgstr "その他 オプション"
#: ../../templates/show_edit_user.inc.php:89
msgid "Config Preset"
msgstr "コンフィグプリセット"
#: ../../templates/show_edit_user.inc.php:94
#: ../../templates/sidebar.inc.php:28
#: ../../templates/sidebar_localplay.inc.php:32
#: ../../templates/show_playtype_switch.inc.php:34
#: ../../templates/sidebar_home.inc.php:100 ../../lib/preferences.php:183
msgid "Localplay"
msgstr "ローカル再生"
#: ../../templates/show_edit_user.inc.php:95
msgid "Flash"
msgstr "Flash"
#: ../../templates/show_edit_user.inc.php:96
#: ../../templates/show_playtype_switch.inc.php:32
#: ../../lib/preferences.php:177
msgid "Stream"
msgstr "ストリーム"
#: ../../templates/show_edit_user.inc.php:101
msgid "Prevent Preset Override"
msgstr "プリセットの上書きを防止します"
#: ../../templates/show_edit_user.inc.php:103
msgid "This Affects all non-Admin accounts"
msgstr "これは全ての非管理アカウントに影響します"
#: ../../templates/show_edit_user.inc.php:107
#: ../../templates/show_account.inc.php:52
#: ../../templates/show_manage_catalogs.inc.php:33
msgid "Clear Stats"
msgstr "ステータスをクリア"
#: ../../templates/show_edit_user.inc.php:115
msgid "Update User"
msgstr "ユーザの更新"
#: ../../templates/show_edit_album_row.inc.php:35
#: ../../lib/class/album.class.php:257 ../../lib/class/album.class.php:258
msgid "Various"
msgstr "いくつかの"
#: ../../templates/show_debug.inc.php:23
msgid "Debug Tools"
msgstr "デバッグツール"
#: ../../templates/show_debug.inc.php:27 ../../templates/show_debug.inc.php:28
msgid "Generate Configuration"
msgstr "設定を生成"
#: ../../templates/show_debug.inc.php:31 ../../templates/show_debug.inc.php:32
msgid "Set Database Charset"
msgstr "データベースCharsetをセット"
#: ../../templates/show_debug.inc.php:37
msgid "PHP Settings"
msgstr "PHP設定"
#: ../../templates/show_debug.inc.php:44
msgid "Setting"
msgstr "設定"
#: ../../templates/show_debug.inc.php:48
msgid "Memory Limit"
msgstr "メモリ制限"
#: ../../templates/show_debug.inc.php:52
msgid "Maximum Execution Time"
msgstr "最大実行時間"
#: ../../templates/show_debug.inc.php:56
msgid "Override Execution Time"
msgstr "オーバーライド実行時間"
#: ../../templates/show_debug.inc.php:57
msgid "Failed"
msgstr "失敗"
#: ../../templates/show_debug.inc.php:57
msgid "Succeeded"
msgstr "成功"
#: ../../templates/show_debug.inc.php:60
msgid "Safe Mode"
msgstr "セーフモード"
#: ../../templates/show_debug.inc.php:68
msgid "Zlib Support"
msgstr "Zlibサポート"
#: ../../templates/show_debug.inc.php:72
msgid "GD Support"
msgstr "GDサポート"
#: ../../templates/show_debug.inc.php:76
msgid "Iconv Support"
msgstr "Iconvサポート"
#: ../../templates/show_debug.inc.php:80
#: ../../templates/show_install_check.inc.php:128
msgid "Gettext Support"
msgstr "Gettextサポート"
#: ../../templates/show_debug.inc.php:86
msgid "Current Configuration"
msgstr "現在の設定"
#: ../../templates/show_debug.inc.php:93
#: ../../templates/show_preference_admin.inc.php:30
#: ../../templates/show_preference_admin.inc.php:49
#: ../../templates/show_preference_box.inc.php:40
#: ../../templates/show_preference_box.inc.php:70
#: ../../templates/show_user_preferences.inc.php:36
msgid "Preference"
msgstr "設定"
#: ../../templates/show_search_bar.inc.php:29
#: ../../templates/show_search.inc.php:144 ../../lib/ui.lib.php:324
msgid "Search"
msgstr "検索"
#: ../../templates/show_search_bar.inc.php:30
msgid "Advanced Search"
msgstr "高度な検索"
#: ../../templates/show_add_shout.inc.php:23
msgid "Post to Shoutbox"
msgstr "シャウトボックスへ投稿"
#: ../../templates/show_add_shout.inc.php:27
#: ../../templates/show_edit_shout.inc.php:31
msgid "Comment:"
msgstr "コメント:"
#: ../../templates/show_add_shout.inc.php:34
#: ../../templates/show_edit_shout.inc.php:37
msgid "Make Sticky"
msgstr "スティッキーにする"
#: ../../templates/show_add_shout.inc.php:41
#: ../../templates/show_add_playlist.inc.php:42
msgid "Create"
msgstr "作成"
#: ../../templates/show_create_democratic.inc.php:22
#: ../../templates/show_democratic.inc.php:34
#: ../../templates/show_democratic.inc.php:35
msgid "Configure Democratic Playlist"
msgstr "デモクラティックプレイリスト設定"
#: ../../templates/show_create_democratic.inc.php:34
msgid "Cooldown Time"
msgstr "クールダウン時間"
#: ../../templates/show_create_democratic.inc.php:35
#: ../../templates/show_search.inc.php:77 ../../lib/class/video.class.php:77
#: ../../lib/class/democratic.class.php:140
msgid "minutes"
msgstr "分"
#: ../../templates/show_create_democratic.inc.php:49
msgid "Make Default"
msgstr "デフォルトにする"
#: ../../templates/show_create_democratic.inc.php:54
msgid "Force Democratic Play"
msgstr "強制デモクラティック再生"
#: ../../templates/show_create_democratic.inc.php:59
#: ../../templates/show_edit_shout.inc.php:41
#: ../../templates/show_preference_admin.inc.php:55
#: ../../templates/show_edit_access.inc.php:84
#: ../../templates/show_playlist_edit.inc.php:47
#: ../../templates/show_play_selected.inc.php:64
#: ../../templates/show_catalog_row.inc.php:32
#: ../../templates/show_manage_catalogs.inc.php:42
msgid "Update"
msgstr "更新"
#: ../../templates/show_install_check.inc.php:23
msgid "Required"
msgstr "必要条件"
#: ../../templates/show_install_check.inc.php:26
#: ../../templates/show_install_check.inc.php:31
#: ../../templates/show_test.inc.php:147
#, fuzzy, php-format
msgid "%s is readable"
msgstr "%sはAmpacheで読み込めません"
#: ../../templates/show_install_check.inc.php:40
#: ../../templates/show_install_check.inc.php:53
#: ../../templates/show_test.inc.php:45
msgid "PHP Version"
msgstr "PHPバージョン"
#: ../../templates/show_install_check.inc.php:51
#: ../../templates/show_test.inc.php:51
msgid "Hash Function Exists"
msgstr "ハッシュ関数は存在します"
#: ../../templates/show_install_check.inc.php:51
#: ../../templates/show_test.inc.php:51
msgid "SHA256 Support"
msgstr "SHA256 サポート"
#: ../../templates/show_install_check.inc.php:61
#: ../../templates/show_install_check.inc.php:66
#: ../../templates/show_test.inc.php:65
msgid "Mysql for PHP"
msgstr "PHPのMysql"
#: ../../templates/show_install_check.inc.php:74
#: ../../templates/show_install_check.inc.php:79
#: ../../templates/show_test.inc.php:82
msgid "PHP Session Support"
msgstr "PHPセッションサポート"
#: ../../templates/show_install_check.inc.php:87
#: ../../templates/show_install_check.inc.php:92
#: ../../templates/show_test.inc.php:99
msgid "PHP ICONV Support"
msgstr "PHP ICONVサポート"
#: ../../templates/show_install_check.inc.php:100
#: ../../templates/show_install_check.inc.php:105
#: ../../templates/show_test.inc.php:115
msgid "PHP PCRE Support"
msgstr "PHP PCREサポート"
#: ../../templates/show_install_check.inc.php:113
#: ../../templates/show_install_check.inc.php:118
#: ../../templates/show_test.inc.php:131
msgid "PHP PutENV Support"
msgstr "PHP PutENVサポート"
#: ../../templates/show_install_check.inc.php:126
msgid "Optional"
msgstr "オプション"
#: ../../templates/show_install_check.inc.php:132
msgid "Gettext Emulator will be used"
msgstr "Gettextエミュレータが使用されるでしょう"
#: ../../templates/show_install_check.inc.php:140
msgid "Mbstring Support"
msgstr "mbstringサポート"
#: ../../templates/show_install_check.inc.php:144
#, fuzzy
msgid "Multibyte Character may not detect correct"
msgstr "マルチバイト文字列を正しく検出できないかもしれません"
#: ../../templates/show_install_check.inc.php:152
#, fuzzy
msgid "PHP Memory Limit"
msgstr "メモリ制限"
#: ../../templates/show_install_check.inc.php:156
msgid "Memory Limit less then recommended size"
msgstr ""
#: ../../templates/show_install_check.inc.php:165
#, fuzzy
msgid "PHP Execution timelimit"
msgstr "最大実行時間"
#: ../../templates/show_install_check.inc.php:169
msgid "Execution timelimit less the recommended"
msgstr ""
#: ../../templates/show_install_check.inc.php:172
#, fuzzy
msgid "seconds"
msgstr "秒前"
#: ../../templates/show_edit_playlist_row.inc.php:32
#: ../../templates/show_playlist_edit.inc.php:39
msgid "Public"
msgstr "公開"
#: ../../templates/show_edit_playlist_row.inc.php:33
#: ../../templates/show_playlist_edit.inc.php:40
#: ../../lib/class/playlist.class.php:83
msgid "Private"
msgstr "プライベート"
#: ../../templates/show_confirmation.inc.php:27
#: ../../templates/show_update_items.inc.php:27
msgid "Continue"
msgstr "続ける"
#: ../../templates/show_confirmation.inc.php:32
#: ../../templates/show_similar_artists.inc.php:78
msgid "Cancel"
msgstr "キャンセル"
#: ../../templates/sidebar.inc.php:27 ../../lib/ui.lib.php:309
msgid "Home"
msgstr "ホーム"
#: ../../templates/sidebar.inc.php:29
#: ../../templates/sidebar_preferences.inc.php:29
#: ../../templates/show_user_row.inc.php:39 ../../lib/ui.lib.php:327
msgid "Preferences"
msgstr "設定"
#: ../../templates/sidebar.inc.php:61
msgid "Logout"
msgstr "ログアウト"
#. HINT: Catalog Name
#: ../../templates/show_verify_catalog.inc.php:24
#, php-format
msgid "Updating the %s catalog"
msgstr "%sカタログの更新中"
#: ../../templates/show_verify_catalog.inc.php:26
#, php-format
msgid "%d item found checking tag information"
msgid_plural "%d items found checking tag information"
msgstr[0] "%dアイテム見つかりました。タグ情報をチェック中です。"
#: ../../templates/show_verify_catalog.inc.php:28
msgid "Verifed"
msgstr "確認済み"
#: ../../templates/show_shoutbox.inc.php:22
msgid "Shoutbox"
msgstr "シャウトボックス"
#: ../../templates/show_genres.inc.php:60
#: ../../templates/show_playlist.inc.php:35
#: ../../templates/show_playlist.inc.php:36
#: ../../templates/show_search_options.inc.php:32
#: ../../templates/show_search_options.inc.php:33
#: ../../templates/show_artist_row.inc.php:35
#: ../../templates/show_album_row.inc.php:50
#: ../../templates/show_playlist_row.inc.php:33
#: ../../templates/rightbar.inc.php:49
msgid "Batch Download"
msgstr "バッチダウンロード"
#. HINT: Democratic Name
#: ../../templates/show_democratic.inc.php:22
#, php-format
msgid "%s Playlist"
msgstr "%s プレイリスト"
#: ../../templates/show_democratic.inc.php:22
#: ../../lib/class/browse.class.php:214
msgid "Democratic Playlist"
msgstr "デモクラティックプレイリスト"
#: ../../templates/show_democratic.inc.php:40
msgid "Play Democratic Playlist"
msgstr "デモクラティックプレイリストを再生"
#: ../../templates/show_localplay_control.inc.php:25
msgid "Previous"
msgstr "前へ"
#: ../../templates/show_localplay_control.inc.php:26
msgid "Stop"
msgstr "停止"
#: ../../templates/show_localplay_control.inc.php:27
msgid "Pause"
msgstr "一時停止"
#: ../../templates/show_localplay_control.inc.php:29
#: ../../templates/list_header.inc.php:101
msgid "Next"
msgstr "次へ"
#: ../../templates/show_localplay_controllers.inc.php:33
#: ../../templates/show_localplay_controllers.inc.php:64
#: ../../templates/show_plugins.inc.php:33
#: ../../templates/show_plugins.inc.php:62
msgid "Description"
msgstr "説明"
#: ../../templates/show_localplay_controllers.inc.php:34
#: ../../templates/show_localplay_controllers.inc.php:65
#: ../../templates/show_plugins.inc.php:34
#: ../../templates/show_plugins.inc.php:63
msgid "Version"
msgstr "バージョン"
#: ../../templates/show_localplay_controllers.inc.php:44
#: ../../templates/show_duplicates.inc.php:36
#: ../../templates/show_duplicates.inc.php:75
#: ../../templates/show_user_row.inc.php:46 ../../lib/preferences.php:166
#: ../../lib/preferences.php:273
msgid "Disable"
msgstr "無効"
#: ../../templates/show_localplay_controllers.inc.php:48
#: ../../templates/show_plugins.inc.php:42
msgid "Activate"
msgstr "アクティベート"
#: ../../templates/show_install.inc.php:57
msgid ""
"This step creates and inserts the Ampache database, as such please provide a "
"mysql account with database creation rights. This step may take a while "
"depending upon the speed of your computer"
msgstr ""
"このステップはデータベースの作成権限をmysqlのアカウントに与えていることを前提"
"にAmpacheデータベースを作成し、データを挿入します。マシンの速度によってこのス"
"テップはしばらく時間がかかるかもしれません。"
#: ../../templates/show_install.inc.php:64
msgid "Insert Ampache Database"
msgstr "Ampacheデータベースの挿入"
#: ../../templates/show_install.inc.php:76
msgid "MySQL Administrative Username"
msgstr "MySQL管理ユーザ名"
#: ../../templates/show_install.inc.php:80
msgid "MySQL Administrative Password"
msgstr "MySQL管理パスワード"
#: ../../templates/show_install.inc.php:84
msgid "Create Database User for New Database"
msgstr "新規データベースのユーザ作成"
#: ../../templates/show_install.inc.php:88
msgid "Ampache Database Username"
msgstr "Ampacheデータベースユーザ名"
#: ../../templates/show_install.inc.php:92
msgid "Ampache Database User Password"
msgstr "Ampacheデータベースユーザパスワード"
#: ../../templates/show_install.inc.php:96
msgid "Overwrite Existing"
msgstr "既存を上書き"
#: ../../templates/show_install.inc.php:100
msgid "Use Existing Database"
msgstr "既存のデータベースを使用する"
#: ../../templates/show_install.inc.php:105
msgid "Insert Database"
msgstr "データベース挿入"
#: ../../templates/show_localplay_edit_instance.inc.php:23
msgid "Edit Localplay Instance"
msgstr "ローカルプレイインスタンスの編集"
#: ../../templates/show_localplay_edit_instance.inc.php:34
msgid "Update Instance"
msgstr "インスタンスの更新"
#: ../../templates/show_similar_artists.inc.php:23
msgid "Similar Artists"
msgstr "同様のアーティスト"
#: ../../templates/show_similar_artists.inc.php:25
msgid "Please check the artists you want to merge with the current one"
msgstr "現在のものとマージしたいアーティストをチェックしてください"
#: ../../templates/show_similar_artists.inc.php:58
msgid "No Similar Artists found"
msgstr "同様のアーティストは見つかりませんでした"
#: ../../templates/show_similar_artists.inc.php:66
msgid "Back"
msgstr "戻る"
#: ../../templates/show_similar_artists.inc.php:77
msgid "Rename selected"
msgstr "リネーム"
#: ../../templates/show_similar_artists.inc.php:91
msgid "Advanced Options"
msgstr "拡張オプション"
#: ../../templates/show_similar_artists.inc.php:152
msgid "Search Again"
msgstr "再検索"
#: ../../templates/show_add_playlist.inc.php:24
msgid "Create a new playlist"
msgstr "新規プレイリスト作成"
#. HINT: Artist Name
#: ../../templates/show_rename_artist.inc.php:29
#, php-format
msgid "Rename %s"
msgstr "%sをリネーム"
#: ../../templates/show_rename_artist.inc.php:35
msgid "Insert current"
msgstr "現在に挿入"
#: ../../templates/show_rename_artist.inc.php:37
msgid "Update id3 tags"
msgstr "ID3タグの更新"
#: ../../templates/show_rename_artist.inc.php:38
msgid "Rename"
msgstr "リネーム"
#: ../../templates/show_edit_shout.inc.php:23
msgid "Edit existing Shoutbox Post"
msgstr "既存のシャウトボックス投稿を編集"
#. HINT: Client link, Object link
#: ../../templates/show_edit_shout.inc.php:28
#, php-format
msgid "Created by: %s for %s"
msgstr "作成: %sの%s"
#. HINT: Playlist Type, Playlist Name
#: ../../templates/show_playlist.inc.php:26
#, php-format
msgid "%s %s Playlist"
msgstr "%s %s プレイリスト"
#: ../../templates/show_playlist.inc.php:30
#: ../../templates/show_playlist.inc.php:31
msgid "Normalize Tracks"
msgstr "トラックのノーマライズ"
#: ../../templates/show_playlist.inc.php:40
#: ../../templates/show_playlist.inc.php:41
msgid "Add All"
msgstr "全て追加"
#: ../../templates/show_playlist.inc.php:44
#: ../../templates/show_playlist.inc.php:45
msgid "Add Random"
msgstr "ランダムを追加"
#: ../../templates/show_localplay_add_instance.inc.php:24
msgid "Add Localplay Instance"
msgstr "ローカル再生インスタンス追加"
#: ../../templates/show_localplay_add_instance.inc.php:35
#: ../../templates/sidebar_localplay.inc.php:35
msgid "Add Instance"
msgstr "インスタンス追加"
#: ../../templates/header.inc.php:37
#: ../../templates/show_recently_played.inc.php:25
#: ../../lib/class/ampacherss.class.php:71
msgid "Recently Played"
msgstr "最近再生したもの"
#: ../../templates/header.inc.php:62
msgid "Log out"
msgstr "ログアウト"
#: ../../templates/header.inc.php:78
msgid "Error Config File Out of Date"
msgstr "エラー: 設定ファイルは期限切れです"
#: ../../templates/show_albums.inc.php:42
#: ../../templates/show_albums.inc.php:73
msgid "Cover"
msgstr "カバー"
#: ../../templates/show_albums.inc.php:47
#: ../../templates/show_albums.inc.php:78
#: ../../templates/show_search.inc.php:60
#: ../../templates/show_edit_song.inc.php:59
#: ../../templates/show_edit_album.inc.php:33
#: ../../templates/show_play_selected.inc.php:61
msgid "Year"
msgstr "年"
#: ../../templates/show_preference_admin.inc.php:22
msgid "Preference Administration"
msgstr "設定管理"
#: ../../templates/show_stats.inc.php:24
#: ../../templates/sidebar_home.inc.php:115 ../../lib/ui.lib.php:374
msgid "Statistics"
msgstr "統計"
#: ../../templates/show_stats.inc.php:28
msgid "Connected Users"
msgstr "接続したユーザ"
#: ../../templates/show_stats.inc.php:29
msgid "Total Users"
msgstr "合計ユーザ数"
#: ../../templates/show_stats.inc.php:30
#: ../../templates/show_artists.inc.php:39
#: ../../templates/show_artists.inc.php:67
#: ../../templates/show_genre.inc.php:33
#: ../../templates/show_popular.inc.php:26
#: ../../templates/sidebar_home.inc.php:33
#: ../../templates/sidebar_home.inc.php:78
#: ../../lib/class/browse.class.php:148 ../../lib/ui.lib.php:362
msgid "Albums"
msgstr "アルバム"
#: ../../templates/show_stats.inc.php:31 ../../templates/show_genre.inc.php:36
#: ../../templates/show_popular.inc.php:29
#: ../../templates/sidebar_home.inc.php:34
#: ../../lib/class/browse.class.php:159 ../../lib/class/album.class.php:257
#: ../../lib/ui.lib.php:366
msgid "Artists"
msgstr "アーティスト"
#: ../../templates/show_stats.inc.php:33 ../../templates/show_stats.inc.php:69
msgid "Video"
msgstr "動画"
#: ../../templates/show_stats.inc.php:35 ../../templates/show_stats.inc.php:70
msgid "Catalog Size"
msgstr "カタログサイズ"
#: ../../templates/show_stats.inc.php:36
msgid "Catalog Time"
msgstr "カタログ時間"
#: ../../templates/show_recently_played.inc.php:23
#: ../../lib/class/ampacherss.class.php:175
msgid "seconds ago"
msgstr "秒前"
#: ../../templates/show_recently_played.inc.php:23
#: ../../lib/class/ampacherss.class.php:175
msgid "minutes ago"
msgstr "分前"
#: ../../templates/show_recently_played.inc.php:23
#: ../../lib/class/ampacherss.class.php:175
msgid "hours ago"
msgstr "時間前"
#: ../../templates/show_recently_played.inc.php:23
#: ../../lib/class/ampacherss.class.php:175
msgid "days ago"
msgstr "日前"
#: ../../templates/show_recently_played.inc.php:23
#: ../../lib/class/ampacherss.class.php:175
msgid "weeks ago"
msgstr "週間前"
#: ../../templates/show_recently_played.inc.php:23
#: ../../lib/class/ampacherss.class.php:175
msgid "months ago"
msgstr "ヶ月前"
#: ../../templates/show_recently_played.inc.php:23
#: ../../lib/class/ampacherss.class.php:175
msgid "years ago"
msgstr "年前"
#: ../../templates/show_recently_played.inc.php:42
#: ../../templates/show_recently_played.inc.php:104
msgid "Last Played"
msgstr "最後に再生した"
#: ../../templates/show_search.inc.php:26
msgid "Search Ampache"
msgstr "Ampache検索"
#: ../../templates/show_search.inc.php:30
msgid "Keywords"
msgstr "キーワード"
#: ../../templates/show_search.inc.php:54
#: ../../templates/show_live_streams.inc.php:39
#: ../../templates/show_live_streams.inc.php:61
msgid "Tag"
msgstr "タグ"
#: ../../templates/show_search.inc.php:79
#: ../../templates/show_videos.inc.php:38
#: ../../templates/show_videos.inc.php:62
msgid "Codec"
msgstr "コーデック"
#: ../../templates/show_search.inc.php:85
msgid "Played"
msgstr "再生済"
#: ../../templates/show_search.inc.php:89
msgid "Yes"
msgstr "はい"
#: ../../templates/show_search.inc.php:90
msgid "No"
msgstr "いいえ"
#: ../../templates/show_search.inc.php:93
msgid "Min Bitrate"
msgstr "最小ビットレート"
#: ../../templates/show_search.inc.php:108
msgid "One Star"
msgstr "1点"
#: ../../templates/show_search.inc.php:109
msgid "Two Stars"
msgstr "2点"
#: ../../templates/show_search.inc.php:110
msgid "Three Stars"
msgstr "3点"
#: ../../templates/show_search.inc.php:111
msgid "Four Stars"
msgstr "4点"
#: ../../templates/show_search.inc.php:112
msgid "Five Stars"
msgstr "5点"
#: ../../templates/show_search.inc.php:127
msgid "Fuzzy"
msgstr "曖昧"
#: ../../templates/show_search.inc.php:128
msgid "Exact"
msgstr "正確"
#: ../../templates/show_search.inc.php:131
msgid "Maximum Results"
msgstr "最大結果"
#: ../../templates/show_search.inc.php:134
#: ../../templates/show_random.inc.php:46
#: ../../templates/show_random.inc.php:81
msgid "Unlimited"
msgstr "無制限"
#: ../../templates/show_add_live_stream.inc.php:24
#: ../../templates/show_live_stream.inc.php:26
msgid "Add Radio Station"
msgstr "ラジオステーションの追加"
#: ../../templates/show_add_live_stream.inc.php:35
#: ../../templates/show_edit_live_stream_row.inc.php:28
msgid "Homepage"
msgstr "ホームページ"
#: ../../templates/show_add_live_stream.inc.php:42
#: ../../templates/show_edit_live_stream_row.inc.php:27
msgid "Stream URL"
msgstr "ストリームURL"
#: ../../templates/show_add_live_stream.inc.php:49
#: ../../templates/show_live_streams.inc.php:38
#: ../../templates/show_live_streams.inc.php:60
#: ../../templates/show_edit_live_stream_row.inc.php:30
msgid "Frequency"
msgstr "周波数"
#: ../../templates/show_add_live_stream.inc.php:55
#: ../../templates/show_live_streams.inc.php:37
#: ../../templates/show_live_streams.inc.php:59
#: ../../templates/show_edit_live_stream_row.inc.php:29
msgid "Callsign"
msgstr "コールサイン"
#: ../../templates/show_add_live_stream.inc.php:61
#: ../../templates/show_export.inc.php:32
msgid "Catalog"
msgstr "カタログ"
#: ../../templates/show_edit_access.inc.php:22
msgid "Edit Access Control List"
msgstr "アクセスコントロールリストの編集"
#: ../../templates/show_edit_access.inc.php:30
#: ../../templates/show_add_access.inc.php:48
msgid "ACL Type"
msgstr "ACLタイプ"
#: ../../templates/show_edit_access.inc.php:37
#: ../../templates/show_add_access.inc.php:54
#: ../../templates/show_add_access_rpc.inc.php:50
#: ../../templates/show_add_access_rpc.inc.php:51
#: ../../templates/show_add_access_rpc.inc.php:52
msgid "RPC"
msgstr "RPC"
#: ../../templates/show_user_registration.inc.php:29
#: ../../templates/show_user_registration.inc.php:36
#: ../../templates/show_registration_confirmation.inc.php:29
#: ../../templates/show_user_activate.inc.php:29
#: ../../templates/show_user_activate.inc.php:36
msgid "Registration"
msgstr "登録"
#: ../../templates/show_user_registration.inc.php:54
msgid "User Agreement"
msgstr "同意"
#: ../../templates/show_user_registration.inc.php:63
msgid "I Accept"
msgstr "同意する"
#: ../../templates/show_user_registration.inc.php:69
msgid "User Information"
msgstr "ユーザ情報"
#: ../../templates/show_user_registration.inc.php:118
msgid "* Required fields"
msgstr "* 必須フィールド"
#: ../../templates/show_user_registration.inc.php:131
msgid "Register User"
msgstr "ユーザ登録"
#: ../../templates/show_login_form.inc.php:66
msgid "Remember Me"
msgstr "パスワードを記憶する"
#: ../../templates/show_login_form.inc.php:73
msgid "Login"
msgstr "ログイン"
#: ../../templates/show_login_form.inc.php:78
msgid "Register"
msgstr "登録"
#: ../../templates/show_login_form.inc.php:90
msgid "Message of the Day"
msgstr "1日のメッセージ"
#: ../../templates/show_login_form.inc.php:99
#: ../../templates/footer.inc.php:32
msgid "Queries:"
msgstr "クエリ:"
#: ../../templates/show_login_form.inc.php:99
#: ../../templates/footer.inc.php:32
msgid "Cache Hits:"
msgstr "キャッシュヒット:"
#: ../../templates/show_localplay_instances.inc.php:23
msgid "Show Localplay Instances"
msgstr "ローカル再生インスタンスの表示"
#: ../../templates/show_localplay_instances.inc.php:39
msgid "Edit Instance"
msgstr "インスタンス編集"
#. HINT: Artist Fullname
#: ../../templates/show_artist.inc.php:23
#, php-format
msgid "Albums by %s"
msgstr "%sによるアルバム"
#. HINT: Object type, Artist Fullname
#: ../../templates/show_artist.inc.php:27
#, php-format
msgid "%s by %s"
msgstr "%2$sによる%1$s"
#. HINT: Artist Fullname
#: ../../templates/show_artist.inc.php:38
#: ../../templates/show_artist.inc.php:39
#, php-format
msgid "Show All Songs By %s"
msgstr "%sで全曲を表示"
#: ../../templates/show_artist.inc.php:44
#, php-format
msgid "Add All Songs By %s"
msgstr "%sで全曲を追加"
#: ../../templates/show_artist.inc.php:49
#, php-format
msgid "Add Random Songs By %s"
msgstr "%sでランダム曲を追加"
#: ../../templates/show_artist.inc.php:53
#: ../../templates/show_artist.inc.php:54
#: ../../templates/show_album.inc.php:70 ../../templates/show_album.inc.php:71
msgid "Update from tags"
msgstr "タグから更新"
#: ../../templates/show_artist.inc.php:64
#: ../../templates/sidebar_home.inc.php:64
msgid "Show Art"
msgstr "アート表示"
#: ../../templates/show_all_popular.inc.php:26
#: ../../templates/show_mail_users.inc.php:57
#: ../../templates/show_stats_popular.inc.php:31
msgid "Most Popular Artists"
msgstr "1番人気のアーティスト"
#: ../../templates/show_all_popular.inc.php:29
#: ../../templates/show_mail_users.inc.php:46
#: ../../templates/show_stats_popular.inc.php:25
msgid "Most Popular Albums"
msgstr "1番人気のアルバム"
#: ../../templates/show_all_popular.inc.php:32
msgid "Most Popular Genres"
msgstr "1番人気のジャンル"
#: ../../templates/show_all_popular.inc.php:38
#: ../../templates/show_mail_users.inc.php:68
msgid "Most Popular Songs"
msgstr "1番人気の曲"
#: ../../templates/show_all_popular.inc.php:41
msgid "Most Popular Live Streams"
msgstr "1番人気のライブストリーム"
#: ../../templates/show_all_popular.inc.php:44
msgid "Most Popular Tags"
msgstr "一番人気のタグ"
#: ../../templates/show_edit_song.inc.php:23
msgid "Edit Song"
msgstr "曲編集"
#: ../../templates/show_edit_song.inc.php:73
#: ../../templates/show_edit_artist.inc.php:35
#: ../../templates/show_edit_album.inc.php:41
msgid "Flag for Retagging"
msgstr "再タグ付けのフラグ"
#: ../../templates/show_edit_song.inc.php:80
msgid "Update Song"
msgstr "曲を更新"
#: ../../templates/show_mail_users.inc.php:23
msgid "Send E-mail to Users"
msgstr "ユーザへメール送信"
#: ../../templates/show_mail_users.inc.php:27
msgid "Mail to"
msgstr "メール先:"
#: ../../templates/show_mail_users.inc.php:33
msgid "Inactive Users"
msgstr "不活発なユーザ"
#: ../../templates/show_mail_users.inc.php:42
msgid "Catalog Statistics"
msgstr "カタログ統計"
#: ../../templates/show_mail_users.inc.php:53
msgid "Latest Artist Additions"
msgstr "最後に追加したアーティスト"
#: ../../templates/show_mail_users.inc.php:64
msgid "Latest Album Additions"
msgstr "最後に追加したアルバム"
#: ../../templates/show_mail_users.inc.php:74
msgid "Flagged Songs"
msgstr "フラグされた曲"
#: ../../templates/show_mail_users.inc.php:78
#: ../../templates/show_admin_info.inc.php:34
msgid "Disabled Songs"
msgstr "無効な曲"
#: ../../templates/show_mail_users.inc.php:86
msgid "Most Popular Threshold in days"
msgstr "1番人気にする日数の閾値"
#: ../../templates/show_mail_users.inc.php:97
msgid "Subject"
msgstr "件名"
#: ../../templates/show_mail_users.inc.php:104
msgid "Message"
msgstr "本文"
#: ../../templates/show_mail_users.inc.php:112
msgid "Send Mail"
msgstr "メール送信"
#: ../../templates/show_add_user.inc.php:23
msgid "Adding a New User"
msgstr "新規ユーザを追加"
#: ../../templates/show_add_user.inc.php:85
#: ../../templates/sidebar_admin.inc.php:33
msgid "Add User"
msgstr "ユーザ追加"
#: ../../templates/show_preference_box.inc.php:43
#: ../../templates/show_preference_box.inc.php:73
msgid "Apply to All"
msgstr "全てに適用"
#: ../../templates/show_preference_box.inc.php:44
#: ../../templates/show_preference_box.inc.php:74
msgid "Access Level"
msgstr "アクセスレベル"
#: ../../templates/show_playlist_edit.inc.php:26
msgid "Editing Playlist"
msgstr "プレイリスト編集"
#: ../../templates/show_registration_confirmation.inc.php:36
msgid "Registration Complete"
msgstr "登録完了"
#: ../../templates/show_registration_confirmation.inc.php:42
msgid ""
"Your account has been created. An activation key has been sent to the e-mail "
"address you provided. Please check your e-mail for further information"
msgstr ""
"アカウントを作成しました。アクティベーションキーを入力したメールアドレスへ送"
"信しました。メールをチェックしてください。"
#: ../../templates/show_registration_confirmation.inc.php:44
msgid "Return to Login Page"
msgstr "ログインページへ戻る"
#: ../../templates/show_denied.inc.php:32
#: ../../templates/sidebar_localplay.inc.php:66
msgid "Access Denied"
msgstr "アクセス拒否"
#: ../../templates/show_denied.inc.php:38
msgid ""
"You've been redirected to this page because you do not have access to this "
"function."
msgstr "この機能へアクセスできないため、このページを表示しています。"
#: ../../templates/show_denied.inc.php:39
msgid ""
"If you believe this is an error please contact an Ampache administrator."
msgstr "これがエラーだと思われる場合、Ampache管理者へお問合せください。"
#: ../../templates/show_denied.inc.php:40
msgid "This event has been logged"
msgstr "このイベントは記録済みです"
#: ../../templates/show_denied.inc.php:44
msgid ""
"You've been redirected to this page because you've attempted to access a "
"function that is disabled in the demo."
msgstr ""
"デモで無効になっている機能にアクセスを試みたため、このページにリダイレクトさ"
"れました。"
#: ../../templates/show_denied.inc.php:45
msgid ""
"Functions are disabled in the demo because previous users of the demo have "
"used the functionality to post inappropriate materials"
msgstr ""
"デモの前のユーザが不適切な素材を投稿する機能を使用したので、機能はデモでは無"
"効にされます。"
#: ../../templates/show_duplicates.inc.php:22
msgid "Duplicate Songs"
msgstr "重複している曲"
#: ../../templates/show_duplicates.inc.php:42
#: ../../templates/show_duplicates.inc.php:81
msgid "Size"
msgstr "サイズ"
#: ../../templates/show_gather_art.inc.php:23
msgid "Starting Album Art Search"
msgstr "アルバムアート検索の開始"
#: ../../templates/show_gather_art.inc.php:24
msgid "Searched"
msgstr "検索済み"
#: ../../templates/show_gather_art.inc.php:24
#: ../../templates/sidebar_localplay.inc.php:44
#: ../../templates/show_adds_catalog.inc.php:26 ../../lib/preferences.php:175
#: ../../lib/preferences.php:217 ../../lib/ui.lib.php:571
msgid "None"
msgstr "無し"
#: ../../templates/show_random.inc.php:22
msgid "Play Random Selection"
msgstr "ランダムな選択を再生"
#: ../../templates/show_random.inc.php:26
msgid "Item count"
msgstr "アイテムカウント"
#: ../../templates/show_random.inc.php:47
#: ../../templates/show_random.inc.php:48
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
msgstr[0] "%d分"
#: ../../templates/show_random.inc.php:49
#: ../../templates/show_random.inc.php:50
#: ../../templates/show_random.inc.php:51
#: ../../templates/show_random.inc.php:52
#: ../../templates/show_random.inc.php:53
#, php-format
msgid "%d hour"
msgid_plural "%d hours"
msgstr[0] "%d時間"
#: ../../templates/show_random.inc.php:61
msgid "Standard"
msgstr "基本"
#: ../../templates/show_random.inc.php:62
msgid "Less Played"
msgstr "未再生"
#: ../../templates/show_random.inc.php:63
msgid "Full Albums"
msgstr "フルアルバム"
#: ../../templates/show_random.inc.php:64
msgid "Full Artist"
msgstr "フルアーティスト"
#: ../../templates/show_random.inc.php:66
msgid "Highest Rated"
msgstr "高評価"
#: ../../templates/show_random.inc.php:72
msgid "From catalog"
msgstr "カタログから"
#: ../../templates/show_random.inc.php:78
msgid "Size Limit"
msgstr "サイズ制限"
#: ../../templates/show_random.inc.php:92
msgid "Enqueue"
msgstr "エンキュー"
#. HINT: Genre Name
#: ../../templates/show_genre.inc.php:30
#, php-format
msgid "Viewing %s Genre"
msgstr "%sジャンルを閲覧中"
#: ../../templates/sidebar_preferences.inc.php:38
msgid "Account"
msgstr "アカウント"
#: ../../templates/show_duplicate.inc.php:27
msgid "Search Type"
msgstr "検索タイプ"
#: ../../templates/show_duplicate.inc.php:34
msgid "Artist and Title"
msgstr "アーティストとタイトル"
#: ../../templates/show_duplicate.inc.php:35
msgid "Artist, Album and Title"
msgstr "アーティストとアルバムとタイトル"
#: ../../templates/show_duplicate.inc.php:37
msgid "Search Disabled Songs"
msgstr "無効な曲を検索"
#: ../../templates/sidebar_localplay.inc.php:36
msgid "Show instances"
msgstr "インスタンス表示"
#: ../../templates/sidebar_localplay.inc.php:38
msgid "Show Playlist"
msgstr "再生リストの表示"
#: ../../templates/sidebar_localplay.inc.php:42
msgid "Active Instance"
msgstr "有効なインスタンス"
#: ../../templates/sidebar_localplay.inc.php:60
msgid "Localplay Disabled"
msgstr "ローカル再生は無効です"
#: ../../templates/sidebar_localplay.inc.php:62
msgid "Allow Localplay set to False"
msgstr "ローカル再生の許可をFalseにセットします"
#: ../../templates/sidebar_localplay.inc.php:64
msgid "Localplay Controller Not Defined"
msgstr "ローカル再生コントローラが定義されていません"
#: ../../templates/show_get_albumart.inc.php:23
msgid "Customize Search"
msgstr "カスタマイズ検索"
#: ../../templates/show_get_albumart.inc.php:44
msgid "Direct URL to Image"
msgstr "画像への直接URL"
#: ../../templates/show_get_albumart.inc.php:52
msgid "Local Image"
msgstr "ローカル画像"
#: ../../templates/show_get_albumart.inc.php:63
msgid "Get Art"
msgstr "アート取得"
#: ../../templates/show_test_config.inc.php:40
#: ../../templates/sidebar_admin.inc.php:45
#: ../../templates/show_test.inc.php:32
msgid "Ampache Debug"
msgstr "Ampacheデバッグ"
#: ../../templates/show_search_options.inc.php:23
msgid "Options"
msgstr "オプション"
#: ../../templates/show_search_options.inc.php:27
#: ../../templates/show_search_options.inc.php:28
msgid "Add Search Results"
msgstr "検索結果を追加"
#. HINT: Catalog Name
#: ../../templates/show_edit_catalog.inc.php:22
#, php-format
msgid "Settings for %s"
msgstr "%sの設定"
#: ../../templates/show_edit_catalog.inc.php:29
#: ../../templates/show_add_catalog.inc.php:35
msgid "Auto-inserted Fields"
msgstr "自動挿入フィールド"
#: ../../templates/show_edit_catalog.inc.php:30
#: ../../templates/show_add_catalog.inc.php:36
msgid "album name"
msgstr "アルバム名"
#: ../../templates/show_edit_catalog.inc.php:31
#: ../../templates/show_add_catalog.inc.php:37
msgid "artist name"
msgstr "アーティスト名"
#: ../../templates/show_edit_catalog.inc.php:32
#: ../../templates/show_add_catalog.inc.php:38
msgid "id3 comment"
msgstr "ID3のコメント"
#: ../../templates/show_edit_catalog.inc.php:33
#: ../../templates/show_add_catalog.inc.php:39
msgid "track number (padded with leading 0)"
msgstr "トラック番号"
#: ../../templates/show_edit_catalog.inc.php:34
#: ../../templates/show_add_catalog.inc.php:40
msgid "song title"
msgstr "曲名"
#: ../../templates/show_edit_catalog.inc.php:35
#: ../../templates/show_add_catalog.inc.php:41
msgid "year"
msgstr "年"
#: ../../templates/show_edit_catalog.inc.php:36
#: ../../templates/show_add_catalog.inc.php:42
msgid "other"
msgstr "その他"
#: ../../templates/show_edit_catalog.inc.php:40
#: ../../templates/show_add_catalog.inc.php:51
msgid "Catalog Type"
msgstr "カタログタイプ"
#: ../../templates/show_edit_catalog.inc.php:44
#: ../../templates/show_add_catalog.inc.php:60
msgid "XML-RPC Key"
msgstr "XML-RPCキー"
#: ../../templates/show_edit_catalog.inc.php:46
#: ../../templates/show_add_catalog.inc.php:61
msgid "Required for Remote Catalogs"
msgstr "リモートカタログの必須項目"
#: ../../templates/show_edit_catalog.inc.php:50
msgid "Filename pattern"
msgstr "ファイル名パターン"
#: ../../templates/show_edit_catalog.inc.php:57
#: ../../templates/show_add_catalog.inc.php:69
msgid "Folder Pattern"
msgstr "フォルダパターン"
#: ../../templates/show_edit_catalog.inc.php:57
#: ../../templates/show_add_catalog.inc.php:69
msgid "(no leading or ending '/')"
msgstr "(先頭がない又は「/」で終わっている)"
#: ../../templates/show_edit_catalog.inc.php:67
msgid "Save Catalog Settings"
msgstr "カタログ設定の保存"
#: ../../templates/show_democratic_playlist.inc.php:42
msgid "Playing from base Playlist"
msgstr "ベースのプレイリストから再生"
#: ../../templates/show_democratic_playlist.inc.php:55
#: ../../templates/show_democratic_playlist.inc.php:95
msgid "Votes"
msgstr "投票"
#: ../../templates/show_democratic_playlist.inc.php:74
msgid "Remove Vote"
msgstr "投票削除"
#: ../../templates/show_democratic_playlist.inc.php:76
msgid "Add Vote"
msgstr "投票追加"
#: ../../templates/show_edit_artist.inc.php:23
msgid "Edit Artist"
msgstr "アーティスト編集"
#: ../../templates/show_edit_artist.inc.php:41
msgid "Update Artist"
msgstr "アーティスト更新"
#: ../../templates/show_user_activate.inc.php:48
msgid "User Activated"
msgstr "ユーザアクティベート"
#. HINT: Start A tag, End A tag
#: ../../templates/show_user_activate.inc.php:52
#, php-format
msgid "This User ID is activated and can be used %sLogin%s"
msgstr "このユーザIDはアクティベート済みで%sログイン%sを使用できます"
#: ../../templates/show_user_activate.inc.php:55
msgid "Validation Failed"
msgstr "確認に失敗しました"
#: ../../templates/show_user_activate.inc.php:56
msgid "The validation key used isn't correct"
msgstr "使用した確認キーは正しくありません"
#: ../../templates/show_popular.inc.php:22
#: ../../templates/sidebar_home.inc.php:113
#: ../../templates/show_newest.inc.php:22
msgid "Information"
msgstr "情報"
#: ../../templates/show_album_art.inc.php:47
msgid "Invalid"
msgstr "不正"
#: ../../templates/show_edit_album.inc.php:23
msgid "Edit Album"
msgstr "アルバム編集"
#: ../../templates/show_edit_album.inc.php:47
msgid "Update Album"
msgstr "アルバム更新"
#: ../../templates/show_admin_info.inc.php:30
msgid "Last Ten Flagged Records"
msgstr "過去10のフラグされたレコード"
#: ../../templates/show_admin_info.inc.php:38
#: ../../templates/show_ip_history.inc.php:32
msgid "Show All"
msgstr "全て表示"
#: ../../templates/show_plugins.inc.php:46
msgid "Deactivate"
msgstr "無効化"
#: ../../templates/show_videos.inc.php:39
#: ../../templates/show_videos.inc.php:63
msgid "Resolution"
msgstr "分析"
#: ../../templates/show_update_items.inc.php:22
msgid "Starting Update from Tags"
msgstr "タグから更新を開始"
#: ../../templates/show_update_items.inc.php:26
msgid "Update from Tags Complete"
msgstr "タグから更新完了"
#: ../../templates/show_playtype_switch.inc.php:38
#: ../../lib/preferences.php:185
msgid "Flash Player"
msgstr "Flashプレーヤー"
#: ../../templates/show_play_selected.inc.php:28
msgid "Play Selected"
msgstr "選択済みを再生"
#: ../../templates/show_play_selected.inc.php:31
msgid "Download Selected"
msgstr "選択済みをダウンロード"
#: ../../templates/show_play_selected.inc.php:40
msgid "Set Track Numbers"
msgstr "トラック番号をセット"
#: ../../templates/show_play_selected.inc.php:41
msgid "Remove Selected Tracks"
msgstr "選択されたトラックを削除"
#: ../../templates/show_play_selected.inc.php:47
msgid "Add to"
msgstr "追加: "
#: ../../templates/show_live_stream.inc.php:22
msgid "Manage Radio Stations"
msgstr "ラジオステーションの管理"
#. HINT: Username
#: ../../templates/show_ip_history.inc.php:23
#, php-format
msgid "%s IP History"
msgstr "%s IP履歴"
#: ../../templates/show_ip_history.inc.php:29
msgid "Show Unique"
msgstr "ユニークを表示"
#: ../../templates/show_ip_history.inc.php:45
#: ../../templates/show_ip_history.inc.php:59
msgid "Date"
msgstr "日付"
#: ../../templates/show_ip_history.inc.php:46
#: ../../templates/show_ip_history.inc.php:60
msgid "IP Address"
msgstr "IPアドレス"
#: ../../templates/footer.inc.php:25
msgid "Using Old Password Encryption, Please Reset your Password"
msgstr ""
"古いパスワードの暗号を使用しています。パスワードをリセットしてください。"
#: ../../templates/show_add_catalog.inc.php:27
msgid ""
"In the form below enter either a local path (i.e. /data/music) or the URL to "
"a remote Ampache installation (i.e http://theotherampache.com)"
msgstr ""
"以下のフォームではローカルパス(例 /data/music)かURLのどちらかをリモートの"
"Ampatcheに入れます(例 http://theoherampache.com)"
#: ../../templates/show_add_catalog.inc.php:32
msgid "Catalog Name"
msgstr "カタログ名"
#: ../../templates/show_add_catalog.inc.php:54
msgid "Local"
msgstr "ローカル"
#: ../../templates/show_add_catalog.inc.php:55
msgid "Remote"
msgstr "リモート"
#: ../../templates/show_add_catalog.inc.php:64
msgid "Filename Pattern"
msgstr "ファイル名のパターン"
#: ../../templates/show_add_catalog.inc.php:78
msgid "Build Playlists from m3u Files"
msgstr "m3uファイルからプレイリストを構築"
#: ../../templates/show_add_catalog.inc.php:84
msgid "Add Catalog"
msgstr "カタログを追加"
#. HINT: Song Title
#: ../../templates/show_lyrics.inc.php:33
#, php-format
msgid "%s Lyrics"
msgstr "%sの歌詞"
#: ../../templates/show_lyrics.inc.php:40 ../../lib/class/artist.class.php:359
msgid "Sorry Lyrics Not Found."
msgstr "すみません歌詞は見つかりませんでした。"
#: ../../templates/show_export.inc.php:28
#: ../../templates/sidebar_admin.inc.php:47
msgid "Export Catalog"
msgstr "カタログのエクスポート"
#: ../../templates/show_export.inc.php:51
msgid "Format"
msgstr "形式"
#: ../../templates/show_export.inc.php:61
msgid "Export"
msgstr "エクスポート"
#: ../../templates/show_user_recommendations.inc.php:29
msgid "Recommended Artists"
msgstr "お勧めアーティスト"
#: ../../templates/show_user_recommendations.inc.php:40
msgid "Recommended Albums"
msgstr "お勧めアルバム"
#: ../../templates/show_user_recommendations.inc.php:51
msgid "Recommended Songs"
msgstr "お勧めの曲"
#: ../../templates/show_import_playlist.inc.php:23
msgid "Importing a Playlist from a File"
msgstr "ファイルからプレイリストをインポート"
#: ../../templates/show_import_playlist.inc.php:34
msgid "Playlist Type"
msgstr "プレイリストタイプ"
#: ../../templates/show_import_playlist.inc.php:46
msgid "Import Playlist"
msgstr "プレイリストをインポート"
#: ../../templates/show_user_stats.inc.php:30
msgid "Favorite Artists"
msgstr "お気に入りアーティスト"
#: ../../templates/show_user_stats.inc.php:43
msgid "Favorite Albums"
msgstr "お気に入りアルバム"
#: ../../templates/show_user_stats.inc.php:56
msgid "Favorite Songs"
msgstr "お気に入りの曲"
#: ../../templates/sidebar_home.inc.php:24
msgid "Browse"
msgstr "閲覧"
#: ../../templates/sidebar_home.inc.php:32
msgid "Song Titles"
msgstr "曲タイトル"
#: ../../templates/sidebar_home.inc.php:35 ../../browse.php:68
#: ../../lib/class/browse.class.php:203
msgid "Tag Cloud"
msgstr "タグクラウド"
#: ../../templates/sidebar_home.inc.php:36
#: ../../lib/class/browse.class.php:172
msgid "Playlists"
msgstr "プレイリスト"
#: ../../templates/sidebar_home.inc.php:37
#: ../../lib/class/browse.class.php:166
msgid "Radio Stations"
msgstr "ラジオステーション"
#: ../../templates/sidebar_home.inc.php:38
#: ../../lib/class/browse.class.php:209
msgid "Videos"
msgstr "動画"
#: ../../templates/sidebar_home.inc.php:42
msgid "Filters"
msgstr "フィルタ"
#: ../../templates/sidebar_home.inc.php:46
msgid "Starts With"
msgstr "開始 :"
#: ../../templates/sidebar_home.inc.php:52
msgid "Minimum Count"
msgstr "最小カウント"
#: ../../templates/sidebar_home.inc.php:56
msgid "Rated"
msgstr "評価"
#: ../../templates/sidebar_home.inc.php:60
msgid "Unplayed"
msgstr "未再生"
#: ../../templates/sidebar_home.inc.php:69
msgid "All Playlists"
msgstr "全プレイリスト"
#: ../../templates/sidebar_home.inc.php:89
msgid "Currently Playing"
msgstr "現在再生中のもの"
#: ../../templates/sidebar_home.inc.php:102
msgid "Import"
msgstr "インポート"
#: ../../templates/sidebar_home.inc.php:110
msgid "Advanced"
msgstr "高度"
#: ../../templates/sidebar_home.inc.php:116
msgid "Newest"
msgstr "最新"
#: ../../templates/sidebar_home.inc.php:117
msgid "Popular"
msgstr "ポピュラー"
#: ../../templates/show_manage_shoutbox.inc.php:36
#: ../../templates/show_manage_shoutbox.inc.php:60
msgid "Sticky"
msgstr "Sticky"
#: ../../templates/show_manage_shoutbox.inc.php:38
#: ../../templates/show_manage_shoutbox.inc.php:62
msgid "Date Added"
msgstr "追加日"
#: ../../templates/sidebar_admin.inc.php:27
#: ../../templates/show_manage_catalogs.inc.php:22
msgid "Show Catalogs"
msgstr "カタログを表示"
#: ../../templates/sidebar_admin.inc.php:31
msgid "User Tools"
msgstr "ユーザツール"
#: ../../templates/sidebar_admin.inc.php:34
msgid "Browse Users"
msgstr "ユーザ閲覧"
#: ../../templates/sidebar_admin.inc.php:39
msgid "Add ACL"
msgstr "ACL追加"
#: ../../templates/sidebar_admin.inc.php:40
msgid "Show ACL(s)"
msgstr "ACL表示"
#: ../../templates/sidebar_admin.inc.php:49
msgid "Manage Shoutbox"
msgstr "シャウトボックスの管理"
#: ../../templates/sidebar_admin.inc.php:54
msgid "Server Config"
msgstr "サーバ設定"
#. HINT: Catalog Name
#: ../../templates/show_clean_catalog.inc.php:24
#, php-format
msgid "Cleaning the %s Catalog"
msgstr "%sカタログの掃除中"
#: ../../templates/show_clean_catalog.inc.php:26
msgid "Checking"
msgstr "チェック中"
#. HINT: Catalog Name
#: ../../templates/show_adds_catalog.inc.php:24
#, php-format
msgid "Starting New Song Search on %s catalog"
msgstr "%sカタログ上の新規曲検索を開始"
#: ../../templates/show_test.inc.php:33
msgid ""
"You've reached this page because a configuration error has occured. Debug "
"Information below"
msgstr "設定エラーが発生したためこのページを表示します。以下はデバッグ情報です"
#: ../../templates/show_test.inc.php:38
msgid "CHECK"
msgstr "チェック"
#: ../../templates/show_test.inc.php:40
msgid "STATUS"
msgstr "ステータス"
#: ../../templates/show_test.inc.php:42
msgid "DESCRIPTION"
msgstr "説明"
#: ../../templates/show_test.inc.php:60
msgid ""
"This tests to make sure that you are running a version of PHP that is known "
"to work with Ampache."
msgstr ""
"これはAmpacheで働くと知られているPHPのバージョンを実行していることを確かめる"
"ためにテストします。"
#: ../../templates/show_test.inc.php:78
msgid ""
"This test checks to see if you have the mysql extensions loaded for PHP. "
"These are required for Ampache to work."
msgstr ""
"このテストは、PHPのためにあなたがmysql拡張をロードするかチェックします。これ"
"らはAmpacheが働くために要求されます。"
#: ../../templates/show_test.inc.php:95
msgid ""
"This test checks to make sure that you have PHP session support enabled. "
"Sessions are required for Ampache to work."
msgstr ""
"このテストはPHPセッションのサポートを可能にすることを確かめるためにチェックし"
"ます。セッションは、Ampacheが働くことを必要とされます。"
#: ../../templates/show_test.inc.php:111
msgid ""
"This test checks to make sure you have Iconv support installed. Iconv "
"support is required for Ampache"
msgstr ""
"このテストはIconvのサポートをインストールすることを確かめるためにチェックしま"
"す。IconvのサポートはAmpacheのために必要になります。"
#: ../../templates/show_test.inc.php:127
msgid ""
"This test makes sure you have PCRE support compiled into your version of "
"PHP, this is required for Ampache."
msgstr ""
"このテストは、あなたがPHPのバージョンへPCREのサポートをコンパイルすることを確"
"かめます。これはAmpacheに必要です。"
#: ../../templates/show_test.inc.php:143
msgid ""
"This test makes sure that PHP isn't running in SafeMode and that we are able "
"to modify the memory limits. While not required, without these abilities "
"some features of ampache may not work correctly"
msgstr ""
"このテストは、PHPがSafeModeの中で走っておらず、私たちがメモリ範囲を修正するこ"
"とができることを確かめます。ampacheのいくつかの機能が正確に動かさないかもしれ"
"ない一方で、機能なしでは要求されないかもしれません"
#: ../../templates/show_test.inc.php:160
msgid ""
"This attempts to read /config/ampache.cfg.php If this fails either the "
"ampache.cfg.php is not in the correct locations or\n"
"\tit is not currently readable by your webserver."
msgstr ""
"これは、これが一方のampache.cfg.phpに失敗する場合/config/ampache.cfg.phpを読"
"むことを試みます、正確な位置あるいはそれにない、あなたのウェブサーバによって"
"現在判読可能でありません。"
#: ../../templates/show_test.inc.php:182
msgid ""
"This test makes sure that you have set all of the required configuration "
"variables and that we are able to completely parse your config file"
msgstr ""
"このテストは、あなたが要求された配置変数をすべてセットしており、私たちが"
"configファイルを完全に解析することができることを確かめます。"
#: ../../templates/show_test.inc.php:186
msgid "DB Connection"
msgstr "DB接続"
#: ../../templates/show_test.inc.php:200
msgid ""
"This attempts to connect to your database using the values from your ampache."
"cfg.php"
msgstr ""
"これは、あなたのampache.cfg.phpからの値を使用して、あなたのデータベースに接続"
"することを試みます。"
#: ../../templates/show_test.inc.php:204
msgid "DB Inserted"
msgstr "DB挿入済"
#: ../../templates/show_test.inc.php:218
msgid ""
"This checks a few key tables to make sure that you have successfully "
"inserted the ampache database and that the user has access to the database"
msgstr ""
"これはAmpacheのデータベース挿入が成功することとユーザがデータベースへアクセス"
"できることを確実にするためにいくつかのキーテーブルをチェックします"
#: ../../templates/show_test.inc.php:247
msgid ""
"This test makes sure that your web_path variable is set correctly and that "
"we are able to get to the index page. If you do not see a check mark here "
"then your web_path is not set correctly."
msgstr ""
"このテストはweb_path変数が正しく設定されていてインデックスページを取得するこ"
"とが出来ることを確実にします。ここでチェックマークが見れない場合、web_pathが"
"正しく設定されていないかもしれません。"
#. HINT: Editing Username preferences
#. HINT: Username
#: ../../templates/show_user_preferences.inc.php:28
#: ../../templates/show_preferences.inc.php:28
#, php-format
msgid "Editing %s preferences"
msgstr "%s設定の編集"
#: ../../templates/show_user_preferences.inc.php:50
#: ../../templates/show_preferences.inc.php:34
msgid "Update Preferences"
msgstr "設定の更新"
#: ../../templates/show_index.inc.php:38
msgid "Loading..."
msgstr "読み込み中..."
#: ../../templates/show_account.inc.php:39
msgid "New Password"
msgstr "新規パスワード"
#: ../../templates/show_account.inc.php:62
msgid "Update Account"
msgstr "アカウント更新"
#: ../../templates/list_header.inc.php:100
msgid "Prev"
msgstr "前へ"
#: ../../templates/rightbar.inc.php:28
msgid "Add to Playlist"
msgstr "プレイリストへ追加"
#: ../../templates/rightbar.inc.php:31
msgid "Add to New Playlist"
msgstr "新規プレイリストへ追加"
#: ../../templates/rightbar.inc.php:57
msgid "Add Dynamic Items"
msgstr "動的アイテムを追加"
#: ../../templates/rightbar.inc.php:60 ../../lib/class/random.class.php:421
msgid "Pure Random"
msgstr "純粋なランダム"
#: ../../templates/rightbar.inc.php:63 ../../lib/class/random.class.php:418
msgid "Related Artist"
msgstr "関連するアーティスト"
#: ../../templates/rightbar.inc.php:66 ../../lib/class/random.class.php:412
msgid "Related Album"
msgstr "関連するアルバム"
#: ../../templates/rightbar.inc.php:69
msgid "Related Tag"
msgstr "関連するタグ"
#: ../../templates/rightbar.inc.php:112
msgid "More"
msgstr "More"
#: ../../templates/show_album.inc.php:27 ../../lib/class/album.class.php:245
msgid "Disk"
msgstr "ディスク"
#: ../../templates/show_album.inc.php:34
#: ../../lib/class/catalog.class.php:1994
#: ../../lib/class/catalog.class.php:2097
msgid "Unknown (Orphaned)"
msgstr "不明(孤立)"
#: ../../templates/show_album.inc.php:52
msgid "Add Album"
msgstr "アルバム追加"
#: ../../templates/show_album.inc.php:56
msgid "Add Random from Album"
msgstr "アルバムからランダムに追加"
#: ../../templates/show_album.inc.php:60 ../../templates/show_album.inc.php:61
msgid "Reset Album Art"
msgstr "アルバムアートのリセット"
#: ../../templates/show_album.inc.php:65 ../../templates/show_album.inc.php:66
msgid "Find Album Art"
msgstr "アルバムアートを見つける"
#: ../../templates/show_playlists.inc.php:35
#: ../../templates/show_playlists.inc.php:58
msgid "Playlist Name"
msgstr "プレイリスト名"
#: ../../templates/show_playlists.inc.php:37
#: ../../templates/show_playlists.inc.php:60
msgid "# Songs"
msgstr "# 曲数"
#: ../../templates/show_playlists.inc.php:38
#: ../../templates/show_playlists.inc.php:61
msgid "Owner"
msgstr "所有者"
#: ../../templates/show_stats_newest.inc.php:22
#: ../../lib/class/ampacherss.class.php:72
msgid "Newest Albums"
msgstr "新着アルバム"
#: ../../templates/show_stats_newest.inc.php:26
#: ../../lib/class/ampacherss.class.php:73
msgid "Newest Artists"
msgstr "新着アーティスト"
#: ../../templates/show_manage_catalogs.inc.php:28
msgid "Gather All Art"
msgstr "全アートを収集"
#. HINT: /data/myNewMusic
#: ../../templates/show_manage_catalogs.inc.php:38
#, php-format
msgid "Add From %s"
msgstr "%sから追加"
#. HINT: /data/myUpdatedMusic
#: ../../templates/show_manage_catalogs.inc.php:40
#, php-format
msgid "Update From %s"
msgstr "%sから更新"
#: ../../server/xml.server.php:80
msgid "Error Invalid Handshake - "
msgstr "不正なハンドシェイクエラー - "
#: ../../server/xml.server.php:345 ../../server/xml.server.php:394
#: ../../server/xml.server.php:402
msgid "Invalid Request"
msgstr "不正なリクエスト"
#: ../../server/xml.server.php:360 ../../server/xml.server.php:373
msgid "Media Object Invalid or Not Specified"
msgstr "メディアオブジェクトは不正か指定されていません"
#: ../../democratic.php:56
msgid "The Requested Playlist has been deleted."
msgstr "要求されたプレイリストは削除されています。"
#: ../../shout.php:41
msgid "Invalid Object Selected"
msgstr "不正なオブジェクトが選択されました"
#: ../../lib/class/random.class.php:415
msgid "Related Genre"
msgstr "関連するジャンル"
#: ../../lib/class/vauth.class.php:484 ../../lib/class/vauth.class.php:508
#: ../../lib/class/vauth.class.php:547
msgid "Error Username or Password incorrect, please try again"
msgstr "エラー: ユーザ名かパスワードが間違っています。再試行して下さい"
#: ../../lib/class/access.class.php:102 ../../lib/class/access.class.php:106
#: ../../lib/class/access.class.php:146 ../../lib/class/access.class.php:150
msgid "Invalid IPv4 / IPv6 Address Entered"
msgstr "無効なIPv4/IPv6アドレスが入力されました"
#: ../../lib/class/access.class.php:111 ../../lib/class/access.class.php:112
#: ../../lib/class/access.class.php:155 ../../lib/class/access.class.php:156
msgid "IP Address Version Mismatch"
msgstr "IPアドレスバージョンが一致しません"
#: ../../lib/class/access.class.php:444
msgid "API/RPC"
msgstr "API/RPC"
#: ../../lib/class/democratic.class.php:141
msgid "Primary"
msgstr "プライマリ"
#: ../../lib/class/ampacherss.class.php:116
msgid "RSS Feed"
msgstr "RSSフィード"
#: ../../lib/class/flag.class.php:312
msgid "Approved"
msgstr "承認"
#: ../../lib/class/flag.class.php:313
msgid "Pending"
msgstr "保留"
#: ../../lib/class/flag.class.php:328
msgid "Re-Tag"
msgstr "Re-Tag"
#: ../../lib/class/registration.class.php:51
#: ../../lib/class/registration.class.php:53
msgid "From: Ampache "
msgstr "From: Ampache "
#. HINT: Site Title
#: ../../lib/class/registration.class.php:56
#, php-format
msgid "New User Registration at %s"
msgstr "%sの新規ユーザ登録"
#: ../../lib/class/registration.class.php:69
#, php-format
msgid ""
"Thank you for registering\n"
"\n"
"\n"
"Please keep this e-mail for your records. Your account information is as "
"follows:\n"
"----------------------\n"
"Username: %s\n"
"Password: %s\n"
"----------------------\n"
"\n"
"Your account is currently inactive. You cannot use it until you've visited "
"the following link:\n"
"\n"
"%s \n"
"\n"
"Thank you for registering\n"
msgstr ""
"登録ありがとうございます。\n"
"\n"
"\n"
"記録のためのこのメールを保管してください。あなたのアカウント情報は以下の通り"
"です:\n"
"----------------------\n"
"ユーザ名: %s\n"
"パスワード: %s\n"
"----------------------\n"
"あなたのアカウントは現在有効ではありません。以下のリンクを訪れるまでそれを使"
"用することは出来ません:\n"
"\n"
"%s\n"
"\n"
"登録ありがとうございました。\n"
#: ../../lib/class/registration.class.php:99
#, php-format
msgid ""
"A new user has registered\n"
"The following values were entered.\n"
"\n"
"Username: %s\n"
"Fullname: %s\n"
"E-mail: %s\n"
"\n"
msgstr ""
"新しいユーザが登録されました\n"
"以下の値が入力されました\n"
"ユーザ名: %s\n"
"フルネーム: %s\n"
"メールアドレス: %s\n"
"\n"
#: ../../lib/class/artist.class.php:346
msgid "Fault"
msgstr "失敗"
#: ../../lib/class/browse.class.php:154
msgid "Manage Users"
msgstr "ユーザ管理"
#: ../../lib/class/browse.class.php:177
msgid "Playlist Songs"
msgstr "プレイリスト曲"
#: ../../lib/class/browse.class.php:182
msgid "Current Playlist"
msgstr "現在のプレイリスト"
#: ../../lib/class/browse.class.php:192
msgid "Shoutbox Records"
msgstr "シャウトボックスレコード"
#: ../../lib/class/browse.class.php:197
msgid "Flagged Records"
msgstr "フラグされたレコード"
#: ../../lib/class/xmlrpcclient.class.php:64
#: ../../lib/class/xmlrpcclient.class.php:97
#: ../../lib/class/catalog.class.php:1278
#: ../../lib/class/catalog.class.php:1352
#: ../../lib/class/catalog.class.php:1385
#: ../../lib/class/catalog.class.php:2395
msgid "Error connecting to"
msgstr "接続中のエラー:"
#: ../../lib/class/xmlrpcclient.class.php:64
#: ../../lib/class/xmlrpcclient.class.php:97
#: ../../lib/class/catalog.class.php:1278
#: ../../lib/class/catalog.class.php:1352
#: ../../lib/class/catalog.class.php:1385
#: ../../lib/class/catalog.class.php:2395
msgid "Code"
msgstr "コード"
#: ../../lib/class/xmlrpcclient.class.php:64
#: ../../lib/class/catalog.class.php:1278
#: ../../lib/class/catalog.class.php:1352
#: ../../lib/class/catalog.class.php:1385
#: ../../lib/class/catalog.class.php:2395
msgid "Reason"
msgstr "理由"
#: ../../lib/class/catalog.class.php:208
msgid "day"
msgid_plural "days"
msgstr[0] "日"
#: ../../lib/class/catalog.class.php:210
msgid "hour"
msgid_plural "hours"
msgstr[0] "時間"
#: ../../lib/class/catalog.class.php:308
msgid "Running Remote Sync"
msgstr "リモート同期実行中"
#: ../../lib/class/catalog.class.php:462 ../../lib/class/album.class.php:490
msgid "Error: Unable to open"
msgstr "エラー: 開けませんでした"
#: ../../lib/class/catalog.class.php:469 ../../lib/class/catalog.class.php:512
msgid "Error: Unable to change to directory"
msgstr "エラー: ディレクトリを変更できませんでした"
#. HINT: FullFile
#: ../../lib/class/catalog.class.php:549
#, php-format
msgid "Error: Unable to get filesize for %s"
msgstr "エラー: %sのファイルサイズの取得に失敗しました"
#. HINT: FullFile
#: ../../lib/class/catalog.class.php:556
#, php-format
msgid "%s is not readable by ampache"
msgstr "%sはAmpacheで読み込めません"
#. HINT: FullFile
#: ../../lib/class/catalog.class.php:565
#, php-format
msgid "%s does not match site charset"
msgstr "%sはサイトのCharsetと一致しません"
#: ../../lib/class/catalog.class.php:1039
msgid "No Update Needed"
msgstr "必要な更新はありません"
#: ../../lib/class/catalog.class.php:1169
msgid "Running Remote Update"
msgstr "リモート更新実行中"
#: ../../lib/class/catalog.class.php:1196
msgid "Added Playlist From"
msgstr "次からプレイリストを追加:"
#: ../../lib/class/catalog.class.php:1225
msgid "Catalog Update Finished"
msgstr "カタログ更新完了"
#: ../../lib/class/catalog.class.php:1225
msgid "Total Time"
msgstr "合計時間"
#: ../../lib/class/catalog.class.php:1226
msgid "Total Songs"
msgstr "合計曲"
#: ../../lib/class/catalog.class.php:1226
msgid "Songs Per Seconds"
msgstr "1秒毎の曲"
#: ../../lib/class/catalog.class.php:1240
msgid "Unable to load pear XMLRPC library, make sure XML-RPC is enabled"
msgstr ""
"pear XMLRPCライブラリを読み込めませんでした。XML-RPCが有効になっているか確認"
"してください。"
#: ../../lib/class/catalog.class.php:1307
msgid "Completed updating remote catalog(s)"
msgstr "リモートカタログの更新完了"
#: ../../lib/class/catalog.class.php:1311
msgid "Starting synchronisation of album images"
msgstr "アルバム画像の同期を開始しています"
#: ../../lib/class/catalog.class.php:1313
msgid "Completed synchronisation of album images"
msgstr "アルバム画像の同期が完了しました"
#: ../../lib/class/catalog.class.php:1381
msgid "images synchronized: "
msgstr "同期した画像: "
#: ../../lib/class/catalog.class.php:1515
msgid "Catalog Root unreadable, stopping clean"
msgstr "カタログルートに到達できません。クリーンを停止します"
#: ../../lib/class/catalog.class.php:1551
msgid "Error File Not Found or 0 Bytes:"
msgstr "エラー: ファイルが見つからないか0バイトです:"
#: ../../lib/class/catalog.class.php:1573
msgid "Error Remote File Not Found or 0 Bytes:"
msgstr "エラー: リモートファイルが見つからないか0バイトです:"
#: ../../lib/class/catalog.class.php:1592
msgid "Error All songs would be removed, doing nothing"
msgstr "エラー: 全曲削除しようとしましたが何もしていません。"
#: ../../lib/class/catalog.class.php:1620
#, php-format
msgid "Catalog Clean Done. %d file removed."
msgid_plural "Catalog Clean Done. %d files removed."
msgstr[0] "カタログのクリーン完了。%dファイルを削除しました。"
#: ../../lib/class/catalog.class.php:1622
msgid "Optimizing Tables"
msgstr "テーブルを最適化中"
#. HINT: Mediafile
#: ../../lib/class/catalog.class.php:1914
#, php-format
msgid "%s does not exist or is not readable"
msgstr "%sは存在しないか読み込めません。"
#: ../../lib/class/catalog.class.php:1936
msgid "Update Finished"
msgstr "更新完了"
#: ../../lib/class/catalog.class.php:1936
msgid "Checked"
msgstr "チェック済み"
#: ../../lib/class/catalog.class.php:2493
msgid "Playlist creation error."
msgstr "プレイリスト作成エラーです。"
#: ../../lib/class/catalog.class.php:2500
#, php-format
msgid "Playlist Import and Recreate Successful. Total: %d Song"
msgid_plural "Playlist Import and Recreate Successful. Total: %d Songs"
msgstr[0] "プレイリストのインポートと再生成に成功しました。合計: %d曲"
#. HINT: filename
#: ../../lib/class/catalog.class.php:2506
#, php-format
msgid "Parsing %s - Not Found: %d Song. Please check your m3u file."
msgid_plural "Parsing %s - Not Found: %d Songs. Please check your m3u file."
msgstr[0] ""
"%sを解析中 - 見つかりませんでした: %d曲。m3uファイルを確認してください。"
#: ../../lib/class/localplay.class.php:642
msgid "Stopped"
msgstr "停止"
#: ../../lib/class/localplay.class.php:645
msgid "Paused"
msgstr "一時停止"
#: ../../lib/preferences.php:192
msgid "M3U"
msgstr "M3U"
#: ../../lib/preferences.php:193
msgid "Simple M3U"
msgstr "簡易M3U"
#: ../../lib/preferences.php:194
msgid "PLS"
msgstr "PLS"
#: ../../lib/preferences.php:195
msgid "Asx"
msgstr "Asx"
#: ../../lib/preferences.php:196
msgid "RAM"
msgstr "RAM"
#: ../../lib/preferences.php:197
msgid "XSPF"
msgstr "XSPF"
#: ../../lib/preferences.php:231
msgid "Disabled"
msgstr "無効"
#: ../../lib/preferences.php:233
msgid "Manager"
msgstr "マネージャ"
#: ../../lib/preferences.php:254
msgid "Send on Add"
msgstr "追加を送信"
#: ../../lib/preferences.php:255
msgid "Send and Clear on Add"
msgstr "追加を送信とクリア"
#: ../../lib/preferences.php:256
msgid "Clear on Send"
msgstr "送信をクリア"
#: ../../lib/preferences.php:265
msgid "Always"
msgstr "常に"
#: ../../lib/rating.lib.php:51
msgid "Don't Play"
msgstr "再生しない"
#: ../../lib/rating.lib.php:54
msgid "It's Pretty Bad"
msgstr "非常に悪い"
#: ../../lib/rating.lib.php:57
msgid "It's Ok"
msgstr "良い"
#: ../../lib/rating.lib.php:60
msgid "It's Pretty Good"
msgstr "非常に良い"
#: ../../lib/rating.lib.php:63
msgid "I Love It!"
msgstr "最高!"
#: ../../lib/rating.lib.php:66
msgid "It's Insane"
msgstr "すばらしい!"
#: ../../lib/rating.lib.php:70
msgid "Off the Charts!"
msgstr "とてつもなくすばらしい!"
#: ../../lib/general.lib.php:406
msgid "On"
msgstr "オン"
#: ../../lib/general.lib.php:409
msgid "Off"
msgstr "オフ"
#: ../../lib/install.php:81
msgid "Unable to connect to database, check your ampache config"
msgstr ""
"データベースへ接続できませんでした。Ampacheのコンフィグをチェックしてくださ"
"い。"
#: ../../lib/install.php:88
msgid "Unable to select database, check your ampache config"
msgstr ""
"データベースを選択できません。Ampache設定ファイルをチェックしてください。"
#: ../../lib/install.php:98
msgid "Existing Database detected, unable to continue installation"
msgstr "既存のデータベースを検出しました。インストールを続行できません。"
#: ../../lib/install.php:135 ../../install.php:99
msgid "Error: Unable to make Database Connection"
msgstr "エラー: データベース接続を確立できませんでした。"
#: ../../lib/install.php:276
msgid "No Username/Password specified"
msgstr "指定されたユーザ名/パスワードはありません"
#: ../../lib/install.php:281
msgid "Passwords do not match"
msgstr "パスワードが一致しません"
#: ../../lib/ui.lib.php:312
msgid "Upload"
msgstr "アップロード"
#: ../../lib/ui.lib.php:315
msgid "Local Play"
msgstr "ローカル再生"
#: ../../lib/ui.lib.php:318
msgid "Random Play"
msgstr "ランダム再生"
#: ../../lib/ui.lib.php:330 ../../lib/ui.lib.php:334
msgid "Admin-Catalog"
msgstr "管理-カタログ"
#: ../../lib/ui.lib.php:338
msgid "Admin-User Management"
msgstr "管理-ユーザ管理"
#: ../../lib/ui.lib.php:342
msgid "Admin-Mail Users"
msgstr "管理-メール"
#: ../../lib/ui.lib.php:346
msgid "Admin-Manage Access Lists"
msgstr "管理-アクセスリスト管理"
#: ../../lib/ui.lib.php:350
msgid "Admin-Site Preferences"
msgstr "管理-サイト設定"
#: ../../lib/ui.lib.php:354
msgid "Admin-Manage Modules"
msgstr "管理-モジュール管理"
#: ../../lib/ui.lib.php:358
msgid "Browse Music"
msgstr "ミュージック閲覧"
#: ../../lib/ui.lib.php:465
msgid "Add New"
msgstr "新規追加"
#: ../../albums.php:32
msgid "Album Art Cleared"
msgstr "アルバムアートをクリアしました"
#: ../../albums.php:32
msgid "Album Art information has been removed from the database"
msgstr "アルバムアート情報はデータベースから削除されました"
#: ../../albums.php:39 ../../albums.php:56 ../../albums.php:129
msgid "Album Art Not Located"
msgstr "アルバムアートは配置されていません"
#: ../../albums.php:39 ../../albums.php:56 ../../albums.php:129
msgid ""
"Album Art could not be located at this time. This may be due to write access "
"error, or the file is not received correctly."
msgstr ""
"アルバムアートは今回配置できませんでした。これは書込みエラー又はファイルが正"
"しく受信できなかったためです。"
#: ../../albums.php:52 ../../albums.php:80
msgid "Album Art Inserted"
msgstr "アルバムアートを挿入しました"
#: ../../modules/localplay/shoutcast.controller.php:237
#: ../../modules/localplay/httpq.controller.php:216
#: ../../modules/localplay/mpd.controller.php:232
msgid "Instance Name"
msgstr "インスタンス名"
#: ../../modules/localplay/shoutcast.controller.php:238
msgid "PID File"
msgstr "PIDファイル"
#: ../../modules/localplay/shoutcast.controller.php:239
msgid "Playlist File"
msgstr "プレイリストファイル"
#: ../../modules/localplay/shoutcast.controller.php:240
msgid "Local Path to Files"
msgstr "ファイルへのローカルパス"
#: ../../modules/localplay/httpq.controller.php:217
#: ../../modules/localplay/mpd.controller.php:233
msgid "Hostname"
msgstr "ホスト名"
#: ../../modules/localplay/httpq.controller.php:218
#: ../../modules/localplay/mpd.controller.php:234
msgid "Port"
msgstr "ポート"
#: ../../modules/horde/Browser.php:867
msgid "file"
msgstr "ファイル"
#: ../../modules/horde/Browser.php:871
msgid "File uploads not supported."
msgstr "ファイルアップロードはサポートしていません。"
#: ../../modules/horde/Browser.php:889
msgid "No file uploaded"
msgstr "アップロードされたファイルはありません"
#: ../../modules/horde/Browser.php:896
#, php-format
msgid "There was a problem with the file upload: No %s was uploaded."
msgstr ""
"ファイルアップロードで問題があります: %sはアップロードされませんでした。"
#: ../../modules/horde/Browser.php:901
#, php-format
msgid ""
"There was a problem with the file upload: The %s was larger than the maximum "
"allowed size (%d bytes)."
msgstr ""
"ファイルアップロードで問題があります: %sは許可された最大サイズ(%dバイト)より"
"大きいです。"
#: ../../modules/horde/Browser.php:903
#, php-format
msgid ""
"There was a problem with the file upload: The %s was only partially uploaded."
msgstr ""
"ファイルアップロードで問題があります: %sは部分的にアップロードされました。"
#: ../../playlist.php:57
msgid "Playlist Created"
msgstr "プレイリストを作成しました"
#: ../../playlist.php:57
msgid " has been created"
msgstr "を作成しました"
#: ../../playlist.php:89
msgid "Playlist Not Imported"
msgstr "プレイリストはインポートされませんでした"
#: ../../playlist.php:93
msgid "Playlist Imported"
msgstr "プレイリストをインポートしました"
#: ../../playlist.php:125
msgid "Empty Playlists Deleted"
msgstr "空のプレイリストを削除しました"
#: ../../login.php:73
msgid "User Disabled please contact Admin"
msgstr "ユーザは無効なので管理者にお問合せください"
#: ../../login.php:89
msgid "Unable to create new account"
msgstr "新規アカウントを作成できませんでした"
#: ../../login.php:98
msgid "No local account found"
msgstr "ローカルアカウントが見つかりませんでした"
#: ../../login.php:115
msgid "User Already Logged in"
msgstr "ユーザはすでにログインしています"
#: ../../install.php:184
msgid "Error: Config file not found or Unreadable"
msgstr "エラー: 設定ファイルは見つからないか読み込めません"
#: ../../search.php:38
msgid "Error: No Keyword Entered"
msgstr "エラー: キーワードが何も入力されていません"
#: ../../artists.php:181
msgid "Show Artists starting with"
msgstr "次で開始されるアーティストを表示:"
#: ../../bin/print_tags.inc:66
msgid ""
"[print_tags.php.inc]\n"
"This commandline script will display the tag information for the specified "
"filename as it will \n"
"appear to Ampache. \n"
" \n"
msgstr ""
"[print_tags.php.inc]\n"
"このコマンドラインスクリプトはAmpacheへ表示されるものとして指定されたファイル"
"名のタグ情報を表示します。\n"
#: ../../bin/print_tags.inc:72
msgid "Filename:"
msgstr "ファイル名:"
#: Database words
msgid "Allow Downloads"
msgstr "ダウンロードの許可"
#: Database words
msgid "Popular Threshold"
msgstr "人気の閾値"
#: Database words
msgid "Transcode Bitrate"
msgstr "トランスコードのビットレート"
#: Database words
msgid "Lock Songs"
msgstr "曲の固定"
#: Database words
msgid "Forces Http play regardless of port"
msgstr "ポートに関わらずHTTP再生を強制"
#: Database words
msgid "Non-Standard Http Port"
msgstr "非標準のHTTPポート"
#: Database words
msgid "Localplay Type"
msgstr "ローカル再生のタイプ"
#: Database words
msgid "Type of Playback"
msgstr "プレイバックのタイプ"
#: Database words
msgid "Language"
msgstr "言語"
#: Database words
msgid "Theme"
msgstr "テーマ"
#: Database words
msgid "Album Ellipse Threshold"
msgstr "アルバム周りの閾値"
#: Database words
msgid "Artist Ellipse Threshold"
msgstr "アーティスト周りの閾値"
#: Database words
msgid "Title Ellipse Threshold"
msgstr "タイトル周りの閾値"
#: Database words
msgid "Offset Limit"
msgstr "オフセット制限"
#: Database words
msgid "Localplay Access"
msgstr "ローカル再生アクセス"
#: Database words
msgid "Allow Streaming"
msgstr "ストリーミングの許可"
#: Database words
msgid "Allow Democratic Play"
msgstr "デモクラティック再生の許可"
#: Database words
msgid "Allow Localplay Play"
msgstr "ローカル再生の許可"
#: Database words
msgid "Statistics Day Threshold"
msgstr "1日の統計の閾値"
#: Database words
msgid "Min Element Count"
msgstr "最小要素数"
#: Database words
msgid "Rate Limit"
msgstr "レート制限"
#: Database words
msgid "Playlist Method"
msgstr "プレイリストの方法"
#: Database words
msgid "Transcoding"
msgstr "トランスコーディング"
#: Database words
msgid "User to track"
msgstr "追跡するユーザ"
#: Database words
msgid "Streaming"
msgstr "ストリーミング"
#: Database words
msgid "Interface"
msgstr "インタフェース"
#: Database words
msgid "System"
msgstr "システム"
#~ msgid ""
#~ "Your webserver has read access to the /sql/ampache.sql file and the /"
#~ "config/ampache.cfg.dist.php file"
#~ msgstr ""
#~ "ウェブサーバは/sql/ampache.sqlファイル及び/config/ampache.cfg.dist.phpファ"
#~ "イルの読込権限を持っている必要があります。"
|