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
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
|
# English translations for Ampache package.
# Copyright (C) 2009 THE Ampache'S COPYRIGHT HOLDER
# This file is distributed under the same license as the Ampache package.
# momo-i <webmaster@momo-i.org>, 2009.
#
msgid ""
msgstr ""
"Project-Id-Version: Ampache SVN $Rev$\n"
"Report-Msgid-Bugs-To: translations@ampache.org\n"
"POT-Creation-Date: 2012-07-24 07:58+0900\n"
"PO-Revision-Date: 2009-05-06 22:00+0900\n"
"Last-Translator: momo-i <webmaster@momo-i.org>\n"
"Language-Team: English (British)\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: ../../admin/access.php:46
msgid "Deleted"
msgstr "Deleted"
#: ../../admin/access.php:46
msgid "Your Access List Entry has been removed"
msgstr "Your Access List Entry has been removed"
#: ../../admin/access.php:51 ../../admin/users.php:175
msgid "Deletion Request"
msgstr "Deletion Request"
#: ../../admin/access.php:51
#, fuzzy
msgid "Are you sure you want to permanently delete"
msgstr "Are you sure you want to permanently delete"
#: ../../admin/access.php:78 ../../lib/class/search.class.php:309
#: ../../templates/show_song.inc.php:68
msgid "Added"
msgstr "Added"
#: ../../admin/access.php:78
msgid "Your new Access Control List(s) have been created"
msgstr "Your new Access Control List(s) have been created"
#: ../../admin/access.php:93 ../../lib/class/catalog.class.php:1082
#: ../../lib/class/search.class.php:316 ../../preferences.php:123
msgid "Updated"
msgstr "Updated"
#: ../../admin/access.php:93
msgid "Access List Entry updated"
msgstr "Access List Entry updated"
#: ../../admin/catalog.php:60 ../../admin/catalog.php:80
#: ../../admin/catalog.php:106 ../../admin/catalog.php:179
msgid "Catalog Updated"
msgstr "Catalog Updated"
#: ../../admin/catalog.php:123
msgid "Catalog Deleted"
msgstr "Catalog Deleted"
#: ../../admin/catalog.php:123
msgid "The Catalog and all associated records have been deleted"
msgstr "The Catalog and all associated records have been deleted"
#: ../../admin/catalog.php:129
msgid "Catalog Delete"
msgstr "Catalog Delete"
#: ../../admin/catalog.php:129
msgid "Confirm Deletion Request"
msgstr "Confirm Deletion Request"
#: ../../admin/catalog.php:141
msgid "No Songs Removed"
msgstr "No Songs Removed"
#: ../../admin/catalog.php:166
msgid "Catalog Cleaned"
msgstr "Catalog Cleaned"
#: ../../admin/catalog.php:210
msgid "Error: Name and path not specified"
msgstr ""
#: ../../admin/catalog.php:214
msgid "Error: Remote selected, but path is not a URL"
msgstr ""
#: ../../admin/catalog.php:217
#, fuzzy
msgid "Error: Username and Password Required for Remote Catalogs"
msgstr "Required for Remote Catalogs"
#: ../../admin/catalog.php:227
msgid "Error: Defined Path is inside an existing catalog"
msgstr "Error: Defined Path is inside an existing catalog"
#: ../../admin/catalog.php:245 ../../admin/catalog.php:246
msgid "Catalog Created"
msgstr "Catalog Created"
#: ../../admin/catalog.php:263
msgid "Catalog statistics cleared"
msgstr "Catalog statistics cleared"
#: ../../admin/catalog.php:277
msgid "Now Playing Cleared"
msgstr "Now Playing Cleared"
#: ../../admin/catalog.php:277
msgid "All now playing data has been cleared"
msgstr "All now playing data has been cleared"
#: ../../admin/catalog.php:288
msgid "No Disabled songs found"
msgstr "No Disabled songs found"
#: ../../admin/catalog.php:297
msgid "Delete Catalog"
msgstr "Delete Catalog"
#: ../../admin/catalog.php:297
msgid "Do you really want to delete this catalog?"
msgstr "Do you really want to delete this catalog?"
#: ../../admin/catalog.php:317
msgid "Album Art Search Finished"
msgstr "Album Art Search Finished"
#: ../../admin/flag.php:87
msgid "Song Updated"
msgstr "Song Updated"
#: ../../admin/flag.php:87
msgid "The requested song has been updated"
msgstr "The requested song has been updated"
#: ../../admin/flag.php:129
msgid "Album Updated"
msgstr "Album Updated"
#: ../../admin/flag.php:171
msgid "Artist Updated"
msgstr "Artist Updated"
#: ../../admin/flag.php:232
msgid "Songs Updated"
msgstr "Songs Updated"
#: ../../admin/flag.php:240
msgid "Flag Removed"
msgstr "Flag Removed"
#: ../../admin/flag.php:241
msgid "Flag Removed from"
msgstr "Flag Removed from"
#: ../../admin/flag.php:256
msgid "Flags Updated"
msgstr "Flags Updated"
#: ../../admin/flag.php:275
msgid "Songs Disabled"
msgstr "Songs Disabled"
#: ../../admin/flag.php:275
msgid "The requested song(s) have been disabled"
msgstr "The requested song(s) have been disabled"
#: ../../admin/flag.php:286
msgid "Songs Enabled"
msgstr "Songs Enabled"
#: ../../admin/flag.php:286
msgid "The requested song(s) have been enabled"
msgstr "The requested song(s) have been enabled"
#: ../../admin/mail.php:67
msgid "E-mail Sent"
msgstr "E-mail Sent"
#: ../../admin/mail.php:68
msgid "Your E-mail was successfully sent."
msgstr "Your E-mail was successfully sent."
#: ../../admin/mail.php:71
#, fuzzy
msgid "E-mail Not Sent"
msgstr "E-mail Sent"
#: ../../admin/mail.php:72
#, fuzzy
msgid "Your E-mail was not sent."
msgstr "Your E-mail was successfully sent."
#: ../../admin/modules.php:44
msgid "Install Failed, Controller Error"
msgstr "Install Failed, Controller Error"
#: ../../admin/modules.php:62 ../../admin/modules.php:107
msgid "Are you sure you want to remove this plugin?"
msgstr "Are you sure you want to remove this plugin?"
#: ../../admin/modules.php:74 ../../admin/modules.php:126
msgid "Plugin Deactivated"
msgstr "Plugin Deactivated"
#: ../../admin/modules.php:89
msgid "Unable to Install Plugin"
msgstr "Unable to Install Plugin"
#: ../../admin/modules.php:100
msgid "Plugin Activated"
msgstr "Plugin Activated"
#: ../../admin/modules.php:141
#, fuzzy
msgid "Plugin Upgraded"
msgstr "Plugin Activated"
#: ../../admin/modules.php:147
msgid "Plugins"
msgstr "Plugins"
#: ../../admin/modules.php:153
msgid "Localplay Controllers"
msgstr "Localplay Controllers"
#: ../../admin/shout.php:43
msgid "Shoutbox Post Updated"
msgstr "Shoutbox Post Updated"
#: ../../admin/shout.php:55
msgid "Shoutbox Post Deleted"
msgstr "Shoutbox Post Deleted"
#: ../../admin/system.php:54
msgid "Database Charset Updated"
msgstr "Database Charset Updated"
#: ../../admin/system.php:54
msgid ""
"Your Database and associated tables have been updated to match your "
"currently configured charset"
msgstr ""
"Your Database and associated tables have been updated to match your "
"currently configured charset"
#: ../../admin/users.php:62 ../../admin/users.php:112
#: ../../lib/class/user.class.php:411
msgid "Error Username Required"
msgstr "Error Username Required"
#: ../../admin/users.php:65 ../../admin/users.php:108
#: ../../lib/class/user.class.php:415
msgid "Error Passwords don't match"
msgstr "Error Passwords don't match"
#: ../../admin/users.php:90
msgid "User Updated"
msgstr "User Updated"
#: ../../admin/users.php:90
msgid "updated"
msgstr "updated"
#: ../../admin/users.php:117 ../../register.php:138
msgid "Error Username already exists"
msgstr "Error Username already exists"
#: ../../admin/users.php:124 ../../register.php:167
msgid "Error: Insert Failed"
msgstr "Error: Insert Failed"
#: ../../admin/users.php:132 ../../lib/class/democratic.class.php:158
#: ../../templates/show_add_user.inc.php:81
#: ../../templates/show_edit_user.inc.php:84
#: ../../templates/show_preference_admin.inc.php:49
#: ../../templates/show_preference_box.inc.php:65
msgid "Guest"
msgstr "Guest"
#: ../../admin/users.php:133 ../../lib/class/democratic.class.php:161
#: ../../lib/preferences.php:237 ../../templates/show_access_list.inc.php:66
#: ../../templates/show_add_access.inc.php:44
#: ../../templates/show_add_user.inc.php:82
#: ../../templates/show_create_democratic.inc.php:49
#: ../../templates/show_edit_access.inc.php:62
#: ../../templates/show_edit_user.inc.php:85
#: ../../templates/show_flagged.inc.php:42
#: ../../templates/show_flagged.inc.php:61
#: ../../templates/show_mail_users.inc.php:39
#: ../../templates/show_manage_shoutbox.inc.php:42
#: ../../templates/show_manage_shoutbox.inc.php:66
#: ../../templates/show_preference_admin.inc.php:50
#: ../../templates/show_preference_box.inc.php:66
msgid "User"
msgstr "User"
#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:170
#: ../../lib/preferences.php:239 ../../templates/show_add_user.inc.php:85
#: ../../templates/show_create_democratic.inc.php:52
#: ../../templates/show_democratic_playlist.inc.php:69
#: ../../templates/show_democratic_playlist.inc.php:109
#: ../../templates/show_edit_user.inc.php:88
#: ../../templates/show_mail_users.inc.php:40
#: ../../templates/show_preference_admin.inc.php:51
#: ../../templates/show_preference_box.inc.php:69
#: ../../templates/sidebar.inc.php:38
msgid "Admin"
msgstr "Admin"
#. HINT: %1 Username, %2 Access num
#: ../../admin/users.php:137
msgid "New User Added"
msgstr "New User Added"
#: ../../admin/users.php:137
#, php-format
msgid "%1$s has been created with an access level of %2$s"
msgstr ""
#: ../../admin/users.php:142
msgid "User Enabled"
msgstr "User Enabled"
#: ../../admin/users.php:147
msgid "User Disabled"
msgstr "User Disabled"
#: ../../admin/users.php:150 ../../lib/class/artist.class.php:387
msgid "Error"
msgstr "Error"
#: ../../admin/users.php:150
msgid "Unable to Disabled last Administrator"
msgstr "Unable to Disabled last Administrator"
#: ../../admin/users.php:166
msgid "User Deleted"
msgstr "User Deleted"
#: ../../admin/users.php:166
#, fuzzy, php-format
msgid "%s has been Deleted"
msgstr " has been created"
#: ../../admin/users.php:169
msgid "Delete Error"
msgstr "Delete Error"
#: ../../admin/users.php:169
msgid "Unable to delete last Admin User"
msgstr "Unable to delete last Admin User"
#: ../../admin/users.php:176
#, fuzzy, php-format
msgid "Are you sure you want to permanently delete %s?"
msgstr "Are you sure you want to permanently delete"
#: ../../albums.php:39
msgid "Album Art Cleared"
msgstr "Album Art Cleared"
#: ../../albums.php:39
msgid "Album Art information has been removed from the database"
msgstr "Album Art information has been removed from the database"
#: ../../albums.php:46 ../../albums.php:63 ../../albums.php:136
msgid "Album Art Not Located"
msgstr "Album Art Not Located"
#: ../../albums.php:46 ../../albums.php:63 ../../albums.php:136
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 ""
"Album Art could not be located at this time. This may be due to write access "
"error, or the file is not received correctly."
#: ../../albums.php:59 ../../albums.php:87
msgid "Album Art Inserted"
msgstr "Album Art Inserted"
#: ../../artists.php:78 ../../artists.php:84
#, fuzzy, php-format
msgid "Error: No such artist '%s'"
msgstr "Error Username already exists"
#: ../../artists.php:80
#, php-format
msgid "Error: '%s' is not a valid ID"
msgstr ""
#: ../../artists.php:86
msgid "Error: Errenous request"
msgstr ""
#: ../../artists.php:90
#, fuzzy
msgid "Renamed artist(s)"
msgstr "Related Artist"
#: ../../artists.php:91
#, php-format
msgid "%1$s artists have been merged with %2$s"
msgstr ""
#: ../../artists.php:170
#, fuzzy
msgid "Renamed artist"
msgstr "Related Artist"
#: ../../artists.php:171
#, php-format
msgid "%1$s is now known as %2$s"
msgstr ""
#: ../../artists.php:195
msgid "Show Artists starting with"
msgstr "Show Artists starting with"
#: ../../bin/catalog_update.inc:45
#, fuzzy
msgid "- All Catalog Operations"
msgstr "Save Catalog Settings"
#: ../../bin/catalog_update.inc:52
#, fuzzy
msgid "- Catalog Clean"
msgstr "Catalog Cleaned"
#: ../../bin/catalog_update.inc:56
#, fuzzy
msgid "- Catalog Verify"
msgstr "Catalog Number"
#: ../../bin/catalog_update.inc:60
#, fuzzy
msgid "- Catalog Add"
msgstr "Catalog Updated"
#: ../../bin/catalog_update.inc:64
#, fuzzy
msgid "- Catalog Art Gather"
msgstr "Catalog Created"
#: ../../bin/catalog_update.inc:68
msgid "- Generate Thumbnails"
msgstr ""
#: ../../bin/catalog_update.inc:91
#, fuzzy
msgid "Starting Catalog Operations..."
msgstr "Settings for %s"
#: ../../bin/catalog_update.inc:104 ../../bin/print_tags.inc:50
#, fuzzy, php-format
msgid "Reading: %s"
msgstr "Reading"
#: ../../bin/catalog_update.inc:109
msgid "- Starting Clean - "
msgstr ""
#: ../../bin/catalog_update.inc:117
msgid "- Starting Verify - "
msgstr ""
#: ../../bin/catalog_update.inc:125
#, fuzzy
msgid "- Starting Add - "
msgstr "Radio Station Added"
#: ../../bin/catalog_update.inc:133 ../../templates/show_gather_art.inc.php:30
msgid "Starting Album Art Search"
msgstr "Starting Album Art Search"
#: ../../bin/catalog_update.inc:141
msgid "Generating Thumbnails"
msgstr ""
#: ../../bin/catalog_update.inc:168
#, fuzzy
msgid "- Catalog Update -"
msgstr "Catalog Updated"
#: ../../bin/catalog_update.inc:170
msgid "Usage: catalog_update.inc [CATALOG NAME] [-c|-v|-a|-g|-t]"
msgstr ""
#: ../../bin/catalog_update.inc:172
msgid "Default behavior is to do all"
msgstr ""
#: ../../bin/catalog_update.inc:174
#, fuzzy
msgid "Clean Catalogs"
msgstr "Clear Catalog Stats"
#: ../../bin/catalog_update.inc:176
#, fuzzy
msgid "Verify Catalogs"
msgstr "Catalogs"
#: ../../bin/catalog_update.inc:178
#, fuzzy
msgid "Add to Catalogs"
msgstr "Add a Catalog"
#: ../../bin/catalog_update.inc:180
#: ../../templates/show_admin_tools.inc.php:67
#: ../../templates/show_catalog_row.inc.php:41
msgid "Gather Art"
msgstr "Gather Art"
#: ../../bin/catalog_update.inc:182
#, fuzzy
msgid "Generate Thumbnails"
msgstr "Generate Config File"
#: ../../bin/delete_disabled.inc:43
msgid "DEBUG ENABLED WILL NOT DELETE FILES!"
msgstr ""
#: ../../bin/delete_disabled.inc:51
#, php-format
msgid "Would Delete: %s"
msgstr ""
#: ../../bin/delete_disabled.inc:55
#, fuzzy, php-format
msgid "Deleting: %s"
msgstr "Reading"
#: ../../bin/fix_filenames.inc:48
msgid "ERROR: Iconv required for this functionality, quiting"
msgstr ""
#: ../../bin/fix_filenames.inc:57
#, php-format
msgid "%s For the Love of Music"
msgstr ""
#: ../../bin/fix_filenames.inc:58
msgid "Testing Basic Translation, the two strings below should look the same"
msgstr ""
#: ../../bin/fix_filenames.inc:60
msgid "Original: For the Love of Music"
msgstr ""
#: ../../bin/fix_filenames.inc:62
#, php-format
msgid "Translated: %s"
msgstr ""
#: ../../bin/fix_filenames.inc:65
#, php-format
msgid "Input Charset (%s):"
msgstr ""
#: ../../bin/fix_filenames.inc:69
#, php-format
msgid "Using %s as source character set"
msgstr ""
#: ../../bin/fix_filenames.inc:77
#, fuzzy, php-format
msgid "Checking %s (%s)"
msgstr "Checking"
#: ../../bin/fix_filenames.inc:83
msgid "Finished checking filenames for valid chacters"
msgstr ""
#: ../../bin/fix_filenames.inc:109
#, fuzzy, php-format
msgid "ERROR: Unable to open %s"
msgstr "Error: Unable to open"
#: ../../bin/fix_filenames.inc:115
#, fuzzy, php-format
msgid "ERROR: Unable to chdir to %s"
msgstr "Error: Unable to change to directory"
#: ../../bin/fix_filenames.inc:138
msgid "Translation failure, stripping non-valid characters"
msgstr ""
#: ../../bin/fix_filenames.inc:143
#, php-format
msgid "Attempting to Transcode to %s"
msgstr ""
#: ../../bin/fix_filenames.inc:146
#, php-format
msgid "OLD: %s has invalid chars"
msgstr ""
#: ../../bin/fix_filenames.inc:148
#, php-format
msgid "NEW: %s"
msgstr ""
#: ../../bin/fix_filenames.inc:152
msgid "Rename File (Y/N):"
msgstr ""
#: ../../bin/fix_filenames.inc:155
#, fuzzy
msgid "Not Renaming..."
msgstr "Loading..."
#: ../../bin/fix_filenames.inc:187
#, fuzzy, php-format
msgid "Error: Unable to create %s move failed, stopping"
msgstr "Error: Unable to change to directory"
#: ../../bin/fix_filenames.inc:199
msgid "Error: Copy Failed, not deleteing old file"
msgstr ""
#: ../../bin/fix_filenames.inc:208 ../../bin/sort_files.inc:295
#, php-format
msgid "Error: Size Inconsistency, not deleting %s"
msgstr ""
#: ../../bin/fix_filenames.inc:215 ../../bin/sort_files.inc:302
#, fuzzy, php-format
msgid "Error: Unable to delete %s"
msgstr "Error: Unable to get filesize for %s"
#: ../../bin/fix_filenames.inc:217
msgid "File Moved..."
msgstr ""
#: ../../bin/install/add_user.inc:53
#, fuzzy, php-format
msgid "Created %s user %s with password %s"
msgstr "Created by: %s for %s"
#: ../../bin/install/add_user.inc:57
#, fuzzy
msgid "User creation failed"
msgstr "User Activated"
#: ../../bin/install/install_db.inc:70
#, fuzzy
msgid "Existing Ampache installation found."
msgstr "Ampache Installation."
#: ../../bin/install/install_db.inc:72
msgid "Force specified, proceeding anyway."
msgstr ""
#: ../../bin/install/install_db.inc:75
msgid "Exiting."
msgstr ""
#: ../../bin/install/install_db.inc:82
#, fuzzy
msgid "Database creation failed"
msgstr "Database Charset Updated"
#: ../../bin/install/install_db.inc:89
msgid "Config file creation failed"
msgstr ""
#: ../../bin/install/update_db.inc:48
#, fuzzy
msgid "The following updates need to be performed:"
msgstr "the following updates need to be performed"
#: ../../bin/migrate_config.inc:56
msgid "Parsing old config file..."
msgstr ""
#: ../../bin/migrate_config.inc:86
msgid "Parse complete, writing"
msgstr ""
#: ../../bin/migrate_config.inc:94
msgid "Write success, config migrated"
msgstr ""
#: ../../bin/migrate_config.inc:98
msgid "Access Denied, config migration failed"
msgstr ""
#: ../../bin/print_tags.inc:44
msgid "File not found."
msgstr ""
#: ../../bin/print_tags.inc:65
#, php-format
msgid "Using: %s AND %s for file pattern matching"
msgstr ""
#: ../../bin/print_tags.inc:82
msgid "Raw results:"
msgstr ""
#: ../../bin/print_tags.inc:86
#, php-format
msgid "Final results seen by Ampache using %s:"
msgstr ""
#: ../../bin/print_tags.inc:93
#, fuzzy, php-format
msgid "%s Version %s"
msgstr "Version"
#: ../../bin/print_tags.inc:95
#, fuzzy
msgid "Usage:"
msgstr "Message"
#: ../../bin/print_tags.inc:97
msgid "php print_tags.inc <Filename>"
msgstr ""
#: ../../bin/sort_files.inc:67
#, fuzzy, php-format
msgid "Starting Catalog: %s"
msgstr "Settings for %s"
#: ../../bin/sort_files.inc:82
msgid "Moving File..."
msgstr ""
#: ../../bin/sort_files.inc:84
#, php-format
msgid "Source: %s"
msgstr ""
#: ../../bin/sort_files.inc:86
#, php-format
msgid "Dest: %s"
msgstr ""
#: ../../bin/sort_files.inc:236
#, php-format
msgid "Making %s Directory"
msgstr ""
#: ../../bin/sort_files.inc:243
#, fuzzy, php-format
msgid "Error: Unable to create %s move failed"
msgstr "Error: Unable to change to directory"
#. HINT: %1$s: file, %2$s: directory
#: ../../bin/sort_files.inc:256
#, php-format
msgid "Copying %1$s to %2$s"
msgstr ""
#: ../../bin/sort_files.inc:267
#, fuzzy, php-format
msgid "Error: %s already exists"
msgstr "Error Username already exists"
#: ../../bin/sort_files.inc:288
#, fuzzy, php-format
msgid "Error: Unable to copy file to %s"
msgstr "Error: Unable to get filesize for %s"
#: ../../bin/write_playlists.inc:48
#, php-format
msgid "Error: Directory %s not writeable"
msgstr ""
#: ../../bin/write_playlists.inc:69
msgid "This will dump a collection of m3u playlists based on type"
msgstr ""
#: ../../bin/write_playlists.inc:70
#, fuzzy
msgid "Types:"
msgstr "Type"
#: ../../bin/write_playlists.inc:71
msgid "Dumps all Albums as individual playlists"
msgstr ""
#: ../../bin/write_playlists.inc:72
msgid "Dumps all of your Playlists as m3u's"
msgstr ""
#: ../../bin/write_playlists.inc:73
msgid "Dumps all Artists as individual playlists"
msgstr ""
#: ../../bin/write_tags.inc:42
msgid ""
"Writting of Tags to files is not currently supported by Getid3() use at your "
"own risk."
msgstr ""
#: ../../bin/write_tags.inc:54
msgid "No Flagged Songs Found, exiting..."
msgstr ""
#: ../../bin/write_tags.inc:82
#, fuzzy
msgid "No Tag"
msgstr "Tag"
#. HINT: %1$s: title, %2$s: artist_name
#: ../../bin/write_tags.inc:91
#, php-format
msgid "Updated song %1$s by %2$s"
msgstr ""
#: ../../browse.php:79 ../../lib/class/browse.class.php:206
#: ../../templates/sidebar_home.inc.php:44
msgid "Tag Cloud"
msgstr "Tag Cloud"
#: ../../democratic.php:63
msgid "The Requested Playlist has been deleted."
msgstr "The Requested Playlist has been deleted."
#: ../../flag.php:51
msgid "Item Flagged"
msgstr "Item Flagged"
#: ../../flag.php:51
msgid "The specified item has been flagged"
msgstr "The specified item has been flagged"
#: ../../install.php:90
msgid "Error: Unable to make Database Connection"
msgstr "Error: Unable to make Database Connection"
#: ../../install.php:178
msgid "Error: Config file not found or Unreadable"
msgstr "Error: Config file not found or Unreadable"
#: ../../lib/class/access.class.php:163 ../../lib/class/access.class.php:167
#: ../../lib/class/access.class.php:210 ../../lib/class/access.class.php:214
msgid "Invalid IPv4 / IPv6 Address Entered"
msgstr "Invalid IPv4 / IPv6 Address Entered"
#: ../../lib/class/access.class.php:172 ../../lib/class/access.class.php:173
#: ../../lib/class/access.class.php:219 ../../lib/class/access.class.php:220
msgid "IP Address Version Mismatch"
msgstr "IP Address Version Mismatch"
#: ../../lib/class/access.class.php:227
#, fuzzy
msgid "Duplicate ACL defined"
msgstr "Duplicate Songs"
#: ../../lib/class/access.class.php:485 ../../lib/class/access.class.php:505
#: ../../lib/ui.lib.php:400 ../../templates/show_add_access.inc.php:40
#: ../../templates/show_add_access.inc.php:57
#: ../../templates/show_add_access.inc.php:63
#: ../../templates/show_admin_tools.inc.php:58
#: ../../templates/show_edit_access.inc.php:74
#: ../../templates/show_export.inc.php:41
#: ../../templates/show_mail_users.inc.php:38
#: ../../templates/show_random.inc.php:55
msgid "All"
msgstr "All"
#: ../../lib/class/access.class.php:488
#: ../../templates/show_add_access.inc.php:37
#: ../../templates/show_edit_access.inc.php:71
msgid "View"
msgstr "View"
#: ../../lib/class/access.class.php:491
#: ../../templates/show_add_access.inc.php:38
#: ../../templates/show_edit_access.inc.php:72
msgid "Read"
msgstr "Read"
#: ../../lib/class/access.class.php:494
#: ../../templates/show_add_access.inc.php:39
#: ../../templates/show_edit_access.inc.php:73
msgid "Read/Write"
msgstr "Read/Write"
#: ../../lib/class/access.class.php:521
#: ../../templates/show_add_access.inc.php:55
#: ../../templates/show_add_access.inc.php:56
#: ../../templates/show_add_access.inc.php:57
#: ../../templates/show_add_access.inc.php:70
#: ../../templates/show_edit_access.inc.php:39
msgid "API/RPC"
msgstr "API/RPC"
#: ../../lib/class/access.class.php:524
#: ../../templates/show_add_access.inc.php:61
#: ../../templates/show_add_access.inc.php:62
#: ../../templates/show_add_access.inc.php:63
#: ../../templates/show_add_access.inc.php:69
#: ../../templates/show_edit_access.inc.php:38
msgid "Local Network Definition"
msgstr "Local Network Definition"
#: ../../lib/class/access.class.php:527
#: ../../templates/show_add_access.inc.php:68
#: ../../templates/show_edit_access.inc.php:37
msgid "Web Interface"
msgstr "Web Interface"
#: ../../lib/class/access.class.php:531
#: ../../templates/show_add_access.inc.php:56
#: ../../templates/show_add_access.inc.php:62
#: ../../templates/show_add_access.inc.php:67
#: ../../templates/show_edit_access.inc.php:36
msgid "Stream Access"
msgstr "Stream Access"
#: ../../lib/class/album.class.php:249 ../../templates/show_album.inc.php:35
msgid "Disk"
msgstr "Disk"
#: ../../lib/class/album.class.php:263 ../../lib/class/browse.class.php:157
#: ../../lib/ui.lib.php:262 ../../templates/show_random.inc.php:36
#: ../../templates/show_search.inc.php:40
#: ../../templates/show_stats.inc.php:39
#: ../../templates/sidebar_home.inc.php:43
#: ../../templates/sidebar_home.inc.php:90
msgid "Artists"
msgstr "Artists"
#: ../../lib/class/album.class.php:263 ../../lib/class/album.class.php:264
#: ../../templates/show_edit_album_row.inc.php:43
msgid "Various"
msgstr "Various"
#: ../../lib/class/ampacherss.class.php:83
#: ../../lib/class/localplay.class.php:656 ../../templates/header.inc.php:50
#: ../../templates/show_localplay_status.inc.php:34
#: ../../templates/show_now_playing.inc.php:39
msgid "Now Playing"
msgstr "Now Playing"
#: ../../lib/class/ampacherss.class.php:84 ../../templates/header.inc.php:51
#: ../../templates/show_recently_played.inc.php:30
msgid "Recently Played"
msgstr "Recently Played"
#: ../../lib/class/ampacherss.class.php:85
msgid "Newest Albums"
msgstr "Newest Albums"
#: ../../lib/class/ampacherss.class.php:86
msgid "Newest Artists"
msgstr "Newest Artists"
#: ../../lib/class/ampacherss.class.php:129
msgid "RSS Feed"
msgstr "RSS Feed"
#: ../../lib/class/ampacherss.class.php:202
msgid "seconds ago"
msgstr "seconds ago"
#: ../../lib/class/ampacherss.class.php:202
msgid "minutes ago"
msgstr "minutes ago"
#: ../../lib/class/ampacherss.class.php:202
msgid "hours ago"
msgstr "hours ago"
#: ../../lib/class/ampacherss.class.php:202
msgid "days ago"
msgstr "days ago"
#: ../../lib/class/ampacherss.class.php:202
msgid "weeks ago"
msgstr "weeks ago"
#: ../../lib/class/ampacherss.class.php:202
msgid "months ago"
msgstr "months ago"
#: ../../lib/class/ampacherss.class.php:202
msgid "years ago"
msgstr "years ago"
#: ../../lib/class/api.class.php:135
msgid "Login Failed: version too old"
msgstr ""
#: ../../lib/class/api.class.php:143
msgid "Login Failed: timestamp out of range"
msgstr ""
#: ../../lib/class/api.class.php:172 ../../lib/class/api.class.php:235
#, fuzzy
msgid "Invalid Username/Password"
msgstr "No Username/Password specified"
#: ../../lib/class/api.class.php:235
msgid "Error Invalid Handshake - "
msgstr "Error Invalid Handshake - "
#: ../../lib/class/api.class.php:662 ../../lib/class/api.class.php:718
#: ../../server/xml.server.php:102
msgid "Invalid Request"
msgstr "Invalid Request"
#: ../../lib/class/api.class.php:683 ../../lib/class/api.class.php:696
msgid "Media Object Invalid or Not Specified"
msgstr "Media Object Invalid or Not Specified"
#: ../../lib/class/art.class.php:1003
msgid "Error: Unable to open"
msgstr "Error: Unable to open"
#: ../../lib/class/artist.class.php:379
msgid "Fault"
msgstr "Fault"
#: ../../lib/class/artist.class.php:392 ../../templates/show_lyrics.inc.php:47
msgid "Sorry Lyrics Not Found."
msgstr "Sorry Lyrics Not Found."
#: ../../lib/class/browse.class.php:140 ../../templates/show_albums.inc.php:54
#: ../../templates/show_albums.inc.php:85
#: ../../templates/show_artists.inc.php:48
#: ../../templates/show_artists.inc.php:76
#: ../../templates/show_manage_democratic.inc.php:46
#: ../../templates/show_random.inc.php:34
#: ../../templates/show_recommended_artists.inc.php:44
#: ../../templates/show_recommended_artists.inc.php:72
#: ../../templates/show_search.inc.php:38
#: ../../templates/show_stats.inc.php:40 ../../templates/show_stats.inc.php:76
#: ../../templates/sidebar_home.inc.php:88
msgid "Songs"
msgstr "Songs"
#: ../../lib/class/browse.class.php:146 ../../lib/ui.lib.php:258
#: ../../templates/browse_filters.inc.php:65
#: ../../templates/show_artists.inc.php:49
#: ../../templates/show_artists.inc.php:77
#: ../../templates/show_random.inc.php:35
#: ../../templates/show_recommended_artists.inc.php:45
#: ../../templates/show_recommended_artists.inc.php:73
#: ../../templates/show_search.inc.php:39
#: ../../templates/show_stats.inc.php:38
#: ../../templates/sidebar_home.inc.php:42
#: ../../templates/sidebar_home.inc.php:89
msgid "Albums"
msgstr "Albums"
#: ../../lib/class/browse.class.php:152
msgid "Manage Users"
msgstr "Manage Users"
#: ../../lib/class/browse.class.php:164
#: ../../templates/sidebar_home.inc.php:47
msgid "Radio Stations"
msgstr "Radio Stations"
#: ../../lib/class/browse.class.php:170
#: ../../templates/sidebar_home.inc.php:45
msgid "Playlists"
msgstr "Playlists"
#: ../../lib/class/browse.class.php:175
msgid "Playlist Songs"
msgstr "Playlist Songs"
#: ../../lib/class/browse.class.php:180
msgid "Current Playlist"
msgstr "Current Playlist"
#: ../../lib/class/browse.class.php:185
#: ../../templates/sidebar_home.inc.php:46
#, fuzzy
msgid "Smart Playlists"
msgstr "Import Playlist"
#: ../../lib/class/browse.class.php:190
#: ../../templates/show_admin_tools.inc.php:33
#: ../../templates/show_stats.inc.php:33
#: ../../templates/sidebar_admin.inc.php:31
msgid "Catalogs"
msgstr "Catalogs"
#: ../../lib/class/browse.class.php:195
msgid "Shoutbox Records"
msgstr "Shoutbox Records"
#: ../../lib/class/browse.class.php:200
msgid "Flagged Records"
msgstr "Flagged Records"
#: ../../lib/class/browse.class.php:212 ../../templates/show_search.inc.php:41
#: ../../templates/show_stats.inc.php:41 ../../templates/show_stats.inc.php:77
#: ../../templates/sidebar_home.inc.php:48
#: ../../templates/sidebar_home.inc.php:91
msgid "Videos"
msgstr "Videos"
#: ../../lib/class/browse.class.php:217
#: ../../templates/show_democratic.inc.php:30
msgid "Democratic Playlist"
msgstr "Democratic Playlist"
#: ../../lib/class/catalog.class.php:173 ../../lib/class/catalog.class.php:174
#: ../../lib/class/catalog.class.php:175 ../../lib/class/user.class.php:699
#: ../../lib/preferences.php:280 ../../templates/show_user.inc.php:29
#: ../../templates/show_users.inc.php:60
msgid "Never"
msgstr "Never"
#: ../../lib/class/catalog.class.php:279
#, php-format
msgid "Error: %s is not readable or does not exist"
msgstr ""
#: ../../lib/class/catalog.class.php:288
#, fuzzy, php-format
msgid "Error: Catalog with %s already exists"
msgstr "Error Username already exists"
#: ../../lib/class/catalog.class.php:315
msgid "Catalog Insert Failed check debug logs"
msgstr ""
#: ../../lib/class/catalog.class.php:333
msgid "Running Remote Sync"
msgstr "Running Remote Sync"
#: ../../lib/class/catalog.class.php:499
#, fuzzy, php-format
msgid "Error: Unable to open %s"
msgstr "Error: Unable to open"
#: ../../lib/class/catalog.class.php:506 ../../lib/class/catalog.class.php:552
#, fuzzy, php-format
msgid "Error: Unable to change to directory %s"
msgstr "Error: Unable to change to directory"
#. HINT: FullFile
#: ../../lib/class/catalog.class.php:589
#, php-format
msgid "Error: Unable to get filesize for %s"
msgstr "Error: Unable to get filesize for %s"
#. HINT: FullFile
#: ../../lib/class/catalog.class.php:596
#, php-format
msgid "%s is not readable by ampache"
msgstr "%s is not readable by ampache"
#. HINT: FullFile
#: ../../lib/class/catalog.class.php:605
#, php-format
msgid "%s does not match site charset"
msgstr "%s does not match site charset"
#: ../../lib/class/catalog.class.php:1089
msgid "No Update Needed"
msgstr "No Update Needed"
#: ../../lib/class/catalog.class.php:1224
msgid "Running Remote Update"
msgstr "Running Remote Update"
#: ../../lib/class/catalog.class.php:1251
msgid "Added Playlist From"
msgstr "Added Playlist From"
#: ../../lib/class/catalog.class.php:1280
msgid "Catalog Update Finished"
msgstr "Catalog Update Finished"
#: ../../lib/class/catalog.class.php:1280
msgid "Total Time"
msgstr "Total Time"
#: ../../lib/class/catalog.class.php:1281
msgid "Total Songs"
msgstr "Total Songs"
#: ../../lib/class/catalog.class.php:1281
msgid "Songs Per Seconds"
msgstr "Songs Per Seconds"
#: ../../lib/class/catalog.class.php:1304
#, fuzzy
msgid "Error Connecting to Remote Server"
msgstr "Error connecting to"
#: ../../lib/class/catalog.class.php:1313
#, php-format
msgid "%u remote catalog(s) found (%u songs)"
msgstr ""
#: ../../lib/class/catalog.class.php:1337
#, fuzzy, php-format
msgid "Unable to Insert Song - %s"
msgstr "Unable to Install Plugin"
#: ../../lib/class/catalog.class.php:1344
msgid "Completed updating remote catalog(s)"
msgstr "Completed updating remote catalog(s)"
#: ../../lib/class/catalog.class.php:1387
msgid "Catalog Root unreadable, stopping clean"
msgstr "Catalog Root unreadable, stopping clean"
#: ../../lib/class/catalog.class.php:1411
#, fuzzy
msgid "All files would be removed. Doing nothing"
msgstr "Error All songs would be removed, doing nothing"
#: ../../lib/class/catalog.class.php:1465
#, fuzzy, php-format
msgid "Error File Not Found or 0 Bytes: %s"
msgstr "Error File Not Found or 0 Bytes:"
#: ../../lib/class/catalog.class.php:1482
#, fuzzy, php-format
msgid "Error Remote File Not Found or 0 Bytes: %s"
msgstr "Error Remote File Not Found or 0 Bytes:"
#: ../../lib/class/catalog.class.php:1699
#, fuzzy, php-format
msgid "Catalog Verify Done. %d of %d files updated."
msgstr "Catalog Clean Done. %d file removed."
#: ../../lib/class/catalog.class.php:1740
#, php-format
msgid "%s does not exist or is not readable"
msgstr "%s does not exist or is not readable"
#: ../../lib/class/catalog.class.php:1838
#: ../../lib/class/catalog.class.php:1946
#: ../../templates/show_album.inc.php:42
msgid "Unknown (Orphaned)"
msgstr "Unknown (Orphaned)"
#: ../../lib/class/catalog.class.php:1893
#, fuzzy, php-format
msgid "Updating Artist: %s"
msgstr "Update Artist"
#: ../../lib/class/catalog.class.php:1914
#, php-format
msgid "Inserting Artist: %s"
msgstr ""
#: ../../lib/class/catalog.class.php:2094
#, php-format
msgid "SQL Error Adding %s"
msgstr ""
#: ../../lib/class/catalog.class.php:2317
msgid "Playlist creation error."
msgstr "Playlist creation error."
#: ../../lib/class/config.class.php:113
#, php-format
msgid "Trying to clobber '%s' without setting clobber"
msgstr ""
#: ../../lib/class/democratic.class.php:153 ../../lib/class/video.class.php:94
#: ../../templates/show_create_democratic.inc.php:42
msgid "minutes"
msgstr "minutes"
#: ../../lib/class/democratic.class.php:154
msgid "Primary"
msgstr "Primary"
#: ../../lib/class/democratic.class.php:164
#: ../../templates/show_add_user.inc.php:83
#: ../../templates/show_create_democratic.inc.php:50
#: ../../templates/show_edit_user.inc.php:86
#: ../../templates/show_preference_box.inc.php:67
msgid "Content Manager"
msgstr "Content Manager"
#: ../../lib/class/democratic.class.php:167
#: ../../templates/show_add_user.inc.php:84
#: ../../templates/show_create_democratic.inc.php:51
#: ../../templates/show_edit_user.inc.php:87
#: ../../templates/show_preference_box.inc.php:68
msgid "Catalog Manager"
msgstr "Catalog Manager"
#: ../../lib/class/flag.class.php:325
msgid "Approved"
msgstr "Approved"
#: ../../lib/class/flag.class.php:326
msgid "Pending"
msgstr "Pending"
#: ../../lib/class/flag.class.php:338 ../../templates/rightbar.inc.php:112
#: ../../templates/show_access_list.inc.php:85
#: ../../templates/show_admin_tools.inc.php:60
#: ../../templates/show_catalog_row.inc.php:42
#: ../../templates/show_democratic_playlist.inc.php:94
#: ../../templates/show_live_stream_row.inc.php:42
#: ../../templates/show_localplay_instances.inc.php:47
#: ../../templates/show_localplay_playlist.inc.php:58
#: ../../templates/show_manage_democratic.inc.php:65
#: ../../templates/show_playlist.inc.php:72
#: ../../templates/show_playlist_row.inc.php:46
#: ../../templates/show_playlist_song_row.inc.php:49
#: ../../templates/show_shout_row.inc.php:43
#: ../../templates/show_smartplaylist.inc.php:51
#: ../../templates/show_smartplaylist_row.inc.php:37
#: ../../templates/show_user_row.inc.php:57
msgid "Delete"
msgstr "Delete"
#: ../../lib/class/flag.class.php:341
msgid "Re-Tag"
msgstr "Re-Tag"
#: ../../lib/class/flag.class.php:344
msgid "Re-encode"
msgstr "Re-encode"
#: ../../lib/class/flag.class.php:347
msgid "Other"
msgstr "Other"
#: ../../lib/class/flag.class.php:350 ../../lib/class/localplay.class.php:665
#: ../../lib/class/user.class.php:703 ../../lib/general.lib.php:272
#: ../../modules/localplay/mpd.controller.php:506
#: ../../templates/show_user.inc.php:30 ../../templates/show_users.inc.php:61
msgid "Unknown"
msgstr "Unknown"
#: ../../lib/class/localplay.class.php:659
msgid "Stopped"
msgstr "Stopped"
#: ../../lib/class/localplay.class.php:662
msgid "Paused"
msgstr "Paused"
#: ../../lib/class/playlist_object.abstract.php:42
#: ../../templates/show_edit_playlist_row.inc.php:41
#: ../../templates/show_edit_playlist_title.inc.php:40
#: ../../templates/show_edit_smartplaylist_row.inc.php:34
#: ../../templates/show_edit_smartplaylist_title.inc.php:33
msgid "Private"
msgstr "Private"
#: ../../lib/class/query.class.php:82
msgid "Browse not found or expired, try reloading the page"
msgstr ""
#: ../../lib/class/radio.class.php:95
msgid "Missing ID"
msgstr ""
#: ../../lib/class/radio.class.php:99 ../../lib/class/radio.class.php:139
#, fuzzy
msgid "Name Required"
msgstr "Required"
#: ../../lib/class/radio.class.php:107
msgid "Invalid URL must be mms:// , https:// or http://"
msgstr ""
#: ../../lib/class/radio.class.php:147
msgid "Invalid URL must be http:// or https://"
msgstr ""
#: ../../lib/class/radio.class.php:153
#, fuzzy
msgid "Invalid Catalog"
msgstr "Add Catalog"
#: ../../lib/class/random.class.php:371 ../../templates/rightbar.inc.php:73
msgid "Related Album"
msgstr "Related Album"
#: ../../lib/class/random.class.php:374
msgid "Related Genre"
msgstr "Related Genre"
#: ../../lib/class/random.class.php:377 ../../templates/rightbar.inc.php:70
msgid "Related Artist"
msgstr "Related Artist"
#: ../../lib/class/random.class.php:380 ../../templates/rightbar.inc.php:67
msgid "Pure Random"
msgstr "Pure Random"
#: ../../lib/class/registration.class.php:62
#, php-format
msgid "New User Registration at %s"
msgstr "New User Registration at %s"
#: ../../lib/class/registration.class.php:64
#, fuzzy, 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 ""
"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"
#: ../../lib/class/registration.class.php:85
#, 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 ""
"A new user has registered\n"
"The following values were entered.\n"
"\n"
"Username: %s\n"
"Fullname: %s\n"
"E-mail: %s\n"
"\n"
#: ../../lib/class/search.class.php:56
msgid "is greater than or equal to"
msgstr ""
#: ../../lib/class/search.class.php:62
msgid "is less than or equal to"
msgstr ""
#: ../../lib/class/search.class.php:68 ../../lib/class/search.class.php:136
#: ../../lib/class/search.class.php:155 ../../lib/class/search.class.php:168
#, fuzzy
msgid "is"
msgstr "Disk"
#: ../../lib/class/search.class.php:74 ../../lib/class/search.class.php:161
#: ../../lib/class/search.class.php:174
msgid "is not"
msgstr ""
#: ../../lib/class/search.class.php:80
msgid "is greater than"
msgstr ""
#: ../../lib/class/search.class.php:86
msgid "is less than"
msgstr ""
#: ../../lib/class/search.class.php:93
msgid "is true"
msgstr ""
#: ../../lib/class/search.class.php:98
msgid "is false"
msgstr ""
#: ../../lib/class/search.class.php:104
msgid "contains"
msgstr ""
#: ../../lib/class/search.class.php:112
msgid "does not contain"
msgstr ""
#: ../../lib/class/search.class.php:120
#, fuzzy
msgid "starts with"
msgstr "Starts With"
#: ../../lib/class/search.class.php:128
msgid "ends with"
msgstr ""
#: ../../lib/class/search.class.php:142
msgid "sounds like"
msgstr ""
#: ../../lib/class/search.class.php:148
msgid "does not sound like"
msgstr ""
#: ../../lib/class/search.class.php:181
msgid "before"
msgstr ""
#: ../../lib/class/search.class.php:187
msgid "after"
msgstr ""
#: ../../lib/class/search.class.php:195
msgid "Any searchable text"
msgstr ""
#: ../../lib/class/search.class.php:202 ../../lib/class/search.class.php:363
#: ../../templates/show_democratic_playlist.inc.php:64
#: ../../templates/show_democratic_playlist.inc.php:104
#: ../../templates/show_disabled_songs.inc.php:43
#: ../../templates/show_disabled_songs.inc.php:66
#: ../../templates/show_duplicate.inc.php:40
#: ../../templates/show_edit_song.inc.php:39
#: ../../templates/show_search_bar.inc.php:38
#: ../../templates/show_song.inc.php:52 ../../templates/show_videos.inc.php:45
#: ../../templates/show_videos.inc.php:69
msgid "Title"
msgstr "Title"
#: ../../lib/class/search.class.php:209 ../../templates/show_albums.inc.php:52
#: ../../templates/show_albums.inc.php:83
#: ../../templates/show_democratic_playlist.inc.php:65
#: ../../templates/show_democratic_playlist.inc.php:105
#: ../../templates/show_disabled_songs.inc.php:44
#: ../../templates/show_disabled_songs.inc.php:67
#: ../../templates/show_duplicates.inc.php:47
#: ../../templates/show_duplicates.inc.php:86
#: ../../templates/show_edit_song.inc.php:45
#: ../../templates/show_get_albumart.inc.php:43
#: ../../templates/show_lyrics_song.inc.php:56
#: ../../templates/show_now_playing_row.inc.php:68
#: ../../templates/show_playlist_songs.inc.php:52
#: ../../templates/show_playlist_songs.inc.php:78
#: ../../templates/show_recently_played.inc.php:44
#: ../../templates/show_recently_played.inc.php:115
#: ../../templates/show_search_bar.inc.php:39
#: ../../templates/show_song.inc.php:54 ../../templates/show_songs.inc.php:49
#: ../../templates/show_songs.inc.php:78
#: ../../templates/sidebar_home.inc.php:73
msgid "Album"
msgstr "Album"
#: ../../lib/class/search.class.php:216
#: ../../templates/browse_filters.inc.php:68
#: ../../templates/show_albums.inc.php:53
#: ../../templates/show_albums.inc.php:84
#: ../../templates/show_artists.inc.php:47
#: ../../templates/show_artists.inc.php:75
#: ../../templates/show_democratic_playlist.inc.php:66
#: ../../templates/show_democratic_playlist.inc.php:106
#: ../../templates/show_disabled_songs.inc.php:45
#: ../../templates/show_disabled_songs.inc.php:68
#: ../../templates/show_duplicates.inc.php:46
#: ../../templates/show_duplicates.inc.php:85
#: ../../templates/show_edit_song.inc.php:53
#: ../../templates/show_get_albumart.inc.php:35
#: ../../templates/show_lyrics_song.inc.php:63
#: ../../templates/show_now_playing_row.inc.php:75
#: ../../templates/show_playlist_songs.inc.php:51
#: ../../templates/show_playlist_songs.inc.php:77
#: ../../templates/show_recently_played.inc.php:45
#: ../../templates/show_recently_played.inc.php:116
#: ../../templates/show_recommended_artists.inc.php:43
#: ../../templates/show_recommended_artists.inc.php:71
#: ../../templates/show_search_bar.inc.php:40
#: ../../templates/show_song.inc.php:53 ../../templates/show_songs.inc.php:48
#: ../../templates/show_songs.inc.php:77
#: ../../templates/sidebar_home.inc.php:74
msgid "Artist"
msgstr "Artist"
#: ../../lib/class/search.class.php:223
#: ../../templates/show_edit_song.inc.php:73
#: ../../templates/show_flagged.inc.php:44
#: ../../templates/show_flagged.inc.php:63
#: ../../templates/show_manage_shoutbox.inc.php:44
#: ../../templates/show_manage_shoutbox.inc.php:68
#: ../../templates/show_song.inc.php:57
msgid "Comment"
msgstr "Comment"
#: ../../lib/class/search.class.php:231 ../../lib/class/search.class.php:409
#: ../../lib/class/search.class.php:431
#: ../../templates/show_live_streams.inc.php:47
#: ../../templates/show_live_streams.inc.php:69
#: ../../templates/show_search_bar.inc.php:41
msgid "Tag"
msgstr "Tag"
#: ../../lib/class/search.class.php:238 ../../lib/class/search.class.php:417
#: ../../templates/show_disabled_songs.inc.php:46
#: ../../templates/show_disabled_songs.inc.php:69
#: ../../templates/show_duplicates.inc.php:51
#: ../../templates/show_duplicates.inc.php:90
#: ../../templates/show_import_playlist.inc.php:35
#: ../../templates/show_song.inc.php:63
msgid "Filename"
msgstr "Filename"
#: ../../lib/class/search.class.php:245 ../../lib/class/search.class.php:370
#: ../../templates/show_albums.inc.php:55
#: ../../templates/show_albums.inc.php:86
#: ../../templates/show_edit_album.inc.php:41
#: ../../templates/show_edit_song.inc.php:67
msgid "Year"
msgstr "Year"
#: ../../lib/class/search.class.php:252
msgid "Length (in minutes)"
msgstr ""
#: ../../lib/class/search.class.php:260 ../../lib/class/search.class.php:378
#: ../../templates/show_albums.inc.php:57
#: ../../templates/show_albums.inc.php:88
#: ../../templates/show_artists.inc.php:52
#: ../../templates/show_artists.inc.php:80
#: ../../templates/show_now_playing_row.inc.php:43
#: ../../templates/show_playlist_songs.inc.php:59
#: ../../templates/show_playlist_songs.inc.php:83
#: ../../templates/show_recommended_artists.inc.php:48
#: ../../templates/show_recommended_artists.inc.php:76
#: ../../templates/show_song.inc.php:35 ../../templates/show_songs.inc.php:56
#: ../../templates/show_songs.inc.php:83
msgid "Rating"
msgstr "Rating"
#: ../../lib/class/search.class.php:277
#: ../../templates/show_duplicates.inc.php:49
#: ../../templates/show_duplicates.inc.php:88
#: ../../templates/show_song.inc.php:61
msgid "Bitrate"
msgstr "Bitrate"
#: ../../lib/class/search.class.php:302
msgid "Played"
msgstr "Played"
#: ../../lib/class/search.class.php:329 ../../lib/class/search.class.php:401
#: ../../templates/browse_filters.inc.php:74
#: ../../templates/show_add_live_stream.inc.php:67
#: ../../templates/show_export.inc.php:38
msgid "Catalog"
msgstr "Catalog"
#: ../../lib/class/search.class.php:342 ../../lib/ui.lib.php:217
#: ../../templates/show_manage_democratic.inc.php:41
#: ../../templates/sidebar_home.inc.php:53
#: ../../templates/sidebar_home.inc.php:75
msgid "Playlist"
msgstr "Playlist"
#: ../../lib/class/search.class.php:355
#, fuzzy
msgid "Smart Playlist"
msgstr "Import Playlist"
#: ../../lib/class/search.class.php:425
#: ../../templates/show_access_list.inc.php:62
#: ../../templates/show_account.inc.php:35
#: ../../templates/show_add_access.inc.php:29
#: ../../templates/show_add_live_stream.inc.php:34
#: ../../templates/show_add_playlist.inc.php:34
#: ../../templates/show_admin_tools.inc.php:40
#: ../../templates/show_admin_tools.inc.php:80
#: ../../templates/show_catalogs.inc.php:41
#: ../../templates/show_catalogs.inc.php:65
#: ../../templates/show_create_democratic.inc.php:33
#: ../../templates/show_edit_access.inc.php:28
#: ../../templates/show_edit_album.inc.php:35
#: ../../templates/show_edit_artist.inc.php:35
#: ../../templates/show_edit_catalog.inc.php:34
#: ../../templates/show_edit_live_stream_row.inc.php:34
#: ../../templates/show_live_streams.inc.php:44
#: ../../templates/show_live_streams.inc.php:66
#: ../../templates/show_localplay_controllers.inc.php:40
#: ../../templates/show_localplay_controllers.inc.php:71
#: ../../templates/show_localplay_playlist.inc.php:42
#: ../../templates/show_localplay_playlist.inc.php:68
#: ../../templates/show_plugins.inc.php:40
#: ../../templates/show_plugins.inc.php:77
#: ../../templates/show_stats.inc.php:71
msgid "Name"
msgstr "Name"
#: ../../lib/class/update.class.php:420
#, fuzzy
msgid "No updates needed."
msgstr "No Update Needed"
#: ../../lib/class/user.class.php:725 ../../templates/rightbar.inc.php:115
#: ../../templates/show_albums.inc.php:75
#: ../../templates/show_artists.inc.php:70
#: ../../templates/show_catalogs.inc.php:60
#: ../../templates/show_live_streams.inc.php:61
#: ../../templates/show_manage_democratic.inc.php:70
#: ../../templates/show_objects.inc.php:51
#: ../../templates/show_playlists.inc.php:60
#: ../../templates/show_recently_played.inc.php:108
#: ../../templates/show_recommended_artists.inc.php:66
#: ../../templates/show_smartplaylists.inc.php:52
#: ../../templates/show_songs.inc.php:71
#: ../../templates/show_tagcloud.inc.php:40
#: ../../templates/show_user_recommendations.inc.php:40
#: ../../templates/show_user_recommendations.inc.php:51
#: ../../templates/show_user_recommendations.inc.php:62
#: ../../templates/show_user_stats.inc.php:42
#: ../../templates/show_user_stats.inc.php:55
#: ../../templates/show_user_stats.inc.php:68
#: ../../templates/show_videos.inc.php:64
msgid "Not Enough Data"
msgstr "Not Enough Data"
#: ../../lib/install.lib.php:78
msgid "Config file already exists, install is probably completed"
msgstr ""
#: ../../lib/install.lib.php:89
msgid "Unable to connect to database, check your ampache config"
msgstr "Unable to connect to database, check your ampache config"
#: ../../lib/install.lib.php:96
msgid "Unable to select database, check your ampache config"
msgstr "Unable to select database, check your ampache config"
#: ../../lib/install.lib.php:106
msgid "Existing Database detected, unable to continue installation"
msgstr "Existing Database detected, unable to continue installation"
#: ../../lib/install.lib.php:126
msgid ""
"Error: Database name invalid must not be a reserved word, and must be "
"Alphanumeric"
msgstr ""
#: ../../lib/install.lib.php:143
#, fuzzy, php-format
msgid "Error: Unable to make Database Connection %s"
msgstr "Error: Unable to make Database Connection"
#: ../../lib/install.lib.php:154
msgid "Error: Database Already exists and Overwrite not checked"
msgstr ""
#: ../../lib/install.lib.php:160 ../../lib/install.lib.php:170
#, fuzzy, php-format
msgid "Error: Unable to Create Database %s"
msgstr "Error: Unable to get filesize for %s"
#: ../../lib/install.lib.php:183
#, fuzzy
msgid "Error: Ampache SQL Username or Password missing"
msgstr "Error Username or Password incorrect, please try again"
#. HINT: 1: db_user, 2: database, 3: hostname, 4: mysql_error()
#: ../../lib/install.lib.php:192
#, php-format
msgid "Error: Unable to Insert %1$s with permissions to %2$s on %3$s %4$s"
msgstr ""
#: ../../lib/install.lib.php:253
msgid "Database Connection Failed Check Hostname, Username and Password"
msgstr ""
#: ../../lib/install.lib.php:257
#, php-format
msgid "Database Selection Failure Check Existance of %s"
msgstr ""
#: ../../lib/install.lib.php:266
#, fuzzy
msgid "Config file is not writable"
msgstr "%s is not readable by ampache"
#: ../../lib/install.lib.php:272
msgid "Error Writing config file"
msgstr ""
#: ../../lib/install.lib.php:295
msgid "No Username/Password specified"
msgstr "No Username/Password specified"
#: ../../lib/install.lib.php:300
msgid "Passwords do not match"
msgstr "Passwords do not match"
#: ../../lib/install.lib.php:307
#, php-format
msgid "Database Connection Failed: %s"
msgstr ""
#: ../../lib/install.lib.php:314
#, fuzzy, php-format
msgid "Database Select Failed: %s"
msgstr "Database Charset Updated"
#: ../../lib/install.lib.php:324
#, php-format
msgid "Insert of Base User Failed %s"
msgstr ""
#: ../../lib/javascript/search-data.php:50
#: ../../templates/show_disabled_songs.inc.php:74
msgid "Remove"
msgstr "Remove"
#: ../../lib/preferences.php:174 ../../lib/preferences.php:289
#: ../../templates/show_flag_row.inc.php:40
#: ../../templates/show_user_row.inc.php:51
msgid "Enable"
msgstr "Enable"
#: ../../lib/preferences.php:175 ../../lib/preferences.php:290
#: ../../templates/show_duplicates.inc.php:44
#: ../../templates/show_duplicates.inc.php:83
#: ../../templates/show_localplay_controllers.inc.php:52
#: ../../templates/show_user_row.inc.php:54
msgid "Disable"
msgstr "Disable"
#: ../../lib/preferences.php:184 ../../lib/preferences.php:222
#: ../../lib/ui.lib.php:427 ../../templates/show_adds_catalog.inc.php:33
#: ../../templates/show_gather_art.inc.php:31
#: ../../templates/sidebar_localplay.inc.php:52
msgid "None"
msgstr "None"
#: ../../lib/preferences.php:186 ../../templates/show_edit_user.inc.php:103
#: ../../templates/show_playtype_switch.inc.php:40
msgid "Stream"
msgstr "Stream"
#: ../../lib/preferences.php:189
#: ../../modules/localplay/httpq.controller.php:503
#: ../../modules/localplay/mpd.controller.php:472
#: ../../modules/localplay/vlc.controller.php:535
#: ../../templates/show_edit_user.inc.php:100
#: ../../templates/show_playtype_switch.inc.php:44
#: ../../templates/sidebar_home.inc.php:57
#: ../../templates/sidebar_modules.inc.php:48
msgid "Democratic"
msgstr "Democratic"
#: ../../lib/preferences.php:192 ../../templates/show_edit_user.inc.php:101
#: ../../templates/show_playtype_switch.inc.php:42
#: ../../templates/sidebar.inc.php:35 ../../templates/sidebar_home.inc.php:66
#: ../../templates/sidebar_localplay.inc.php:40
msgid "Localplay"
msgstr "Localplay"
#: ../../lib/preferences.php:194
#: ../../templates/show_playtype_switch.inc.php:46
msgid "Flash Player"
msgstr "Flash Player"
#: ../../lib/preferences.php:201
msgid "M3U"
msgstr "M3U"
#: ../../lib/preferences.php:202
msgid "Simple M3U"
msgstr "Simple M3U"
#: ../../lib/preferences.php:203
msgid "PLS"
msgstr "PLS"
#: ../../lib/preferences.php:204
msgid "Asx"
msgstr "Asx"
#: ../../lib/preferences.php:205
msgid "RAM"
msgstr "RAM"
#: ../../lib/preferences.php:206
msgid "XSPF"
msgstr "XSPF"
#: ../../lib/preferences.php:236
msgid "Disabled"
msgstr "Disabled"
#: ../../lib/preferences.php:238
msgid "Manager"
msgstr "Manager"
#: ../../lib/preferences.php:255
msgid "Send on Add"
msgstr "Send on Add"
#: ../../lib/preferences.php:256
msgid "Send and Clear on Add"
msgstr "Send and Clear on Add"
#: ../../lib/preferences.php:257
msgid "Clear on Send"
msgstr "Clear on Send"
#: ../../lib/preferences.php:258 ../../lib/preferences.php:281
#: ../../templates/show_manage_democratic.inc.php:45
msgid "Default"
msgstr "Default"
#: ../../lib/preferences.php:264 ../../lib/preferences.php:272
msgid "Low"
msgstr ""
#: ../../lib/preferences.php:265 ../../lib/preferences.php:273
msgid "Medium"
msgstr ""
#: ../../lib/preferences.php:266 ../../lib/preferences.php:274
msgid "High"
msgstr ""
#: ../../lib/preferences.php:282
msgid "Always"
msgstr "Always"
#: ../../lib/rating.lib.php:58
msgid "Don't Play"
msgstr "Don't Play"
#: ../../lib/rating.lib.php:61
msgid "It's Pretty Bad"
msgstr "It's Pretty Bad"
#: ../../lib/rating.lib.php:64
msgid "It's Ok"
msgstr "It's Ok"
#: ../../lib/rating.lib.php:67
msgid "It's Pretty Good"
msgstr "It's Pretty Good"
#: ../../lib/rating.lib.php:70
msgid "I Love It!"
msgstr "I Love It!"
#: ../../lib/rating.lib.php:73
msgid "It's Insane"
msgstr "It's Insane"
#: ../../lib/rating.lib.php:77
msgid "Off the Charts!"
msgstr "Off the Charts!"
#: ../../lib/ui.lib.php:205 ../../templates/sidebar.inc.php:34
msgid "Home"
msgstr "Home"
#: ../../lib/ui.lib.php:208
msgid "Upload"
msgstr "Upload"
#: ../../lib/ui.lib.php:211
msgid "Local Play"
msgstr "Local Play"
#: ../../lib/ui.lib.php:214
msgid "Random Play"
msgstr "Random Play"
#: ../../lib/ui.lib.php:220 ../../templates/show_search.inc.php:63
#: ../../templates/show_search_bar.inc.php:43
#: ../../templates/sidebar_home.inc.php:86
msgid "Search"
msgstr "Search"
#: ../../lib/ui.lib.php:223 ../../templates/show_user_row.inc.php:47
#: ../../templates/sidebar.inc.php:36
#: ../../templates/sidebar_preferences.inc.php:36
msgid "Preferences"
msgstr "Preferences"
#: ../../lib/ui.lib.php:226 ../../lib/ui.lib.php:230
msgid "Admin-Catalog"
msgstr "Admin-Catalog"
#: ../../lib/ui.lib.php:234
msgid "Admin-User Management"
msgstr "Admin-User Management"
#: ../../lib/ui.lib.php:238
msgid "Admin-Mail Users"
msgstr "Admin-Mail Users"
#: ../../lib/ui.lib.php:242
msgid "Admin-Manage Access Lists"
msgstr "Admin-Manage Access Lists"
#: ../../lib/ui.lib.php:246
msgid "Admin-Site Preferences"
msgstr "Admin-Site Preferences"
#: ../../lib/ui.lib.php:250
msgid "Admin-Manage Modules"
msgstr "Admin-Manage Modules"
#: ../../lib/ui.lib.php:254
msgid "Browse Music"
msgstr "Browse Music"
#: ../../lib/ui.lib.php:266 ../../templates/show_stats.inc.php:32
#: ../../templates/sidebar_home.inc.php:81
msgid "Statistics"
msgstr "Statistics"
#: ../../lib/ui.lib.php:320
msgid "Add New"
msgstr "Add New"
#: ../../lib/ui.lib.php:750
msgid "On"
msgstr "On"
#: ../../lib/ui.lib.php:753
msgid "Off"
msgstr "Off"
#: ../../login.php:93
msgid "Error Username or Password incorrect, please try again"
msgstr "Error Username or Password incorrect, please try again"
#: ../../login.php:100
msgid "User Disabled please contact Admin"
msgstr "User Disabled please contact Admin"
#: ../../login.php:108
msgid "User Already Logged in"
msgstr "User Already Logged in"
#: ../../login.php:129
#, fuzzy
msgid "Unable to create local account"
msgstr "Unable to create new account"
#: ../../lostpassword.php:45
#, fuzzy
msgid "Password has been sent"
msgstr " has been created"
#: ../../lostpassword.php:47
#, fuzzy
msgid "Password has not been sent"
msgstr " has been created"
#: ../../lostpassword.php:65
#, fuzzy
msgid "Lost Password"
msgstr "Password"
#: ../../lostpassword.php:69
#, php-format
msgid "A user from %s has requested a password reset for '%s'."
msgstr ""
#: ../../lostpassword.php:71
#, php-format
msgid "The password has been set to: %s"
msgstr ""
#: ../../modules/localplay/httpq.controller.php:231
#: ../../modules/localplay/mpd.controller.php:249
#: ../../modules/localplay/shoutcast.controller.php:252
#: ../../modules/localplay/vlc.controller.php:231
msgid "Instance Name"
msgstr "Instance Name"
#: ../../modules/localplay/httpq.controller.php:232
#: ../../modules/localplay/mpd.controller.php:250
#: ../../modules/localplay/vlc.controller.php:232
msgid "Hostname"
msgstr "Hostname"
#: ../../modules/localplay/httpq.controller.php:233
#: ../../modules/localplay/mpd.controller.php:251
#: ../../modules/localplay/vlc.controller.php:233
msgid "Port"
msgstr "Port"
#: ../../modules/localplay/httpq.controller.php:234
#: ../../modules/localplay/mpd.controller.php:252
#: ../../modules/localplay/vlc.controller.php:234
#: ../../templates/show_add_user.inc.php:59
#: ../../templates/show_edit_user.inc.php:62
#: ../../templates/show_install_account.inc.php:49
#: ../../templates/show_login_form.inc.php:70
#: ../../templates/show_user_registration.inc.php:94
msgid "Password"
msgstr "Password"
#. HINT: Artist Fullname
#: ../../modules/localplay/httpq.controller.php:507
#: ../../modules/localplay/mpd.controller.php:476
#: ../../modules/localplay/vlc.controller.php:539
#: ../../templates/show_album.inc.php:63
#: ../../templates/show_album_row.inc.php:32
#: ../../templates/show_artist.inc.php:62
#: ../../templates/show_artist_row.inc.php:32
#: ../../templates/show_localplay_status.inc.php:51
#: ../../templates/show_playlist_row.inc.php:32
#: ../../templates/sidebar_home.inc.php:71
msgid "Random"
msgstr "Random"
#: ../../modules/localplay/shoutcast.controller.php:253
msgid "PID File"
msgstr "PID File"
#: ../../modules/localplay/shoutcast.controller.php:254
msgid "Playlist File"
msgstr "Playlist File"
#: ../../modules/localplay/shoutcast.controller.php:255
msgid "Local Path to Files"
msgstr "Local Path to Files"
#: ../../playlist.php:72
msgid "Playlist Created"
msgstr "Playlist Created"
#: ../../playlist.php:72
#, fuzzy, php-format
msgid "%1$s (%2$s) has been created"
msgstr " has been created"
#: ../../playlist.php:108
msgid "Playlist Not Imported"
msgstr "Playlist Not Imported"
#: ../../playlist.php:112
msgid "Playlist Imported"
msgstr "Playlist Imported"
#: ../../playlist.php:144
msgid "Empty Playlists Deleted"
msgstr "Empty Playlists Deleted"
#: ../../preferences.php:48 ../../preferences.php:87
msgid "Server"
msgstr "Server"
#: ../../preferences.php:119
msgid "Error Update Failed"
msgstr "Error Update Failed"
#: ../../preferences.php:124
msgid "Your Account has been updated"
msgstr "Your Account has been updated"
#: ../../radio.php:62
msgid "Radio Station Added"
msgstr "Radio Station Added"
#: ../../register.php:80
msgid "Error Captcha Required"
msgstr "Error Captcha Required"
#: ../../register.php:87
msgid "Error Captcha Failed"
msgstr "Error Captcha Failed"
#: ../../register.php:94
msgid "You <U>must</U> accept the user agreement"
msgstr "You <U>must</U> accept the user agreement"
#: ../../register.php:99
msgid "You did not enter a username"
msgstr "You did not enter a username"
#: ../../register.php:103
msgid "Please fill in your full name (Firstname Lastname)"
msgstr "Please fill in your full name (Firstname Lastname)"
#: ../../register.php:124
msgid "Error Email address not confirmed"
msgstr "Error Email address not confirmed"
#: ../../register.php:130
msgid "You must enter a password"
msgstr "You must enter a password"
#: ../../register.php:134
msgid "Your passwords do not match"
msgstr "Your passwords do not match"
#: ../../search.php:49
#, fuzzy
msgid "Search Saved"
msgstr "Searched"
#: ../../search.php:49
#, php-format
msgid "Your Search has been saved as a track in %s"
msgstr ""
#: ../../server/xml.server.php:49
#, fuzzy
msgid "Access Control not Enabled"
msgstr "Access Control Entries"
#: ../../server/xml.server.php:60
msgid "Session Expired"
msgstr ""
#: ../../server/xml.server.php:71
msgid "Unauthorized access attempt to API - ACL Error"
msgstr ""
#: ../../shout.php:55
msgid "Invalid Object Selected"
msgstr "Invalid Object Selected"
#. HINT: Artist, Song Title
#: ../../song.php:49 ../../song.php:67
#, php-format
msgid "%1$s - %2$s Lyrics Detail"
msgstr "%1$s - %2$s Lyrics Detail"
#: ../../templates/browse_filters.inc.php:32
msgid "Filters"
msgstr "Filters"
#: ../../templates/browse_filters.inc.php:36
msgid "Starts With"
msgstr "Starts With"
#: ../../templates/browse_filters.inc.php:42
msgid "Minimum Count"
msgstr "Minimum Count"
#: ../../templates/browse_filters.inc.php:47
msgid "Rated"
msgstr "Rated"
#: ../../templates/browse_filters.inc.php:52
msgid "Unplayed"
msgstr "Unplayed"
#: ../../templates/browse_filters.inc.php:56
msgid "All Playlists"
msgstr "All Playlists"
#: ../../templates/browse_filters.inc.php:62
#: ../../templates/show_playlist_songs.inc.php:50
#: ../../templates/show_playlist_songs.inc.php:76
#: ../../templates/show_songs.inc.php:47 ../../templates/show_songs.inc.php:76
msgid "Song Title"
msgstr "Song Title"
#: ../../templates/browse_filters.inc.php:98
msgid "Toggle Artwork"
msgstr ""
#: ../../templates/error_page.inc.php:37
#, fuzzy
msgid "Ampache error page"
msgstr "Ampache Update"
#: ../../templates/error_page.inc.php:54
msgid ""
"The folowing error has occured, you will automaticly be redirected after 10 "
"seconds."
msgstr ""
#: ../../templates/error_page.inc.php:56
msgid "Error messages"
msgstr ""
#: ../../templates/footer.inc.php:31
msgid "Using Old Password Encryption, Please Reset your Password"
msgstr "Using Old Password Encryption, Please Reset your Password"
#: ../../templates/footer.inc.php:38
#: ../../templates/show_login_form.inc.php:108
#: ../../templates/show_lostpassword_form.inc.php:81
#: ../../templates/show_user_registration.inc.php:123
msgid "Queries:"
msgstr "Queries:"
#: ../../templates/footer.inc.php:38
#: ../../templates/show_login_form.inc.php:108
#: ../../templates/show_lostpassword_form.inc.php:82
#: ../../templates/show_user_registration.inc.php:123
msgid "Cache Hits:"
msgstr "Cache Hits:"
#: ../../templates/header.inc.php:76
msgid "Log out"
msgstr "Log out"
#: ../../templates/header.inc.php:92
msgid "Error Config File Out of Date"
msgstr "Error Config File Out of Date"
#: ../../templates/header.inc.php:93
#: ../../templates/show_admin_tools.inc.php:99
msgid "Generate New Config"
msgstr "Generate New Config"
#: ../../templates/install_header.inc.php:44
msgid "Ampache Installation"
msgstr "Ampache Installation"
#: ../../templates/install_header.inc.php:49
msgid "Requirements"
msgstr "Requirements"
#: ../../templates/install_header.inc.php:51
#, fuzzy
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 prerequisites:"
msgstr ""
"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"
#: ../../templates/install_header.inc.php:54
#, fuzzy
msgid ""
"A MySQL server with a username and password that can create/modify databases"
msgstr ""
"A MySQL Server with a username and password that can create/modify databases"
#: ../../templates/install_header.inc.php:55
#, fuzzy, php-format
msgid "Your webserver has read access to the files %s and %s"
msgstr ""
"Your webserver has read access to the /sql/ampache.sql file and the /config/"
"ampache.cfg.php.dist file"
#: ../../templates/install_header.inc.php:58
#, fuzzy, php-format
msgid ""
"Once you have ensured that the above requirements are met 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 ""
"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"
#: ../../templates/list_header.inc.php:109
msgid "Prev"
msgstr "Prev"
#: ../../templates/list_header.inc.php:110
#: ../../templates/show_localplay_control.inc.php:35
msgid "Next"
msgstr "Next"
#: ../../templates/rightbar.inc.php:32
#: ../../templates/show_democratic.inc.php:47
#: ../../templates/show_localplay_control.inc.php:34
#: ../../templates/show_manage_democratic.inc.php:64
msgid "Play"
msgstr "Play"
#: ../../templates/rightbar.inc.php:35
msgid "Add to Playlist"
msgstr "Add to Playlist"
#: ../../templates/rightbar.inc.php:38
msgid "Add to New Playlist"
msgstr "Add to New Playlist"
#: ../../templates/rightbar.inc.php:56
#: ../../templates/show_album_row.inc.php:58
#: ../../templates/show_artist_row.inc.php:43
#: ../../templates/show_playlist.inc.php:51
#: ../../templates/show_playlist.inc.php:52
#: ../../templates/show_playlist_row.inc.php:41
#: ../../templates/show_search_options.inc.php:38
#: ../../templates/show_search_options.inc.php:39
#: ../../templates/show_smartplaylist.inc.php:34
#: ../../templates/show_smartplaylist.inc.php:35
#: ../../templates/show_smartplaylist_row.inc.php:32
msgid "Batch Download"
msgstr "Batch Download"
#: ../../templates/rightbar.inc.php:61
#: ../../templates/show_democratic.inc.php:51
#: ../../templates/show_democratic.inc.php:52
#: ../../templates/show_localplay_status.inc.php:54
msgid "Clear Playlist"
msgstr "Clear Playlist"
#: ../../templates/rightbar.inc.php:64
msgid "Add Dynamic Items"
msgstr "Add Dynamic Items"
#: ../../templates/rightbar.inc.php:76
msgid "Related Tag"
msgstr "Related Tag"
#: ../../templates/rightbar.inc.php:119
msgid "More"
msgstr "More"
#: ../../templates/show_access_list.inc.php:35
#: ../../templates/sidebar_admin.inc.php:44
msgid "Access Control"
msgstr "Access Control"
#: ../../templates/show_access_list.inc.php:39
#: ../../templates/show_access_list.inc.php:40
msgid "Add Current Host"
msgstr "Add Current Host"
#: ../../templates/show_access_list.inc.php:43
#: ../../templates/show_access_list.inc.php:44
msgid "Add API / RPC Host"
msgstr "Add API / RPC Host"
#: ../../templates/show_access_list.inc.php:47
#: ../../templates/show_access_list.inc.php:48
msgid "Add Local Network Definition"
msgstr "Add Local Network Definition"
#: ../../templates/show_access_list.inc.php:50
#: ../../templates/show_access_list.inc.php:51
msgid "Advanced Add"
msgstr "Advanced Add"
#: ../../templates/show_access_list.inc.php:57
msgid "Access Control Entries"
msgstr "Access Control Entries"
#: ../../templates/show_access_list.inc.php:63
msgid "Start Address"
msgstr "Start Address"
#: ../../templates/show_access_list.inc.php:64
msgid "End Address"
msgstr "End Address"
#: ../../templates/show_access_list.inc.php:65
#: ../../templates/show_add_access.inc.php:35
#: ../../templates/show_create_democratic.inc.php:46
#: ../../templates/show_edit_access.inc.php:68
#: ../../templates/show_manage_democratic.inc.php:44
#: ../../templates/show_preference_admin.inc.php:39
#: ../../templates/show_preference_admin.inc.php:58
msgid "Level"
msgstr "Level"
#: ../../templates/show_access_list.inc.php:67
#: ../../templates/show_add_playlist.inc.php:38
msgid "Type"
msgstr "Type"
#: ../../templates/show_access_list.inc.php:68
#: ../../templates/show_admin_tools.inc.php:41
#: ../../templates/show_admin_tools.inc.php:81
#: ../../templates/show_artists.inc.php:53
#: ../../templates/show_artists.inc.php:81
#: ../../templates/show_democratic_playlist.inc.php:62
#: ../../templates/show_democratic_playlist.inc.php:102
#: ../../templates/show_flagged.inc.php:46
#: ../../templates/show_flagged.inc.php:65
#: ../../templates/show_live_streams.inc.php:48
#: ../../templates/show_live_streams.inc.php:70
#: ../../templates/show_localplay_controllers.inc.php:43
#: ../../templates/show_localplay_controllers.inc.php:74
#: ../../templates/show_localplay_instances.inc.php:36
#: ../../templates/show_localplay_playlist.inc.php:43
#: ../../templates/show_localplay_playlist.inc.php:69
#: ../../templates/show_manage_democratic.inc.php:47
#: ../../templates/show_manage_shoutbox.inc.php:46
#: ../../templates/show_manage_shoutbox.inc.php:70
#: ../../templates/show_playlist_songs.inc.php:61
#: ../../templates/show_playlist_songs.inc.php:85
#: ../../templates/show_plugins.inc.php:44
#: ../../templates/show_plugins.inc.php:80
#: ../../templates/show_recommended_artists.inc.php:49
#: ../../templates/show_recommended_artists.inc.php:77
#: ../../templates/show_song.inc.php:38 ../../templates/show_songs.inc.php:58
#: ../../templates/show_songs.inc.php:85 ../../templates/show_users.inc.php:53
#: ../../templates/show_users.inc.php:75
#: ../../templates/show_videos.inc.php:50
#: ../../templates/show_videos.inc.php:74
msgid "Action"
msgstr "Action"
#: ../../templates/show_access_list.inc.php:84
#: ../../templates/show_album_row.inc.php:62
#: ../../templates/show_artist_row.inc.php:47
#: ../../templates/show_live_stream_row.inc.php:39
#: ../../templates/show_playlist.inc.php:65
#: ../../templates/show_playlist.inc.php:66
#: ../../templates/show_playlist_row.inc.php:45
#: ../../templates/show_playlist_song_row.inc.php:48
#: ../../templates/show_shout_row.inc.php:39
#: ../../templates/show_smartplaylist.inc.php:44
#: ../../templates/show_smartplaylist.inc.php:45
#: ../../templates/show_smartplaylist_row.inc.php:36
#: ../../templates/show_song_row.inc.php:55
#: ../../templates/show_user_row.inc.php:46
msgid "Edit"
msgstr "Edit"
#: ../../templates/show_account.inc.php:41
#: ../../templates/show_add_user.inc.php:51
#: ../../templates/show_edit_user.inc.php:54
#: ../../templates/show_user_registration.inc.php:88
msgid "E-mail"
msgstr "E-mail"
#: ../../templates/show_account.inc.php:47
msgid "New Password"
msgstr "New Password"
#: ../../templates/show_account.inc.php:54
#: ../../templates/show_add_user.inc.php:68
#: ../../templates/show_edit_user.inc.php:71
#: ../../templates/show_install_account.inc.php:53
#: ../../templates/show_user_registration.inc.php:100
msgid "Confirm Password"
msgstr "Confirm Password"
#: ../../templates/show_account.inc.php:60
#: ../../templates/show_edit_user.inc.php:114
#: ../../templates/show_manage_catalogs.inc.php:41
msgid "Clear Stats"
msgstr "Clear Stats"
#: ../../templates/show_account.inc.php:70
msgid "Update Account"
msgstr "Update Account"
#: ../../templates/show_add_access.inc.php:24
#, fuzzy
msgid "Add Access Control List"
msgstr "Edit Access Control List"
#: ../../templates/show_add_access.inc.php:50
#: ../../templates/show_edit_access.inc.php:32
msgid "ACL Type"
msgstr "ACL Type"
#: ../../templates/show_add_access.inc.php:56
#: ../../templates/show_add_access.inc.php:57
#: ../../templates/show_add_access.inc.php:62
#: ../../templates/show_add_access.inc.php:63
#, php-format
msgid "%s + %s"
msgstr ""
#: ../../templates/show_add_access.inc.php:76
#: ../../templates/show_edit_access.inc.php:45
msgid "IPv4 or IPv6 Addresses"
msgstr "IPv4 or IPv6 Addresses"
#: ../../templates/show_add_access.inc.php:81
#: ../../templates/show_edit_access.inc.php:50
msgid "Start"
msgstr "Start"
#: ../../templates/show_add_access.inc.php:92
#: ../../templates/show_edit_access.inc.php:55
msgid "End"
msgstr "End"
#: ../../templates/show_add_access.inc.php:107
msgid "Create ACL"
msgstr "Create ACL"
#: ../../templates/show_add_catalog.inc.php:32
#: ../../templates/show_admin_tools.inc.php:89
#: ../../templates/sidebar_admin.inc.php:33
msgid "Add a Catalog"
msgstr "Add a Catalog"
#: ../../templates/show_add_catalog.inc.php:33
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 ""
"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)"
#: ../../templates/show_add_catalog.inc.php:38
msgid "Catalog Name"
msgstr "Catalog Name"
#: ../../templates/show_add_catalog.inc.php:41
#: ../../templates/show_edit_catalog.inc.php:37
msgid "Auto-inserted Fields"
msgstr "Auto-inserted Fields"
#: ../../templates/show_add_catalog.inc.php:42
#: ../../templates/show_edit_catalog.inc.php:38
msgid "album name"
msgstr "album name"
#: ../../templates/show_add_catalog.inc.php:43
#: ../../templates/show_edit_catalog.inc.php:39
msgid "artist name"
msgstr "artist name"
#: ../../templates/show_add_catalog.inc.php:44
#: ../../templates/show_edit_catalog.inc.php:40
msgid "id3 comment"
msgstr "id3 comment"
#: ../../templates/show_add_catalog.inc.php:45
#: ../../templates/show_edit_catalog.inc.php:41
msgid "track number (padded with leading 0)"
msgstr "track number (padded with leading 0)"
#: ../../templates/show_add_catalog.inc.php:46
#: ../../templates/show_edit_catalog.inc.php:42
msgid "song title"
msgstr "song title"
#: ../../templates/show_add_catalog.inc.php:47
#: ../../templates/show_edit_catalog.inc.php:43
msgid "year"
msgstr "year"
#: ../../templates/show_add_catalog.inc.php:48
#: ../../templates/show_edit_catalog.inc.php:44
msgid "other"
msgstr "other"
#: ../../templates/show_add_catalog.inc.php:53
#: ../../templates/show_catalogs.inc.php:42
#: ../../templates/show_catalogs.inc.php:66
#: ../../templates/show_stats.inc.php:72
msgid "Path"
msgstr "Path"
#: ../../templates/show_add_catalog.inc.php:57
#: ../../templates/show_edit_catalog.inc.php:48
msgid "Catalog Type"
msgstr "Catalog Type"
#: ../../templates/show_add_catalog.inc.php:60
msgid "Local"
msgstr "Local"
#: ../../templates/show_add_catalog.inc.php:61
msgid "Remote"
msgstr "Remote"
#: ../../templates/show_add_catalog.inc.php:66
#: ../../templates/show_edit_catalog.inc.php:52
#, fuzzy
msgid "Remote Catalog Username"
msgstr "Catalog Name"
#: ../../templates/show_add_catalog.inc.php:67
#: ../../templates/show_add_catalog.inc.php:71
#: ../../templates/show_edit_catalog.inc.php:53
#: ../../templates/show_edit_catalog.inc.php:57
msgid "Required for Remote Catalogs"
msgstr "Required for Remote Catalogs"
#: ../../templates/show_add_catalog.inc.php:70
#: ../../templates/show_edit_catalog.inc.php:56
#, fuzzy
msgid "Remote Catalog Password"
msgstr "Password"
#: ../../templates/show_add_catalog.inc.php:74
msgid "Filename Pattern"
msgstr "Filename Pattern"
#: ../../templates/show_add_catalog.inc.php:79
#: ../../templates/show_edit_catalog.inc.php:67
msgid "Folder Pattern"
msgstr "Folder Pattern"
#: ../../templates/show_add_catalog.inc.php:79
#: ../../templates/show_edit_catalog.inc.php:67
msgid "(no leading or ending '/')"
msgstr "(no leading or ending '/')"
#: ../../templates/show_add_catalog.inc.php:84
#: ../../templates/show_admin_tools.inc.php:91
msgid "Gather Album Art"
msgstr "Gather Album Art"
#: ../../templates/show_add_catalog.inc.php:88
msgid "Build Playlists from m3u Files"
msgstr "Build Playlists from m3u Files"
#: ../../templates/show_add_catalog.inc.php:95
msgid "Add Catalog"
msgstr "Add Catalog"
#: ../../templates/show_add_live_stream.inc.php:30
#: ../../templates/show_live_stream.inc.php:34
msgid "Add Radio Station"
msgstr "Add Radio Station"
#: ../../templates/show_add_live_stream.inc.php:41
#: ../../templates/show_edit_live_stream_row.inc.php:36
msgid "Homepage"
msgstr "Homepage"
#: ../../templates/show_add_live_stream.inc.php:48
#: ../../templates/show_edit_live_stream_row.inc.php:35
msgid "Stream URL"
msgstr "Stream URL"
#: ../../templates/show_add_live_stream.inc.php:55
#: ../../templates/show_edit_live_stream_row.inc.php:38
#: ../../templates/show_live_streams.inc.php:46
#: ../../templates/show_live_streams.inc.php:68
msgid "Frequency"
msgstr "Frequency"
#: ../../templates/show_add_live_stream.inc.php:61
#: ../../templates/show_edit_live_stream_row.inc.php:37
#: ../../templates/show_live_streams.inc.php:45
#: ../../templates/show_live_streams.inc.php:67
msgid "Callsign"
msgstr "Callsign"
#. HINT: Artist Fullname
#: ../../templates/show_add_live_stream.inc.php:75
#: ../../templates/show_admin_tools.inc.php:52
#: ../../templates/show_album.inc.php:59
#: ../../templates/show_album_row.inc.php:31
#: ../../templates/show_albums.inc.php:48
#: ../../templates/show_albums.inc.php:79
#: ../../templates/show_artist.inc.php:57
#: ../../templates/show_artist_row.inc.php:31
#: ../../templates/show_artists.inc.php:46
#: ../../templates/show_artists.inc.php:74
#: ../../templates/show_catalog_row.inc.php:37
#: ../../templates/show_live_stream.inc.php:34
#: ../../templates/show_live_stream_row.inc.php:31
#: ../../templates/show_live_streams.inc.php:43
#: ../../templates/show_live_streams.inc.php:65
#: ../../templates/show_playlist_row.inc.php:31
#: ../../templates/show_playlist_song_row.inc.php:30
#: ../../templates/show_playlists.inc.php:41
#: ../../templates/show_playlists.inc.php:64
#: ../../templates/show_recently_played.inc.php:42
#: ../../templates/show_recently_played.inc.php:93
#: ../../templates/show_recently_played.inc.php:112
#: ../../templates/show_recommended_artists.inc.php:42
#: ../../templates/show_recommended_artists.inc.php:70
#: ../../templates/show_shoutbox.inc.php:42
#: ../../templates/show_smartplaylist_row.inc.php:24
#: ../../templates/show_smartplaylists.inc.php:35
#: ../../templates/show_smartplaylists.inc.php:56
#: ../../templates/show_song.inc.php:40
#: ../../templates/show_song_row.inc.php:31
#: ../../templates/show_songs.inc.php:46 ../../templates/show_songs.inc.php:75
#: ../../templates/show_video_row.inc.php:31
#: ../../templates/show_videos.inc.php:44
#: ../../templates/show_videos.inc.php:68
msgid "Add"
msgstr "Add"
#: ../../templates/show_add_playlist.inc.php:30
msgid "Create a new playlist"
msgstr "Create a new playlist"
#: ../../templates/show_add_playlist.inc.php:48
#: ../../templates/show_add_shout.inc.php:49
msgid "Create"
msgstr "Create"
#: ../../templates/show_add_shout.inc.php:30
msgid "Post to Shoutbox"
msgstr "Post to Shoutbox"
#: ../../templates/show_add_shout.inc.php:34
#: ../../templates/show_edit_shout.inc.php:38
msgid "Comment:"
msgstr "Comment:"
#: ../../templates/show_add_shout.inc.php:41
#: ../../templates/show_edit_shout.inc.php:44
msgid "Make Sticky"
msgstr "Make Sticky"
#: ../../templates/show_add_user.inc.php:30
msgid "Adding a New User"
msgstr "Adding a New User"
#: ../../templates/show_add_user.inc.php:36
#: ../../templates/show_edit_user.inc.php:39
#: ../../templates/show_install_account.inc.php:45
#: ../../templates/show_login_form.inc.php:66
#: ../../templates/show_now_playing_row.inc.php:36
#: ../../templates/show_recently_played.inc.php:46
#: ../../templates/show_recently_played.inc.php:113
#: ../../templates/show_user_registration.inc.php:76
#: ../../templates/show_users.inc.php:46 ../../templates/show_users.inc.php:68
msgid "Username"
msgstr "Username"
#: ../../templates/show_add_user.inc.php:44
#: ../../templates/show_edit_user.inc.php:47
#: ../../templates/show_user.inc.php:37
#: ../../templates/show_user_registration.inc.php:82
msgid "Full Name"
msgstr "Full Name"
#: ../../templates/show_add_user.inc.php:76
#: ../../templates/show_edit_user.inc.php:79
msgid "User Access Level"
msgstr "User Access Level"
#: ../../templates/show_add_user.inc.php:92
#: ../../templates/sidebar_admin.inc.php:40
msgid "Add User"
msgstr "Add User"
#: ../../templates/show_adds_catalog.inc.php:29
#, fuzzy
msgid "Starting New Song Search"
msgstr "Starting New Song Search on %s catalog"
#. HINT: Catalog Name
#: ../../templates/show_adds_catalog.inc.php:31
#, php-format
msgid "Starting New Song Search on %s catalog"
msgstr "Starting New Song Search on %s catalog"
#: ../../templates/show_adds_catalog.inc.php:33
#: ../../templates/show_run_add_catalog.inc.php:31
msgid "Found"
msgstr "Found"
#: ../../templates/show_adds_catalog.inc.php:34
#: ../../templates/show_clean_catalog.inc.php:34
#: ../../templates/show_gather_art.inc.php:32
#: ../../templates/show_run_add_catalog.inc.php:32
#: ../../templates/show_verify_catalog.inc.php:36
msgid "Reading"
msgstr "Reading"
#: ../../templates/show_admin_info.inc.php:38
msgid "Last Ten Flagged Records"
msgstr "Last Ten Flagged Records"
#: ../../templates/show_admin_info.inc.php:42
#: ../../templates/show_mail_users.inc.php:86
msgid "Disabled Songs"
msgstr "Disabled Songs"
#: ../../templates/show_admin_info.inc.php:46
#: ../../templates/show_ip_history.inc.php:39
msgid "Show All"
msgstr "Show All"
#: ../../templates/show_admin_tools.inc.php:54
#: ../../templates/show_catalog_row.inc.php:38
msgid "Verify"
msgstr "Verify"
#: ../../templates/show_admin_tools.inc.php:56
#: ../../templates/show_catalog_row.inc.php:39
msgid "Clean"
msgstr "Clean"
#: ../../templates/show_admin_tools.inc.php:66
msgid "Fast"
msgstr "Fast"
#: ../../templates/show_admin_tools.inc.php:75
msgid "No Catalogs Found"
msgstr "No Catalogs Found"
#: ../../templates/show_admin_tools.inc.php:85
#: ../../templates/show_manage_catalogs.inc.php:39
msgid "Clean All"
msgstr "Clean All"
#: ../../templates/show_admin_tools.inc.php:86
#: ../../templates/show_manage_catalogs.inc.php:38
msgid "Verify All"
msgstr "Verify All"
#: ../../templates/show_admin_tools.inc.php:87
#: ../../templates/show_manage_catalogs.inc.php:37
msgid "Add to All"
msgstr "Add to All"
#: ../../templates/show_admin_tools.inc.php:88
#: ../../templates/show_manage_catalogs.inc.php:40
msgid "Update All"
msgstr "Update All"
#: ../../templates/show_admin_tools.inc.php:90
msgid "Clear Catalog Stats"
msgstr "Clear Catalog Stats"
#: ../../templates/show_admin_tools.inc.php:95
#: ../../templates/sidebar_admin.inc.php:50
#: ../../templates/sidebar_modules.inc.php:38
msgid "Other Tools"
msgstr "Other Tools"
#: ../../templates/show_admin_tools.inc.php:97
msgid "Show Duplicate Songs"
msgstr "Show Duplicate Songs"
#: ../../templates/show_admin_tools.inc.php:98
#: ../../templates/sidebar_admin.inc.php:53
msgid "Clear Now Playing"
msgstr "Clear Now Playing"
#: ../../templates/show_admin_tools.inc.php:100
msgid "Preferences Permissions"
msgstr "Preferences Permissions"
#: ../../templates/show_admin_tools.inc.php:101
msgid "Export To Itunes DB"
msgstr "Export To Itunes DB"
#: ../../templates/show_admin_tools.inc.php:102
msgid "Show Inactive Users"
msgstr "Show Inactive Users"
#: ../../templates/show_admin_tools.inc.php:103
msgid "Check for New Version"
msgstr "Check for New Version"
#: ../../templates/show_album.inc.php:56
#: ../../templates/show_albums.inc.php:58
#: ../../templates/show_albums.inc.php:89
#: ../../templates/show_artist.inc.php:42
#: ../../templates/show_catalogs.inc.php:46
#: ../../templates/show_catalogs.inc.php:70
#: ../../templates/show_playlists.inc.php:46
#: ../../templates/show_playlists.inc.php:69
#: ../../templates/show_smartplaylists.inc.php:39
#: ../../templates/show_smartplaylists.inc.php:60
msgid "Actions"
msgstr "Actions"
#: ../../templates/show_album.inc.php:60
msgid "Add Album"
msgstr "Add Album"
#: ../../templates/show_album.inc.php:64
msgid "Add Random from Album"
msgstr "Add Random from Album"
#: ../../templates/show_album.inc.php:68 ../../templates/show_album.inc.php:69
msgid "Reset Album Art"
msgstr "Reset Album Art"
#: ../../templates/show_album.inc.php:73 ../../templates/show_album.inc.php:74
msgid "Find Album Art"
msgstr "Find Album Art"
#: ../../templates/show_album.inc.php:78 ../../templates/show_album.inc.php:79
#: ../../templates/show_artist.inc.php:67
#: ../../templates/show_artist.inc.php:68
msgid "Update from tags"
msgstr "Update from tags"
#: ../../templates/show_album.inc.php:84 ../../templates/show_album.inc.php:85
#: ../../templates/show_artist.inc.php:73
#: ../../templates/show_artist.inc.php:74
#: ../../templates/show_install_config.inc.php:69
#: ../../templates/show_playlist_song_row.inc.php:44
#: ../../templates/show_song.inc.php:43
#: ../../templates/show_song_row.inc.php:51
#: ../../templates/show_video_row.inc.php:40
msgid "Download"
msgstr "Download"
#: ../../templates/show_album_art.inc.php:34
#, fuzzy
msgid "Select New Album Art"
msgstr "Reset Album Art"
#: ../../templates/show_album_art.inc.php:48
#: ../../templates/show_big_art.inc.php:36
msgid "Album Art"
msgstr "Album Art"
#: ../../templates/show_album_art.inc.php:54
msgid "Invalid"
msgstr "Invalid"
#: ../../templates/show_album_art.inc.php:56
#: ../../templates/show_disabled_songs.inc.php:42
#: ../../templates/show_disabled_songs.inc.php:65
msgid "Select"
msgstr "Select"
#: ../../templates/show_album_row.inc.php:53
#: ../../templates/show_song_row.inc.php:46
msgid "Post Shout"
msgstr "Post Shout"
#: ../../templates/show_albums.inc.php:50
#: ../../templates/show_albums.inc.php:81
msgid "Cover"
msgstr "Cover"
#: ../../templates/show_albums.inc.php:56
#: ../../templates/show_albums.inc.php:87
#: ../../templates/show_artists.inc.php:51
#: ../../templates/show_artists.inc.php:79
#: ../../templates/show_recommended_artists.inc.php:47
#: ../../templates/show_recommended_artists.inc.php:75
#: ../../templates/show_songs.inc.php:50 ../../templates/show_songs.inc.php:79
#: ../../templates/show_stats.inc.php:42
#: ../../templates/show_videos.inc.php:49
#: ../../templates/show_videos.inc.php:73
msgid "Tags"
msgstr "Tags"
#: ../../templates/show_all_popular.inc.php:33
#: ../../templates/show_mail_users.inc.php:65
#: ../../templates/show_stats_popular.inc.php:39
msgid "Most Popular Artists"
msgstr "Most Popular Artists"
#: ../../templates/show_all_popular.inc.php:36
#: ../../templates/show_mail_users.inc.php:54
#: ../../templates/show_stats_popular.inc.php:33
msgid "Most Popular Albums"
msgstr "Most Popular Albums"
#: ../../templates/show_all_popular.inc.php:39
msgid "Most Popular Genres"
msgstr "Most Popular Genres"
#: ../../templates/show_all_popular.inc.php:45
#: ../../templates/show_mail_users.inc.php:76
msgid "Most Popular Songs"
msgstr "Most Popular Songs"
#: ../../templates/show_all_popular.inc.php:48
msgid "Most Popular Live Streams"
msgstr "Most Popular Live Streams"
#: ../../templates/show_all_popular.inc.php:51
msgid "Most Popular Tags"
msgstr "Most Popular Tags"
#: ../../templates/show_artist.inc.php:47
#: ../../templates/show_artist.inc.php:48
#, php-format
msgid "Show All Songs By %s"
msgstr "Show All Songs By %s"
#: ../../templates/show_artist.inc.php:51
#: ../../templates/show_artist.inc.php:52
#, fuzzy, php-format
msgid "Show Albums By %s"
msgstr "Albums by %s"
#: ../../templates/show_artist.inc.php:58
#, php-format
msgid "Add All Songs By %s"
msgstr "Add All Songs By %s"
#: ../../templates/show_artist.inc.php:63
#, php-format
msgid "Add Random Songs By %s"
msgstr "Add Random Songs By %s"
#: ../../templates/show_artist.inc.php:78
msgid "Show Art"
msgstr "Show Art"
#: ../../templates/show_artists.inc.php:50
#: ../../templates/show_artists.inc.php:78
#: ../../templates/show_democratic_playlist.inc.php:67
#: ../../templates/show_democratic_playlist.inc.php:107
#: ../../templates/show_playlist_songs.inc.php:55
#: ../../templates/show_playlist_songs.inc.php:81
#: ../../templates/show_recommended_artists.inc.php:46
#: ../../templates/show_recommended_artists.inc.php:74
#: ../../templates/show_songs.inc.php:52 ../../templates/show_songs.inc.php:81
#: ../../templates/show_videos.inc.php:48
#: ../../templates/show_videos.inc.php:72
msgid "Time"
msgstr "Time"
#: ../../templates/show_big_art.inc.php:40
msgid "Click to close window"
msgstr "Click to close window"
#: ../../templates/show_catalog_row.inc.php:40
#: ../../templates/show_create_democratic.inc.php:67
#: ../../templates/show_edit_access.inc.php:80
#: ../../templates/show_edit_shout.inc.php:48
#: ../../templates/show_manage_catalogs.inc.php:50
#: ../../templates/show_preference_admin.inc.php:63
msgid "Update"
msgstr "Update"
#: ../../templates/show_catalogs.inc.php:43
#: ../../templates/show_catalogs.inc.php:67
#: ../../templates/show_stats.inc.php:73
msgid "Last Verify"
msgstr "Last Verify"
#: ../../templates/show_catalogs.inc.php:44
#: ../../templates/show_catalogs.inc.php:68
#: ../../templates/show_stats.inc.php:74
msgid "Last Add"
msgstr "Last Add"
#: ../../templates/show_catalogs.inc.php:45
#: ../../templates/show_catalogs.inc.php:69
#: ../../templates/show_stats.inc.php:75
msgid "Last Clean"
msgstr "Last Clean"
#. HINT: Catalog Name
#: ../../templates/show_clean_catalog.inc.php:31
#, php-format
msgid "Cleaning the %s Catalog"
msgstr "Cleaning the %s Catalog"
#: ../../templates/show_clean_catalog.inc.php:33
msgid "Checking"
msgstr "Checking"
#: ../../templates/show_confirmation.inc.php:35
#: ../../templates/show_update_items.inc.php:34
msgid "Continue"
msgstr "Continue"
#: ../../templates/show_confirmation.inc.php:40
msgid "Cancel"
msgstr "Cancel"
#: ../../templates/show_create_democratic.inc.php:29
#: ../../templates/show_democratic.inc.php:42
#: ../../templates/show_democratic.inc.php:43
msgid "Configure Democratic Playlist"
msgstr "Configure Democratic Playlist"
#: ../../templates/show_create_democratic.inc.php:37
#: ../../templates/show_manage_democratic.inc.php:42
msgid "Base Playlist"
msgstr "Base Playlist"
#: ../../templates/show_create_democratic.inc.php:41
msgid "Cooldown Time"
msgstr "Cooldown Time"
#: ../../templates/show_create_democratic.inc.php:56
msgid "Make Default"
msgstr "Make Default"
#: ../../templates/show_create_democratic.inc.php:61
msgid "Force Democratic Play"
msgstr "Force Democratic Play"
#: ../../templates/show_debug.inc.php:30
msgid "Debug Tools"
msgstr "Debug Tools"
#: ../../templates/show_debug.inc.php:34 ../../templates/show_debug.inc.php:35
msgid "Generate Configuration"
msgstr "Generate Configuration"
#: ../../templates/show_debug.inc.php:38 ../../templates/show_debug.inc.php:39
msgid "Set Database Charset"
msgstr "Set Database Charset"
#: ../../templates/show_debug.inc.php:44
msgid "PHP Settings"
msgstr "PHP Settings"
#: ../../templates/show_debug.inc.php:51
msgid "Setting"
msgstr "Setting"
#: ../../templates/show_debug.inc.php:52
#: ../../templates/show_debug.inc.php:101
#: ../../templates/show_dynamic.inc.php:41
#: ../../templates/show_preference_box.inc.php:48
#: ../../templates/show_preference_box.inc.php:78
#: ../../templates/show_user_preferences.inc.php:44
msgid "Value"
msgstr "Value"
#: ../../templates/show_debug.inc.php:55
msgid "Memory Limit"
msgstr "Memory Limit"
#: ../../templates/show_debug.inc.php:59
msgid "Maximum Execution Time"
msgstr "Maximum Execution Time"
#: ../../templates/show_debug.inc.php:63
msgid "Override Execution Time"
msgstr "Override Execution Time"
#: ../../templates/show_debug.inc.php:64
msgid "Failed"
msgstr "Failed"
#: ../../templates/show_debug.inc.php:64
msgid "Succeeded"
msgstr "Succeeded"
#: ../../templates/show_debug.inc.php:67
msgid "Safe Mode"
msgstr "Safe Mode"
#: ../../templates/show_debug.inc.php:75
msgid "Zlib Support"
msgstr "Zlib Support"
#: ../../templates/show_debug.inc.php:79
msgid "GD Support"
msgstr "GD Support"
#: ../../templates/show_debug.inc.php:83
msgid "Iconv Support"
msgstr "Iconv Support"
#: ../../templates/show_debug.inc.php:87
msgid "Gettext Support"
msgstr "Gettext Support"
#: ../../templates/show_debug.inc.php:93
msgid "Current Configuration"
msgstr "Current Configuration"
#: ../../templates/show_debug.inc.php:100
#: ../../templates/show_preference_admin.inc.php:38
#: ../../templates/show_preference_admin.inc.php:57
#: ../../templates/show_preference_box.inc.php:47
#: ../../templates/show_preference_box.inc.php:77
#: ../../templates/show_user_preferences.inc.php:43
msgid "Preference"
msgstr "Preference"
#. HINT: Democratic Name
#: ../../templates/show_democratic.inc.php:30
#, php-format
msgid "%s Playlist"
msgstr "%s Playlist"
#: ../../templates/show_democratic.inc.php:37
#: ../../templates/show_manage_democratic.inc.php:43
msgid "Cooldown"
msgstr "Cooldown"
#: ../../templates/show_democratic.inc.php:48
msgid "Play Democratic Playlist"
msgstr "Play Democratic Playlist"
#: ../../templates/show_democratic_playlist.inc.php:50
msgid "Playing from base Playlist"
msgstr "Playing from base Playlist"
#: ../../templates/show_democratic_playlist.inc.php:63
#: ../../templates/show_democratic_playlist.inc.php:103
msgid "Votes"
msgstr "Votes"
#: ../../templates/show_democratic_playlist.inc.php:82
msgid "Remove Vote"
msgstr "Remove Vote"
#: ../../templates/show_democratic_playlist.inc.php:84
msgid "Add Vote"
msgstr "Add Vote"
#: ../../templates/show_denied.inc.php:39
#: ../../templates/sidebar_localplay.inc.php:74
msgid "Access Denied"
msgstr "Access Denied"
#: ../../templates/show_denied.inc.php:40
#: ../../templates/show_denied.inc.php:46
#, fuzzy
msgid "This event has been logged."
msgstr "This event has been logged"
#: ../../templates/show_denied.inc.php:44
#, fuzzy
msgid ""
"You have been redirected to this page because you do not have access to this "
"function."
msgstr ""
"You've been redirected to this page because you do not have access to this "
"function."
#: ../../templates/show_denied.inc.php:45
msgid ""
"If you believe this is an error please contact an Ampache administrator."
msgstr ""
"If you believe this is an error please contact an Ampache administrator."
#: ../../templates/show_denied.inc.php:48
#, fuzzy
msgid ""
"You have been redirected to this page because you attempted to access a "
"function that is disabled in the demo."
msgstr ""
"You've been redirected to this page because you've attempted to access a "
"function that is disabled in the demo."
#: ../../templates/show_disabled_songs.inc.php:47
#: ../../templates/show_disabled_songs.inc.php:70
msgid "Addition Time"
msgstr "Addition Time"
#: ../../templates/show_disabled_songs.inc.php:61
#: ../../templates/show_flagged.inc.php:56
#: ../../templates/show_localplay_controllers.inc.php:67
#: ../../templates/show_localplay_playlist.inc.php:63
#: ../../templates/show_manage_shoutbox.inc.php:61
#: ../../templates/show_plugins.inc.php:73
msgid "No Records Found"
msgstr "No Records Found"
#: ../../templates/show_duplicate.inc.php:30
#: ../../templates/show_duplicate.inc.php:49
#: ../../templates/sidebar_modules.inc.php:40
msgid "Find Duplicates"
msgstr "Find Duplicates"
#: ../../templates/show_duplicate.inc.php:34
msgid "Search Type"
msgstr "Search Type"
#: ../../templates/show_duplicate.inc.php:41
msgid "Artist and Title"
msgstr "Artist and Title"
#: ../../templates/show_duplicate.inc.php:42
msgid "Artist, Album and Title"
msgstr "Artist, Album and Title"
#: ../../templates/show_duplicate.inc.php:44
msgid "Search Disabled Songs"
msgstr "Search Disabled Songs"
#: ../../templates/show_duplicates.inc.php:30
msgid "Duplicate Songs"
msgstr "Duplicate Songs"
#: ../../templates/show_duplicates.inc.php:45
#: ../../templates/show_duplicates.inc.php:84
#: ../../templates/show_lyrics_song.inc.php:49
#: ../../templates/show_now_playing_row.inc.php:61
#: ../../templates/show_recently_played.inc.php:43
#: ../../templates/show_recently_played.inc.php:114
msgid "Song"
msgstr "Song"
#: ../../templates/show_duplicates.inc.php:48
#: ../../templates/show_duplicates.inc.php:87
#: ../../templates/show_random.inc.php:61 ../../templates/show_song.inc.php:56
msgid "Length"
msgstr "Length"
#: ../../templates/show_duplicates.inc.php:50
#: ../../templates/show_duplicates.inc.php:89
msgid "Size"
msgstr "Size"
#: ../../templates/show_dynamic.inc.php:30
msgid "Advanced Random Rules"
msgstr "Advanced Random Rules"
#: ../../templates/show_dynamic.inc.php:39
msgid "Field"
msgstr "Field"
#: ../../templates/show_dynamic.inc.php:40
msgid "Operator"
msgstr "Operator"
#: ../../templates/show_dynamic.inc.php:42
msgid "Method"
msgstr "Method"
#: ../../templates/show_dynamic.inc.php:64
msgid "Like"
msgstr "Like"
#: ../../templates/show_dynamic.inc.php:72
#: ../../templates/show_edit_song.inc.php:48
#: ../../templates/show_edit_song.inc.php:56
#: ../../templates/show_rename_artist.inc.php:40
msgid "OR"
msgstr "OR"
#: ../../templates/show_dynamic.inc.php:73
msgid "AND"
msgstr "AND"
#: ../../templates/show_dynamic.inc.php:79
msgid "Add Rule"
msgstr "Add Rule"
#: ../../templates/show_dynamic.inc.php:82
msgid "Save Rules As"
msgstr "Save Rules As"
#: ../../templates/show_dynamic.inc.php:85
msgid "Load Saved Rules"
msgstr "Load Saved Rules"
#: ../../templates/show_edit_access.inc.php:24
msgid "Edit Access Control List"
msgstr "Edit Access Control List"
#: ../../templates/show_edit_album.inc.php:31
msgid "Edit Album"
msgstr "Edit Album"
#: ../../templates/show_edit_album.inc.php:49
#: ../../templates/show_edit_artist.inc.php:43
#: ../../templates/show_edit_song.inc.php:81
msgid "Flag for Retagging"
msgstr "Flag for Retagging"
#: ../../templates/show_edit_album.inc.php:55
msgid "Update Album"
msgstr "Update Album"
#: ../../templates/show_edit_album_row.inc.php:56
#: ../../templates/show_edit_artist_row.inc.php:40
#: ../../templates/show_edit_live_stream_row.inc.php:60
#: ../../templates/show_edit_playlist_row.inc.php:46
#: ../../templates/show_edit_playlist_song_row.inc.php:46
#: ../../templates/show_edit_playlist_title.inc.php:45
#: ../../templates/show_edit_smartplaylist_row.inc.php:39
#: ../../templates/show_edit_smartplaylist_title.inc.php:38
#: ../../templates/show_edit_song_row.inc.php:53
#: ../../templates/show_smartplaylist.inc.php:62
msgid "Save Changes"
msgstr "Save Changes"
#: ../../templates/show_edit_artist.inc.php:31
msgid "Edit Artist"
msgstr "Edit Artist"
#: ../../templates/show_edit_artist.inc.php:49
msgid "Update Artist"
msgstr "Update Artist"
#. HINT: Catalog Name
#: ../../templates/show_edit_catalog.inc.php:30
#, php-format
msgid "Settings for %s"
msgstr "Settings for %s"
#: ../../templates/show_edit_catalog.inc.php:60
msgid "Filename pattern"
msgstr "Filename pattern"
#: ../../templates/show_edit_catalog.inc.php:77
msgid "Save Catalog Settings"
msgstr "Save Catalog Settings"
#: ../../templates/show_edit_playlist_row.inc.php:40
#: ../../templates/show_edit_playlist_title.inc.php:39
#: ../../templates/show_edit_smartplaylist_row.inc.php:33
#: ../../templates/show_edit_smartplaylist_title.inc.php:32
msgid "Public"
msgstr "Public"
#: ../../templates/show_edit_shout.inc.php:30
msgid "Edit existing Shoutbox Post"
msgstr "Edit existing Shoutbox Post"
#. HINT: Client link, Object link
#: ../../templates/show_edit_shout.inc.php:35
#, php-format
msgid "Created by: %s for %s"
msgstr "Created by: %s for %s"
#: ../../templates/show_edit_song.inc.php:31
msgid "Edit Song"
msgstr "Edit Song"
#: ../../templates/show_edit_song.inc.php:35
msgid "File"
msgstr "File"
#: ../../templates/show_edit_song.inc.php:61
#: ../../templates/show_localplay_playlist.inc.php:41
#: ../../templates/show_localplay_playlist.inc.php:67
#: ../../templates/show_playlist_songs.inc.php:49
#: ../../templates/show_playlist_songs.inc.php:54
#: ../../templates/show_playlist_songs.inc.php:75
#: ../../templates/show_playlist_songs.inc.php:80
#: ../../templates/show_songs.inc.php:51 ../../templates/show_songs.inc.php:80
msgid "Track"
msgstr "Track"
#: ../../templates/show_edit_song.inc.php:88
msgid "Update Song"
msgstr "Update Song"
#: ../../templates/show_edit_user.inc.php:30
msgid "Editing existing User"
msgstr "Editing existing User"
#: ../../templates/show_edit_user.inc.php:35
msgid "User Properties"
msgstr "User Properties"
#: ../../templates/show_edit_user.inc.php:93
msgid "Other Options"
msgstr "Other Options"
#: ../../templates/show_edit_user.inc.php:96
msgid "Config Preset"
msgstr "Config Preset"
#: ../../templates/show_edit_user.inc.php:102
msgid "Flash"
msgstr "Flash"
#: ../../templates/show_edit_user.inc.php:108
msgid "Prevent Preset Override"
msgstr "Prevent Preset Override"
#: ../../templates/show_edit_user.inc.php:110
msgid "This Affects all non-Admin accounts"
msgstr "This Affects all non-Admin accounts"
#: ../../templates/show_edit_user.inc.php:122
msgid "Update User"
msgstr "Update User"
#: ../../templates/show_export.inc.php:34
#: ../../templates/sidebar_admin.inc.php:54
msgid "Export Catalog"
msgstr "Export Catalog"
#: ../../templates/show_export.inc.php:57
msgid "Format"
msgstr "Format"
#: ../../templates/show_export.inc.php:67
msgid "Export"
msgstr "Export"
#: ../../templates/show_flag_row.inc.php:38
msgid "Reject"
msgstr "Reject"
#: ../../templates/show_flagged.inc.php:41
#: ../../templates/show_flagged.inc.php:60
#: ../../templates/show_manage_shoutbox.inc.php:41
#: ../../templates/show_manage_shoutbox.inc.php:65
msgid "Object"
msgstr "Object"
#: ../../templates/show_flagged.inc.php:43
#: ../../templates/show_flagged.inc.php:62
msgid "Flag"
msgstr "Flag"
#: ../../templates/show_flagged.inc.php:45
#: ../../templates/show_flagged.inc.php:64
msgid "Status"
msgstr "Status"
#: ../../templates/show_gather_art.inc.php:29
#, fuzzy
msgid "Album Art Search"
msgstr "Album Art Cleared"
#: ../../templates/show_gather_art.inc.php:31
msgid "Searched"
msgstr "Searched"
#: ../../templates/show_get_albumart.inc.php:30
msgid "Customize Search"
msgstr "Customize Search"
#: ../../templates/show_get_albumart.inc.php:51
msgid "Direct URL to Image"
msgstr "Direct URL to Image"
#: ../../templates/show_get_albumart.inc.php:59
msgid "Local Image"
msgstr "Local Image"
#: ../../templates/show_get_albumart.inc.php:70
msgid "Get Art"
msgstr "Get Art"
#: ../../templates/show_import_playlist.inc.php:30
msgid "Importing a Playlist from a File"
msgstr "Importing a Playlist from a File"
#: ../../templates/show_import_playlist.inc.php:41
msgid "Playlist Type"
msgstr "Playlist Type"
#: ../../templates/show_import_playlist.inc.php:53
msgid "Import Playlist"
msgstr "Import Playlist"
#: ../../templates/show_index.inc.php:39
#: ../../templates/show_random_albums.inc.php:32
msgid "Albums of the Moment"
msgstr "Albums of the Moment"
#: ../../templates/show_index.inc.php:39
msgid "Loading..."
msgstr "Loading..."
#: ../../templates/show_install.inc.php:33
#: ../../templates/show_install_account.inc.php:33
#: ../../templates/show_install_config.inc.php:33
#, fuzzy
msgid "Step 1 - Create the Ampache database"
msgstr "Step 1 - Creating and Inserting the Ampache Database"
#: ../../templates/show_install.inc.php:35
#, fuzzy
msgid ""
"This step creates and inserts the Ampache database, so please provide a "
"MySQL account with database creation rights. This step may take some time on "
"slower computers."
msgstr ""
"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"
#: ../../templates/show_install.inc.php:37
#: ../../templates/show_install_account.inc.php:34
#: ../../templates/show_install_config.inc.php:34
#, fuzzy
msgid "Step 2 - Create ampache.cfg.php"
msgstr "Step 2 - Creating the ampache.cfg.php file"
#: ../../templates/show_install.inc.php:38
#: ../../templates/show_install_account.inc.php:35
#: ../../templates/show_install_config.inc.php:38
#, fuzzy
msgid "Step 3 - Set up the initial account"
msgstr "Step 3 - Setup Initial Account"
#: ../../templates/show_install.inc.php:42
msgid "Insert Ampache Database"
msgstr "Insert Ampache Database"
#: ../../templates/show_install.inc.php:46
msgid "Desired Database Name"
msgstr "Desired Database Name"
#: ../../templates/show_install.inc.php:50
#: ../../templates/show_install_config.inc.php:55
msgid "MySQL Hostname"
msgstr "MySQL Hostname"
#: ../../templates/show_install.inc.php:54
msgid "MySQL Administrative Username"
msgstr "MySQL Administrative Username"
#: ../../templates/show_install.inc.php:58
msgid "MySQL Administrative Password"
msgstr "MySQL Administrative Password"
#: ../../templates/show_install.inc.php:62
msgid "Create Database User for New Database"
msgstr "Create Database User for New Database"
#: ../../templates/show_install.inc.php:66
msgid "Ampache Database Username"
msgstr "Ampache Database Username"
#: ../../templates/show_install.inc.php:70
msgid "Ampache Database User Password"
msgstr "Ampache Database User Password"
#: ../../templates/show_install.inc.php:74
msgid "Overwrite Existing"
msgstr "Overwrite Existing"
#: ../../templates/show_install.inc.php:78
msgid "Use Existing Database"
msgstr "Use Existing Database"
#: ../../templates/show_install.inc.php:83
msgid "Insert Database"
msgstr "Insert Database"
#: ../../templates/show_install_account.inc.php:37
#, fuzzy
msgid ""
"This step creates your initial Ampache admin account. Once your admin "
"account has been created you will be redirected to the login page."
msgstr ""
"This step creates your initial Ampache admin account. Once your admin "
"account has been created you will be directed to the login page"
#: ../../templates/show_install_account.inc.php:41
msgid "Create Admin Account"
msgstr "Create Admin Account"
#: ../../templates/show_install_account.inc.php:58
msgid "Create Account"
msgstr "Create Account"
#: ../../templates/show_install_check.inc.php:31
msgid "Required"
msgstr "Required"
#: ../../templates/show_install_check.inc.php:34
#: ../../templates/show_install_check.inc.php:39
#: ../../templates/show_install_check.inc.php:48
#: ../../templates/show_install_check.inc.php:53
#, fuzzy, php-format
msgid "%s is readable"
msgstr "%s is not readable by ampache"
#: ../../templates/show_install_check.inc.php:62
#: ../../templates/show_install_check.inc.php:75
msgid "PHP Version"
msgstr "PHP Version"
#: ../../templates/show_install_check.inc.php:73
#: ../../templates/show_test.inc.php:58
msgid "Hash Function Exists"
msgstr "Hash Function Exists"
#: ../../templates/show_install_check.inc.php:73
#: ../../templates/show_test.inc.php:58
msgid "SHA256 Support"
msgstr "SHA256 Support"
#: ../../templates/show_install_check.inc.php:83
#: ../../templates/show_install_check.inc.php:88
#, fuzzy
msgid "PHP MySQL Support"
msgstr "PHP PCRE Support"
#: ../../templates/show_install_check.inc.php:96
#: ../../templates/show_install_check.inc.php:101
msgid "PHP Session Support"
msgstr "PHP Session Support"
#: ../../templates/show_install_check.inc.php:109
#: ../../templates/show_install_check.inc.php:114
#, fuzzy
msgid "PHP iconv Support"
msgstr "PHP Session Support"
#: ../../templates/show_install_check.inc.php:122
#: ../../templates/show_install_check.inc.php:127
msgid "PHP PCRE Support"
msgstr "PHP PCRE Support"
#: ../../templates/show_install_check.inc.php:135
msgid "Optional"
msgstr "Optional"
#: ../../templates/show_install_check.inc.php:137
#, fuzzy
msgid "PHP gettext Support"
msgstr "Gettext Support"
#: ../../templates/show_install_check.inc.php:141
#, fuzzy
msgid "gettext emulation will be used"
msgstr "Gettext Emulator will be used"
#: ../../templates/show_install_check.inc.php:149
#, fuzzy
msgid "PHP mbstring Support"
msgstr "Mbstring Support"
#: ../../templates/show_install_check.inc.php:153
#, fuzzy
msgid "Multibyte character encodings may not be autodetected correctly"
msgstr "Multibyte Chracter may not detect correct"
#: ../../templates/show_install_check.inc.php:161
#, fuzzy
msgid "PHP Safe Mode"
msgstr "Safe Mode"
#: ../../templates/show_install_check.inc.php:165
#, fuzzy
msgid "Safe mode enabled"
msgstr "Safe Mode"
#: ../../templates/show_install_check.inc.php:168
msgid "Safe mode not enabled"
msgstr ""
#: ../../templates/show_install_check.inc.php:173
#, fuzzy
msgid "PHP Memory Limit"
msgstr "Memory Limit"
#: ../../templates/show_install_check.inc.php:177
msgid "Memory limit less than recommended size"
msgstr ""
#: ../../templates/show_install_check.inc.php:186
#, fuzzy
msgid "PHP Execution Time Limit"
msgstr "Maximum Execution Time"
#: ../../templates/show_install_check.inc.php:190
#, php-format
msgid "Execution time limit is %s seconds, which is less than recommended"
msgstr ""
#: ../../templates/show_install_check.inc.php:193
#, fuzzy
msgid "seconds"
msgstr "seconds ago"
#: ../../templates/show_install_check.inc.php:198
#, fuzzy
msgid "ampache.cfg.php is writable"
msgstr "Ampache.cfg.php Exists"
#: ../../templates/show_install_config.inc.php:36
#, fuzzy, php-format
msgid ""
"This step takes the basic config values and generates the config file. If "
"your config/ directory is writable, you can select \"write\" to have Ampache "
"write the config file directly to the correct location. If you select "
"\"download\" it will prompt you to download the config file, and you can "
"then manually place the config file in %s"
msgstr ""
"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 /config"
#: ../../templates/show_install_config.inc.php:42
msgid "Generate Config File"
msgstr "Generate Config File"
#: ../../templates/show_install_config.inc.php:47
msgid "Web Path"
msgstr "Web Path"
#: ../../templates/show_install_config.inc.php:51
#, fuzzy
msgid "Database Name"
msgstr "Desired Database Name"
#: ../../templates/show_install_config.inc.php:59
msgid "MySQL Username"
msgstr "MySQL Username"
#: ../../templates/show_install_config.inc.php:63
msgid "MySQL Password"
msgstr "MySQL Password"
#: ../../templates/show_install_config.inc.php:70
#, fuzzy
msgid "Write"
msgstr "Read/Write"
#: ../../templates/show_install_config.inc.php:80
#, fuzzy
msgid "ampache.cfg.php exists?"
msgstr "Ampache.cfg.php Exists"
#: ../../templates/show_install_config.inc.php:95
#, fuzzy
msgid "ampache.cfg.php configured?"
msgstr "Ampache.cfg.php Configured?"
#: ../../templates/show_install_config.inc.php:114
#, fuzzy
msgid "Recheck Config"
msgstr "Check for Config"
#: ../../templates/show_install_config.inc.php:120
msgid "Continue to Step 3"
msgstr "Continue to Step 3"
#: ../../templates/show_install_lang.inc.php:35
#, fuzzy
msgid "Minimum requirements not met. Unable to install Ampache."
msgstr "Minimum Requirements not met. Unable to Install Ampache."
#: ../../templates/show_install_lang.inc.php:40
#, fuzzy
msgid "Choose Installation Language"
msgstr "Choose installation language."
#: ../../templates/show_install_lang.inc.php:61
msgid "Start configuration"
msgstr "Start configuration"
#. HINT: Username
#: ../../templates/show_ip_history.inc.php:30
#, php-format
msgid "%s IP History"
msgstr "%s IP History"
#: ../../templates/show_ip_history.inc.php:36
msgid "Show Unique"
msgstr "Show Unique"
#: ../../templates/show_ip_history.inc.php:52
#: ../../templates/show_ip_history.inc.php:66
msgid "Date"
msgstr "Date"
#: ../../templates/show_ip_history.inc.php:53
#: ../../templates/show_ip_history.inc.php:67
msgid "IP Address"
msgstr "IP Address"
#: ../../templates/show_live_stream.inc.php:30
msgid "Manage Radio Stations"
msgstr "Manage Radio Stations"
#: ../../templates/show_localplay_add_instance.inc.php:30
msgid "Add Localplay Instance"
msgstr "Add Localplay Instance"
#: ../../templates/show_localplay_add_instance.inc.php:41
#: ../../templates/sidebar_localplay.inc.php:43
msgid "Add Instance"
msgstr "Add Instance"
#: ../../templates/show_localplay_control.inc.php:31
msgid "Previous"
msgstr "Previous"
#: ../../templates/show_localplay_control.inc.php:32
msgid "Stop"
msgstr "Stop"
#: ../../templates/show_localplay_control.inc.php:33
msgid "Pause"
msgstr "Pause"
#: ../../templates/show_localplay_controllers.inc.php:41
#: ../../templates/show_localplay_controllers.inc.php:72
#: ../../templates/show_plugins.inc.php:41
#: ../../templates/show_plugins.inc.php:78
msgid "Description"
msgstr "Description"
#: ../../templates/show_localplay_controllers.inc.php:42
#: ../../templates/show_localplay_controllers.inc.php:73
#: ../../templates/show_plugins.inc.php:42
#: ../../templates/show_plugins.inc.php:79
msgid "Version"
msgstr "Version"
#: ../../templates/show_localplay_controllers.inc.php:56
#: ../../templates/show_plugins.inc.php:52
msgid "Activate"
msgstr "Activate"
#: ../../templates/show_localplay_edit_instance.inc.php:30
msgid "Edit Localplay Instance"
msgstr "Edit Localplay Instance"
#: ../../templates/show_localplay_edit_instance.inc.php:41
msgid "Update Instance"
msgstr "Update Instance"
#: ../../templates/show_localplay_instances.inc.php:30
msgid "Show Localplay Instances"
msgstr "Show Localplay Instances"
#: ../../templates/show_localplay_instances.inc.php:46
msgid "Edit Instance"
msgstr "Edit Instance"
#: ../../templates/show_localplay_status.inc.php:33
msgid "Localplay Control"
msgstr "Localplay Control"
#: ../../templates/show_localplay_status.inc.php:38
msgid "Mute"
msgstr "Mute"
#: ../../templates/show_localplay_status.inc.php:39
msgid "Decrease Volume"
msgstr "Decrease Volume"
#: ../../templates/show_localplay_status.inc.php:40
msgid "Increase Volume"
msgstr "Increase Volume"
#: ../../templates/show_localplay_status.inc.php:41
msgid "Volume"
msgstr "Volume"
#: ../../templates/show_localplay_status.inc.php:46
msgid "Repeat"
msgstr "Repeat"
#: ../../templates/show_login_form.inc.php:74
msgid "Remember Me"
msgstr "Remember Me"
#: ../../templates/show_login_form.inc.php:81
#, fuzzy
msgid "Lost password"
msgstr "Password"
#: ../../templates/show_login_form.inc.php:82
msgid "Login"
msgstr "Login"
#: ../../templates/show_login_form.inc.php:87
msgid "Register"
msgstr "Register"
#: ../../templates/show_login_form.inc.php:99
msgid "Message of the Day"
msgstr "Message of the Day"
#: ../../templates/show_lostpassword_form.inc.php:73
#, fuzzy
msgid "Email"
msgstr "E-mail"
#: ../../templates/show_lostpassword_form.inc.php:77
#, fuzzy
msgid "Submit"
msgstr "Subject"
#. HINT: Song Title
#: ../../templates/show_lyrics.inc.php:40
#, php-format
msgid "%s Lyrics"
msgstr "%s Lyrics"
#: ../../templates/show_mail_users.inc.php:31
msgid "Send E-mail to Users"
msgstr "Send E-mail to Users"
#: ../../templates/show_mail_users.inc.php:35
msgid "Mail to"
msgstr "Mail to"
#: ../../templates/show_mail_users.inc.php:41
msgid "Inactive Users"
msgstr "Inactive Users"
#: ../../templates/show_mail_users.inc.php:50
msgid "Catalog Statistics"
msgstr "Catalog Statistics"
#: ../../templates/show_mail_users.inc.php:61
msgid "Latest Artist Additions"
msgstr "Latest Artist Additions"
#: ../../templates/show_mail_users.inc.php:72
msgid "Latest Album Additions"
msgstr "Latest Album Additions"
#: ../../templates/show_mail_users.inc.php:82
msgid "Flagged Songs"
msgstr "Flagged Songs"
#: ../../templates/show_mail_users.inc.php:94
msgid "Most Popular Threshold in days"
msgstr "Most Popular Threshold in days"
#: ../../templates/show_mail_users.inc.php:105
msgid "From"
msgstr ""
#: ../../templates/show_mail_users.inc.php:108
msgid "Yourself"
msgstr ""
#: ../../templates/show_mail_users.inc.php:109
#, fuzzy
msgid "Ampache"
msgstr "Ampache Debug"
#: ../../templates/show_mail_users.inc.php:114
msgid "Subject"
msgstr "Subject"
#: ../../templates/show_mail_users.inc.php:121
msgid "Message"
msgstr "Message"
#: ../../templates/show_mail_users.inc.php:129
msgid "Send Mail"
msgstr "Send Mail"
#: ../../templates/show_manage_catalogs.inc.php:30
#: ../../templates/sidebar_admin.inc.php:34
msgid "Show Catalogs"
msgstr "Show Catalogs"
#: ../../templates/show_manage_catalogs.inc.php:36
msgid "Gather All Art"
msgstr "Gather All Art"
#. HINT: /data/myNewMusic
#: ../../templates/show_manage_catalogs.inc.php:46
#, php-format
msgid "Add From %s"
msgstr "Add From %s"
#. HINT: /data/myUpdatedMusic
#: ../../templates/show_manage_catalogs.inc.php:48
#, php-format
msgid "Update From %s"
msgstr "Update From %s"
#: ../../templates/show_manage_democratic.inc.php:29
msgid "Manage Democratic Playlists"
msgstr "Manage Democratic Playlists"
#: ../../templates/show_manage_democratic.inc.php:76
msgid "Create New Playlist"
msgstr "Create New Playlist"
#: ../../templates/show_manage_shoutbox.inc.php:43
#: ../../templates/show_manage_shoutbox.inc.php:67
msgid "Sticky"
msgstr "Sticky"
#: ../../templates/show_manage_shoutbox.inc.php:45
#: ../../templates/show_manage_shoutbox.inc.php:69
msgid "Date Added"
msgstr "Date Added"
#: ../../templates/show_newest.inc.php:30
#: ../../templates/show_popular.inc.php:30
#: ../../templates/sidebar_home.inc.php:79
msgid "Information"
msgstr "Information"
#: ../../templates/show_now_playing_row.inc.php:53
msgid "Show Lyrics"
msgstr "Show Lyrics"
#: ../../templates/show_now_playing_row.inc.php:96
#: ../../templates/show_recommended_artists.inc.php:30
msgid "Similar Artists"
msgstr "Similar Artists"
#: ../../templates/show_now_playing_row.inc.php:115
#, fuzzy
msgid "Similar Songs"
msgstr "Similar Artists"
#: ../../templates/show_object_rating.inc.php:42
#: ../../templates/show_object_rating_static.inc.php:42
msgid "Current rating: "
msgstr "Current rating: "
#: ../../templates/show_object_rating.inc.php:44
#: ../../templates/show_object_rating_static.inc.php:44
msgid "not rated yet"
msgstr "not rated yet"
#: ../../templates/show_object_rating.inc.php:46
#: ../../templates/show_object_rating_static.inc.php:46
#, php-format
msgid "%s of 5"
msgstr "%s of 5"
#: ../../templates/show_object_rating_static.inc.php:52
msgid "out of"
msgstr "out of"
#: ../../templates/show_playlist.inc.php:46
#: ../../templates/show_playlist.inc.php:47
msgid "Normalize Tracks"
msgstr "Normalize Tracks"
#: ../../templates/show_playlist.inc.php:56
#: ../../templates/show_playlist.inc.php:57
#: ../../templates/show_smartplaylist.inc.php:39
#: ../../templates/show_smartplaylist.inc.php:40
msgid "Add All"
msgstr "Add All"
#: ../../templates/show_playlist.inc.php:60
#: ../../templates/show_playlist.inc.php:61
msgid "Add Random"
msgstr "Add Random"
#: ../../templates/show_playlist_songs.inc.php:53
#: ../../templates/show_playlist_songs.inc.php:79
#: ../../templates/show_song.inc.php:55
msgid "Genre"
msgstr "Genre"
#: ../../templates/show_playlist_title.inc.php:31
#, fuzzy, php-format
msgid "%s %s (Playlist)"
msgstr "%s %s Playlist"
#: ../../templates/show_playlists.inc.php:42
#: ../../templates/show_playlists.inc.php:65
#: ../../templates/show_smartplaylists.inc.php:36
#: ../../templates/show_smartplaylists.inc.php:57
msgid "Playlist Name"
msgstr "Playlist Name"
#: ../../templates/show_playlists.inc.php:44
#: ../../templates/show_playlists.inc.php:67
msgid "# Songs"
msgstr "# Songs"
#: ../../templates/show_playlists.inc.php:45
#: ../../templates/show_playlists.inc.php:68
#: ../../templates/show_smartplaylists.inc.php:38
#: ../../templates/show_smartplaylists.inc.php:59
msgid "Owner"
msgstr "Owner"
#: ../../templates/show_plugins.inc.php:43
#, fuzzy
msgid "Installed Version"
msgstr "Version"
#: ../../templates/show_plugins.inc.php:56
msgid "Deactivate"
msgstr "Deactivate"
#: ../../templates/show_plugins.inc.php:60
msgid "Upgrade"
msgstr ""
#: ../../templates/show_preference_admin.inc.php:30
msgid "Preference Administration"
msgstr "Preference Administration"
#: ../../templates/show_preference_box.inc.php:50
#: ../../templates/show_preference_box.inc.php:80
msgid "Apply to All"
msgstr "Apply to All"
#: ../../templates/show_preference_box.inc.php:51
#: ../../templates/show_preference_box.inc.php:81
msgid "Access Level"
msgstr "Access Level"
#. HINT: Username
#. HINT: Editing Username preferences
#: ../../templates/show_preferences.inc.php:35
#: ../../templates/show_user_preferences.inc.php:35
#, php-format
msgid "Editing %s preferences"
msgstr "Editing %s preferences"
#: ../../templates/show_preferences.inc.php:41
#: ../../templates/show_user_preferences.inc.php:57
msgid "Update Preferences"
msgstr "Update Preferences"
#: ../../templates/show_random.inc.php:30
msgid "Play Random Selection"
msgstr "Play Random Selection"
#: ../../templates/show_random.inc.php:42
msgid "Item count"
msgstr "Item count"
#: ../../templates/show_random.inc.php:69
#: ../../templates/show_random.inc.php:94
#: ../../templates/show_search.inc.php:50
msgid "Unlimited"
msgstr "Unlimited"
#: ../../templates/show_random.inc.php:87
msgid "Size Limit"
msgstr "Size Limit"
#: ../../templates/show_random.inc.php:110
msgid "Enqueue"
msgstr "Enqueue"
#: ../../templates/show_random_albums.inc.php:30
msgid "Refresh"
msgstr "Refresh"
#: ../../templates/show_random_albums.inc.php:56
msgid "Play Album"
msgstr "Play Album"
#: ../../templates/show_recently_played.inc.php:47
#: ../../templates/show_recently_played.inc.php:117
msgid "Last Played"
msgstr "Last Played"
#: ../../templates/show_registration_confirmation.inc.php:36
#: ../../templates/show_user_activate.inc.php:36
#: ../../templates/show_user_activate.inc.php:43
#: ../../templates/show_user_registration.inc.php:36
#: ../../templates/show_user_registration.inc.php:48
msgid "Registration"
msgstr "Registration"
#: ../../templates/show_registration_confirmation.inc.php:43
msgid "Registration Complete"
msgstr "Registration Complete"
#: ../../templates/show_registration_confirmation.inc.php:49
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 ""
"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"
#: ../../templates/show_registration_confirmation.inc.php:51
msgid "Return to Login Page"
msgstr "Return to Login Page"
#. HINT: Artist Name
#: ../../templates/show_rename_artist.inc.php:36
#, php-format
msgid "Rename %s"
msgstr "Rename %s"
#: ../../templates/show_rename_artist.inc.php:42
msgid "Insert current"
msgstr "Insert current"
#: ../../templates/show_rename_artist.inc.php:44
msgid "Update id3 tags"
msgstr "Update id3 tags"
#: ../../templates/show_rename_artist.inc.php:45
msgid "Rename"
msgstr "Rename"
#: ../../templates/show_rules.inc.php:35
msgid "Rules"
msgstr "Rules"
#: ../../templates/show_rules.inc.php:39
msgid "Match"
msgstr ""
#: ../../templates/show_rules.inc.php:42
#, fuzzy
msgid "all rules"
msgstr "Localplay Modules"
#: ../../templates/show_rules.inc.php:43
msgid "any rule"
msgstr ""
#: ../../templates/show_rules.inc.php:51
#, fuzzy
msgid "Add Another Rule"
msgstr "Add Rule"
#: ../../templates/show_search.inc.php:34
msgid "Search Ampache"
msgstr "Search Ampache"
#: ../../templates/show_search.inc.php:47
msgid "Maximum Results"
msgstr "Maximum Results"
#: ../../templates/show_search.inc.php:65
#, fuzzy
msgid "Save as Smart Playlist"
msgstr "Clear Playlist"
#: ../../templates/show_search_bar.inc.php:37
msgid "Anywhere"
msgstr ""
#: ../../templates/show_search_bar.inc.php:44
msgid "Advanced Search"
msgstr "Advanced Search"
#: ../../templates/show_search_options.inc.php:29
msgid "Options"
msgstr "Options"
#: ../../templates/show_search_options.inc.php:33
#: ../../templates/show_search_options.inc.php:34
msgid "Add Search Results"
msgstr "Add Search Results"
#: ../../templates/show_shoutbox.inc.php:30
msgid "Shoutbox"
msgstr "Shoutbox"
#: ../../templates/show_smartplaylist_title.inc.php:24
#, fuzzy, php-format
msgid "%s %s (Smart Playlist)"
msgstr "%s %s Playlist"
#: ../../templates/show_song.inc.php:32
msgid "Details"
msgstr "Details"
#: ../../templates/show_song.inc.php:42
msgid "Link"
msgstr "Link"
#: ../../templates/show_song.inc.php:58
msgid "Label"
msgstr "Label"
#: ../../templates/show_song.inc.php:59
msgid "Song Language"
msgstr "Song Language"
#: ../../templates/show_song.inc.php:60
msgid "Catalog Number"
msgstr "Catalog Number"
#: ../../templates/show_song.inc.php:66
msgid "Last Updated"
msgstr "Last Updated"
#: ../../templates/show_song_row.inc.php:43
msgid "Song Information"
msgstr "Song Information"
#: ../../templates/show_stats.inc.php:36
msgid "Connected Users"
msgstr "Connected Users"
#: ../../templates/show_stats.inc.php:37
msgid "Total Users"
msgstr "Total Users"
#: ../../templates/show_stats.inc.php:43 ../../templates/show_stats.inc.php:78
msgid "Catalog Size"
msgstr "Catalog Size"
#: ../../templates/show_stats.inc.php:44
msgid "Catalog Time"
msgstr "Catalog Time"
#: ../../templates/show_test.inc.php:39
#: ../../templates/show_test_config.inc.php:47
#: ../../templates/sidebar_admin.inc.php:52
msgid "Ampache Debug"
msgstr "Ampache Debug"
#: ../../templates/show_test.inc.php:40
#, fuzzy
msgid ""
"You may have reached this page because a configuration error has occured. "
"Debug information is below."
msgstr ""
"You've reached this page because a configuration error has occured. Debug "
"Information below"
#: ../../templates/show_test.inc.php:45
msgid "CHECK"
msgstr "CHECK"
#: ../../templates/show_test.inc.php:47
msgid "STATUS"
msgstr "STATUS"
#: ../../templates/show_test.inc.php:49
msgid "DESCRIPTION"
msgstr "DESCRIPTION"
#: ../../templates/show_test.inc.php:52
#, fuzzy
msgid "PHP version"
msgstr "PHP Version"
#: ../../templates/show_test.inc.php:67
#, fuzzy
msgid ""
"This tests whether you are running at least the minimum version of PHP "
"required by Ampache."
msgstr ""
"This tests to make sure that you are running a version of PHP that is known "
"to work with Ampache."
#: ../../templates/show_test.inc.php:72
#, fuzzy
msgid "PHP MySQL extension"
msgstr "PHP PCRE Support"
#: ../../templates/show_test.inc.php:85
#, fuzzy
msgid ""
"This tests whether you have the mysql extension enabled. This extension is "
"required by Ampache."
msgstr ""
"This test checks to see if you have the mysql extensions loaded for PHP. "
"These are required for Ampache to work."
#: ../../templates/show_test.inc.php:89
#, fuzzy
msgid "PHP session extension"
msgstr "PHP Session Support"
#: ../../templates/show_test.inc.php:102
#, fuzzy
msgid ""
"This tests whether you have the session extension enabled. This extension is "
"required by Ampache."
msgstr ""
"This test checks to make sure that you have PHP session support enabled. "
"Sessions are required for Ampache to work."
#: ../../templates/show_test.inc.php:106
#, fuzzy
msgid "PHP iconv extension"
msgstr "PHP Session Support"
#: ../../templates/show_test.inc.php:118
#, fuzzy
msgid ""
"This tests whether you have the iconv extension enabled. This extension is "
"required by Ampache."
msgstr ""
"This test checks to see if you have the mysql extensions loaded for PHP. "
"These are required for Ampache to work."
#: ../../templates/show_test.inc.php:122
#, fuzzy
msgid "PHP safe mode disabled"
msgstr "Safe Mode"
#: ../../templates/show_test.inc.php:134
#, fuzzy
msgid ""
"This test makes sure that PHP is not running in safe mode. Some features of "
"Ampache will not work correctly in safe mode."
msgstr ""
"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"
#: ../../templates/show_test.inc.php:138
#, fuzzy
msgid "PHP memory limit override"
msgstr "Memory Limit"
#: ../../templates/show_test.inc.php:143
msgid ""
"This tests whether Ampache can override the memory limit. This is not "
"strictly necessary, but may result in a better experience."
msgstr ""
#: ../../templates/show_test.inc.php:147
#, fuzzy
msgid "PHP execution time override"
msgstr "Maximum Execution Time"
#: ../../templates/show_test.inc.php:152
msgid ""
"This tests whether Ampache can override the limit on maximum execution "
"time. This is not strictly necessary, but may result in a better experience."
msgstr ""
#: ../../templates/show_test.inc.php:156
msgid "Configuration file readability"
msgstr ""
#: ../../templates/show_test.inc.php:169
#, fuzzy
msgid ""
"This test attempts to read config/ampache.cfg.php. If this fails the file "
"either is not in the correct location or is not currently readable."
msgstr ""
"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."
#: ../../templates/show_test.inc.php:174
#, fuzzy
msgid "Configuration file validity"
msgstr "Configure Democratic Playlist"
#: ../../templates/show_test.inc.php:190
#, fuzzy
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 ""
"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"
#: ../../templates/show_test.inc.php:194
#, fuzzy
msgid "Database connection"
msgstr "Database Charset Updated"
#: ../../templates/show_test.inc.php:208
#, fuzzy
msgid ""
"This attempts to connect to your database using the values read from your "
"configuration file."
msgstr ""
"This attempts to connect to your database using the values from your ampache."
"cfg.php"
#: ../../templates/show_test.inc.php:212
#, fuzzy
msgid "Database tables"
msgstr "Desired Database Name"
#: ../../templates/show_test.inc.php:226
#, fuzzy
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 ""
"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"
#: ../../templates/show_test.inc.php:231
#, fuzzy
msgid "Web path"
msgstr "Web Path"
#: ../../templates/show_test.inc.php:250
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 ""
"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."
#: ../../templates/show_update_items.inc.php:29
msgid "Starting Update from Tags"
msgstr "Starting Update from Tags"
#: ../../templates/show_update_items.inc.php:33
msgid "Update from Tags Complete"
msgstr "Update from Tags Complete"
#: ../../templates/show_user.inc.php:38
msgid "Create Date"
msgstr "Create Date"
#: ../../templates/show_user.inc.php:39 ../../templates/show_users.inc.php:47
#: ../../templates/show_users.inc.php:69
msgid "Last Seen"
msgstr "Last Seen"
#: ../../templates/show_user.inc.php:40 ../../templates/show_users.inc.php:49
#: ../../templates/show_users.inc.php:71
msgid "Activity"
msgstr "Activity"
#: ../../templates/show_user.inc.php:42
msgid "User is Online Now"
msgstr "User is Online Now"
#: ../../templates/show_user.inc.php:44
msgid "User is Offline Now"
msgstr "User is Offline Now"
#: ../../templates/show_user.inc.php:49
msgid "Active Playlist"
msgstr "Active Playlist"
#: ../../templates/show_user_activate.inc.php:55
msgid "User Activated"
msgstr "User Activated"
#. HINT: Start A tag, End A tag
#: ../../templates/show_user_activate.inc.php:59
#, php-format
msgid "This User ID is activated and can be used %sLogin%s"
msgstr "This User ID is activated and can be used %sLogin%s"
#: ../../templates/show_user_activate.inc.php:62
msgid "Validation Failed"
msgstr "Validation Failed"
#: ../../templates/show_user_activate.inc.php:63
msgid "The validation key used isn't correct"
msgstr "The validation key used isn't correct"
#: ../../templates/show_user_recommendations.inc.php:37
msgid "Recommended Artists"
msgstr "Recommended Artists"
#: ../../templates/show_user_recommendations.inc.php:48
msgid "Recommended Albums"
msgstr "Recommended Albums"
#: ../../templates/show_user_recommendations.inc.php:59
msgid "Recommended Songs"
msgstr "Recommended Songs"
#: ../../templates/show_user_registration.inc.php:62
msgid "User Agreement"
msgstr "User Agreement"
#: ../../templates/show_user_registration.inc.php:69
msgid "I Accept"
msgstr "I Accept"
#: ../../templates/show_user_registration.inc.php:74
msgid "User Information"
msgstr "User Information"
#: ../../templates/show_user_registration.inc.php:105
msgid "* Required fields"
msgstr "* Required fields"
#: ../../templates/show_user_registration.inc.php:115
msgid "Register User"
msgstr "Register User"
#: ../../templates/show_user_stats.inc.php:38
msgid "Favorite Artists"
msgstr "Favorite Artists"
#: ../../templates/show_user_stats.inc.php:51
msgid "Favorite Albums"
msgstr "Favorite Albums"
#: ../../templates/show_user_stats.inc.php:64
msgid "Favorite Songs"
msgstr "Favorite Songs"
#: ../../templates/show_users.inc.php:46 ../../templates/show_users.inc.php:68
msgid "Fullname"
msgstr "Fullname"
#: ../../templates/show_users.inc.php:48 ../../templates/show_users.inc.php:70
msgid "Registration Date"
msgstr "Registration Date"
#: ../../templates/show_users.inc.php:51 ../../templates/show_users.inc.php:73
msgid "Last Ip"
msgstr "Last Ip"
#: ../../templates/show_users.inc.php:54 ../../templates/show_users.inc.php:76
msgid "On-line"
msgstr "On-line"
#: ../../templates/show_verify_catalog.inc.php:29
#, fuzzy
msgid "Verify Catalog"
msgstr "Catalogs"
#. HINT: Catalog Name
#: ../../templates/show_verify_catalog.inc.php:31
#, php-format
msgid "Updating the %s catalog"
msgstr "Updating the %s catalog"
#: ../../templates/show_verify_catalog.inc.php:35
#, fuzzy
msgid "Verified"
msgstr "Verifed"
#: ../../templates/show_videos.inc.php:46
#: ../../templates/show_videos.inc.php:70
msgid "Codec"
msgstr "Codec"
#: ../../templates/show_videos.inc.php:47
#: ../../templates/show_videos.inc.php:71
msgid "Resolution"
msgstr "Resolution"
#: ../../templates/sidebar.inc.php:37
#: ../../templates/sidebar_modules.inc.php:32
msgid "Modules"
msgstr "Modules"
#: ../../templates/sidebar.inc.php:68
msgid "Logout"
msgstr "Logout"
#: ../../templates/sidebar_admin.inc.php:38
msgid "User Tools"
msgstr "User Tools"
#: ../../templates/sidebar_admin.inc.php:41
msgid "Browse Users"
msgstr "Browse Users"
#: ../../templates/sidebar_admin.inc.php:46
msgid "Add ACL"
msgstr "Add ACL"
#: ../../templates/sidebar_admin.inc.php:47
msgid "Show ACL(s)"
msgstr "Show ACL(s)"
#: ../../templates/sidebar_admin.inc.php:56
msgid "Manage Shoutbox"
msgstr "Manage Shoutbox"
#: ../../templates/sidebar_admin.inc.php:61
msgid "Server Config"
msgstr "Server Config"
#: ../../templates/sidebar_home.inc.php:32
msgid "Browse"
msgstr "Browse"
#: ../../templates/sidebar_home.inc.php:41
msgid "Song Titles"
msgstr "Song Titles"
#: ../../templates/sidebar_home.inc.php:55
msgid "Currently Playing"
msgstr "Currently Playing"
#: ../../templates/sidebar_home.inc.php:68
msgid "Import"
msgstr "Import"
#: ../../templates/sidebar_home.inc.php:76
msgid "Advanced"
msgstr "Advanced"
#: ../../templates/sidebar_home.inc.php:82
msgid "Newest"
msgstr "Newest"
#: ../../templates/sidebar_home.inc.php:83
msgid "Popular"
msgstr "Popular"
#: ../../templates/sidebar_localplay.inc.php:44
msgid "Show instances"
msgstr "Show instances"
#: ../../templates/sidebar_localplay.inc.php:46
msgid "Show Playlist"
msgstr "Show Playlist"
#: ../../templates/sidebar_localplay.inc.php:50
msgid "Active Instance"
msgstr "Active Instance"
#: ../../templates/sidebar_localplay.inc.php:68
msgid "Localplay Disabled"
msgstr "Localplay Disabled"
#: ../../templates/sidebar_localplay.inc.php:70
msgid "Allow Localplay set to False"
msgstr "Allow Localplay set to False"
#: ../../templates/sidebar_localplay.inc.php:72
msgid "Localplay Controller Not Defined"
msgstr "Localplay Controller Not Defined"
#: ../../templates/sidebar_modules.inc.php:34
msgid "Localplay Modules"
msgstr "Localplay Modules"
#: ../../templates/sidebar_modules.inc.php:35
msgid "Available Plugins"
msgstr "Available Plugins"
#: ../../templates/sidebar_modules.inc.php:41
msgid "Mail Users"
msgstr "Mail Users"
#: ../../templates/sidebar_modules.inc.php:42
msgid "Manage Flagged"
msgstr "Manage Flagged"
#: ../../templates/sidebar_modules.inc.php:43
msgid "Show Disabled"
msgstr "Show Disabled"
#: ../../templates/sidebar_modules.inc.php:50
msgid "Manage Playlist"
msgstr "Manage Playlist"
#: ../../templates/sidebar_preferences.inc.php:45
msgid "Account"
msgstr "Account"
#: ../../update.php:56 ../../update.php:60
msgid "Ampache Update"
msgstr "Ampache Update"
#: ../../update.php:65
#, 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 ""
"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>."
#: ../../update.php:66
msgid "the following updates need to be performed"
msgstr "the following updates need to be performed"
#: ../../update.php:73
msgid "Update Now!"
msgstr "Update Now!"
#: ../../update.php:77
msgid "Ampache Installation."
msgstr "Ampache Installation."
#: Database words
msgid "Allow Downloads"
msgstr "Allow Downloads"
#: Database words
msgid "Popular Threshold"
msgstr "Popular Threshold"
#: Database words
msgid "Transcode Bitrate"
msgstr "Transcode Bitrate"
#: Database words
msgid "Lock Songs"
msgstr "Lock Songs"
#: Database words
msgid "Forces Http play regardless of port"
msgstr "Forces Http play regardless of port"
#: Database words
msgid "Non-Standard Http Port"
msgstr "Non-Standard Http Port"
#: Database words
msgid "Localplay Type"
msgstr "Localplay Type"
#: Database words
msgid "Type of Playback"
msgstr "Type of Playback"
#: Database words
msgid "Language"
msgstr "Language"
#: Database words
msgid "Theme"
msgstr "Theme"
#: Database words
msgid "Album Ellipse Threshold"
msgstr "Album Ellipse Threshold"
#: Database words
msgid "Artist Ellipse Threshold"
msgstr "Artist Ellipse Threshold"
#: Database words
msgid "Title Ellipse Threshold"
msgstr "Title Ellipse Threshold"
#: Database words
msgid "Offset Limit"
msgstr "Offset Limit"
#: Database words
msgid "Localplay Access"
msgstr "Localplay Access"
#: Database words
msgid "Allow Streaming"
msgstr "Allow Streaming"
#: Database words
msgid "Allow Democratic Play"
msgstr "Allow Democratic Play"
#: Database words
msgid "Allow Localplay Play"
msgstr "Allow Localplay Play"
#: Database words
msgid "Statistics Day Threshold"
msgstr "Statistics Day Threshold"
#: Database words
msgid "Min Element Count"
msgstr "Min Element Count"
#: Database words
msgid "Rate Limit"
msgstr "Rate Limit"
#: Database words
msgid "Playlist Method"
msgstr "Playlist Method"
#: Database words
msgid "Transcoding"
msgstr "Transcoding"
#: Database words
msgid "User to track"
msgstr "User to track"
#: Database words
msgid "Streaming"
msgstr "Streaming"
#: Database words
msgid "Interface"
msgstr "Interface"
#: Database words
msgid "System"
msgstr "System"
#~ msgid "Mysql for PHP"
#~ msgstr "Mysql for PHP"
#~ msgid "PHP ICONV Support"
#~ msgstr "PHP ICONV Support"
#~ msgid ""
#~ "This test checks to make sure you have Iconv support installed. Iconv "
#~ "support is required for Ampache"
#~ msgstr ""
#~ "This test checks to make sure you have Iconv support installed. Iconv "
#~ "support is required for Ampache"
#~ msgid ""
#~ "This test makes sure you have PCRE support compiled into your version of "
#~ "PHP, this is required for Ampache."
#~ msgstr ""
#~ "This test makes sure you have PCRE support compiled into your version of "
#~ "PHP, this is required for Ampache."
#, fuzzy
#~ msgid "Override Memory Limit"
#~ msgstr "Memory Limit"
#, fuzzy
#~ msgid "Override Execution Limit"
#~ msgstr "Override Execution Time"
#~ msgid "Ampache.cfg.php Configured?"
#~ msgstr "Ampache.cfg.php Configured?"
#~ msgid "DB Connection"
#~ msgstr "DB Connection"
#~ msgid "DB Inserted"
#~ msgstr "DB Inserted"
#~ msgid "day"
#~ msgid_plural "days"
#~ msgstr[0] "day"
#~ msgstr[1] "days"
#~ msgid "hour"
#~ msgid_plural "hours"
#~ msgstr[0] "hour"
#~ msgstr[1] "hours"
#~ msgid "Unable to load pear XMLRPC library, make sure XML-RPC is enabled"
#~ msgstr "Unable to load pear XMLRPC library, make sure XML-RPC is enabled"
#~ msgid "Code"
#~ msgstr "Code"
#~ msgid "Reason"
#~ msgstr "Reason"
#~ msgid "Starting synchronisation of album images"
#~ msgstr "Starting synchronisation of album images"
#~ msgid "Completed synchronisation of album images"
#~ msgstr "Completed synchronisation of album images"
#~ msgid "images synchronized: "
#~ msgstr "images synchronized: "
#~ msgid "Catalog Clean Done. %d file removed."
#~ msgid_plural "Catalog Clean Done. %d files removed."
#~ msgstr[0] "Catalog Clean Done. %d file removed."
#~ msgstr[1] "Catalog Clean Done. %d files removed."
#~ msgid "Playlist Import and Recreate Successful. Total: %d Song"
#~ msgid_plural "Playlist Import and Recreate Successful. Total: %d Songs"
#~ msgstr[0] "Playlist Import and Recreate Successful. Total: %d Song"
#~ msgstr[1] "Playlist Import and Recreate Successful. Total: %d Songs"
#~ 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] "Parsing %s - Not Found: %d Song. Please check your m3u file."
#~ msgstr[1] "Parsing %s - Not Found: %d Songs. Please check your m3u file."
#, fuzzy
#~ msgid "No problem found."
#~ msgstr "No Disabled songs found"
#~ msgid "RPC Options"
#~ msgstr "RPC Options"
#~ msgid "Remote Key"
#~ msgstr "Remote Key"
#~ msgid "XML-RPC Key"
#~ msgstr "XML-RPC Key"
#~ msgid "RPC"
#~ msgstr "RPC"
#, fuzzy
#~ msgid "Ampache Security Information"
#~ msgstr "User Information"
#, fuzzy
#~ msgid "Close this window"
#~ msgstr "Click to close window"
#, fuzzy
#~ msgid "Ampache Version"
#~ msgstr "Ampache Installation"
#, fuzzy
#~ msgid ""
#~ "Compare that you are running a version of Ampache and currently a version "
#~ "of Ampache."
#~ msgstr ""
#~ "This tests to make sure that you are running a version of PHP that is "
#~ "known to work with Ampache."
#~ msgid ""
#~ "Functions are disabled in the demo because previous users of the demo "
#~ "have used the functionality to post inappropriate materials"
#~ msgstr ""
#~ "Functions are disabled in the demo because previous users of the demo "
#~ "have used the functionality to post inappropriate materials"
#~ msgid "%d item found checking tag information"
#~ msgid_plural "%d items found checking tag information"
#~ msgstr[0] "%d item found checking tag information"
#~ msgstr[1] "%d items found checking tag information"
#~ msgid "%d minute"
#~ msgid_plural "%d minutes"
#~ msgstr[0] "%d minute"
#~ msgstr[1] "%d minutes"
#~ msgid "%d hour"
#~ msgid_plural "%d hours"
#~ msgstr[0] "%d hour"
#~ msgstr[1] "%d hours"
#~ msgid "file"
#~ msgstr "file"
#~ msgid "File uploads not supported."
#~ msgstr "File uploads not supported."
#~ msgid "No file uploaded"
#~ msgstr "No file uploaded"
#~ msgid "There was a problem with the file upload: No %s was uploaded."
#~ msgstr "There was a problem with the file upload: No %s was uploaded."
#~ msgid ""
#~ "There was a problem with the file upload: The %s was larger than the "
#~ "maximum allowed size (%d bytes)."
#~ msgstr ""
#~ "There was a problem with the file upload: The %s was larger than the "
#~ "maximum allowed size (%d bytes)."
#~ msgid ""
#~ "There was a problem with the file upload: The %s was only partially "
#~ "uploaded."
#~ msgstr ""
#~ "There was a problem with the file upload: The %s was only partially "
#~ "uploaded."
#~ msgid "Song Removed"
#~ msgid_plural "Songs Removed"
#~ msgstr[0] "Song Removed"
#~ msgstr[1] "Songs Removed"
#~ msgid "Disabled Song Processed"
#~ msgid_plural "Disabled Songs Processed"
#~ msgstr[0] "Disabled Song Processed"
#~ msgstr[1] "Disabled Songs Processed"
#, fuzzy
#~ msgid "No probrem found."
#~ msgstr "No Records Found"
#, fuzzy
#~ msgid "Could not open the filename"
#~ msgstr "You did not enter a username"
#, fuzzy
#~ msgid "Write error"
#~ msgstr "Write Config"
#, fuzzy
#~ msgid "PHP putenv Support"
#~ msgstr "PHP PutENV Support"
#~ msgid "PHP PutENV Support"
#~ msgstr "PHP PutENV Support"
#~ msgid "Update Finished"
#~ msgstr "Update Finished"
#~ msgid "Checked"
#~ msgstr "Checked"
#~ msgid "Video"
#~ msgstr "Video"
#~ msgid "Optimizing Tables"
#~ msgstr "Optimizing Tables"
#~ msgid "Keywords"
#~ msgstr "Keywords"
#~ msgid "Yes"
#~ msgstr "Yes"
#~ msgid "No"
#~ msgstr "No"
#~ msgid "Min Bitrate"
#~ msgstr "Min Bitrate"
#~ msgid "One Star"
#~ msgstr "One Star"
#~ msgid "Two Stars"
#~ msgstr "Two Stars"
#~ msgid "Three Stars"
#~ msgstr "Three Stars"
#~ msgid "Four Stars"
#~ msgstr "Four Stars"
#~ msgid "Five Stars"
#~ msgstr "Five Stars"
#~ msgid "Fuzzy"
#~ msgstr "Fuzzy"
#~ msgid "Exact"
#~ msgstr "Exact"
#~ msgid "Standard"
#~ msgstr "Standard"
#~ msgid "Less Played"
#~ msgstr "Less Played"
#~ msgid "Full Albums"
#~ msgstr "Full Albums"
#~ msgid "Full Artist"
#~ msgstr "Full Artist"
#~ msgid "Highest Rated"
#~ msgstr "Highest Rated"
#~ msgid "From catalog"
#~ msgstr "From catalog"
#~ msgid "Error: No Keyword Entered"
#~ msgstr "Error: No Keyword Entered"
#~ msgid "Session Expired: please log in again at"
#~ msgstr "Session Expired: please log in again at"
#~ msgid "From: Ampache "
#~ msgstr "From: Ampache "
#~ msgid "Step 2 - Creating the Ampache.cfg.php file"
#~ msgstr "Step 2 - Creating the Ampache.cfg.php file"
#~ msgid "%s by %s"
#~ msgstr "%s by %s"
#~ msgid "Viewing %s Genre"
#~ msgstr "Viewing %s Genre"
#~ 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 ""
#~ "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"
#~ msgid "No local account found"
#~ msgstr "No local account found"
#~ msgid "XSPF Player"
#~ msgstr "XSPF Player"
#~ msgid "Play Selected"
#~ msgstr "Play Selected"
#~ msgid "Download Selected"
#~ msgstr "Download Selected"
#~ msgid "Set Track Numbers"
#~ msgstr "Set Track Numbers"
#~ msgid "Remove Selected Tracks"
#~ msgstr "Remove Selected Tracks"
#~ msgid "Add to"
#~ msgstr "Add to"
#~ msgid "Editing Playlist"
#~ msgstr "Editing Playlist"
#~ msgid "Key"
#~ msgstr "Key"
#~ msgid "Please check the artists you want to merge with the current one"
#~ msgstr "Please check the artists you want to merge with the current one"
#~ msgid "No Similar Artists found"
#~ msgstr "No Similar Artists found"
#~ msgid "Back"
#~ msgstr "Back"
#~ msgid "Rename selected"
#~ msgstr "Rename selected"
#~ msgid "Advanced Options"
#~ msgstr "Advanced Options"
#~ msgid "Search Again"
#~ msgstr "Search Again"
#~ msgid "Flag Song"
#~ msgstr "Flag Song"
#~ msgid "Item"
#~ msgstr "Item"
#~ msgid "Reason to flag"
#~ msgstr "Reason to flag"
#~ msgid "Incorrect Tags"
#~ msgstr "Incorrect Tags"
#~ 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"
#~ "This commandline script will display the tag information for the "
#~ "specified filename as it will \n"
#~ "appear to Ampache. \n"
#~ " \n"
#~ msgid "Filename:"
#~ msgstr "Filename:"
#~ msgid ""
#~ "Your webserver has read access to the /sql/ampache.sql file and the /"
#~ "config/ampache.cfg.dist.php file"
#~ msgstr ""
#~ "Your webserver has read access to the /sql/ampache.sql file and the /"
#~ "config/ampache.cfg.dist.php file"
|