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
|
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: ampache\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-06-21 19:58-0700\n"
"PO-Revision-Date: 2005-07-17 21:58-0000\n"
"Last-Translator: David Lodge <dave@cirt.net>\n"
"Language-Team: British English <en@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=koi8-r\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../play/index.php:46
msgid "Session Expired: please log in again at"
msgstr "����� ������ ���������: ����������, ������������ �����"
#: ../../lib/preferences.php:210
#: ../../templates/show_users.inc:97
msgid "Enable"
msgstr "��������"
#: ../../lib/preferences.php:211
#: ../../templates/show_users.inc:100
msgid "Disable"
msgstr "���������"
#: ../../lib/preferences.php:223
#: ../../templates/add_catalog.inc:60
msgid "Local"
msgstr "���������"
#: ../../lib/preferences.php:226
msgid "Stream"
msgstr "�����"
#: ../../lib/preferences.php:229
msgid "IceCast"
msgstr "IceCast"
#: ../../lib/preferences.php:232
msgid "Downsample"
msgstr "Downsample"
#: ../../lib/preferences.php:235
msgid "Music Player Daemon"
msgstr "����������� ������������� Daemon"
#: ../../lib/preferences.php:238
msgid "SlimServer"
msgstr "SlimServer"
#: ../../lib/preferences.php:247
msgid "M3U"
msgstr "M3U"
#: ../../lib/preferences.php:248
msgid "Simple M3U"
msgstr "������� M3U"
#: ../../lib/preferences.php:249
msgid "PLS"
msgstr "PLS"
#: ../../lib/preferences.php:250
msgid "Asx"
msgstr "Asx"
#: ../../lib/preferences.php:257
msgid "English"
msgstr "English"
#: ../../lib/preferences.php:258
msgid "German"
msgstr "German"
#: ../../lib/preferences.php:259
msgid "French"
msgstr "French"
#: ../../lib/preferences.php:260
msgid "Turkish"
msgstr "Turkish"
#: ../../lib/duplicates.php:80
msgid "Find Duplicates"
msgstr "����� ���������"
#: ../../lib/duplicates.php:83
#: ../../templates/show_search.inc:74
msgid "Search Type"
msgstr "��� ������"
#: ../../lib/duplicates.php:91
#: ../../modules/class/song.php:253
msgid "Title"
msgstr "��������"
#: ../../lib/duplicates.php:97
msgid "Artist and Title"
msgstr "����������� � ��������"
#: ../../lib/duplicates.php:102
msgid "Artist, Album and Title"
msgstr "������, ������ � ��������"
#: ../../lib/duplicates.php:110
#: ../../templates/menu.inc:38
#: ../../templates/show_search.inc:37
#: ../../templates/show_search.inc:83
msgid "Search"
msgstr "�����"
#: ../../lib/search.php:52
#: ../../lib/search.php:68
#: ../../lib/search.php:84
#: ../../lib/search.php:100
#: ../../lib/search.php:116
#: ../../lib/search.php:133
#: ../../lib/search.php:145
#: ../../lib/search.php:161
#: ../../lib/search.php:177
msgid "No Results Found"
msgstr "No Results Found"
#: ../../lib/ui.php:180
msgid "Playlist Actions"
msgstr "�������� � Playlist'��"
#: ../../lib/ui.php:180
msgid "New"
msgstr "�����"
#: ../../lib/ui.php:181
msgid "View All"
msgstr "����������� ���"
#: ../../lib/ui.php:182
msgid "Import"
msgstr "�������������"
#: ../../lib/ui.php:282
msgid "Browse"
msgstr "����������"
#: ../../lib/ui.php:284
msgid "Show w/o art"
msgstr "�������� w/o art"
#: ../../lib/ui.php:287
msgid "Show all"
msgstr "�������� �ӣ"
#: ../../lib/ui.php:393
msgid "No songs in this playlist."
msgstr "��� ����� � ���� ������."
#: ../../lib/mpd.php:40
#: ../../lib/mpd.php:49
#: ../../modules/class/catalog.php:902
msgid "Error"
msgstr "������"
#: ../../lib/mpd.php:40
#: ../../lib/mpd.php:49
msgid "Could not add"
msgstr "���������� ��������"
#: ../../lib/Browser.php:867
msgid "file"
msgstr "����"
#: ../../lib/Browser.php:871
msgid "File uploads not supported."
msgstr "�������� ����� �� ��������������."
#: ../../lib/Browser.php:889
msgid "No file uploaded"
msgstr "��� ����������� ������"
#: ../../lib/Browser.php:896
#, php-format
msgid "There was a problem with the file upload: No %s was uploaded."
msgstr "���� �������� � ��������� �����: 0% ���� ���������."
#: ../../lib/Browser.php:901
#, php-format
msgid "There was a problem with the file upload: The %s was larger than the maximum allowed size (%d bytes)."
msgstr "���� �������� � ��������� �����: ������ ������������ ����� ��������� �����."
#: ../../lib/Browser.php:903
#, php-format
msgid "There was a problem with the file upload: The %s was only partially uploaded."
msgstr "���� �������� � ��������� �����: ���� ��� �������� ������ ��������."
#: ../../modules/class/catalog.php:267
#: ../../modules/class/catalog.php:552
#: ../../modules/class/album.php:241
msgid "Error: Unable to open"
msgstr "������: ���������� �������"
#: ../../modules/class/catalog.php:290
msgid "Error: Unable to change to directory"
msgstr "������: ���������� �������� ����������"
#: ../../modules/class/catalog.php:313
msgid "Error: Unable to get filesize for"
msgstr "������: ���������� �������� ������ ����� ���"
#: ../../modules/class/catalog.php:332
msgid "Added Playlist From"
msgstr "�������� ������ ��"
#: ../../modules/class/catalog.php:351
msgid "Added"
msgstr "���������"
#: ../../modules/class/catalog.php:363
msgid "is not readable by ampache"
msgstr "�� ������ ���������� ampache"
#: ../../modules/class/catalog.php:427
msgid "Found in ID3"
msgstr "������� � ID3"
#: ../../modules/class/catalog.php:431
msgid "Found on Amazon"
msgstr "������� �� Amazon"
#: ../../modules/class/catalog.php:435
msgid "Found in Folder"
msgstr "������� � ����������"
#: ../../modules/class/catalog.php:439
msgid "Found"
msgstr "�������"
#: ../../modules/class/catalog.php:442
msgid "Not Found"
msgstr "�� �������"
#: ../../modules/class/catalog.php:450
msgid "Searched"
msgstr "��������"
#: ../../modules/class/catalog.php:605
msgid "Starting Dump Album Art"
msgstr "Starting Dump Album Art"
#: ../../modules/class/catalog.php:625
msgid "Written"
msgstr "��������"
#: ../../modules/class/catalog.php:634
msgid "Error unable to open file for writting"
msgstr "������: ���������� ������� ���� ��� ������"
#: ../../modules/class/catalog.php:641
msgid "Album Art Dump Complete"
msgstr "Album Art Dump ������"
#: ../../modules/class/catalog.php:642
#: ../../artists.php:62
#: ../../albums.php:111
msgid "Return"
msgstr "�������"
#: ../../modules/class/catalog.php:708
msgid "Starting Catalog Build"
msgstr "�������� ���������� ��������"
#: ../../modules/class/catalog.php:713
msgid "Running Remote Sync"
msgstr "������� Remote Sync"
#: ../../modules/class/catalog.php:723
#: ../../modules/class/catalog.php:869
#: ../../admin/catalog.php:251
msgid "Starting Album Art Search"
msgstr "����� ����� Album Art"
#: ../../modules/class/catalog.php:733
msgid "Catalog Finished"
msgstr "������� �����"
#: ../../modules/class/catalog.php:733
#: ../../modules/class/catalog.php:888
msgid "Total Time"
msgstr "����� �����"
#: ../../modules/class/catalog.php:733
#: ../../modules/class/catalog.php:889
msgid "Total Songs"
msgstr "����� �����"
#: ../../modules/class/catalog.php:734
#: ../../modules/class/catalog.php:889
msgid "Songs Per Seconds"
msgstr "����� �� �������"
#: ../../modules/class/catalog.php:768
#: ../../modules/class/catalog.php:1379
msgid "Updated"
msgstr "���������"
#: ../../modules/class/catalog.php:775
msgid "No Update Needed"
msgstr "���������� �� ���������"
#: ../../modules/class/catalog.php:849
msgid "Starting New Song Search on"
msgstr "����� ����� ����� ����� ��"
#: ../../modules/class/catalog.php:849
msgid "catalog"
msgstr "�������"
#: ../../modules/class/catalog.php:853
msgid "Running Remote Update"
msgstr "�������� ���̣���� ����������"
#: ../../modules/class/catalog.php:888
msgid "Catalog Update Finished"
msgstr "���������� �������� ��������"
#: ../../modules/class/catalog.php:902
msgid "Unable to load XMLRPC library, make sure XML-RPC is enabled"
msgstr "���������� ��������� ���������� XMLRPC, ��������� ��� XML-RPC ��������"
#: ../../modules/class/catalog.php:934
#: ../../modules/class/catalog.php:949
msgid "Error connecting to"
msgstr "������ ��� ���������� �"
#: ../../modules/class/catalog.php:934
#: ../../modules/class/catalog.php:949
msgid "Code"
msgstr "���"
#: ../../modules/class/catalog.php:934
#: ../../modules/class/catalog.php:949
msgid "Reason"
msgstr "�������"
#: ../../modules/class/catalog.php:954
msgid "Completed updating remote catalog(s)"
msgstr "��������� ���������� ���̣����� ��������(��)"
#: ../../modules/class/catalog.php:1042
msgid "Checking"
msgstr "��������"
#: ../../modules/class/catalog.php:1099
msgid "Catalog Clean Done"
msgstr "������� �������� ���������"
#: ../../modules/class/catalog.php:1099
msgid "files removed"
msgstr "����� �������"
#: ../../modules/class/catalog.php:1339
msgid "Updating the"
msgstr "���������� "
#: ../../modules/class/catalog.php:1339
#: ../../templates/show_admin_index.inc:31
#: ../../templates/admin_menu.inc:35
msgid "Catalog"
msgstr "�������"
#: ../../modules/class/catalog.php:1340
msgid "songs found checking tag information."
msgstr "����� ������� �������� ���������� � tag"
#: ../../modules/class/catalog.php:1387
msgid " FOUND"
msgstr " �������"
#: ../../modules/class/catalog.php:1388
msgid "Searching for new Album Art"
msgstr "����� ����� �������� �������"
#: ../../modules/class/catalog.php:1392
msgid "Album Art Already Found"
msgstr "�������� ������� ��� �������"
#: ../../modules/class/stream.php:198
msgid "Opened for writting"
msgstr "������� ��� ������"
#: ../../modules/class/stream.php:203
msgid "Error, cannot write"
msgstr "������, ���������� ��������"
#: ../../modules/class/stream.php:214
msgid "Error, cannot write song in file"
msgstr "������, ���������� �������� ����� ��� ����"
#: ../../modules/class/stream.php:220
msgid "Closed after write"
msgstr "������� ����� ������"
#: ../../modules/class/album.php:126
msgid "Various"
msgstr "���������"
#: ../../modules/class/song.php:253
#: ../../modules/class/song.php:257
#: ../../modules/class/song.php:261
#: ../../modules/class/song.php:265
#: ../../modules/class/song.php:269
#: ../../modules/class/song.php:273
#: ../../modules/class/song.php:277
#: ../../modules/class/song.php:282
#: ../../modules/class/song.php:287
#: ../../modules/class/song.php:291
#: ../../modules/class/song.php:295
#: ../../modules/class/song.php:300
msgid "updated to"
msgstr "��������� �"
#: ../../modules/class/song.php:257
#: ../../upload.php:235
#: ../../templates/show_songs.inc:39
msgid "Bitrate"
msgstr "�������"
#: ../../modules/class/song.php:261
msgid "Rate"
msgstr "��������"
#: ../../modules/class/song.php:265
msgid "Mode"
msgstr "�����"
#: ../../modules/class/song.php:269
#: ../../upload.php:234
#: ../../templates/show_songs.inc:37
msgid "Time"
msgstr "�����"
#: ../../modules/class/song.php:273
#: ../../templates/show_songs.inc:32
#: ../../templates/show_songs.inc:36
msgid "Track"
msgstr "�������"
#: ../../modules/class/song.php:277
msgid "Filesize"
msgstr "������ �����"
#: ../../modules/class/song.php:282
#: ../../upload.php:231
#: ../../templates/show_artists.inc:39
#: ../../templates/show_artists.inc:62
#: ../../templates/show_songs.inc:34
#: ../../templates/show_albums.inc:40
#: ../../templates/show_albums.inc:70
msgid "Artist"
msgstr "�����������"
#: ../../modules/class/song.php:287
#: ../../upload.php:232
#: ../../templates/show_songs.inc:35
#: ../../templates/show_albums.inc:38
#: ../../templates/show_albums.inc:68
msgid "Album"
msgstr "������"
#: ../../modules/class/song.php:291
#: ../../templates/show_albums.inc:43
#: ../../templates/show_albums.inc:73
msgid "Year"
msgstr "���"
#: ../../modules/class/song.php:295
#: ../../templates/list_flagged.inc:46
#: ../../templates/flag.inc:66
msgid "Comment"
msgstr "�����������"
#: ../../modules/class/song.php:300
#: ../../upload.php:233
#: ../../templates/show_songs.inc:40
msgid "Genre"
msgstr "����"
#: ../../modules/lib.php:53
msgid "day"
msgstr "����"
#: ../../modules/lib.php:53
msgid "days"
msgstr "���
#: ../../modules/lib.php:55
msgid "hour"
msgstr "���"
#: ../../modules/lib.php:55
msgid "hours"
msgstr "����"
#: ../../modules/lib.php:70
msgid "Catalog Statistics"
msgstr "���������� ��������"
#: ../../modules/lib.php:73
msgid "Total Users"
msgstr "��� ������������"
#: ../../modules/lib.php:77
msgid "Connected Users"
msgstr "������������ ������������"
#: ../../modules/lib.php:81
#: ../../templates/show_artists.inc:42
#: ../../templates/show_artists.inc:65
#: ../../templates/menu.inc:35
msgid "Albums"
msgstr "�������"
#: ../../modules/lib.php:85
#: ../../templates/menu.inc:36
msgid "Artists"
msgstr "�������"
#: ../../modules/lib.php:89
#: ../../templates/show_artists.inc:41
#: ../../templates/show_artists.inc:64
#: ../../templates/show_albums.inc:41
#: ../../templates/show_albums.inc:71
msgid "Songs"
msgstr "�����"
#: ../../modules/lib.php:93
msgid "Catalog Size"
msgstr "������ ��������"
#: ../../modules/lib.php:97
msgid "Catalog Time"
msgstr "����� ��������"
#: ../../modules/lib.php:151
msgid "Play Random Selection"
msgstr "������ ��������� �����"
#: ../../modules/lib.php:158
msgid "Item count"
msgstr "�ޣ�"
#: ../../modules/lib.php:170
#: ../../templates/show_artists.inc:55
#: ../../templates/show_albums.inc:58
msgid "All"
msgstr "���"
#: ../../modules/lib.php:172
msgid "From genre"
msgstr "�� �����"
#: ../../modules/lib.php:182
msgid "Favor Unplayed"
msgstr "������� �������������"
#: ../../modules/lib.php:183
msgid "Full Albums"
msgstr "��� �������"
#: ../../modules/lib.php:184
msgid "Full Artist"
msgstr "���� ������"
#: ../../modules/lib.php:193
msgid "from catalog"
msgstr "�� ��������"
#: ../../modules/lib.php:204
msgid "Play Random Songs"
msgstr "������ ��������� �����"
#: ../../modules/lib.php:912
msgid "Public"
msgstr "�����"
#: ../../modules/lib.php:913
msgid "Your Private"
msgstr "���� ������"
#: ../../modules/lib.php:914
msgid "Other Private"
msgstr "������ ������"
#: ../../modules/lib.php:995
#: ../../templates/show_play_selected.inc.php:61
msgid "View"
msgstr "�����������"
#: ../../modules/lib.php:998
#: ../../templates/show_play_selected.inc.php:62
#: ../../templates/show_users.inc:52
#: ../../templates/show_users.inc:86
msgid "Edit"
msgstr "��������"
#: ../../modules/lib.php:999
#: ../../upload.php:290
#: ../../templates/catalog.inc:60
#: ../../templates/show_users.inc:61
msgid "Delete"
msgstr "�������"
#: ../../modules/lib.php:1007
#: ../../templates/show_localplay.inc:41
#: ../../templates/show_artists.inc:54
#: ../../templates/show_albums.inc:57
#: ../../templates/show_artist.inc:79
#: ../../templates/show_mpdplay.inc:45
msgid "Play"
msgstr "������"
#: ../../modules/lib.php:1008
#: ../../templates/show_artists.inc:56
#: ../../templates/show_albums.inc:59
#: ../../templates/show_mpdplay.inc:67
msgid "Random"
msgstr "��������"
#: ../../modules/lib.php:1014
#: ../../templates/show_songs.inc:110
#: ../../templates/show_album.inc:61
#: ../../templates/show_albums.inc:61
#: ../../templates/show_artist.inc:81
msgid "Download"
msgstr "���������"
#: ../../modules/lib.php:1025
msgid "There are no playlists of this type"
msgstr "��� ���������� ����� ����"
#: ../../modules/lib.php:1060
msgid "Create a new playlist"
msgstr "������� ����� ��������"
#: ../../modules/admin.php:46
msgid "Manage Users"
msgstr "���������� ��������������"
#: ../../modules/admin.php:48
msgid "Add a new user"
msgstr "�������� ������ ������������"
#: ../../admin/catalog.php:55
#: ../../templates/catalog.inc:66
msgid "Add to Catalog(s)"
msgstr "�������� � �������(�)"
#: ../../admin/catalog.php:66
#: ../../templates/catalog.inc:67
msgid "Add to all Catalogs"
msgstr "�������� �� ��� ��������"
#: ../../admin/catalog.php:76
#: ../../templates/catalog.inc:73
msgid "Update Catalog(s)"
msgstr "�������� �������(�)"
#: ../../admin/catalog.php:87
#: ../../templates/catalog.inc:74
msgid "Update All Catalogs"
msgstr "�������� ��� ��������"
#: ../../admin/catalog.php:119
#: ../../templates/catalog.inc:80
msgid "Clean Catalog(s)"
msgstr "�������� �������(�)"
#: ../../admin/catalog.php:149
#: ../../templates/catalog.inc:81
msgid "Clean All Catalogs"
msgstr "�������� ��� ��������"
#: ../../admin/catalog.php:198
msgid "Now Playing Cleared"
msgstr "�� ������ ���̣����"
#: ../../admin/catalog.php:198
msgid "All now playing data has been cleared"
msgstr "��� ����������� ����� �������"
#: ../../admin/catalog.php:203
msgid "Do you really want to clear your catalog?"
msgstr "�� �������������� ������ �������� ��� �������?"
#: ../../admin/catalog.php:210
msgid "Do you really want to clear the statistics for this catalog?"
msgstr "�� ������������� ������ ������� ���������� ��� ����� ��������?"
#: ../../admin/catalog.php:228
msgid "Do you really want to delete this catalog?"
msgstr "�� ������������ ������ ������� ���� �������?"
#: ../../admin/catalog.php:259
msgid "Album Art Search Finished"
msgstr "����� �������� ��� ������� ��������"
#: ../../admin/users.php:77
#: ../../admin/users.php:124
msgid "Error Username Required"
msgstr "������ ��������� ��� ������������"
#: ../../admin/users.php:80
#: ../../admin/users.php:121
msgid "Error Passwords don't match"
msgstr "������ ������ �� ���������"
#: ../../admin/users.php:138
msgid "Are you sure you want to permanently delete"
msgstr "�� ������� ��� ������ ������� ����� ������"
#: ../../admin/users.php:145
#: ../../templates/show_confirm_action.inc.php:29
msgid "No"
msgstr "���"
#: ../../admin/users.php:147
msgid "User Deleted"
msgstr "������������ ���̣�"
#: ../../admin/users.php:150
msgid "Delete Error"
msgstr "������� ������r"
#: ../../admin/users.php:150
msgid "Unable to delete last Admin User"
msgstr "����������� ������� ���������� ������������-��������������"
#: ../../admin/access.php:43
msgid "Do you really want to delete this Access Record?"
msgstr "�� ������������� ������ ������� ������?"
#: ../../admin/access.php:51
msgid "Entry Deleted"
msgstr "������ �������"
#: ../../admin/access.php:51
msgid "Your Access List Entry has been removed"
msgstr "�������"
#: ../../admin/access.php:61
msgid "Entry Added"
msgstr "������ ���������"
#: ../../admin/access.php:61
msgid "Your new Access List Entry has been created"
msgstr "��� ����� ������ ������� ������"
#: ../../admin/mail.php:98
msgid "Mail to"
msgstr "�������� ������"
#: ../../admin/mail.php:109
msgid "Subject"
msgstr "�������"
#: ../../admin/mail.php:116
msgid "Message"
msgstr "���������"
#: ../../admin/mail.php:126
msgid "Send Mail"
msgstr "������� �����"
#: ../../admin/song.php:70
msgid "Songs Disabled"
msgstr "����� ���������"
#: ../../admin/song.php:70
msgid "The requested song(s) have been disabled"
msgstr "������������� �����(�) ���������"
#: ../../admin/song.php:80
msgid "Songs Enabled"
msgstr "����� ��������"
#: ../../admin/song.php:80
msgid "The requested song(s) have been enabled"
msgstr "������������� �����(�) ��������"
#: ../../templates/show_user_registration.inc.php:28
#: ../../templates/show_install_account.inc.php:59
#: ../../templates/userform.inc:41
#: ../../templates/show_users.inc:40
msgid "Username"
msgstr "��� ������������"
#: ../../templates/show_user_registration.inc.php:36
#: ../../templates/userform.inc:49
msgid "Full Name"
msgstr "������ ���"
#: ../../templates/show_user_registration.inc.php:44
#: ../../templates/show_user.inc.php:40
#: ../../templates/userform.inc:56
msgid "E-mail"
msgstr "E-mail"
#: ../../templates/show_user_registration.inc.php:52
#: ../../templates/show_install_account.inc.php:63
#: ../../templates/userform.inc:64
#: ../../templates/show_login_form.inc:53
msgid "Password"
msgstr "������"
#: ../../templates/show_user_registration.inc.php:60
#: ../../templates/show_user.inc.php:75
#: ../../templates/userform.inc:73
msgid "Confirm Password"
msgstr "������������� ������"
#: ../../templates/show_user_registration.inc.php:69
msgid "Register User"
msgstr "���������������� ������������"
#: ../../templates/show_install_account.inc.php:35
#: ../../templates/show_install_config.inc:35
#: ../../templates/show_install.inc:34
msgid "Ampache Installation"
msgstr "��������� Ampache"
#: ../../templates/show_install_account.inc.php:37
#: ../../templates/show_install_config.inc:37
#: ../../templates/show_install.inc:36
msgid "This Page handles the installation of the ampache database and the creation of the ampache.cfg.php file. Before you continue please make sure that you have the following pre-requisits"
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/show_install_account.inc.php:40
#: ../../templates/show_install_config.inc:40
#: ../../templates/show_install.inc:39
msgid "A MySQL Server with a username and password that can create/modify databases"
msgstr "MySQL Server with a username and password that can create/modify databases"
#: ../../templates/show_install_account.inc.php:41
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"
#: ../../templates/show_install_account.inc.php:43
#: ../../templates/show_install_config.inc:43
#: ../../templates/show_install.inc:42
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"
#: ../../templates/show_install_account.inc.php:48
#: ../../templates/show_install_config.inc:48
#: ../../templates/show_install.inc:46
msgid "Step 1 - Creating and Inserting the Ampache Database"
msgstr "Step 1 - Creating and Inserting the Ampache Database"
#: ../../templates/show_install_account.inc.php:49
msgid "Step 2 - Creating the ampache.cfg.php file"
msgstr "Step 2 - Creating the ampache.cfg.php file"
#: ../../templates/show_install_account.inc.php:50
#: ../../templates/show_install_config.inc:53
#: ../../templates/show_install.inc:51
msgid "Step 3 - Setup Initial Account"
msgstr "Step 3 - Setup Initial Account"
#: ../../templates/show_install_account.inc.php:52
msgid "This step creates your initial Ampache admin account. Once your admin account has been created you will be directed to the login page"
msgstr "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:68
msgid "Create Account"
msgstr "Create Account"
#: ../../templates/show_confirm_action.inc.php:28
msgid "Yes"
msgstr "Yes"
#: ../../templates/show_import_playlist.inc.php:26
msgid "Importing a Playlist from a File"
msgstr "Importing a Playlist from a File"
#: ../../templates/show_import_playlist.inc.php:29
#: ../../upload.php:237
msgid "Filename"
msgstr "Filename"
#: ../../templates/show_import_playlist.inc.php:36
msgid "Playlist Type"
msgstr "Playlist Type"
#: ../../templates/show_import_playlist.inc.php:49
msgid "Import Playlist"
msgstr "Import Playlist"
#: ../../templates/show_user.inc.php:31
#: ../../templates/customize_catalog.inc:29
#: ../../templates/show_add_access.inc:40
#: ../../templates/show_access_list.inc:47
msgid "Name"
msgstr "Name"
#: ../../templates/show_user.inc.php:48
msgid "View Limit"
msgstr "View Limit"
#: ../../templates/show_user.inc.php:56
msgid "Update Profile"
msgstr "Update Profile"
#: ../../templates/show_user.inc.php:67
msgid "Enter password"
msgstr "Enter password"
#: ../../templates/show_user.inc.php:83
msgid "Change Password"
msgstr "Change Password"
#: ../../templates/show_user.inc.php:91
msgid "Clear Stats"
msgstr "Clear Stats"
#: ../../templates/show_confirmation.inc.php:30
msgid "Continue"
msgstr "Continue"
#: ../../templates/show_play_selected.inc.php:43
msgid "Play Selected"
msgstr "Play Selected"
#: ../../templates/show_play_selected.inc.php:44
#: ../../playlist.php:77
msgid "Flag Selected"
msgstr "Flag Selected"
#: ../../templates/show_play_selected.inc.php:45
#: ../../playlist.php:83
msgid "Edit Selected"
msgstr "Edit Selected"
#: ../../templates/show_play_selected.inc.php:52
msgid "Set Track Numbers"
msgstr "Set Track Numbers"
#: ../../templates/show_play_selected.inc.php:53
msgid "Remove Selected Tracks"
msgstr "Remove Selected Tracks"
#: ../../templates/show_play_selected.inc.php:59
msgid "Playlist"
msgstr "Playlist"
#: ../../templates/show_play_selected.inc.php:59
msgid "Add to"
msgstr "Add to"
#: ../../localplay.php:79
msgid "Unknown action requested"
msgstr "Unknown action requested"
#: ../../artists.php:47
msgid "All songs by"
msgstr "All songs by"
#: ../../artists.php:56
#: ../../albums.php:105
msgid "Starting Update from Tags"
msgstr "Starting Update from Tags"
#: ../../artists.php:61
#: ../../albums.php:110
msgid "Update From Tags Complete"
msgstr "Update From Tags Complete"
#: ../../artists.php:73
#: ../../artists.php:82
#: ../../artists.php:94
#: ../../artists.php:111
msgid "<u>S</u>how artists starting with"
msgstr "<u>S</u>how artists starting with"
#: ../../amp-mpd.php:41
msgid "Error Connecting"
msgstr "Error Connecting"
#: ../../playlist.php:115
msgid "owned by"
msgstr "owned by"
#: ../../playlist.php:118
msgid "Edit Playlist"
msgstr "Edit Playlist"
#: ../../playlist.php:121
msgid "Play Full Playlist"
msgstr "Play Full Playlist"
#: ../../playlist.php:122
msgid "Play Random"
msgstr "Play Random"
#: ../../playlist.php:135
msgid "New Playlist"
msgstr "New Playlist"
#: ../../playlist.php:192
msgid "Playlist updated."
msgstr "Playlist updated."
#: ../../index.php:38
msgid "Welcome to"
msgstr "Welcome to"
#: ../../index.php:40
msgid "you are currently logged in as"
msgstr "you are currently logged in as"
#: ../../index.php:65
msgid "Most Popular Albums"
msgstr "Most Popular Albums"
#: ../../index.php:75
msgid "Most Popular Artists"
msgstr "Most Popular Artists"
#: ../../index.php:82
msgid "Most Popular Songs"
msgstr "Most Popular Songs"
#: ../../index.php:92
msgid "Newest Artist Additions"
msgstr "Newest Artist Additions"
#: ../../index.php:99
msgid "Newest Album Additions"
msgstr "Newest Album Additions"
#: ../../user.php:45
msgid "Error: Password Does Not Match or Empty"
msgstr "Error: Password Does Not Match or Empty"
#: ../../user.php:51
#: ../../user.php:62
msgid "Error: Insufficient Rights"
msgstr "Error: Insufficient Rights"
#: ../../flag.php:35
msgid "Flagging song completed."
msgstr "Flagging song completed."
#: ../../albums.php:43
msgid "Album Art Cleared"
msgstr "Album Art Cleared"
#: ../../albums.php:43
msgid "Album Art information has been removed form the database"
msgstr "Album Art information has been removed from the database"
#: ../../albums.php:77
msgid "Album Art Located"
msgstr "Album Art Located"
#: ../../albums.php:77
msgid "Album Art information has been located in Amazon. If incorrect, click \"Reset Album Art\" below to remove the artwork."
msgstr "Album Art information has been located in Amazon. If incorrect, click \"Reset Album Art\" below to remove the artwork."
#: ../../albums.php:85
#: ../../albums.php:95
msgid "Get Art"
msgstr "Get Art"
#: ../../albums.php:89
msgid "Album Art Not Located"
msgstr "Album Art Not Located"
#: ../../albums.php:89
msgid "Album Art could not be located at this time. This may be due to Amazon being busy, or the album not being present in their collection."
msgstr "Album Art could not be located at this time. This may be due to Amazon being busy, or the album not being present in their collection."
#: ../../albums.php:126
#: ../../albums.php:132
msgid "<u>S</u>how all albums"
msgstr "<u>S</u>how all albums"
#: ../../albums.php:139
#: ../../albums.php:146
#: ../../albums.php:151
msgid "<u>S</u>how only albums starting with"
msgstr "<u>S</u>how only albums starting with"
#: ../../albums.php:145
msgid "Select a starting letter or Show all"
msgstr "Select a starting letter or Show all"
#: ../../upload.php:124
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini"
msgstr "The uploaded file exceeds the upload_max_filesize directive in php.ini"
#: ../../upload.php:127
msgid "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form."
msgstr "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form."
#: ../../upload.php:130
msgid "The uploaded file was only partially uploaded."
msgstr "The uploaded file was only partially uploaded."
#: ../../upload.php:133
msgid "No file was uploaded."
msgstr "No file was uploaded."
#: ../../upload.php:136
msgid "An Unknown Error has occured."
msgstr "An Unknown Error has occured."
#: ../../upload.php:157
msgid "Successfully-Quarantined"
msgstr "Successfully-Quarantined"
#: ../../upload.php:167
msgid "Successfully-Cataloged"
msgstr "Successfully-Catalogued"
#: ../../upload.php:229
#: ../../templates/show_artists.inc:43
#: ../../templates/show_artists.inc:67
#: ../../templates/show_songs.inc:42
#: ../../templates/show_albums.inc:45
#: ../../templates/show_albums.inc:75
#: ../../templates/show_access_list.inc:51
#: ../../templates/show_artist.inc:56
msgid "Action"
msgstr "Action"
#: ../../upload.php:230
#: ../../templates/list_flagged.inc:41
#: ../../templates/flag.inc:58
msgid "Song"
msgstr "Song"
#: ../../upload.php:236
#: ../../templates/show_songs.inc:38
msgid "Size"
msgstr "Size"
#: ../../upload.php:238
msgid "User"
msgstr "User"
#: ../../upload.php:239
msgid "Date"
msgstr "Date"
#: ../../upload.php:267
msgid "Unknown"
msgstr "Unknown"
#: ../../upload.php:289
msgid "Add"
msgstr "Add"
#: ../../upload.php:294
msgid "Quarantined"
msgstr "Quarantined"
#: ../../templates/customize_catalog.inc:24
msgid "Settings for catalog in"
msgstr "Settings for catalogue in"
#: ../../templates/customize_catalog.inc:32
#: ../../templates/add_catalog.inc:39
msgid "Auto-inserted Fields"
msgstr "Auto-inserted Fields"
#: ../../templates/customize_catalog.inc:33
#: ../../templates/add_catalog.inc:40
msgid "album name"
msgstr "album name"
#: ../../templates/customize_catalog.inc:34
#: ../../templates/add_catalog.inc:41
msgid "artist name"
msgstr "artist name"
#: ../../templates/customize_catalog.inc:35
msgid "catalog path"
msgstr "catalogue path"
#: ../../templates/customize_catalog.inc:36
#: ../../templates/add_catalog.inc:42
msgid "id3 comment"
msgstr "id3 comment"
#: ../../templates/customize_catalog.inc:37
#: ../../templates/add_catalog.inc:43
msgid "genre"
msgstr "genre"
#: ../../templates/customize_catalog.inc:38
#: ../../templates/add_catalog.inc:44
msgid "track number (padded with leading 0)"
msgstr "track number (padded with leading 0)"
#: ../../templates/customize_catalog.inc:39
#: ../../templates/add_catalog.inc:45
msgid "song title"
msgstr "song title"
#: ../../templates/customize_catalog.inc:40
#: ../../templates/add_catalog.inc:46
msgid "year"
msgstr "year"
#: ../../templates/customize_catalog.inc:41
#: ../../templates/add_catalog.inc:47
msgid "other"
msgstr "other"
#: ../../templates/customize_catalog.inc:45
msgid "ID3 set command"
msgstr "ID3 set command"
#: ../../templates/customize_catalog.inc:51
msgid "Filename pattern"
msgstr "Filename pattern"
#: ../../templates/customize_catalog.inc:58
#: ../../templates/add_catalog.inc:74
msgid "Folder Pattern"
msgstr "Folder Pattern"
#: ../../templates/customize_catalog.inc:58
#: ../../templates/add_catalog.inc:74
msgid "(no leading or ending '/')"
msgstr "(no leading or ending '/')"
#: ../../templates/customize_catalog.inc:69
msgid "Save Catalog Settings"
msgstr "Save Catalogue Settings"
#: ../../templates/show_admin_index.inc:27
msgid "Admin Section"
msgstr "Admin Section"
#: ../../templates/show_admin_index.inc:29
#: ../../templates/admin_menu.inc:33
msgid "Users"
msgstr "Users"
#: ../../templates/show_admin_index.inc:29
msgid "Create/Modify User Accounts for Ampache"
msgstr "Create/Modify User Accounts for Ampache"
#: ../../templates/show_admin_index.inc:30
msgid "Mail"
msgstr "Mail"
#: ../../templates/show_admin_index.inc:30
msgid "Mail your users to notfiy them of changes"
msgstr "Mail your users to notfiy them of changes"
#: ../../templates/show_admin_index.inc:31
msgid "Create/Update/Clean your catalog here"
msgstr "Create/Update/Clean your catalogue here"
#: ../../templates/show_admin_index.inc:32
#: ../../templates/admin_menu.inc:36
msgid "Admin Preferences"
msgstr "Admin Preferences"
#: ../../templates/show_admin_index.inc:32
msgid "Modify Site-wide preferences"
msgstr "Modify Site-wide preferences"
#: ../../templates/show_admin_index.inc:33
#: ../../templates/catalog.inc:98
#: ../../templates/admin_menu.inc:37
msgid "Access Lists"
msgstr "Access Lists"
#: ../../templates/show_admin_index.inc:33
msgid "Modify Access List Permissions"
msgstr "Modify Access List Permissions"
#: ../../templates/show_admin_index.inc:33
msgid "Must have access_control=true in ampache.cfg"
msgstr "Must have access_control=true in ampache.cfg"
#: ../../templates/show_test.inc:29
msgid "Ampache Debug"
msgstr "Ampache Debug"
#: ../../templates/show_test.inc:30
msgid "You've reached this page because a configuration error has occured. Debug Information below"
msgstr "You've reached this page because a configuration error has occured. Debug Information below"
#: ../../templates/show_test.inc:34
msgid "CHECK"
msgstr "CHECK"
#: ../../templates/show_test.inc:36
msgid "STATUS"
msgstr "STATUS"
#: ../../templates/show_test.inc:38
msgid "DESCRIPTION"
msgstr "DESCRIPTION"
#: ../../templates/show_test.inc:41
msgid "PHP Version"
msgstr "PHP Version"
#: ../../templates/show_test.inc:56
msgid "This tests to make sure that you are running a version of PHP that is known to work with 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:60
msgid "Mysql for PHP"
msgstr "Mysql for PHP"
#: ../../templates/show_test.inc:75
msgid "This test checks to see if you have the mysql extensions loaded for PHP. These are required for Ampache to work."
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:79
msgid "PHP Session Support"
msgstr "PHP Session Support"
#: ../../templates/show_test.inc:94
msgid "This test checks to make sure that you have PHP session support enabled. Sessions are required for Ampache to work."
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:98
msgid "PHP ICONV Support"
msgstr "PHP ICONV Support"
#: ../../templates/show_test.inc:112
msgid "This test checks to make sure you have Iconv support installed. Iconv support is not required for Ampache, but it is highly recommended"
msgstr "This test checks to make sure you have Iconv support installed. Iconv support is not required for Ampache, but it is highly recommended"
#: ../../templates/show_test.inc:116
#: ../../templates/show_install_config.inc:87
msgid "Ampache.cfg.php Exists"
msgstr "Ampache.cfg.php Exists"
#: ../../templates/show_test.inc:131
msgid ""
"This attempts to read /config/ampache.cfg.php If this fails either the ampache.cfg.php is not in the correct locations or\n"
"\tit is not currently readable by your webserver."
msgstr ""
"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:137
#: ../../templates/show_install_config.inc:104
msgid "Ampache.cfg.php Configured?"
msgstr "Ampache.cfg.php Configured?"
#: ../../templates/show_test.inc:154
msgid ""
"This test makes sure that you have set all of the required config variables and that we are able to \n"
"\tcompleatly 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 \n"
"\tcompletely parse your config file"
#: ../../templates/show_test.inc:160
msgid "Ampache.cfg.php Up to Date?"
msgstr "Ampache.cfg.php Up to Date?"
#: ../../templates/show_test.inc:180
msgid "Ampache.cfg.php is missing the following:"
msgstr "Ampache.cfg.php is missing the following:"
#: ../../templates/show_test.inc:181
msgid "Under CONF"
msgstr "Under CONF"
#: ../../templates/show_test.inc:185
msgid "Under LIBGLUE"
msgstr "Under LIBGLUE"
#: ../../templates/show_test.inc:196
msgid "DB Connection"
msgstr "DB Connection"
#: ../../templates/show_test.inc:212
msgid "This attempts to connect to your database using the values from your ampache.cfg.php"
msgstr "This attempts to connect to your database using the values from your ampache.cfg.php"
#: ../../templates/show_localplay.inc:30
msgid "Local Play Control"
msgstr "Local Play Control"
#: ../../templates/show_localplay.inc:35
msgid "Playback"
msgstr "Playback"
#: ../../templates/show_localplay.inc:39
#: ../../templates/list_header.inc:71
#: ../../templates/show_mpdplay.inc:43
msgid "Prev"
msgstr "Prev"
#: ../../templates/show_localplay.inc:40
#: ../../templates/show_mpdplay.inc:44
msgid "Stop"
msgstr "Stop"
#: ../../templates/show_localplay.inc:42
#: ../../templates/show_mpdplay.inc:46
msgid "Pause"
msgstr "Pause"
#: ../../templates/show_localplay.inc:43
#: ../../templates/list_header.inc:94
#: ../../templates/show_mpdplay.inc:47
msgid "Next"
msgstr "Next"
#: ../../templates/show_localplay.inc:49
msgid "Volume"
msgstr "Volume"
#: ../../templates/show_localplay.inc:53
#: ../../templates/show_localplay.inc:54
msgid "Increase Volume"
msgstr "Increase Volume"
#: ../../templates/show_localplay.inc:55
#: ../../templates/show_localplay.inc:56
msgid "Decrease Volume"
msgstr "Decrease Volume"
#: ../../templates/show_localplay.inc:62
msgid "Clear queue"
msgstr "Clear queue"
#: ../../templates/add_catalog.inc:28
msgid "Add a Catalog"
msgstr "Add a Catalogue"
#: ../../templates/add_catalog.inc:30
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/add_catalog.inc:36
msgid "Catalog Name"
msgstr "Catalogue Name"
#: ../../templates/add_catalog.inc:53
msgid "Path"
msgstr "Path"
#: ../../templates/add_catalog.inc:57
msgid "Catalog Type"
msgstr "Catalogue Type"
#: ../../templates/add_catalog.inc:61
msgid "Remote"
msgstr "Remote"
#: ../../templates/add_catalog.inc:66
msgid "ID3 Set Command"
msgstr "ID3 Set Command"
#: ../../templates/add_catalog.inc:70
msgid "Filename Pattern"
msgstr "Filename Pattern"
#: ../../templates/add_catalog.inc:78
#: ../../templates/catalog.inc:104
msgid "Gather Album Art"
msgstr "Gather Album Art"
#: ../../templates/add_catalog.inc:82
msgid "ID3V2 Tags"
msgstr "ID3V2 Tags"
#: ../../templates/add_catalog.inc:85
msgid "Amazon"
msgstr "Amazon"
#: ../../templates/add_catalog.inc:88
msgid "File Folder"
msgstr "File Folder"
#: ../../templates/add_catalog.inc:95
msgid "Build Playlists from m3u Files"
msgstr "Build Playlists from m3u Files"
#: ../../templates/add_catalog.inc:102
msgid "Add Catalog"
msgstr "Add Catalogue"
#: ../../templates/list_flagged.inc:42
#: ../../templates/show_songs.inc:41
msgid "Flag"
msgstr "Flag"
#: ../../templates/list_flagged.inc:43
msgid "New Flag"
msgstr "New Flag"
#: ../../templates/list_flagged.inc:44
msgid "Flagged by"
msgstr "Flagged by"
#: ../../templates/list_flagged.inc:45
msgid "ID3 Update"
msgstr "ID3 Update"
#: ../../templates/list_flagged.inc:69
msgid "Accept"
msgstr "Accept"
#: ../../templates/list_flagged.inc:70
msgid "Reject"
msgstr "Reject"
#: ../../templates/show_songs.inc:33
msgid "Song title"
msgstr "Song title"
#: ../../templates/show_songs.inc:113
msgid "Direct Link"
msgstr "Direct Link"
#: ../../templates/show_songs.inc:131
msgid "Total"
msgstr "Total"
#: ../../templates/show_install_config.inc:41
#: ../../templates/show_install.inc:40
msgid "Your webserver has read access to the /sql/ampache.sql file and the /config/ampache.cfg.php.dist file"
msgstr "Your webserver has read access to the /sql/ampache.sql file and the /config/ampache.cfg.php.dist file"
#: ../../templates/show_install_config.inc:49
#: ../../templates/show_install.inc:50
msgid "Step 2 - Creating the Ampache.cfg.php file"
msgstr "Step 2 - Creating the Ampache.cfg.php file"
#: ../../templates/show_install_config.inc:51
msgid "This steps takes the basic config values, and first attempts to write them out directly to your webserver. If access is denied it will prompt you to download the config file. Please put the downloaded config file in /config"
msgstr "This steps takes the basic config values, and first attempts to write them out directly to your webserver. If access is denied it will prompt you to download the configuration file. Please put the downloaded configuration file in /config"
#: ../../templates/show_install_config.inc:59
msgid "Web Path"
msgstr "Web Path"
#: ../../templates/show_install_config.inc:63
#: ../../templates/show_install.inc:57
msgid "Desired Database Name"
msgstr "Desired Database Name"
#: ../../templates/show_install_config.inc:67
#: ../../templates/show_install.inc:61
msgid "MySQL Hostname"
msgstr "MySQL Hostname"
#: ../../templates/show_install_config.inc:71
msgid "MySQL Username"
msgstr "MySQL Username"
#: ../../templates/show_install_config.inc:75
msgid "MySQL Password"
msgstr "MySQL Password"
#: ../../templates/show_install_config.inc:80
msgid "Write Config"
msgstr "Write Configuration"
#: ../../templates/show_install_config.inc:124
msgid "Check for Config"
msgstr "Check for Configuration"
#: ../../templates/show_album.inc:53
msgid "Play Album"
msgstr "Play Album"
#: ../../templates/show_album.inc:54
msgid "Play Random from Album"
msgstr "Play Random from Album"
#: ../../templates/show_album.inc:55
msgid "Reset Album Art"
msgstr "Reset Album Art"
#: ../../templates/show_album.inc:56
msgid "Find Album Art"
msgstr "Find Album Art"
#: ../../templates/show_album.inc:58
#: ../../templates/show_artist.inc:37
msgid "Update from tags"
msgstr "Update from tags"
#: ../../templates/show_preferences.inc:31
msgid "Editing"
msgstr "Editing"
#: ../../templates/show_preferences.inc:31
msgid "preferences"
msgstr "preferences"
#: ../../templates/show_preferences.inc:33
msgid "Rebuild Preferences"
msgstr "Rebuild Preferences"
#: ../../templates/show_preferences.inc:39
msgid "Preference"
msgstr "Preference"
#: ../../templates/show_preferences.inc:40
msgid "Value"
msgstr "Value"
#: ../../templates/show_preferences.inc:42
msgid "Type"
msgstr "Type"
#: ../../templates/show_preferences.inc:43
msgid "Apply to All"
msgstr "Apply to All"
#: ../../templates/show_preferences.inc:83
msgid "Update Preferences"
msgstr "Update Preferences"
#: ../../templates/show_preferences.inc:87
msgid "Cancel"
msgstr "Cancel"
#: ../../templates/userform.inc:25
msgid "Adding a New User"
msgstr "Adding a New User"
#: ../../templates/userform.inc:29
msgid "Editing existing User"
msgstr "Editing existing User"
#: ../../templates/userform.inc:81
msgid "User Access Level"
msgstr "User Access Level"
#: ../../templates/userform.inc:97
msgid "Add User"
msgstr "Add User"
#: ../../templates/userform.inc:102
msgid "Update User"
msgstr "Update User"
#: ../../templates/show_install.inc:48
msgid "This step creates and inserts the Ampache database, as such please provide a mysql account with database creation rights. This step may take a while depending upon the speed of your computer"
msgstr "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:65
msgid "MySQL Administrative Username"
msgstr "MySQL Administrative Username"
#: ../../templates/show_install.inc:69
msgid "MySQL Administrative Password"
msgstr "MySQL Administrative Password"
#: ../../templates/show_install.inc:74
msgid "Insert Database"
msgstr "Insert Database"
#: ../../templates/flag.inc:43
msgid "Flag song"
msgstr "Flag song"
#: ../../templates/flag.inc:45
msgid "Flag the following song as having one of the problems listed below. Site admins will then take the appropriate action for the flagged files."
msgstr "Flag the following song as having one of the problems listed below. Site admins will then take the appropriate action for the flagged files."
#: ../../templates/flag.inc:62
msgid "Reason to flag"
msgstr "Reason to flag"
#: ../../templates/flag.inc:73
msgid "Flag Song"
msgstr "Flag Song"
#: ../../templates/show_add_access.inc:31
msgid "Add Access for a Host"
msgstr "Add Access for a Host"
#: ../../templates/show_add_access.inc:33
msgid "Use the form below to add a host that you want to have access to your Ampache catalog."
msgstr "Use the form below to add a host that you want to have access to your Ampache catalog."
#: ../../templates/show_add_access.inc:46
msgid "Start IP Address"
msgstr "Start IP Address"
#: ../../templates/show_add_access.inc:52
msgid "End IP Address"
msgstr "End IP Address"
#: ../../templates/show_add_access.inc:58
#: ../../templates/show_access_list.inc:50
msgid "Level"
msgstr "Level"
#: ../../templates/show_add_access.inc:72
msgid "Add Host"
msgstr "Add Host"
#: ../../templates/catalog.inc:33
msgid "Error: ICONV not found, ID3V2 Tags will not import correctly. See <a href=\"http://php.oregonstate.edu/iconv\">Iconv</a> for information on getting ICONV"
msgstr "Error: ICONV not found, ID3V2 Tags will not import correctly. See <a href=\"http://php.oregonstate.edu/iconv\">Iconv</a> for information on getting ICONV"
#: ../../templates/catalog.inc:42
msgid "Update Catalogs"
msgstr "Update Catalogues"
#: ../../templates/catalog.inc:68
msgid "Fast Add"
msgstr "Fast Add"
#: ../../templates/catalog.inc:75
msgid "Fast Update"
msgstr "Fast Update"
#: ../../templates/catalog.inc:88
msgid "You don't have any catalogs."
msgstr "You don't have any catalogues."
#: ../../templates/catalog.inc:97
msgid "Add a catalog"
msgstr "Add a catalogue"
#: ../../templates/catalog.inc:99
msgid "Show Duplicate Songs"
msgstr "Show Duplicate Songs"
#: ../../templates/catalog.inc:100
msgid "Show Disabled Songs"
msgstr "Show Disabled Songs"
#: ../../templates/catalog.inc:101
msgid "Clear Catalog Stats"
msgstr "Clear Catalogue Stats"
#: ../../templates/catalog.inc:102
msgid "Clear Now Playing"
msgstr "Clear Now Playing"
#: ../../templates/catalog.inc:103
msgid "Dump Album Art"
msgstr "Dump Album Art"
#: ../../templates/catalog.inc:105
msgid "View flagged songs"
msgstr "View flagged songs"
#: ../../templates/catalog.inc:106
msgid "Catalog Tools"
msgstr "Catalogue Tools"
#: ../../templates/admin_menu.inc:34
msgid "Mail Users"
msgstr "Mail Users"
#: ../../templates/menu.inc:29
msgid "Home"
msgstr "�������"
#: ../../templates/menu.inc:32
msgid "Local Play"
msgstr "Local Play"
#: ../../templates/menu.inc:37
msgid "Playlists"
msgstr "Playlists"
#: ../../templates/menu.inc:39
msgid "Preferences"
msgstr "Preferences"
#: ../../templates/menu.inc:42
#: ../../templates/show_upload.inc:59
msgid "Upload"
msgstr "��������"
#: ../../templates/menu.inc:62
#: ../../templates/menu.inc:65
msgid "Admin"
msgstr "�������"
#: ../../templates/menu.inc:72
#: ../../templates/menu.inc:78
msgid "Account"
msgstr "�������"
#: ../../templates/menu.inc:73
#: ../../templates/menu.inc:79
msgid "Stats"
msgstr "Stats"
#: ../../templates/menu.inc:74
#: ../../templates/menu.inc:80
#: ../../templates/menu.inc:84
msgid "Logout"
msgstr "Logout"
#: ../../templates/show_upload.inc:27
msgid "Please Ensure All Files Are Tagged Correctly"
msgstr "Please Ensure All Files Are Tagged Correctly"
#: ../../templates/show_upload.inc:30
msgid "Ampache relies on id3 tags to sort data. If your file is not tagged it may be deleted."
msgstr "Ampache relies on id3 tags to sort data. If your file is not tagged it may be deleted."
#: ../../templates/show_upload.inc:34
msgid "max_upload_size"
msgstr "max_upload_size"
#: ../../templates/show_now_playing.inc:31
#: ../../templates/show_mpdplay.inc:90
msgid "Now Playing"
msgstr "������ �������"
#: ../../templates/show_login_form.inc:49
#: ../../templates/show_login_form.inc:63
msgid "Login"
msgstr "Login"
#: ../../templates/show_login_form.inc:59
msgid "Remember Me"
msgstr "Remember Me"
#: ../../templates/show_access_list.inc:34
msgid "Host Access to Your Catalog"
msgstr "Host Access to Your Catalogue"
#: ../../templates/show_access_list.inc:43
msgid "Add Entry"
msgstr "Add Entry"
#: ../../templates/show_access_list.inc:48
msgid "Start Address"
msgstr "Start Address"
#: ../../templates/show_access_list.inc:49
msgid "End Address"
msgstr "End Address"
#: ../../templates/show_access_list.inc:65
msgid "Revoke"
msgstr "Revoke"
#: ../../templates/show_users.inc:43
msgid "Fullname"
msgstr "Fullname"
#: ../../templates/show_users.inc:48
msgid "Last Seen"
msgstr "Last Seen"
#: ../../templates/show_users.inc:55
#: ../../templates/show_users.inc:91
msgid "Prefs"
msgstr "Preferencess"
#: ../../templates/show_users.inc:58
msgid "Access"
msgstr "������"
#: ../../templates/show_users.inc:64
msgid "On-line"
msgstr "On-line"
#: ../../templates/show_users.inc:105
msgid "delete"
msgstr "delete"
#: ../../templates/show_search.inc:34
msgid "Search Ampache"
msgstr "�����"
#: ../../templates/show_search.inc:41
msgid "Object Type"
msgstr "Object Type"
#: ../../templates/show_artist.inc:31
msgid "Albums by"
msgstr "Albums by"
#: ../../templates/show_artist.inc:33
msgid "Show All Songs By"
msgstr "Show All Songs By"
#: ../../templates/show_artist.inc:34
msgid "Play All Songs By"
msgstr "Play All Songs By"
#: ../../templates/show_artist.inc:35
msgid "Play Random Songs By"
msgstr "Play Random Songs By"
#: ../../templates/show_artist.inc:50
msgid "Select"
msgstr "�������"
#: ../../templates/show_artist.inc:52
msgid "Cover"
msgstr "�������"
#: ../../templates/show_artist.inc:53
msgid "Album Name"
msgstr "�������� �������"
#: ../../templates/show_artist.inc:54
msgid "Album Year"
msgstr "���"
#: ../../templates/show_artist.inc:55
msgid "Total Tracks"
msgstr "����� ������"
#: ../../templates/show_mpdplay.inc:33
msgid "MPD Play Control"
msgstr "MPD Play Control"
#: ../../templates/show_mpdplay.inc:53
msgid "Loop"
msgstr "���������"
#: ../../templates/show_mpdplay.inc:60
#: ../../templates/show_mpdplay.inc:73
msgid "On"
msgstr "���"
#: ../../templates/show_mpdplay.inc:61
#: ../../templates/show_mpdplay.inc:74
msgid "Off"
msgstr "����"
#: ../../templates/show_mpdplay.inc:103
msgid "Refresh the Playlist Window"
msgstr "�������� ���� ������"
#: ../../templates/show_mpdplay.inc:103
msgid "refresh now"
msgstr "�������� ������"
#: ../../templates/show_mpdplay.inc:111
msgid "Server Playlist"
msgstr "������ �������"
#: ../../templates/show_mpdplay.inc:146
msgid "Click to shuffle (randomize) the playlist"
msgstr "������� ����� ���������� ������"
#: ../../templates/show_mpdplay.inc:146
msgid "shuffle"
msgstr "��������� �����"
#: ../../templates/show_mpdplay.inc:147
msgid "Click the clear the playlist"
msgstr "������� ����� �������� ��������"
#: ../../templates/show_mpdplay.inc:147
msgid "clear"
msgstr "��������"
|