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
|
# Norwegian Bokmal translations for Ampache svn package.
# Copyright (C) 2009 Ampache.org
# This file is distributed under the same license as the Ampache svn package.
# Retrievil Knievil <retrievil.knievil@gmail.com>, 2009.
#
msgid ""
msgstr ""
"Project-Id-Version: Ampache 3.5 svn\n"
"Report-Msgid-Bugs-To: translations at ampache.org\n"
"POT-Creation-Date: 2009-03-28 18:27+0900\n"
"PO-Revision-Date: 2009-02-05 11:36+0100\n"
"Last-Translator: Retrievil Knievil <retrievil.knievil@gmail.com>\n"
"Language-Team: Norwegian Bokmal\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"
#: ../../search.php:38
msgid "Error: No Keyword Entered"
msgstr "Feil: Intet nøkkelord"
#: ../../song.php:40
#, php-format
msgid "%1$s - %2$s Lyrics Detail"
msgstr "%1$s - %2$s Detaljer og Sangtekster"
#: ../../templates/show_album_row.inc.php:23
#: ../../templates/show_song_row.inc.php:23
#: ../../templates/show_albums.inc.php:40
#: ../../templates/show_albums.inc.php:71
#: ../../templates/show_artists.inc.php:36
#: ../../templates/show_artists.inc.php:64
#: ../../templates/show_live_streams.inc.php:35
#: ../../templates/show_live_streams.inc.php:57
#: ../../templates/show_playlists.inc.php:34
#: ../../templates/show_playlists.inc.php:57
#: ../../templates/show_videos.inc.php:35
#: ../../templates/show_videos.inc.php:58
#: ../../templates/show_add_live_stream.inc.php:68
#: ../../templates/show_catalog_row.inc.php:29
#: ../../templates/show_video_row.inc.php:23
#: ../../templates/show_artist_row.inc.php:23
#: ../../templates/show_genres.inc.php:36
#: ../../templates/show_genres.inc.php:72
#: ../../templates/show_live_stream_row.inc.php:23
#: ../../templates/show_shoutbox.inc.php:34
#: ../../templates/show_songs.inc.php:39 ../../templates/show_songs.inc.php:68
#: ../../templates/show_recently_played.inc.php:37
#: ../../templates/show_recently_played.inc.php:80
#: ../../templates/show_recently_played.inc.php:99
#: ../../templates/show_artist.inc.php:38
#: ../../templates/show_album.inc.php:51
#: ../../templates/show_playlist_song_row.inc.php:22
#: ../../templates/show_song.inc.php:29
#: ../../templates/show_playlist_row.inc.php:23
#: ../../templates/show_admin_tools.inc.php:45
msgid "Add"
msgstr "Legg til"
#: ../../templates/show_album_row.inc.php:24
#: ../../templates/sidebar_home.inc.php:104
#: ../../templates/show_artist_row.inc.php:24
#: ../../templates/show_localplay_status.inc.php:44
#: ../../templates/show_artist.inc.php:41
#: ../../templates/show_album.inc.php:55
#: ../../templates/show_playlist_row.inc.php:24
#: ../../modules/localplay/mpd.controller.php:495
#: ../../modules/localplay/httpq.controller.php:492
msgid "Random"
msgstr "Tilfeldig"
#: ../../templates/show_album_row.inc.php:45
#: ../../templates/show_song_row.inc.php:38
msgid "Post Shout"
msgstr "Lagre beskjed"
#: ../../templates/show_album_row.inc.php:50
#: ../../templates/show_playlist.inc.php:36
#: ../../templates/rightbar.inc.php:49
#: ../../templates/show_artist_row.inc.php:35
#: ../../templates/show_search_options.inc.php:33
#: ../../templates/show_playlist_row.inc.php:33
msgid "Batch Download"
msgstr "Samlet nedlasting"
#: ../../templates/show_album_row.inc.php:54
#: ../../templates/show_song_row.inc.php:47
#: ../../templates/show_play_selected.inc.php:50
#: ../../templates/show_artist_row.inc.php:39
#: ../../templates/show_live_stream_row.inc.php:31
#: ../../templates/show_playlist_song_row.inc.php:37
#: ../../templates/show_playlist_row.inc.php:37
msgid "Edit"
msgstr "Rediger"
#: ../../templates/show_user_preferences.inc.php:28
#: ../../templates/show_preferences.inc.php:28
#, php-format
msgid "Editing %s preferences"
msgstr "Redigerer innstillinger for %s"
#: ../../templates/show_user_preferences.inc.php:36
#: ../../templates/show_preference_box.inc.php:40
#: ../../templates/show_preference_box.inc.php:70
#: ../../templates/show_preference_admin.inc.php:30
#: ../../templates/show_preference_admin.inc.php:49
#: ../../templates/show_debug.inc.php:93
msgid "Preference"
msgstr "Innstilling"
#: ../../templates/show_user_preferences.inc.php:37
#: ../../templates/show_preference_box.inc.php:41
#: ../../templates/show_preference_box.inc.php:71
#: ../../templates/show_random_rules.inc.php:34
#: ../../templates/show_dynamic.inc.php:33
#: ../../templates/show_debug.inc.php:45 ../../templates/show_debug.inc.php:94
msgid "Value"
msgstr "Verdi"
#: ../../templates/show_user_preferences.inc.php:50
#: ../../templates/show_preferences.inc.php:34
msgid "Update Preferences"
msgstr "Oppdater Innstillinger"
#: ../../templates/show_song_row.inc.php:35
msgid "Song Information"
msgstr "Spor informasjon"
#: ../../templates/show_song_row.inc.php:43
#: ../../templates/show_artist.inc.php:51
#: ../../templates/show_album.inc.php:77
#: ../../templates/show_playlist_song_row.inc.php:33
msgid "Download"
msgstr "Last ned"
#: ../../templates/show_localplay_control.inc.php:25
msgid "Previous"
msgstr "Forrige"
#: ../../templates/show_localplay_control.inc.php:26
msgid "Stop"
msgstr "Stop"
#: ../../templates/show_localplay_control.inc.php:27
msgid "Pause"
msgstr "Pause"
#: ../../templates/show_localplay_control.inc.php:28
#: ../../templates/show_manage_democratic.inc.php:57
#: ../../templates/rightbar.inc.php:25
#: ../../templates/show_democratic.inc.php:38
msgid "Play"
msgstr "Spill"
#: ../../templates/show_localplay_control.inc.php:29
#: ../../templates/list_header.inc.php:101
msgid "Next"
msgstr "Neste"
#: ../../templates/show_test.inc.php:32
#: ../../templates/show_test_config.inc.php:40
#: ../../templates/sidebar_admin.inc.php:45
msgid "Ampache Debug"
msgstr "Feilsøk"
#: ../../templates/show_test.inc.php:33
msgid ""
"You've reached this page because a configuration error has occured. Debug "
"Information below"
msgstr ""
"Du har kommet til denne siden fordi en konfigurasjonsfeil har oppstått. "
"Feilsøkingsinformasjon følger: "
#: ../../templates/show_test.inc.php:38
msgid "CHECK"
msgstr "SJEKK"
#: ../../templates/show_test.inc.php:40
msgid "STATUS"
msgstr "STATUS"
#: ../../templates/show_test.inc.php:42
msgid "DESCRIPTION"
msgstr "BESKRIVELSE"
#: ../../templates/show_test.inc.php:45
#: ../../templates/show_install_check.inc.php:24
#: ../../templates/show_install_check.inc.php:30
msgid "PHP Version"
msgstr "PHP Versjon"
#: ../../templates/show_test.inc.php:51
#: ../../templates/show_install_check.inc.php:28
msgid "Hash Function Exists"
msgstr "Hash funksjonen eksisterer"
#: ../../templates/show_test.inc.php:51
#: ../../templates/show_install_check.inc.php:28
#, fuzzy
msgid "SHA256 Support"
msgstr "Støtte for GD"
#: ../../templates/show_test.inc.php:60
msgid ""
"This tests to make sure that you are running a version of PHP that is known "
"to work with Ampache."
msgstr ""
"Denne testen sjekker om du kjører en versjon av PHP som er kjent for å "
"fungere sammen med denne versjonen av Ampache."
#: ../../templates/show_test.inc.php:65
#: ../../templates/show_install_check.inc.php:37
#: ../../templates/show_install_check.inc.php:41
msgid "Mysql for PHP"
msgstr "MySQL for PHP"
#: ../../templates/show_test.inc.php:78
msgid ""
"This test checks to see if you have the mysql extensions loaded for PHP. "
"These are required for Ampache to work."
msgstr ""
"Denne testen sjekker om du har de nødvendige MySQL utvidelsene lastet i PHP. "
"De er påkrevd for at Ampache skal fungere."
#: ../../templates/show_test.inc.php:82
#: ../../templates/show_install_check.inc.php:48
#: ../../templates/show_install_check.inc.php:52
msgid "PHP Session Support"
msgstr "PHP - Støtte for sesjoner"
#: ../../templates/show_test.inc.php:95
msgid ""
"This test checks to make sure that you have PHP session support enabled. "
"Sessions are required for Ampache to work."
msgstr ""
"Denne testen sjekker om PHP har støtte for sesjoner aktivert. Sesjoner må "
"være aktivert for at Ampache skal fungere."
#: ../../templates/show_test.inc.php:99
#: ../../templates/show_install_check.inc.php:59
#: ../../templates/show_install_check.inc.php:63
msgid "PHP ICONV Support"
msgstr "PHP - Støtte for ICONV"
#: ../../templates/show_test.inc.php:111
msgid ""
"This test checks to make sure you have Iconv support installed. Iconv "
"support is required for Ampache"
msgstr ""
"Denne testen sjekker om du har støtte for Iconv installert. Støtte for Iconv "
"er påkrevd for å kunne kjøre Ampache."
#: ../../templates/show_test.inc.php:115
#: ../../templates/show_install_check.inc.php:70
#: ../../templates/show_install_check.inc.php:74
msgid "PHP PCRE Support"
msgstr "PHP - Støtte for PCRE"
#: ../../templates/show_test.inc.php:127
msgid ""
"This test makes sure you have PCRE support compiled into your version of "
"PHP, this is required for Ampache."
msgstr ""
"Denne testen sjekker om du har støtte for PCRE kompilert i din versjon av "
"PHP. Dette er påkrevd for at Ampache skal fungere."
#: ../../templates/show_test.inc.php:131
#: ../../templates/show_install_check.inc.php:81
#: ../../templates/show_install_check.inc.php:85
msgid "PHP PutENV Support"
msgstr "PHP - Støtte for PutENV"
#: ../../templates/show_test.inc.php:143
msgid ""
"This test makes sure that PHP isn't running in SafeMode and that we are able "
"to modify the memory limits. While not required, without these abilities "
"some features of ampache may not work correctly"
msgstr ""
"Denne testen sjekker at PHP ikke kjører i sikker modus, og at vi kan endre "
"minnegrensene. Dette er ikke påkrevd, men kan være nødvendig for at noen av "
"funksjonene i Ampache skal fungere korrekt."
#: ../../templates/show_test.inc.php:147
#: ../../templates/show_install_config.inc.php:91
msgid "Ampache.cfg.php Exists"
msgstr "Ampache.cfg.php eksisterer"
#: ../../templates/show_test.inc.php:160
msgid ""
"This attempts to read /config/ampache.cfg.php If this fails either the "
"ampache.cfg.php is not in the correct locations or\n"
"\tit is not currently readable by your webserver."
msgstr ""
"Ampache prøver å lese konfigurasjonsfilen /config/ampache.cfg.php. Hvis "
"denne operasjonen mislykkes mangler filen, eller den er ikke lesbar av "
"webserveren."
#: ../../templates/show_test.inc.php:166
#: ../../templates/show_install_config.inc.php:106
msgid "Ampache.cfg.php Configured?"
msgstr "Ampache.cfg.php konfigurert?"
#: ../../templates/show_test.inc.php:182
msgid ""
"This test makes sure that you have set all of the required configuration "
"variables and that we are able to completely parse your config file"
msgstr ""
"Denne testen sjekker at du har satt alle konfigurasjonsvariablene og at vi "
"er klare til å behandle konfigurasjonsfilen."
#: ../../templates/show_test.inc.php:186
msgid "DB Connection"
msgstr "Databaseforbindelse"
#: ../../templates/show_test.inc.php:200
msgid ""
"This attempts to connect to your database using the values from your ampache."
"cfg.php"
msgstr ""
"Denne testen prøver å koble til databasen din med verdiene lagret i ampache."
"cfg.php"
#: ../../templates/show_test.inc.php:204
msgid "DB Inserted"
msgstr "Database insatt"
#: ../../templates/show_test.inc.php:218
msgid ""
"This checks a few key tables to make sure that you have successfully "
"inserted the ampache database and that the user has access to the database"
msgstr ""
#: ../../templates/show_test.inc.php:223
#: ../../templates/show_install_config.inc.php:63
msgid "Web Path"
msgstr "Web bane"
#: ../../templates/show_test.inc.php:247
msgid ""
"This test makes sure that your web_path variable is set correctly and that "
"we are able to get to the index page. If you do not see a check mark here "
"then your web_path is not set correctly."
msgstr ""
#: ../../templates/show_albums.inc.php:42
#: ../../templates/show_albums.inc.php:73
msgid "Cover"
msgstr "Omslag"
#: ../../templates/show_albums.inc.php:44
#: ../../templates/show_albums.inc.php:75
#: ../../templates/sidebar_home.inc.php:106
#: ../../templates/show_edit_song.inc.php:37
#: ../../templates/show_democratic_playlist.inc.php:57
#: ../../templates/show_democratic_playlist.inc.php:97
#: ../../templates/show_play_selected.inc.php:59
#: ../../templates/show_search.inc.php:50
#: ../../templates/show_songs.inc.php:42 ../../templates/show_songs.inc.php:71
#: ../../templates/show_get_albumart.inc.php:36
#: ../../templates/show_recently_played.inc.php:39
#: ../../templates/show_recently_played.inc.php:102
#: ../../templates/show_disabled_songs.inc.php:35
#: ../../templates/show_disabled_songs.inc.php:58
#: ../../templates/show_duplicates.inc.php:39
#: ../../templates/show_duplicates.inc.php:78
#: ../../templates/show_playlist_songs.inc.php:44
#: ../../templates/show_playlist_songs.inc.php:65
#: ../../templates/show_now_playing_row.inc.php:52
msgid "Album"
msgstr "Album"
#: ../../templates/show_albums.inc.php:45
#: ../../templates/show_albums.inc.php:76
#: ../../templates/show_artists.inc.php:37
#: ../../templates/show_artists.inc.php:65
#: ../../templates/sidebar_home.inc.php:34
#: ../../templates/sidebar_home.inc.php:80
#: ../../templates/sidebar_home.inc.php:107
#: ../../templates/show_similar_artists.inc.php:33
#: ../../templates/show_similar_artists.inc.php:86
#: ../../templates/show_edit_song.inc.php:45
#: ../../templates/show_democratic_playlist.inc.php:58
#: ../../templates/show_democratic_playlist.inc.php:98
#: ../../templates/show_play_selected.inc.php:60
#: ../../templates/show_search.inc.php:44
#: ../../templates/show_songs.inc.php:41 ../../templates/show_songs.inc.php:70
#: ../../templates/show_get_albumart.inc.php:28
#: ../../templates/show_recently_played.inc.php:40
#: ../../templates/show_recently_played.inc.php:103
#: ../../templates/show_disabled_songs.inc.php:36
#: ../../templates/show_disabled_songs.inc.php:59
#: ../../templates/show_duplicates.inc.php:38
#: ../../templates/show_duplicates.inc.php:77
#: ../../templates/show_playlist_songs.inc.php:43
#: ../../templates/show_playlist_songs.inc.php:64
#: ../../templates/show_now_playing_row.inc.php:59
msgid "Artist"
msgstr "Artist"
#: ../../templates/show_albums.inc.php:46
#: ../../templates/show_albums.inc.php:77
#: ../../templates/show_artists.inc.php:38
#: ../../templates/show_artists.inc.php:66
#: ../../templates/show_manage_democratic.inc.php:39
#: ../../templates/show_popular.inc.php:23
#: ../../templates/show_genre.inc.php:38 ../../templates/show_stats.inc.php:32
#: ../../templates/show_stats.inc.php:68
#: ../../templates/show_genres.inc.php:38
#: ../../templates/show_genres.inc.php:74 ../../lib/class/browse.class.php:142
msgid "Songs"
msgstr "Spor"
#: ../../templates/show_albums.inc.php:47
#: ../../templates/show_albums.inc.php:78
#: ../../templates/show_edit_song.inc.php:59
#: ../../templates/show_play_selected.inc.php:61
#: ../../templates/show_edit_album.inc.php:33
#: ../../templates/show_search.inc.php:60
msgid "Year"
msgstr "År"
#: ../../templates/show_albums.inc.php:48
#: ../../templates/show_albums.inc.php:79
#: ../../templates/show_artists.inc.php:41
#: ../../templates/show_artists.inc.php:69
#: ../../templates/show_videos.inc.php:40
#: ../../templates/show_videos.inc.php:63
#: ../../templates/show_stats.inc.php:34 ../../templates/show_songs.inc.php:43
#: ../../templates/show_songs.inc.php:72
msgid "Tags"
msgstr "Tags"
#: ../../templates/show_albums.inc.php:49
#: ../../templates/show_albums.inc.php:80
#: ../../templates/show_artists.inc.php:42
#: ../../templates/show_artists.inc.php:70
#: ../../templates/show_search.inc.php:104
#: ../../templates/show_songs.inc.php:49 ../../templates/show_songs.inc.php:76
#: ../../templates/show_now_playing_row.inc.php:36
msgid "Rating"
msgstr "Kvalitet"
#: ../../templates/show_albums.inc.php:50
#: ../../templates/show_albums.inc.php:81
#: ../../templates/show_catalogs.inc.php:38
#: ../../templates/show_catalogs.inc.php:55
#: ../../templates/show_playlists.inc.php:39
#: ../../templates/show_playlists.inc.php:62
#: ../../templates/show_album.inc.php:48
msgid "Actions"
msgstr "Handlinger"
#: ../../templates/show_albums.inc.php:67
#: ../../templates/show_artists.inc.php:60
#: ../../templates/show_live_streams.inc.php:53
#: ../../templates/show_playlists.inc.php:53
#: ../../templates/show_manage_democratic.inc.php:63
#: ../../templates/show_videos.inc.php:54
#: ../../templates/show_objects.inc.php:44
#: ../../templates/rightbar.inc.php:109 ../../templates/show_genres.inc.php:68
#: ../../templates/show_user_recommendations.inc.php:32
#: ../../templates/show_user_recommendations.inc.php:43
#: ../../templates/show_user_recommendations.inc.php:54
#: ../../templates/show_user_stats.inc.php:34
#: ../../templates/show_user_stats.inc.php:47
#: ../../templates/show_user_stats.inc.php:60
#: ../../templates/show_songs.inc.php:64
#: ../../templates/show_recently_played.inc.php:95
msgid "Not Enough Data"
msgstr "Ikke nok data"
#: ../../templates/show_users.inc.php:39 ../../templates/show_users.inc.php:61
msgid "Fullname"
msgstr "Fullt navn"
#: ../../templates/show_users.inc.php:39 ../../templates/show_users.inc.php:61
#: ../../templates/show_edit_user.inc.php:32
#: ../../templates/show_add_user.inc.php:29
#: ../../templates/show_install_account.inc.php:61
#: ../../templates/show_recently_played.inc.php:41
#: ../../templates/show_recently_played.inc.php:100
#: ../../templates/show_login_form.inc.php:57
#: ../../templates/show_user_registration.inc.php:73
#: ../../templates/show_now_playing_row.inc.php:29
msgid "Username"
msgstr "Brukernavn"
#: ../../templates/show_users.inc.php:40 ../../templates/show_users.inc.php:62
#: ../../templates/show_user.inc.php:32
msgid "Last Seen"
msgstr "Sist sett"
#: ../../templates/show_users.inc.php:41 ../../templates/show_users.inc.php:63
msgid "Registration Date"
msgstr "Registreringsdato"
#: ../../templates/show_users.inc.php:42 ../../templates/show_users.inc.php:64
#: ../../templates/show_user.inc.php:33
msgid "Activity"
msgstr "Aktivitet"
#: ../../templates/show_users.inc.php:44 ../../templates/show_users.inc.php:66
msgid "Last Ip"
msgstr "Siste IP"
#: ../../templates/show_users.inc.php:46 ../../templates/show_users.inc.php:68
#: ../../templates/show_localplay_controllers.inc.php:35
#: ../../templates/show_localplay_controllers.inc.php:66
#: ../../templates/show_artists.inc.php:43
#: ../../templates/show_artists.inc.php:71
#: ../../templates/show_live_streams.inc.php:40
#: ../../templates/show_live_streams.inc.php:62
#: ../../templates/show_manage_democratic.inc.php:40
#: ../../templates/show_plugins.inc.php:35
#: ../../templates/show_plugins.inc.php:64
#: ../../templates/show_democratic_playlist.inc.php:54
#: ../../templates/show_democratic_playlist.inc.php:94
#: ../../templates/show_flagged.inc.php:39
#: ../../templates/show_flagged.inc.php:58
#: ../../templates/show_genres.inc.php:39
#: ../../templates/show_genres.inc.php:75
#: ../../templates/show_localplay_instances.inc.php:29
#: ../../templates/show_random_rules.inc.php:36
#: ../../templates/show_localplay_playlist.inc.php:35
#: ../../templates/show_localplay_playlist.inc.php:61
#: ../../templates/show_songs.inc.php:51 ../../templates/show_songs.inc.php:78
#: ../../templates/show_song.inc.php:27
#: ../../templates/show_admin_tools.inc.php:34
#: ../../templates/show_admin_tools.inc.php:74
#: ../../templates/show_access_list.inc.php:62
#: ../../templates/show_playlist_songs.inc.php:48
#: ../../templates/show_playlist_songs.inc.php:69
#: ../../templates/show_manage_shoutbox.inc.php:39
#: ../../templates/show_manage_shoutbox.inc.php:63
msgid "Action"
msgstr "Handling"
#: ../../templates/show_users.inc.php:47 ../../templates/show_users.inc.php:69
msgid "On-line"
msgstr "Online"
#: ../../templates/show_users.inc.php:53 ../../templates/show_user.inc.php:22
#: ../../lib/class/user.class.php:663 ../../lib/class/catalog.class.php:146
#: ../../lib/class/catalog.class.php:147 ../../lib/class/catalog.class.php:148
#: ../../lib/preferences.php:261
msgid "Never"
msgstr "Aldri"
#: ../../templates/show_users.inc.php:54 ../../templates/show_user.inc.php:23
#: ../../lib/class/flag.class.php:337 ../../lib/class/localplay.class.php:648
#: ../../lib/class/user.class.php:667 ../../lib/general.lib.php:338
#: ../../modules/localplay/mpd.controller.php:525
msgid "Unknown"
msgstr "Ukjent"
#: ../../templates/show_edit_user.inc.php:23
msgid "Editing existing User"
msgstr "Redigerer eksisterende bruker"
#: ../../templates/show_edit_user.inc.php:28
msgid "User Properties"
msgstr "Brukeregenskaper"
#: ../../templates/show_edit_user.inc.php:40
#: ../../templates/show_user.inc.php:30
#: ../../templates/show_add_user.inc.php:37
#: ../../templates/show_user_registration.inc.php:83
msgid "Full Name"
msgstr "Fullt navn"
#: ../../templates/show_edit_user.inc.php:47
#: ../../templates/show_add_user.inc.php:44
#: ../../templates/show_account.inc.php:33
#: ../../templates/show_user_registration.inc.php:92
msgid "E-mail"
msgstr "E-post"
#: ../../templates/show_edit_user.inc.php:55
#: ../../templates/show_add_user.inc.php:52
#: ../../templates/show_install_account.inc.php:65
#: ../../templates/show_login_form.inc.php:61
#: ../../templates/show_user_registration.inc.php:101
#: ../../modules/localplay/mpd.controller.php:235
#: ../../modules/localplay/httpq.controller.php:219
msgid "Password"
msgstr "Passord"
#: ../../templates/show_edit_user.inc.php:64
#: ../../templates/show_add_user.inc.php:61
#: ../../templates/show_account.inc.php:46
#: ../../templates/show_install_account.inc.php:69
#: ../../templates/show_user_registration.inc.php:110
msgid "Confirm Password"
msgstr "Bekreft passord"
#: ../../templates/show_edit_user.inc.php:72
#: ../../templates/show_add_user.inc.php:69
msgid "User Access Level"
msgstr "Tilgangsnivå for bruker"
#: ../../templates/show_edit_user.inc.php:77
#: ../../templates/show_preference_box.inc.php:58
#: ../../templates/show_preference_admin.inc.php:41
#: ../../templates/show_add_user.inc.php:74
#: ../../lib/class/democratic.class.php:145 ../../admin/users.php:125
msgid "Guest"
msgstr "Gjest"
#: ../../templates/show_edit_user.inc.php:78
#: ../../templates/show_preference_box.inc.php:59
#: ../../templates/show_add_access_local.inc.php:41
#: ../../templates/show_add_access_rpc.inc.php:41
#: ../../templates/show_edit_access.inc.php:60
#: ../../templates/show_preference_admin.inc.php:42
#: ../../templates/show_add_access.inc.php:41
#: ../../templates/show_add_user.inc.php:75
#: ../../templates/show_create_democratic.inc.php:42
#: ../../templates/show_flagged.inc.php:35
#: ../../templates/show_flagged.inc.php:54
#: ../../templates/show_add_access_current.inc.php:44
#: ../../templates/show_mail_users.inc.php:31
#: ../../templates/show_access_list.inc.php:59
#: ../../templates/show_manage_shoutbox.inc.php:35
#: ../../templates/show_manage_shoutbox.inc.php:59
#: ../../lib/class/democratic.class.php:148 ../../lib/preferences.php:231
#: ../../admin/users.php:126
msgid "User"
msgstr "Bruker"
#: ../../templates/show_edit_user.inc.php:79
#: ../../templates/show_preference_box.inc.php:60
#: ../../templates/show_add_user.inc.php:76
#: ../../templates/show_create_democratic.inc.php:43
#: ../../lib/class/democratic.class.php:151
msgid "Content Manager"
msgstr "Innholdsoperatør"
#: ../../templates/show_edit_user.inc.php:80
#: ../../templates/show_preference_box.inc.php:61
#: ../../templates/show_add_user.inc.php:77
#: ../../templates/show_create_democratic.inc.php:44
#: ../../lib/class/democratic.class.php:154
msgid "Catalog Manager"
msgstr "Katalogoperatør"
#: ../../templates/show_edit_user.inc.php:81
#: ../../templates/show_preference_box.inc.php:62
#: ../../templates/show_preference_admin.inc.php:43
#: ../../templates/sidebar.inc.php:31 ../../templates/show_add_user.inc.php:78
#: ../../templates/show_create_democratic.inc.php:45
#: ../../templates/show_democratic_playlist.inc.php:61
#: ../../templates/show_democratic_playlist.inc.php:101
#: ../../templates/show_mail_users.inc.php:32
#: ../../lib/class/democratic.class.php:157 ../../lib/preferences.php:233
#: ../../admin/users.php:127
msgid "Admin"
msgstr "Administrator"
#: ../../templates/show_edit_user.inc.php:86
#, fuzzy
msgid "Other Options"
msgstr "Valg"
#: ../../templates/show_edit_user.inc.php:89
msgid "Config Preset"
msgstr "Konfigurasjonsforvalg"
#: ../../templates/show_edit_user.inc.php:93
#: ../../templates/sidebar_home.inc.php:90
#: ../../templates/show_playtype_switch.inc.php:36
#: ../../templates/sidebar_modules.inc.php:41 ../../lib/preferences.php:179
#: ../../modules/localplay/mpd.controller.php:491
#: ../../modules/localplay/httpq.controller.php:488
msgid "Democratic"
msgstr "Demokratisk"
#: ../../templates/show_edit_user.inc.php:94
#: ../../templates/sidebar_home.inc.php:99
#: ../../templates/sidebar_localplay.inc.php:32
#: ../../templates/show_playtype_switch.inc.php:34
#: ../../templates/sidebar.inc.php:28 ../../lib/preferences.php:182
msgid "Localplay"
msgstr "Lokalavspilling"
#: ../../templates/show_edit_user.inc.php:95
#, fuzzy
msgid "Flash"
msgstr "Merk"
#: ../../templates/show_edit_user.inc.php:96
#: ../../templates/show_playtype_switch.inc.php:32
#: ../../lib/preferences.php:176
msgid "Stream"
msgstr "Stream"
#: ../../templates/show_edit_user.inc.php:101
msgid "Prevent Preset Override"
msgstr "Forhindre endring av forvalg"
#: ../../templates/show_edit_user.inc.php:103
msgid "This Affects all non-Admin accounts"
msgstr "Dette påvirker alle ikke-admin kontoer"
#: ../../templates/show_edit_user.inc.php:107
#: ../../templates/show_account.inc.php:52
#: ../../templates/show_manage_catalogs.inc.php:33
msgid "Clear Stats"
msgstr "Rensk Statistikk"
#: ../../templates/show_edit_user.inc.php:115
msgid "Update User"
msgstr "Oppdater bruker"
#: ../../templates/show_catalogs.inc.php:33
#: ../../templates/show_catalogs.inc.php:50
#: ../../templates/show_localplay_controllers.inc.php:32
#: ../../templates/show_localplay_controllers.inc.php:63
#: ../../templates/show_edit_live_stream_row.inc.php:26
#: ../../templates/show_live_streams.inc.php:36
#: ../../templates/show_live_streams.inc.php:58
#: ../../templates/show_edit_catalog.inc.php:26
#: ../../templates/show_add_access_local.inc.php:26
#: ../../templates/show_add_access_rpc.inc.php:26
#: ../../templates/show_add_live_stream.inc.php:28
#: ../../templates/show_edit_artist.inc.php:27
#: ../../templates/show_edit_access.inc.php:26
#: ../../templates/show_add_access.inc.php:26
#: ../../templates/show_plugins.inc.php:32
#: ../../templates/show_plugins.inc.php:61
#: ../../templates/show_create_democratic.inc.php:26
#: ../../templates/show_account.inc.php:27
#: ../../templates/show_stats.inc.php:63
#: ../../templates/show_edit_album.inc.php:27
#: ../../templates/show_add_access_current.inc.php:26
#: ../../templates/show_localplay_playlist.inc.php:34
#: ../../templates/show_localplay_playlist.inc.php:60
#: ../../templates/show_add_playlist.inc.php:28
#: ../../templates/show_admin_tools.inc.php:33
#: ../../templates/show_admin_tools.inc.php:73
#: ../../templates/show_access_list.inc.php:55
#: ../../templates/show_playlist_edit.inc.php:30
msgid "Name"
msgstr "Navn"
#: ../../templates/show_catalogs.inc.php:34
#: ../../templates/show_catalogs.inc.php:51
#: ../../templates/show_stats.inc.php:64
#: ../../templates/show_add_catalog.inc.php:47
msgid "Path"
msgstr "Bane"
#: ../../templates/show_catalogs.inc.php:35
#: ../../templates/show_catalogs.inc.php:52
#: ../../templates/show_stats.inc.php:65
msgid "Last Verify"
msgstr "Siste verifikasjon"
#: ../../templates/show_catalogs.inc.php:36
#: ../../templates/show_catalogs.inc.php:53
#: ../../templates/show_stats.inc.php:66
msgid "Last Add"
msgstr "Siste legg til"
#: ../../templates/show_catalogs.inc.php:37
#: ../../templates/show_catalogs.inc.php:54
#: ../../templates/show_stats.inc.php:67
#, fuzzy
msgid "Last Clean"
msgstr "Sist sett"
#: ../../templates/show_localplay_controllers.inc.php:33
#: ../../templates/show_localplay_controllers.inc.php:64
#: ../../templates/show_plugins.inc.php:33
#: ../../templates/show_plugins.inc.php:62
msgid "Description"
msgstr "Beskrivelse"
#: ../../templates/show_localplay_controllers.inc.php:34
#: ../../templates/show_localplay_controllers.inc.php:65
#: ../../templates/show_plugins.inc.php:34
#: ../../templates/show_plugins.inc.php:63
msgid "Version"
msgstr "Versjon"
#: ../../templates/show_localplay_controllers.inc.php:44
#: ../../templates/show_duplicates.inc.php:36
#: ../../templates/show_duplicates.inc.php:75 ../../lib/preferences.php:165
#: ../../lib/preferences.php:271
msgid "Disable"
msgstr "Deaktiver"
#: ../../templates/show_localplay_controllers.inc.php:48
#: ../../templates/show_plugins.inc.php:42
msgid "Activate"
msgstr "Aktiver"
#: ../../templates/show_localplay_controllers.inc.php:59
#: ../../templates/show_plugins.inc.php:57
#: ../../templates/show_flagged.inc.php:49
#: ../../templates/show_localplay_playlist.inc.php:55
#: ../../templates/show_disabled_songs.inc.php:52
#: ../../templates/show_manage_shoutbox.inc.php:54
msgid "No Records Found"
msgstr "Ingen oppføringer funnet"
#: ../../templates/show_big_art.inc.php:29
#: ../../templates/show_album_art.inc.php:41
msgid "Album Art"
msgstr "Albumbilde"
#: ../../templates/show_big_art.inc.php:33
msgid "Click to close window"
msgstr "Klikk for å lukke vinduet"
#: ../../templates/show_preference_box.inc.php:43
#: ../../templates/show_preference_box.inc.php:73
msgid "Apply to All"
msgstr "Behandle alle"
#: ../../templates/show_preference_box.inc.php:44
#: ../../templates/show_preference_box.inc.php:74
msgid "Access Level"
msgstr "Tilgangsnivå"
#: ../../templates/show_edit_song_row.inc.php:45
#: ../../templates/show_edit_live_stream_row.inc.php:52
#: ../../templates/show_edit_playlist_song_row.inc.php:38
#: ../../templates/show_edit_playlist_row.inc.php:38
#: ../../templates/show_edit_artist_row.inc.php:32
#: ../../templates/show_edit_album_row.inc.php:48
msgid "Save Changes"
msgstr "Lagre Endringer"
#: ../../templates/show_artists.inc.php:39
#: ../../templates/show_artists.inc.php:67
#: ../../templates/sidebar_home.inc.php:33
#: ../../templates/sidebar_home.inc.php:77
#: ../../templates/show_popular.inc.php:26
#: ../../templates/show_genre.inc.php:32 ../../templates/show_stats.inc.php:30
#: ../../lib/ui.lib.php:362 ../../lib/class/browse.class.php:148
msgid "Albums"
msgstr "Album"
#: ../../templates/show_artists.inc.php:40
#: ../../templates/show_artists.inc.php:68
#: ../../templates/show_videos.inc.php:39
#: ../../templates/show_videos.inc.php:62
#: ../../templates/show_democratic_playlist.inc.php:59
#: ../../templates/show_democratic_playlist.inc.php:99
#: ../../templates/show_search.inc.php:72
#: ../../templates/show_songs.inc.php:45 ../../templates/show_songs.inc.php:74
#: ../../templates/show_playlist_songs.inc.php:47
#: ../../templates/show_playlist_songs.inc.php:68
msgid "Time"
msgstr "Tid"
#: ../../templates/show_duplicate.inc.php:23
#: ../../templates/show_duplicate.inc.php:42
#: ../../templates/sidebar_modules.inc.php:33
msgid "Find Duplicates"
msgstr "Finn duplikater"
#: ../../templates/show_duplicate.inc.php:27
msgid "Search Type"
msgstr "Type søk"
#: ../../templates/show_duplicate.inc.php:33
#: ../../templates/show_videos.inc.php:36
#: ../../templates/show_videos.inc.php:59
#: ../../templates/show_edit_song.inc.php:31
#: ../../templates/show_democratic_playlist.inc.php:56
#: ../../templates/show_democratic_playlist.inc.php:96
#: ../../templates/show_search.inc.php:40
#: ../../templates/show_disabled_songs.inc.php:34
#: ../../templates/show_disabled_songs.inc.php:57
msgid "Title"
msgstr "Tittel"
#: ../../templates/show_duplicate.inc.php:34
msgid "Artist and Title"
msgstr "Artist og Tittel"
#: ../../templates/show_duplicate.inc.php:35
msgid "Artist, Album and Title"
msgstr "Artist, Album og Tittel"
#: ../../templates/show_duplicate.inc.php:37
msgid "Search Disabled Songs"
msgstr "Søk etter deaktiverte spor"
#: ../../templates/show_import_playlist.inc.php:23
msgid "Importing a Playlist from a File"
msgstr "Importerer spilleliste fra fil"
#: ../../templates/show_import_playlist.inc.php:28
#: ../../templates/show_search.inc.php:66
#: ../../templates/show_disabled_songs.inc.php:37
#: ../../templates/show_disabled_songs.inc.php:60
#: ../../templates/show_duplicates.inc.php:43
#: ../../templates/show_duplicates.inc.php:82
msgid "Filename"
msgstr "Filnavn"
#: ../../templates/show_import_playlist.inc.php:34
msgid "Playlist Type"
msgstr "Spilleliste type"
#: ../../templates/show_import_playlist.inc.php:46
msgid "Import Playlist"
msgstr "Importer spilleliste"
#: ../../templates/show_edit_live_stream_row.inc.php:27
#: ../../templates/show_add_live_stream.inc.php:42
msgid "Stream URL"
msgstr "Stream URL"
#: ../../templates/show_edit_live_stream_row.inc.php:28
#: ../../templates/show_add_live_stream.inc.php:35
msgid "Homepage"
msgstr "Hjemmeside"
#: ../../templates/show_edit_live_stream_row.inc.php:29
#: ../../templates/show_live_streams.inc.php:37
#: ../../templates/show_live_streams.inc.php:59
#: ../../templates/show_add_live_stream.inc.php:55
msgid "Callsign"
msgstr "Kallenavn"
#: ../../templates/show_edit_live_stream_row.inc.php:30
#: ../../templates/show_live_streams.inc.php:38
#: ../../templates/show_live_streams.inc.php:60
#: ../../templates/show_add_live_stream.inc.php:49
msgid "Frequency"
msgstr "Frekvens"
#: ../../templates/show_live_streams.inc.php:39
#: ../../templates/show_live_streams.inc.php:61
#: ../../templates/show_search.inc.php:54
msgid "Tag"
msgstr "Tag"
#: ../../templates/sidebar_home.inc.php:24
msgid "Browse"
msgstr "Bla"
#: ../../templates/sidebar_home.inc.php:32
#: ../../templates/sidebar_home.inc.php:74
#: ../../templates/show_songs.inc.php:40 ../../templates/show_songs.inc.php:69
#: ../../templates/show_playlist_songs.inc.php:42
#: ../../templates/show_playlist_songs.inc.php:63
msgid "Song Title"
msgstr "Spor tittel"
#: ../../templates/sidebar_home.inc.php:35
#: ../../lib/class/browse.class.php:203
msgid "Tag Cloud"
msgstr "Tag 'Sky'"
#: ../../templates/sidebar_home.inc.php:36
#: ../../templates/sidebar_home.inc.php:86
#: ../../templates/sidebar_home.inc.php:108
#: ../../templates/show_manage_democratic.inc.php:34
#: ../../templates/show_play_selected.inc.php:47 ../../lib/ui.lib.php:321
msgid "Playlist"
msgstr "Spilleliste"
#: ../../templates/sidebar_home.inc.php:37
#: ../../lib/class/browse.class.php:166
msgid "Radio Stations"
msgstr "Radiostasjoner"
#: ../../templates/sidebar_home.inc.php:38
#: ../../templates/show_stats.inc.php:33 ../../templates/show_stats.inc.php:69
msgid "Video"
msgstr "Video"
#: ../../templates/sidebar_home.inc.php:42
msgid "Filters"
msgstr "Filter"
#: ../../templates/sidebar_home.inc.php:46
msgid "Starts With"
msgstr "Begynner med"
#: ../../templates/sidebar_home.inc.php:52
msgid "Minimum Count"
msgstr "Minimumsantall"
#: ../../templates/sidebar_home.inc.php:56
msgid "Rated"
msgstr "Kvalitet"
#: ../../templates/sidebar_home.inc.php:60
msgid "Unplayed"
msgstr "Uspilt"
#: ../../templates/sidebar_home.inc.php:64
#: ../../templates/show_artist.inc.php:55
msgid "Show Art"
msgstr "Vis bilder"
#: ../../templates/sidebar_home.inc.php:69
msgid "All Playlists"
msgstr "Alle spillelister"
#: ../../templates/sidebar_home.inc.php:88
msgid "Currently Playing"
msgstr "Spilles nå"
#: ../../templates/sidebar_home.inc.php:101
#: ../../templates/show_live_stream.inc.php:29
#, fuzzy
msgid "Import"
msgstr "Importer"
#: ../../templates/sidebar_home.inc.php:109
msgid "Advanced"
msgstr "Avansert"
#: ../../templates/sidebar_home.inc.php:112
#: ../../templates/show_popular.inc.php:22
#: ../../templates/show_newest.inc.php:22
msgid "Information"
msgstr "Informasjon"
#: ../../templates/sidebar_home.inc.php:114
#: ../../templates/show_stats.inc.php:24 ../../lib/ui.lib.php:374
msgid "Statistics"
msgstr "Statistikk"
#: ../../templates/sidebar_home.inc.php:115
#, fuzzy
msgid "Newest"
msgstr "Nyeste Album"
#: ../../templates/sidebar_home.inc.php:116
msgid "Popular"
msgstr "Populær"
#: ../../templates/show_confirmation.inc.php:27
#: ../../templates/show_update_items.inc.php:27
msgid "Continue"
msgstr "Fortsett"
#: ../../templates/show_confirmation.inc.php:32
#: ../../templates/show_similar_artists.inc.php:78
msgid "Cancel"
msgstr "Avbryt"
#: ../../templates/show_flag_row.inc.php:31
msgid "Reject"
msgstr "Avvis"
#: ../../templates/show_flag_row.inc.php:33 ../../lib/preferences.php:164
#: ../../lib/preferences.php:270
msgid "Enable"
msgstr "Aktiver"
#: ../../templates/show_playlists.inc.php:35
#: ../../templates/show_playlists.inc.php:58
msgid "Playlist Name"
msgstr "Navn på spilleliste"
#: ../../templates/show_playlists.inc.php:37
#: ../../templates/show_playlists.inc.php:60
msgid "# Songs"
msgstr "Antall spor"
#: ../../templates/show_playlists.inc.php:38
#: ../../templates/show_playlists.inc.php:61
msgid "Owner"
msgstr "Eier"
#: ../../templates/show_edit_catalog.inc.php:22
#, php-format
msgid "Settings for %s"
msgstr "Innstillinger for %s"
#: ../../templates/show_edit_catalog.inc.php:29
#: ../../templates/show_add_catalog.inc.php:35
msgid "Auto-inserted Fields"
msgstr "Automatiske felt"
#: ../../templates/show_edit_catalog.inc.php:30
#: ../../templates/show_add_catalog.inc.php:36
msgid "album name"
msgstr "album navn"
#: ../../templates/show_edit_catalog.inc.php:31
#: ../../templates/show_add_catalog.inc.php:37
msgid "artist name"
msgstr "artist navn"
#: ../../templates/show_edit_catalog.inc.php:32
#: ../../templates/show_add_catalog.inc.php:38
msgid "id3 comment"
msgstr "id3 kommentar"
#: ../../templates/show_edit_catalog.inc.php:33
#: ../../templates/show_add_catalog.inc.php:39
msgid "track number (padded with leading 0)"
msgstr "spor nummer (0 lagt til i starten)"
#: ../../templates/show_edit_catalog.inc.php:34
#: ../../templates/show_add_catalog.inc.php:40
msgid "song title"
msgstr "spor tittel"
#: ../../templates/show_edit_catalog.inc.php:35
#: ../../templates/show_add_catalog.inc.php:41
msgid "year"
msgstr "år"
#: ../../templates/show_edit_catalog.inc.php:36
#: ../../templates/show_add_catalog.inc.php:42
msgid "other"
msgstr "annen"
#: ../../templates/show_edit_catalog.inc.php:40
#: ../../templates/show_add_catalog.inc.php:51
msgid "Catalog Type"
msgstr "Katalog type"
#: ../../templates/show_edit_catalog.inc.php:44
#: ../../templates/show_add_catalog.inc.php:60
msgid "XML-RPC Key"
msgstr "XML-RPC Nøkkel"
#: ../../templates/show_edit_catalog.inc.php:46
#: ../../templates/show_add_catalog.inc.php:61
msgid "Required for Remote Catalogs"
msgstr "Påkrevd for fjernkataloger"
#: ../../templates/show_edit_catalog.inc.php:50
msgid "Filename pattern"
msgstr "Filnavn mønster"
#: ../../templates/show_edit_catalog.inc.php:57
#: ../../templates/show_add_catalog.inc.php:69
msgid "Folder Pattern"
msgstr "Mappenavn mønster"
#: ../../templates/show_edit_catalog.inc.php:57
#: ../../templates/show_add_catalog.inc.php:69
msgid "(no leading or ending '/')"
msgstr "(ingen '/' i begynnelse eller slutt)"
#: ../../templates/show_edit_catalog.inc.php:67
msgid "Save Catalog Settings"
msgstr "Lagre katalogoppsett"
#: ../../templates/show_manage_democratic.inc.php:22
msgid "Manage Democratic Playlists"
msgstr "Behandle demokratiske spillelister"
#: ../../templates/show_manage_democratic.inc.php:35
#: ../../templates/show_create_democratic.inc.php:30
msgid "Base Playlist"
msgstr "Base for spilleliste"
#: ../../templates/show_manage_democratic.inc.php:36
#: ../../templates/show_democratic.inc.php:28
msgid "Cooldown"
msgstr "Nedkjøling"
#: ../../templates/show_manage_democratic.inc.php:37
#: ../../templates/show_add_access_local.inc.php:32
#: ../../templates/show_add_access_rpc.inc.php:32
#: ../../templates/show_edit_access.inc.php:72
#: ../../templates/show_preference_admin.inc.php:31
#: ../../templates/show_preference_admin.inc.php:50
#: ../../templates/show_add_access.inc.php:32
#: ../../templates/show_create_democratic.inc.php:39
#: ../../templates/show_add_access_current.inc.php:35
#: ../../templates/show_access_list.inc.php:58
msgid "Level"
msgstr "Nivå"
#: ../../templates/show_manage_democratic.inc.php:38
#: ../../lib/preferences.php:255 ../../lib/preferences.php:262
msgid "Default"
msgstr "Standard"
#: ../../templates/show_manage_democratic.inc.php:69
msgid "Create New Playlist"
msgstr "Lag ny spilleliste"
#: ../../templates/show_add_access_local.inc.php:22
#: ../../templates/show_access_list.inc.php:40
#: ../../templates/show_access_list.inc.php:41
msgid "Add Local Network Definition"
msgstr "Legg til lokal nettverksdefinisjon"
#: ../../templates/show_add_access_local.inc.php:34
#: ../../templates/show_add_access_rpc.inc.php:34
#: ../../templates/show_edit_access.inc.php:75
#: ../../templates/show_add_access.inc.php:34
#: ../../templates/show_play_selected.inc.php:49
#: ../../templates/show_add_access_current.inc.php:37
#: ../../lib/class/access.class.php:410
msgid "View"
msgstr "Vis"
#: ../../templates/show_add_access_local.inc.php:35
#: ../../templates/show_add_access_rpc.inc.php:35
#: ../../templates/show_edit_access.inc.php:76
#: ../../templates/show_add_access.inc.php:35
#: ../../templates/show_add_access_current.inc.php:38
#: ../../lib/class/access.class.php:413
msgid "Read"
msgstr "Les"
#: ../../templates/show_add_access_local.inc.php:36
#: ../../templates/show_add_access_rpc.inc.php:36
#: ../../templates/show_edit_access.inc.php:77
#: ../../templates/show_add_access.inc.php:36
#: ../../templates/show_add_access_current.inc.php:39
#: ../../lib/class/access.class.php:416
msgid "Read/Write"
msgstr "Les/Skriv"
#: ../../templates/show_add_access_local.inc.php:37
#: ../../templates/show_add_access_local.inc.php:52
#: ../../templates/show_add_access_rpc.inc.php:37
#: ../../templates/show_add_access_rpc.inc.php:52
#: ../../templates/show_edit_access.inc.php:78
#: ../../templates/show_add_access.inc.php:37
#: ../../templates/show_export.inc.php:35
#: ../../templates/show_add_access_current.inc.php:40
#: ../../templates/show_mail_users.inc.php:30
#: ../../templates/show_random.inc.php:38
#: ../../templates/show_admin_tools.inc.php:51 ../../lib/ui.lib.php:543
#: ../../lib/class/access.class.php:407 ../../lib/class/access.class.php:427
msgid "All"
msgstr "Alle"
#: ../../templates/show_add_access_local.inc.php:48
#: ../../templates/show_add_access_rpc.inc.php:48
#: ../../templates/show_add_playlist.inc.php:32
#: ../../templates/show_random.inc.php:58
#: ../../templates/show_access_list.inc.php:61
#: ../../templates/show_playlist_edit.inc.php:36
msgid "Type"
msgstr "Type"
#: ../../templates/show_add_access_local.inc.php:50
#: ../../templates/show_add_access_local.inc.php:51
#: ../../templates/show_add_access_local.inc.php:52
#: ../../templates/show_edit_access.inc.php:36
#: ../../templates/show_add_access.inc.php:53
#: ../../lib/class/access.class.php:446
msgid "Local Network Definition"
msgstr "Lokal Nettverksdefinisjon"
#: ../../templates/show_add_access_local.inc.php:51
#: ../../templates/show_add_access_rpc.inc.php:51
#: ../../templates/show_edit_access.inc.php:34
#: ../../templates/show_add_access.inc.php:51
#: ../../lib/class/access.class.php:453
msgid "Stream Access"
msgstr "Stream Tilgang"
#: ../../templates/show_add_access_local.inc.php:51
#: ../../templates/show_edit_access.inc.php:35
#: ../../templates/show_add_access.inc.php:52
#: ../../lib/class/access.class.php:449
msgid "Web Interface"
msgstr "Web Grensesnitt"
#: ../../templates/show_add_access_local.inc.php:56
#: ../../templates/show_add_access_rpc.inc.php:56
#: ../../templates/show_add_access.inc.php:59
#: ../../templates/show_add_access_current.inc.php:50
msgid "RPC Options"
msgstr "RPC Valg"
#: ../../templates/show_add_access_local.inc.php:59
#: ../../templates/show_add_access_rpc.inc.php:59
#: ../../templates/show_edit_access.inc.php:66
#: ../../templates/show_add_access.inc.php:62
#: ../../templates/show_add_access_current.inc.php:53
msgid "Remote Key"
msgstr "Nøkkel til fjernvert"
#: ../../templates/show_add_access_local.inc.php:66
#: ../../templates/show_add_access_rpc.inc.php:66
#: ../../templates/show_edit_access.inc.php:43
#: ../../templates/show_add_access.inc.php:69
#: ../../templates/show_add_access_current.inc.php:32
msgid "IPv4 or IPv6 Addresses"
msgstr "IPv4 eller IPv6 adresser"
#: ../../templates/show_add_access_local.inc.php:71
#: ../../templates/show_add_access_rpc.inc.php:71
#: ../../templates/show_edit_access.inc.php:48
#: ../../templates/show_add_access.inc.php:74
msgid "Start"
msgstr "Start"
#: ../../templates/show_add_access_local.inc.php:76
#: ../../templates/show_add_access_rpc.inc.php:76
#: ../../templates/show_edit_access.inc.php:53
#: ../../templates/show_add_access.inc.php:79
msgid "End"
msgstr "Slutt"
#: ../../templates/show_add_access_local.inc.php:85
#: ../../templates/show_add_access_rpc.inc.php:85
#: ../../templates/show_add_access.inc.php:88
#: ../../templates/show_add_access_current.inc.php:61
msgid "Create ACL"
msgstr "Opprett ACL"
#: ../../templates/show_playlist.inc.php:26
#, php-format
msgid "%s %s Playlist"
msgstr "%s %s Spilleliste"
#: ../../templates/show_playlist.inc.php:31
msgid "Normalize Tracks"
msgstr "Normaliser spor"
#: ../../templates/show_playlist.inc.php:40
#: ../../templates/show_playlist.inc.php:41
msgid "Add All"
msgstr "Legg til alle"
#: ../../templates/show_playlist.inc.php:44
#: ../../templates/show_playlist.inc.php:45
msgid "Add Random"
msgstr "Legg til tilfeldig"
#: ../../templates/sidebar_localplay.inc.php:35
#: ../../templates/show_localplay_add_instance.inc.php:35
msgid "Add Instance"
msgstr "Legg til instans"
#: ../../templates/sidebar_localplay.inc.php:36
msgid "Show instances"
msgstr "Vis instanser"
#: ../../templates/sidebar_localplay.inc.php:38
msgid "Show Playlist"
msgstr "Vis spilelliste"
#: ../../templates/sidebar_localplay.inc.php:42
msgid "Active Instance"
msgstr "Aktiv instans"
#: ../../templates/sidebar_localplay.inc.php:44
#: ../../templates/show_gather_art.inc.php:24
#: ../../templates/show_adds_catalog.inc.php:25 ../../lib/ui.lib.php:571
#: ../../lib/preferences.php:174 ../../lib/preferences.php:216
msgid "None"
msgstr "Ingen"
#: ../../templates/sidebar_localplay.inc.php:60
msgid "Localplay Disabled"
msgstr "Lokalavspilling deaktivert"
#: ../../templates/sidebar_localplay.inc.php:62
msgid "Allow Localplay set to False"
msgstr "Tillat lokalavspilling er satt til 0"
#: ../../templates/sidebar_localplay.inc.php:64
msgid "Localplay Controller Not Defined"
msgstr "Kontroller for lokalavspilling er ikke definert"
#: ../../templates/sidebar_localplay.inc.php:66
#: ../../templates/show_denied.inc.php:32
msgid "Access Denied"
msgstr "Tilgang nektes"
#: ../../templates/footer.inc.php:25
msgid "Using Old Password Encryption, Please Reset your Password"
msgstr ""
"Utdatert krypteringsteknologi i bruk, vennligst registrer passordet ditt på "
"ny"
#: ../../templates/footer.inc.php:32
msgid "Queries:"
msgstr "Spørringer:"
#: ../../templates/footer.inc.php:32
msgid "Cache Hits:"
msgstr "Mellomlager treff:"
#: ../../templates/show_videos.inc.php:37
#: ../../templates/show_videos.inc.php:60
#: ../../templates/show_search.inc.php:79
msgid "Codec"
msgstr "Kodek"
#: ../../templates/show_videos.inc.php:38
#: ../../templates/show_videos.inc.php:61
msgid "Resolution"
msgstr "Oppløsning"
#: ../../templates/show_add_access_rpc.inc.php:22
#: ../../templates/show_access_list.inc.php:36
#: ../../templates/show_access_list.inc.php:37
msgid "Add API / RPC Host"
msgstr "Legg til API / RPC Vert"
#: ../../templates/show_add_access_rpc.inc.php:50
#: ../../templates/show_add_access_rpc.inc.php:51
#: ../../templates/show_add_access_rpc.inc.php:52
#: ../../templates/show_edit_access.inc.php:37
#: ../../templates/show_add_access.inc.php:54
msgid "RPC"
msgstr "RPC"
#: ../../templates/show_add_live_stream.inc.php:24
#: ../../templates/show_live_stream.inc.php:26
msgid "Add Radio Station"
msgstr "Legg til nettradio"
#: ../../templates/show_add_live_stream.inc.php:61
#: ../../templates/show_export.inc.php:32
msgid "Catalog"
msgstr "Katalog"
#: ../../templates/show_index.inc.php:38
#: ../../templates/show_random_albums.inc.php:24
msgid "Albums of the Moment"
msgstr "Aktuelle album"
#: ../../templates/show_index.inc.php:38
msgid "Loading..."
msgstr "Laster..."
#: ../../templates/show_edit_artist.inc.php:23
msgid "Edit Artist"
msgstr "Rediger Artist"
#: ../../templates/show_edit_artist.inc.php:35
#: ../../templates/show_edit_song.inc.php:73
#: ../../templates/show_edit_album.inc.php:41
msgid "Flag for Retagging"
msgstr "Merk for omtagging"
#: ../../templates/show_edit_artist.inc.php:41
msgid "Update Artist"
msgstr "Oppdater Artist"
#: ../../templates/show_edit_access.inc.php:22
msgid "Edit Access Control List"
msgstr "Rediger lister for tilgangskontroll"
#: ../../templates/show_edit_access.inc.php:30
#: ../../templates/show_add_access.inc.php:48
msgid "ACL Type"
msgstr "ACL type"
#: ../../templates/show_edit_access.inc.php:84
#: ../../templates/show_preference_admin.inc.php:55
#: ../../templates/show_catalog_row.inc.php:32
#: ../../templates/show_create_democratic.inc.php:59
#: ../../templates/show_play_selected.inc.php:64
#: ../../templates/show_edit_shout.inc.php:41
#: ../../templates/show_manage_catalogs.inc.php:42
#: ../../templates/show_playlist_edit.inc.php:47
msgid "Update"
msgstr "Oppdater"
#: ../../templates/show_popular.inc.php:29
#: ../../templates/show_genre.inc.php:35 ../../templates/show_stats.inc.php:31
#: ../../lib/ui.lib.php:366 ../../lib/class/browse.class.php:159
#: ../../lib/class/album.class.php:256
msgid "Artists"
msgstr "Artister"
#: ../../templates/show_similar_artists.inc.php:23
msgid "Similar Artists"
msgstr "Lignende artister"
#: ../../templates/show_similar_artists.inc.php:25
msgid "Please check the artists you want to merge with the current one"
msgstr "Vennligst sjekk artistene du vil samle sammen med den nåværende artisten"
#: ../../templates/show_similar_artists.inc.php:58
msgid "No Similar Artists found"
msgstr "Ingen lignende artister funnet"
#: ../../templates/show_similar_artists.inc.php:66
msgid "Back"
msgstr "Tilbake"
#: ../../templates/show_similar_artists.inc.php:77
msgid "Rename selected"
msgstr "Endre navn på valgte"
#: ../../templates/show_similar_artists.inc.php:91
msgid "Advanced Options"
msgstr "Avanserte valg"
#: ../../templates/show_similar_artists.inc.php:152
msgid "Search Again"
msgstr "Søk igjen"
#: ../../templates/show_clean_catalog.inc.php:23
#, php-format
msgid "Cleaning the %s Catalog"
msgstr "Rensker katalogen %s"
#: ../../templates/show_clean_catalog.inc.php:25
msgid "Checking"
msgstr "Sjekker"
#: ../../templates/show_clean_catalog.inc.php:26
#: ../../templates/show_run_add_catalog.inc.php:25
#: ../../templates/show_gather_art.inc.php:25
#: ../../templates/show_adds_catalog.inc.php:26
#: ../../templates/show_verify_catalog.inc.php:28
msgid "Reading"
msgstr "Leser"
#: ../../templates/sidebar_preferences.inc.php:9
#: ../../templates/sidebar.inc.php:29 ../../lib/ui.lib.php:327
msgid "Preferences"
msgstr "Innstillinger"
#: ../../templates/sidebar_preferences.inc.php:18
msgid "Account"
msgstr "Konto"
#: ../../templates/show_flag.inc.php:41
msgid "Flag Song"
msgstr "Merk spor"
#: ../../templates/show_flag.inc.php:45
#: ../../templates/show_edit_song.inc.php:27
msgid "File"
msgstr "Fil"
#: ../../templates/show_flag.inc.php:49
msgid "Item"
msgstr "Objekt"
#: ../../templates/show_flag.inc.php:53
msgid "Reason to flag"
msgstr "Grunn til merking"
#: ../../templates/show_flag.inc.php:56 ../../templates/rightbar.inc.php:106
#: ../../templates/show_catalog_row.inc.php:34
#: ../../templates/show_democratic_playlist.inc.php:86
#: ../../templates/show_live_stream_row.inc.php:34
#: ../../templates/show_localplay_instances.inc.php:40
#: ../../templates/show_localplay_playlist.inc.php:50
#: ../../templates/show_playlist_song_row.inc.php:38
#: ../../templates/show_playlist_row.inc.php:38
#: ../../templates/show_admin_tools.inc.php:53
#: ../../lib/class/flag.class.php:325
msgid "Delete"
msgstr "Slett"
#: ../../templates/show_flag.inc.php:57
msgid "Incorrect Tags"
msgstr "Feil tag"
#: ../../templates/show_flag.inc.php:58 ../../lib/class/flag.class.php:331
msgid "Re-encode"
msgstr "Om-koding"
#: ../../templates/show_flag.inc.php:59 ../../lib/class/flag.class.php:334
msgid "Other"
msgstr "Annen"
#: ../../templates/show_flag.inc.php:64
#: ../../templates/show_edit_song.inc.php:65
#: ../../templates/show_flagged.inc.php:37
#: ../../templates/show_flagged.inc.php:56
#: ../../templates/show_search.inc.php:34
#: ../../templates/show_manage_shoutbox.inc.php:37
#: ../../templates/show_manage_shoutbox.inc.php:61
msgid "Comment"
msgstr "Kommentar"
#: ../../templates/show_flag.inc.php:69
#: ../../templates/show_flagged.inc.php:36
#: ../../templates/show_flagged.inc.php:55
msgid "Flag"
msgstr "Merk"
#: ../../templates/show_playtype_switch.inc.php:38
#: ../../lib/preferences.php:184
msgid "Flash Player"
msgstr "Flashspiller"
#: ../../templates/show_preference_admin.inc.php:22
msgid "Preference Administration"
msgstr "Administrasjon av innstillinger"
#: ../../templates/show_install_config.inc.php:33
#: ../../templates/show_install_lang.inc.php:34
#: ../../templates/show_install.inc.php:33
#: ../../templates/show_install_account.inc.php:33
msgid "Ampache Installation"
msgstr "Installasjon av Ampache"
#: ../../templates/show_install_config.inc.php:39
#: ../../templates/show_install_lang.inc.php:41
#: ../../templates/show_install.inc.php:41
#: ../../templates/show_install_account.inc.php:40
msgid ""
"This Page handles the installation of the Ampache database and the creation "
"of the ampache.cfg.php file. Before you continue please make sure that you "
"have the following pre-requisites"
msgstr ""
"Denne siden installerer Ampache databasen og oppretter konfigurasjonsfilen "
"ampache.cfg.php. Før du fortsetter må du undersøke om du oppfyller de krav "
"som stilles til vertssystemet Ampache skal kjøres på"
#: ../../templates/show_install_config.inc.php:42
#: ../../templates/show_install_lang.inc.php:44
#: ../../templates/show_install.inc.php:44
#: ../../templates/show_install_account.inc.php:43
msgid ""
"A MySQL Server with a username and password that can create/modify databases"
msgstr ""
"En MySQL Server med brukernavn/passord som tillater oppretting og endring av "
"databaser."
#: ../../templates/show_install_config.inc.php:43
#: ../../templates/show_install_lang.inc.php:45
#: ../../templates/show_install.inc.php:45
msgid ""
"Your webserver has read access to the /sql/ampache.sql file and the /config/"
"ampache.cfg.php.dist file"
msgstr ""
"Webserveren din må ha tilgang til filene /sql/ampache.sql og/config/ampache."
"cfg.php.dist."
#: ../../templates/show_install_config.inc.php:45
#: ../../templates/show_install_lang.inc.php:48
#: ../../templates/show_install.inc.php:48
#: ../../templates/show_install_account.inc.php:46
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 ""
"Når du har forsikret deg om at de ovenstående krav er oppfylt kan du fylle "
"ut informasjonen i feltene under. Du vil kun bli bedt om informasjon som er "
"nødvendig for å fullføre installasjonen. Hvis du vil endre denne "
"konfigurasjonen på et senere tidspunkt, redigerer du filen"
"/config/ampache.cfg.php"
#: ../../templates/show_install_config.inc.php:49
#: ../../templates/show_install.inc.php:53
#: ../../templates/show_install_account.inc.php:49
msgid "Step 1 - Creating and Inserting the Ampache Database"
msgstr "Trinn 1 - Oppretting og innsetting av Ampache Databasen"
#: ../../templates/show_install_config.inc.php:50
#: ../../templates/show_install.inc.php:57
msgid "Step 2 - Creating the Ampache.cfg.php file"
msgstr "Trinn 2 - Oppretting av ampache.cfg.php filen"
#: ../../templates/show_install_config.inc.php:52
msgid ""
"This steps takes the basic config values and generates the config file. It "
"will prompt you to download the config file. Please put the downloaded "
"config file in /config"
msgstr ""
"Disse trinnene klargjør og oppretter konfigurasjonsfilen for deg. Du vil bli "
"bedt om å laste ned filen, legg den deretter i mappen /config i rotkatalogen."
#: ../../templates/show_install_config.inc.php:54
#: ../../templates/show_install.inc.php:58
#: ../../templates/show_install_account.inc.php:51
msgid "Step 3 - Setup Initial Account"
msgstr "Trinn 3 - Sett opp hovedkonto"
#: ../../templates/show_install_config.inc.php:58
msgid "Generate Config File"
msgstr "Generer konfigurasjonsfil"
#: ../../templates/show_install_config.inc.php:67
#: ../../templates/show_install.inc.php:66
msgid "Desired Database Name"
msgstr "Ønsket databasenavn"
#: ../../templates/show_install_config.inc.php:71
#: ../../templates/show_install.inc.php:70
msgid "MySQL Hostname"
msgstr "Vertsnavn for MySQL"
#: ../../templates/show_install_config.inc.php:75
msgid "MySQL Username"
msgstr "Brukernavn for MySQL"
#: ../../templates/show_install_config.inc.php:79
msgid "MySQL Password"
msgstr "Passord for MySQL"
#: ../../templates/show_install_config.inc.php:84
msgid "Write Config"
msgstr "Skriv konfigurasjon"
#: ../../templates/show_install_config.inc.php:125
msgid "Check for Config"
msgstr "Sjekk etter konfigurasjonen"
#: ../../templates/show_install_config.inc.php:131
msgid "Continue to Step 3"
msgstr "Fortsett til trinn 3"
#: ../../templates/show_user.inc.php:31
msgid "Create Date"
msgstr "Opprettet dato"
#: ../../templates/show_user.inc.php:35
msgid "User is Online Now"
msgstr "Bruker er pålogget nå"
#: ../../templates/show_user.inc.php:37
msgid "User is Offline Now"
msgstr "Bruker er avlogget nå"
#: ../../templates/show_user.inc.php:42
msgid "Active Playlist"
msgstr "Aktiv spilleliste"
#: ../../templates/show_user.inc.php:68 ../../templates/header.inc.php:36
#: ../../templates/show_recently_played.inc.php:25
#: ../../lib/class/ampacherss.class.php:71
msgid "Recently Played"
msgstr "Nylig Spilt"
#: ../../templates/show_add_access.inc.php:22
#: ../../templates/show_access_list.inc.php:43
#: ../../templates/show_access_list.inc.php:44
msgid "Advanced Add"
msgstr "Legg til - Avansert"
#: ../../templates/sidebar_admin.inc.php:24
#: ../../templates/show_stats.inc.php:25
#: ../../templates/show_admin_tools.inc.php:26
#: ../../lib/class/browse.class.php:187
msgid "Catalogs"
msgstr "Kataloger"
#: ../../templates/sidebar_admin.inc.php:26
#: ../../templates/show_admin_tools.inc.php:82
#: ../../templates/show_add_catalog.inc.php:26
msgid "Add a Catalog"
msgstr "Legg til katalog"
#: ../../templates/sidebar_admin.inc.php:27
#: ../../templates/show_manage_catalogs.inc.php:22
msgid "Show Catalogs"
msgstr "Vis kataloger"
#: ../../templates/sidebar_admin.inc.php:31
msgid "User Tools"
msgstr "Brukerverktøy"
#: ../../templates/sidebar_admin.inc.php:33
#: ../../templates/show_add_user.inc.php:85
msgid "Add User"
msgstr "Legg til bruker"
#: ../../templates/sidebar_admin.inc.php:34
msgid "Browse Users"
msgstr "Bla i brukere"
#: ../../templates/sidebar_admin.inc.php:37
#: ../../templates/show_access_list.inc.php:28
msgid "Access Control"
msgstr "Tilgangskontroll"
#: ../../templates/sidebar_admin.inc.php:39
msgid "Add ACL"
msgstr "Legg til tilgangskontroll"
#: ../../templates/sidebar_admin.inc.php:40
msgid "Show ACL(s)"
msgstr "Vis tilgangskontroller"
#: ../../templates/sidebar_admin.inc.php:43
#: ../../templates/show_admin_tools.inc.php:88
#: ../../templates/sidebar_modules.inc.php:31
msgid "Other Tools"
msgstr "Andre verktøy"
#: ../../templates/sidebar_admin.inc.php:46
#: ../../templates/show_admin_tools.inc.php:91
msgid "Clear Now Playing"
msgstr "Rensk spilles nå"
#: ../../templates/sidebar_admin.inc.php:47
#: ../../templates/show_export.inc.php:28
msgid "Export Catalog"
msgstr "Eksporter katalog"
#: ../../templates/sidebar_admin.inc.php:49
msgid "Manage Shoutbox"
msgstr "Behandle Shoutbox"
#: ../../templates/sidebar_admin.inc.php:54
msgid "Server Config"
msgstr "Serverkonfigurasjon"
#: ../../templates/show_install_check.inc.php:23
#, fuzzy
msgid "Required"
msgstr "Krav"
#: ../../templates/show_install_check.inc.php:93
msgid "Optional"
msgstr "Valgfri"
#: ../../templates/show_install_check.inc.php:94
#: ../../templates/show_debug.inc.php:80
msgid "Gettext Support"
msgstr "Støtte for Gettext"
#: ../../templates/show_install_check.inc.php:97
msgid "Gettext Emulator will be used"
msgstr "Gettext emulator vil bli brukt"
#: ../../templates/show_install_check.inc.php:104
msgid "Mbstring Support"
msgstr "Støtte for Mbstring"
#: ../../templates/show_install_check.inc.php:107
msgid "Multibyte Chracter may not detect correct"
msgstr "Multibyte tegn kan bli lest feil"
#: ../../templates/sidebar.inc.php:27 ../../lib/ui.lib.php:309
msgid "Home"
msgstr "Hjem"
#: ../../templates/sidebar.inc.php:30
#: ../../templates/sidebar_modules.inc.php:25
msgid "Modules"
msgstr "Moduler"
#: ../../templates/sidebar.inc.php:61
msgid "Logout"
msgstr "Logg ut"
#: ../../templates/show_install_lang.inc.php:39
#: ../../templates/show_install.inc.php:39
msgid "Requirements"
msgstr "Krav"
#: ../../templates/show_install_lang.inc.php:54
msgid "Minimum Requirements not met. Unable to Install Ampache."
msgstr "Minimumskrav til systemet ikke møtt. Kan ikke installere Ampache."
#: ../../templates/show_install_lang.inc.php:59
msgid "Choose installation language."
msgstr "Velg språk for installasjonsprosessen."
#: ../../templates/show_install_lang.inc.php:80
msgid "Start configuration"
msgstr "Start konfigurasjonen"
#: ../../templates/rightbar.inc.php:28
msgid "Add to Playlist"
msgstr "Legg til i spilleliste"
#: ../../templates/rightbar.inc.php:31
msgid "Add to New Playlist"
msgstr "Legg til i ny spilleliste"
#: ../../templates/rightbar.inc.php:54
#: ../../templates/show_localplay_status.inc.php:47
#: ../../templates/show_democratic.inc.php:42
#: ../../templates/show_democratic.inc.php:43
msgid "Clear Playlist"
msgstr "Rensk spilleliste"
#: ../../templates/rightbar.inc.php:57
msgid "Add Dynamic Items"
msgstr "Legg til dynamiske objekter"
#: ../../templates/rightbar.inc.php:60 ../../lib/class/random.class.php:416
msgid "Pure Random"
msgstr "Ren Tilfeldighet"
#: ../../templates/rightbar.inc.php:63 ../../lib/class/random.class.php:413
msgid "Related Artist"
msgstr "Relatert Artist"
#: ../../templates/rightbar.inc.php:66 ../../lib/class/random.class.php:407
msgid "Related Album"
msgstr "Relatert Album"
#: ../../templates/rightbar.inc.php:69
msgid "Related Tag"
msgstr "Relatert tag"
#: ../../templates/rightbar.inc.php:113
msgid "More"
msgstr "Mer"
#: ../../templates/header.inc.php:35
#: ../../templates/show_localplay_status.inc.php:27
#: ../../templates/show_now_playing.inc.php:33
#: ../../lib/class/localplay.class.php:639
#: ../../lib/class/ampacherss.class.php:70
msgid "Now Playing"
msgstr "Spilles nå"
#: ../../templates/header.inc.php:61
msgid "Log out"
msgstr "Logg ut"
#: ../../templates/header.inc.php:77
msgid "Error Config File Out of Date"
msgstr "Feil: Konfigurasjonsfilen er i en gammel versjon"
#: ../../templates/header.inc.php:78
#: ../../templates/show_admin_tools.inc.php:92
msgid "Generate New Config"
msgstr "Lag ny konfigurasjonsfil"
#: ../../templates/show_edit_playlist_row.inc.php:32
#: ../../templates/show_playlist_edit.inc.php:39
msgid "Public"
msgstr "Offentlig"
#: ../../templates/show_edit_playlist_row.inc.php:33
#: ../../templates/show_playlist_edit.inc.php:40
#: ../../lib/class/playlist.class.php:83
msgid "Private"
msgstr "Privat"
#: ../../templates/show_add_user.inc.php:23
msgid "Adding a New User"
msgstr "Legger til ny bruker"
#: ../../templates/show_genre.inc.php:29
#, php-format
msgid "Viewing %s Genre"
msgstr "Vises som sjanger %s"
#: ../../templates/show_user_activate.inc.php:29
#: ../../templates/show_user_activate.inc.php:36
#: ../../templates/show_user_registration.inc.php:29
#: ../../templates/show_user_registration.inc.php:36
#: ../../templates/show_registration_confirmation.inc.php:29
msgid "Registration"
msgstr "Registrering"
#: ../../templates/show_user_activate.inc.php:48
msgid "User Activated"
msgstr "Bruker aktivert"
#: ../../templates/show_user_activate.inc.php:51
#, php-format
msgid "This User ID is activated and can be used %sLogin%s"
msgstr "Denne brukeren er aktivert og kan brukes til å %slogge inn %s"
#: ../../templates/show_user_activate.inc.php:54
msgid "Validation Failed"
msgstr "Velidering feilet"
#: ../../templates/show_user_activate.inc.php:55
msgid "The validation key used isn't correct"
msgstr "Valideringsnøkkelen som ble brukt er ikke korrekt"
#: ../../templates/show_plugins.inc.php:46
msgid "Deactivate"
msgstr "Deaktiver"
#: ../../templates/show_random_albums.inc.php:22
msgid "Refresh"
msgstr "Oppfrisk"
#: ../../templates/show_random_albums.inc.php:48
msgid "Play Album"
msgstr "Spill album"
#: ../../templates/show_catalog_row.inc.php:30
#: ../../templates/show_admin_tools.inc.php:47
msgid "Verify"
msgstr "Verifiser"
#: ../../templates/show_catalog_row.inc.php:31
#: ../../templates/show_admin_tools.inc.php:49
msgid "Clean"
msgstr "Rensk"
#: ../../templates/show_catalog_row.inc.php:33
#: ../../templates/show_admin_tools.inc.php:60
msgid "Gather Art"
msgstr "Hent albumbilder"
#: ../../templates/show_create_democratic.inc.php:22
#: ../../templates/show_democratic.inc.php:34
#, fuzzy
msgid "Configure Democratic Playlist"
msgstr "Lag demokratisk spilleliste"
#: ../../templates/show_create_democratic.inc.php:34
msgid "Cooldown Time"
msgstr "Nedkjølingstid"
#: ../../templates/show_create_democratic.inc.php:35
#: ../../templates/show_search.inc.php:77
#: ../../lib/class/democratic.class.php:140 ../../lib/class/video.class.php:77
msgid "minutes"
msgstr "minutter"
#: ../../templates/show_create_democratic.inc.php:49
msgid "Make Default"
msgstr "Sett som standard"
#: ../../templates/show_create_democratic.inc.php:54
#, fuzzy
msgid "Force Democratic Play"
msgstr "Tillat demokratisk avspilling"
#: ../../templates/show_account.inc.php:39
msgid "New Password"
msgstr "Nytt passord"
#: ../../templates/show_account.inc.php:62
msgid "Update Account"
msgstr "Oppdater konto"
#: ../../templates/show_edit_song.inc.php:23
msgid "Edit Song"
msgstr "Rediger spor"
#: ../../templates/show_edit_song.inc.php:40
#: ../../templates/show_edit_song.inc.php:48
#: ../../templates/show_search.inc.php:119
#: ../../templates/show_dynamic.inc.php:64
#: ../../templates/show_rename_artist.inc.php:33
msgid "OR"
msgstr "OR"
#: ../../templates/show_edit_song.inc.php:53
#: ../../templates/show_localplay_playlist.inc.php:33
#: ../../templates/show_localplay_playlist.inc.php:59
#: ../../templates/show_songs.inc.php:44 ../../templates/show_songs.inc.php:73
#: ../../templates/show_playlist_songs.inc.php:41
#: ../../templates/show_playlist_songs.inc.php:46
#: ../../templates/show_playlist_songs.inc.php:62
#: ../../templates/show_playlist_songs.inc.php:67
msgid "Track"
msgstr "Spor"
#: ../../templates/show_edit_song.inc.php:80
msgid "Update Song"
msgstr "Oppdater spor"
#: ../../templates/show_democratic_playlist.inc.php:42
msgid "Playing from base Playlist"
msgstr "Spiller fra baseliste"
#: ../../templates/show_democratic_playlist.inc.php:55
#: ../../templates/show_democratic_playlist.inc.php:95
msgid "Votes"
msgstr "Stemmer"
#: ../../templates/show_democratic_playlist.inc.php:74
msgid "Remove Vote"
msgstr "Fjern Stemme"
#: ../../templates/show_democratic_playlist.inc.php:76
msgid "Add Vote"
msgstr "Legg til stemme"
#: ../../templates/show_localplay_edit_instance.inc.php:23
msgid "Edit Localplay Instance"
msgstr "Rediger lokalavspillingsinstans"
#: ../../templates/show_localplay_edit_instance.inc.php:34
msgid "Update Instance"
msgstr "Oppdater instans"
#: ../../templates/show_search_bar.inc.php:29
#: ../../templates/show_search.inc.php:144 ../../lib/ui.lib.php:324
msgid "Search"
msgstr "Søk"
#: ../../templates/show_search_bar.inc.php:30
msgid "Advanced Search"
msgstr "Avansert Søk"
#: ../../templates/show_stats.inc.php:28
msgid "Connected Users"
msgstr "Tilkoblede brukere"
#: ../../templates/show_stats.inc.php:29
msgid "Total Users"
msgstr "Totalt antall brukere"
#: ../../templates/show_stats.inc.php:35 ../../templates/show_stats.inc.php:70
msgid "Catalog Size"
msgstr "Katalogstørrelse"
#: ../../templates/show_stats.inc.php:36
msgid "Catalog Time"
msgstr "Katalogtid"
#: ../../templates/show_ip_history.inc.php:23
#, php-format
msgid "%s IP History"
msgstr "%s IP Historikk"
#: ../../templates/show_ip_history.inc.php:26
msgid "Show Unique"
msgstr "Vis unike"
#: ../../templates/show_ip_history.inc.php:28
#: ../../templates/show_admin_info.inc.php:38
msgid "Show All"
msgstr "Vis alle"
#: ../../templates/show_ip_history.inc.php:37
#: ../../templates/show_ip_history.inc.php:51
msgid "Date"
msgstr "Dato"
#: ../../templates/show_ip_history.inc.php:38
#: ../../templates/show_ip_history.inc.php:52
msgid "IP Address"
msgstr "IP Adresse"
#: ../../templates/show_embed_xspf.inc.php:54
msgid "XSPF Player"
msgstr "XSPF Spiller"
#: ../../templates/show_play_selected.inc.php:28
msgid "Play Selected"
msgstr "Spill valgte"
#: ../../templates/show_play_selected.inc.php:31
msgid "Download Selected"
msgstr "Last ned valgte"
#: ../../templates/show_play_selected.inc.php:40
msgid "Set Track Numbers"
msgstr "Set spornummer"
#: ../../templates/show_play_selected.inc.php:41
msgid "Remove Selected Tracks"
msgstr "Fjern valgte spor"
#: ../../templates/show_play_selected.inc.php:47
msgid "Add to"
msgstr "Legg til"
#: ../../templates/show_play_selected.inc.php:58
#: ../../templates/show_genres.inc.php:37
#: ../../templates/show_genres.inc.php:73
#: ../../templates/show_playlist_songs.inc.php:45
#: ../../templates/show_playlist_songs.inc.php:66 ../../lib/ui.lib.php:370
msgid "Genre"
msgstr "Sjanger"
#: ../../templates/show_flagged.inc.php:34
#: ../../templates/show_flagged.inc.php:53
#: ../../templates/show_manage_shoutbox.inc.php:34
#: ../../templates/show_manage_shoutbox.inc.php:58
msgid "Object"
msgstr "Objekt"
#: ../../templates/show_flagged.inc.php:38
#: ../../templates/show_flagged.inc.php:57
msgid "Status"
msgstr "Status"
#: ../../templates/show_stats_popular.inc.php:25
#: ../../templates/show_mail_users.inc.php:46
#: ../../templates/show_all_popular.inc.php:29
msgid "Most Popular Albums"
msgstr "Mest populære album"
#: ../../templates/show_stats_popular.inc.php:31
#: ../../templates/show_mail_users.inc.php:57
#: ../../templates/show_all_popular.inc.php:26
msgid "Most Popular Artists"
msgstr "Mest populære artister"
#: ../../templates/show_user_recommendations.inc.php:29
msgid "Recommended Artists"
msgstr "Anbefalte artister"
#: ../../templates/show_user_recommendations.inc.php:40
msgid "Recommended Albums"
msgstr "Anbefalte album"
#: ../../templates/show_user_recommendations.inc.php:51
msgid "Recommended Songs"
msgstr "Anbefalte spor"
#: ../../templates/show_edit_shout.inc.php:23
msgid "Edit existing Shoutbox Post"
msgstr "Rediger eksisterende shoutbox oppføring"
#: ../../templates/show_edit_shout.inc.php:28
#, php-format
msgid "Created by: %s for %s"
msgstr "Laget av: %s for %s"
#: ../../templates/show_edit_shout.inc.php:31
#: ../../templates/show_add_shout.inc.php:27
msgid "Comment:"
msgstr "Kommentar:"
#: ../../templates/show_edit_shout.inc.php:37
#: ../../templates/show_add_shout.inc.php:34
msgid "Make Sticky"
msgstr "Fest til toppen"
#: ../../templates/show_object_rating_static.inc.php:34
#: ../../templates/show_object_rating.inc.php:34
msgid "Current rating: "
msgstr "Nåværende rating: "
#: ../../templates/show_object_rating_static.inc.php:36
#: ../../templates/show_object_rating.inc.php:36
msgid "not rated yet"
msgstr "ikke ratet enda"
#: ../../templates/show_object_rating_static.inc.php:38
#: ../../templates/show_object_rating.inc.php:38
#, php-format
msgid "%s of 5"
msgstr "%s av 5"
#: ../../templates/show_object_rating_static.inc.php:44
msgid "out of"
msgstr "ut av"
#: ../../templates/show_export.inc.php:51
msgid "Format"
msgstr "Format"
#: ../../templates/show_export.inc.php:61
msgid "Export"
msgstr "Eksporter"
#: ../../templates/show_edit_album.inc.php:23
msgid "Edit Album"
msgstr "Rediger album"
#: ../../templates/show_edit_album.inc.php:47
msgid "Update Album"
msgstr "Oppdater album"
#: ../../templates/show_album_art.inc.php:47
#, fuzzy
msgid "Invalid"
msgstr "Ugyldig forespørsel"
#: ../../templates/show_album_art.inc.php:49
#: ../../templates/show_disabled_songs.inc.php:33
#: ../../templates/show_disabled_songs.inc.php:56
msgid "Select"
msgstr "Velg"
#: ../../templates/show_localplay_status.inc.php:26
msgid "Localplay Control"
msgstr "Lokalavspillingskontroll"
#: ../../templates/show_localplay_status.inc.php:31
msgid "Mute"
msgstr "Stum"
#: ../../templates/show_localplay_status.inc.php:32
msgid "Decrease Volume"
msgstr "Senk volum"
#: ../../templates/show_localplay_status.inc.php:33
msgid "Increase Volume"
msgstr "Øk Volum"
#: ../../templates/show_localplay_status.inc.php:34
msgid "Volume"
msgstr "Volum"
#: ../../templates/show_localplay_status.inc.php:39
msgid "Repeat"
msgstr "Gjenta"
#: ../../templates/show_admin_info.inc.php:30
msgid "Last Ten Flagged Records"
msgstr "Siste ti merkede oppføringer"
#: ../../templates/show_admin_info.inc.php:34
#: ../../templates/show_mail_users.inc.php:78
msgid "Disabled Songs"
msgstr "Deaktiverte spor"
#: ../../templates/show_add_access_current.inc.php:22
#: ../../templates/show_access_list.inc.php:32
#: ../../templates/show_access_list.inc.php:33
msgid "Add Current Host"
msgstr "Legg til nåværende vert"
#: ../../templates/show_localplay_instances.inc.php:23
msgid "Show Localplay Instances"
msgstr "Vis instanser for lokalavspilling"
#: ../../templates/show_localplay_instances.inc.php:39
msgid "Edit Instance"
msgstr "Rediger instans"
#: ../../templates/show_update_items.inc.php:22
msgid "Starting Update from Tags"
msgstr "Starter oppdatering fra tag informasjon"
#: ../../templates/show_update_items.inc.php:26
msgid "Update from Tags Complete"
msgstr "Oppdatering fra tag informasjon ferdig"
#: ../../templates/show_user_stats.inc.php:30
msgid "Favorite Artists"
msgstr "Favorittartister"
#: ../../templates/show_user_stats.inc.php:43
msgid "Favorite Albums"
msgstr "Favorittalbum"
#: ../../templates/show_user_stats.inc.php:56
msgid "Favorite Songs"
msgstr "Favorittspor"
#: ../../templates/show_random_rules.inc.php:22
#, fuzzy
msgid "Rules"
msgstr "Moduler"
#: ../../templates/show_random_rules.inc.php:32
#: ../../templates/show_dynamic.inc.php:31
#, fuzzy
msgid "Field"
msgstr "Felt"
#: ../../templates/show_random_rules.inc.php:33
#: ../../templates/show_search.inc.php:115
#: ../../templates/show_dynamic.inc.php:32
msgid "Operator"
msgstr "Operatør"
#: ../../templates/show_random_rules.inc.php:35
#: ../../templates/show_search.inc.php:124
#: ../../templates/show_dynamic.inc.php:34
msgid "Method"
msgstr "Metode"
#: ../../templates/show_shoutbox.inc.php:22
msgid "Shoutbox"
msgstr "Shoutbox"
#: ../../templates/show_search.inc.php:26
msgid "Search Ampache"
msgstr "Søk i Ampache"
#: ../../templates/show_search.inc.php:30
msgid "Keywords"
msgstr "Nøkkelord"
#: ../../templates/show_search.inc.php:85
msgid "Played"
msgstr "Spilt"
#: ../../templates/show_search.inc.php:89
msgid "Yes"
msgstr "Ja"
#: ../../templates/show_search.inc.php:90
msgid "No"
msgstr "Nei"
#: ../../templates/show_search.inc.php:93
msgid "Min Bitrate"
msgstr "Minimum Bitrate"
#: ../../templates/show_search.inc.php:108
msgid "One Star"
msgstr "En stjerne"
#: ../../templates/show_search.inc.php:109
msgid "Two Stars"
msgstr "To stjerner"
#: ../../templates/show_search.inc.php:110
msgid "Three Stars"
msgstr "Tre Stjerner"
#: ../../templates/show_search.inc.php:111
msgid "Four Stars"
msgstr "Fire stjerner"
#: ../../templates/show_search.inc.php:112
msgid "Five Stars"
msgstr "Fem stjerner"
#: ../../templates/show_search.inc.php:118
#: ../../templates/show_dynamic.inc.php:65
msgid "AND"
msgstr "AND"
#: ../../templates/show_search.inc.php:127
msgid "Fuzzy"
msgstr "Fuzzy"
#: ../../templates/show_search.inc.php:128
msgid "Exact"
msgstr "Eksakt"
#: ../../templates/show_search.inc.php:131
msgid "Maximum Results"
msgstr "Maksimalt antall resultater"
#: ../../templates/show_search.inc.php:134
#: ../../templates/show_random.inc.php:46
#: ../../templates/show_random.inc.php:81
msgid "Unlimited"
msgstr "Ubegrenset"
#: ../../templates/show_add_playlist.inc.php:24
msgid "Create a new playlist"
msgstr "Lag ny spilleliste"
#: ../../templates/show_add_playlist.inc.php:42
#: ../../templates/show_add_shout.inc.php:41
msgid "Create"
msgstr "Lag"
#: ../../templates/show_run_add_catalog.inc.php:24
#: ../../templates/show_adds_catalog.inc.php:25
msgid "Found"
msgstr "Fant"
#: ../../templates/show_install.inc.php:55
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 ""
"Dette trinnet oppretter og setter inn databasen til Ampache, du må derfor "
"oppgi et brukernavn og et passord til MySQL som kan opprette databaser. "
"Dette trinnet kan ta noe tid, avhengig av datamaskinen serveren kjører på."
#: ../../templates/show_install.inc.php:62
msgid "Insert Ampache Database"
msgstr "Sett inn Ampache databasen"
#: ../../templates/show_install.inc.php:74
msgid "MySQL Administrative Username"
msgstr "MySQL Adminbruker"
#: ../../templates/show_install.inc.php:78
msgid "MySQL Administrative Password"
msgstr "MySQL Adminpassord"
#: ../../templates/show_install.inc.php:82
msgid "Create Database User for New Database"
msgstr "Lag databasebruker for den nye databasen"
#: ../../templates/show_install.inc.php:86
msgid "Ampache Database Username"
msgstr "Ampache database brukernavn"
#: ../../templates/show_install.inc.php:90
msgid "Ampache Database User Password"
msgstr "Ampache database brukerpassord"
#: ../../templates/show_install.inc.php:94
msgid "Overwrite Existing"
msgstr "Overskriv eksisterende"
#: ../../templates/show_install.inc.php:98
msgid "Use Existing Database"
msgstr "Bruk eksisterende database"
#: ../../templates/show_install.inc.php:103
msgid "Insert Database"
msgstr "Sett inn databasen"
#: ../../templates/show_install_account.inc.php:44
msgid ""
"Your webserver has read access to the /sql/ampache.sql file and the /config/"
"ampache.cfg.dist.php file"
msgstr ""
"Webserveren din har tilgang til filene /sql/ampache.sql og/config/ampache."
"cfg.php.dist."
#: ../../templates/show_install_account.inc.php:50
msgid "Step 2 - Creating the ampache.cfg.php file"
msgstr "Trinn 2 - Oppretting av konfigurasjonsfilen ampache.cfg.php"
#: ../../templates/show_install_account.inc.php:53
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 ""
"Dette trinnet oppretter hovedkontoen for administrering av Ampache. Når "
"hovedkontoen er opprettet vil du bli overført til innloggingssiden."
#: ../../templates/show_install_account.inc.php:57
msgid "Create Admin Account"
msgstr "Opprett administratorkonto"
#: ../../templates/show_install_account.inc.php:74
msgid "Create Account"
msgstr "Opprett konto"
#: ../../templates/show_gather_art.inc.php:23
msgid "Starting Album Art Search"
msgstr "Starter søk etter albumbilder"
#: ../../templates/show_gather_art.inc.php:24
msgid "Searched"
msgstr "Ferdig med søk"
#: ../../templates/show_add_shout.inc.php:23
msgid "Post to Shoutbox"
msgstr "Legg til i Shoutbox"
#: ../../templates/show_stats_newest.inc.php:22
#: ../../lib/class/ampacherss.class.php:72
msgid "Newest Albums"
msgstr "Nyeste Album"
#: ../../templates/show_stats_newest.inc.php:26
#: ../../lib/class/ampacherss.class.php:73
msgid "Newest Artists"
msgstr "Nyeste Artister"
#: ../../templates/show_mail_users.inc.php:23
msgid "Send E-mail to Users"
msgstr "Send epost til brukere"
#: ../../templates/show_mail_users.inc.php:27
msgid "Mail to"
msgstr "Epost til"
#: ../../templates/show_mail_users.inc.php:33
msgid "Inactive Users"
msgstr "Inaktive brukere"
#: ../../templates/show_mail_users.inc.php:42
msgid "Catalog Statistics"
msgstr "Katalogstatistikk"
#: ../../templates/show_mail_users.inc.php:53
msgid "Latest Artist Additions"
msgstr "Siste artister lagt til"
#: ../../templates/show_mail_users.inc.php:64
msgid "Latest Album Additions"
msgstr "Siste album lagt til"
#: ../../templates/show_mail_users.inc.php:68
#: ../../templates/show_all_popular.inc.php:38
msgid "Most Popular Songs"
msgstr "Mest populære spor"
#: ../../templates/show_mail_users.inc.php:74
msgid "Flagged Songs"
msgstr "Merkede spor"
#: ../../templates/show_mail_users.inc.php:86
msgid "Most Popular Threshold in days"
msgstr "Mest populær terskel (i dager)"
#: ../../templates/show_mail_users.inc.php:97
msgid "Subject"
msgstr "Emne"
#: ../../templates/show_mail_users.inc.php:104
msgid "Message"
msgstr "Melding"
#: ../../templates/show_mail_users.inc.php:112
msgid "Send Mail"
msgstr "Send epost"
#: ../../templates/show_random.inc.php:22
msgid "Play Random Selection"
msgstr "Spill tilfeldig utvalg"
#: ../../templates/show_random.inc.php:26
msgid "Item count"
msgstr "Antall objekt"
#: ../../templates/show_random.inc.php:43
#: ../../templates/show_duplicates.inc.php:40
#: ../../templates/show_duplicates.inc.php:79
msgid "Length"
msgstr "Lengde"
#: ../../templates/show_random.inc.php:47
#: ../../templates/show_random.inc.php:48
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
msgstr[0] "%d minutt"
msgstr[1] "%d minutter"
#: ../../templates/show_random.inc.php:49
#: ../../templates/show_random.inc.php:50
#: ../../templates/show_random.inc.php:51
#: ../../templates/show_random.inc.php:52
#: ../../templates/show_random.inc.php:53
#, php-format
msgid "%d hour"
msgid_plural "%d hours"
msgstr[0] "%d time"
msgstr[1] "%d timer"
#: ../../templates/show_random.inc.php:61
msgid "Standard"
msgstr "Standard"
#: ../../templates/show_random.inc.php:62
msgid "Less Played"
msgstr "Minst spilt"
#: ../../templates/show_random.inc.php:63
msgid "Full Albums"
msgstr "Hele album"
#: ../../templates/show_random.inc.php:64
msgid "Full Artist"
msgstr "Hele artister"
#: ../../templates/show_random.inc.php:66
msgid "Highest Rated"
msgstr "Høyest ratet"
#: ../../templates/show_random.inc.php:72
msgid "From catalog"
msgstr "Fra katalog"
#: ../../templates/show_random.inc.php:78
msgid "Size Limit"
msgstr "Størrelsesgrense"
#: ../../templates/show_random.inc.php:92
msgid "Enqueue"
msgstr "Legg i kø"
#: ../../templates/show_search_options.inc.php:23
msgid "Options"
msgstr "Valg"
#: ../../templates/show_search_options.inc.php:27
#: ../../templates/show_search_options.inc.php:28
msgid "Add Search Results"
msgstr "Legg til søkeresultater"
#: ../../templates/show_dynamic.inc.php:22
#, fuzzy
msgid "Advanced Random Rules"
msgstr "Legg til tilfeldig"
#: ../../templates/show_dynamic.inc.php:56
msgid "Like"
msgstr "Som"
#: ../../templates/show_dynamic.inc.php:71
#, fuzzy
msgid "Add Rule"
msgstr "Legg til ny"
#: ../../templates/show_dynamic.inc.php:74
msgid "Save Rules As"
msgstr "Lagre regler som"
#: ../../templates/show_dynamic.inc.php:77
msgid "Load Saved Rules"
msgstr "Hent lagrede regler"
#: ../../templates/show_get_albumart.inc.php:23
msgid "Customize Search"
msgstr "Innstillinger for søk"
#: ../../templates/show_get_albumart.inc.php:44
msgid "Direct URL to Image"
msgstr "Direkte URL til bilde"
#: ../../templates/show_get_albumart.inc.php:52
msgid "Local Image"
msgstr "Lokalt bilde"
#: ../../templates/show_get_albumart.inc.php:63
msgid "Get Art"
msgstr "Hent albumbilde"
#: ../../templates/show_adds_catalog.inc.php:23
#, php-format
msgid "Starting New Song Search on %s catalog"
msgstr "Starter søk etter nye spor i katalog %s"
#: ../../templates/show_recently_played.inc.php:23
#: ../../lib/class/ampacherss.class.php:175
msgid "seconds ago"
msgstr "sekunder siden"
#: ../../templates/show_recently_played.inc.php:23
#: ../../lib/class/ampacherss.class.php:175
msgid "minutes ago"
msgstr "minutter siden"
#: ../../templates/show_recently_played.inc.php:23
#: ../../lib/class/ampacherss.class.php:175
msgid "hours ago"
msgstr "timer siden"
#: ../../templates/show_recently_played.inc.php:23
#: ../../lib/class/ampacherss.class.php:175
msgid "days ago"
msgstr "dager siden"
#: ../../templates/show_recently_played.inc.php:23
#: ../../lib/class/ampacherss.class.php:175
msgid "weeks ago"
msgstr "uker siden"
#: ../../templates/show_recently_played.inc.php:23
#: ../../lib/class/ampacherss.class.php:175
msgid "months ago"
msgstr "måneder siden"
#: ../../templates/show_recently_played.inc.php:23
#: ../../lib/class/ampacherss.class.php:175
msgid "years ago"
msgstr "år siden"
#: ../../templates/show_recently_played.inc.php:38
#: ../../templates/show_recently_played.inc.php:101
#: ../../templates/show_duplicates.inc.php:37
#: ../../templates/show_duplicates.inc.php:76
#: ../../templates/show_now_playing_row.inc.php:45
msgid "Song"
msgstr "Spor"
#: ../../templates/show_recently_played.inc.php:42
#: ../../templates/show_recently_played.inc.php:104
msgid "Last Played"
msgstr "Sist spilt"
#: ../../templates/show_artist.inc.php:22
#, php-format
msgid "Albums by %s"
msgstr "Album av %s"
#: ../../templates/show_artist.inc.php:25
#, php-format
msgid "%s by %s"
msgstr "%s av %s"
#: ../../templates/show_artist.inc.php:35
#, php-format
msgid "Show All Songs By %s"
msgstr "Vis alle spor av %s"
#: ../../templates/show_artist.inc.php:38
#, php-format
msgid "Add All Songs By %s"
msgstr "Legg til alle spor av %s"
#: ../../templates/show_artist.inc.php:41
#, php-format
msgid "Add Random Songs By %s"
msgstr "Legg til tilfeldige spor av %s"
#: ../../templates/show_artist.inc.php:45
#: ../../templates/show_album.inc.php:71
msgid "Update from tags"
msgstr "Oppdater fra tag-informasjon"
#: ../../templates/show_democratic.inc.php:21
#, php-format
msgid "%s Playlist"
msgstr "%s Playlist"
#: ../../templates/show_democratic.inc.php:21
#: ../../lib/class/browse.class.php:214
#, fuzzy
msgid "Democratic Playlist"
msgstr "Lag demokratisk spilleliste"
#: ../../templates/show_democratic.inc.php:39
#, fuzzy
msgid "Play Democratic Playlist"
msgstr "Spill demokratisk spilleliste"
#: ../../templates/show_verify_catalog.inc.php:23
#, php-format
msgid "Updating the %s catalog"
msgstr "Oppdaterer katalogen %s"
#: ../../templates/show_verify_catalog.inc.php:25
#, fuzzy, php-format
msgid "%d item found checking tag information"
msgid_plural "%d items found checking tag information"
msgstr[0] "emner funnet - sjekker tag informasjon."
msgstr[1] "emner funnet - sjekker tag informasjon."
#: ../../templates/show_verify_catalog.inc.php:27
msgid "Verifed"
msgstr "Verifisert"
#: ../../templates/show_denied.inc.php:38
msgid ""
"You've been redirected to this page because you do not have access to this "
"function."
msgstr ""
"Du har blitt omdirigert til denne siden fordi du ikke har tilgang til denne "
"funksjonen."
#: ../../templates/show_denied.inc.php:39
msgid ""
"If you believe this is an error please contact an Ampache administrator."
msgstr "Hvis du mener dette er en feil, kontakt en Ampache-administrator."
#: ../../templates/show_denied.inc.php:40
msgid "This event has been logged"
msgstr "Denne hendelsen har blitt loggført."
#: ../../templates/show_denied.inc.php:44
msgid ""
"You've been redirected to this page because you've attempted to access a "
"function that is disabled in the demo."
msgstr ""
"Du har blitt omdirigert til denne siden fordi du har forsøkt å få tilgang "
"til en funksjon som er deaktivert i demoutgaven."
#: ../../templates/show_denied.inc.php:45
msgid ""
"Functions are disabled in the demo because previous users of the demo have "
"used the functionality to post inappropriate materials"
msgstr ""
"Funksjoner er deaktivert i demoutgaven fordi tidligere brukere av "
"demoversjonen har brukt funksjonen til å legge inn ikke-godkjent materiale."
#: ../../templates/show_album.inc.php:27 ../../lib/class/album.class.php:244
msgid "Disk"
msgstr "Disk"
#: ../../templates/show_album.inc.php:34
#: ../../lib/class/catalog.class.php:1958
#: ../../lib/class/catalog.class.php:2029
msgid "Unknown (Orphaned)"
msgstr "Ukjent"
#: ../../templates/show_album.inc.php:52
msgid "Add Album"
msgstr "Legg til album"
#: ../../templates/show_album.inc.php:56
msgid "Add Random from Album"
msgstr "Legg til tilfeldig fra album"
#: ../../templates/show_album.inc.php:61
msgid "Reset Album Art"
msgstr "Reset albumbilde"
#: ../../templates/show_album.inc.php:66
msgid "Find Album Art"
msgstr "Finn albumbilde"
#: ../../templates/show_lyrics.inc.php:33
#, fuzzy, php-format
msgid "%s Lyrics"
msgstr "%s Sangtekster"
#: ../../templates/show_lyrics.inc.php:39 ../../lib/class/artist.class.php:358
msgid "Sorry Lyrics Not Found."
msgstr "Beklager, sangtekst ikke funnet."
#: ../../templates/show_localplay_add_instance.inc.php:24
msgid "Add Localplay Instance"
msgstr "Legg til lokalavspillingsinstans"
#: ../../templates/show_login_form.inc.php:65
msgid "Remember Me"
msgstr "Husk meg"
#: ../../templates/show_login_form.inc.php:72
msgid "Login"
msgstr "Logg inn"
#: ../../templates/show_login_form.inc.php:77
msgid "Register"
msgstr "Registrer"
#: ../../templates/show_login_form.inc.php:89
msgid "Message of the Day"
msgstr "Dagens beskjed"
#: ../../templates/show_all_popular.inc.php:32
msgid "Most Popular Genres"
msgstr "Mest populære sjangre"
#: ../../templates/show_all_popular.inc.php:41
msgid "Most Popular Live Streams"
msgstr "Mest populære live streams"
#: ../../templates/show_all_popular.inc.php:44
msgid "Most Popular Tags"
msgstr "Mest populære tags"
#: ../../templates/show_song.inc.php:25
msgid "Details"
msgstr "Detaljer"
#: ../../templates/show_disabled_songs.inc.php:38
#: ../../templates/show_disabled_songs.inc.php:61
msgid "Addition Time"
msgstr "Tilleggstid"
#: ../../templates/show_disabled_songs.inc.php:65
msgid "Remove"
msgstr "Fjern"
#: ../../templates/show_edit_album_row.inc.php:35
#: ../../lib/class/album.class.php:256 ../../lib/class/album.class.php:257
msgid "Various"
msgstr "Variert"
#: ../../templates/list_header.inc.php:100
msgid "Prev"
msgstr "Forrige"
#: ../../templates/show_duplicates.inc.php:22
msgid "Duplicate Songs"
msgstr "Duplikatspor"
#: ../../templates/show_duplicates.inc.php:41
#: ../../templates/show_duplicates.inc.php:80
msgid "Bitrate"
msgstr "Bitrate"
#: ../../templates/show_duplicates.inc.php:42
#: ../../templates/show_duplicates.inc.php:81
msgid "Size"
msgstr "Størrelse"
#: ../../templates/show_live_stream.inc.php:22
#, fuzzy
msgid "Manage Radio Stations"
msgstr "Radiostasjoner"
#: ../../templates/show_manage_catalogs.inc.php:28
msgid "Gather All Art"
msgstr "Samle alle bilder"
#: ../../templates/show_manage_catalogs.inc.php:29
#: ../../templates/show_admin_tools.inc.php:80
msgid "Add to All"
msgstr "Legg til alle"
#: ../../templates/show_manage_catalogs.inc.php:30
#: ../../templates/show_admin_tools.inc.php:79
msgid "Verify All"
msgstr "Verifiser alle"
#: ../../templates/show_manage_catalogs.inc.php:31
#: ../../templates/show_admin_tools.inc.php:78
msgid "Clean All"
msgstr "Rensk alle"
#: ../../templates/show_manage_catalogs.inc.php:32
#: ../../templates/show_admin_tools.inc.php:81
msgid "Update All"
msgstr "Oppdater alle"
#: ../../templates/show_manage_catalogs.inc.php:38
#, php-format
msgid "Add From %s"
msgstr "Legg til fra %s"
#: ../../templates/show_manage_catalogs.inc.php:40
#, php-format
msgid "Update From %s"
msgstr "Oppdater fra %s"
#: ../../templates/show_admin_tools.inc.php:59
msgid "Fast"
msgstr "Rask"
#: ../../templates/show_admin_tools.inc.php:68
msgid "No Catalogs Found"
msgstr "Ingen kataloger funnet"
#: ../../templates/show_admin_tools.inc.php:83
msgid "Clear Catalog Stats"
msgstr "Rensk katalogstatistikk"
#: ../../templates/show_admin_tools.inc.php:84
#: ../../templates/show_add_catalog.inc.php:74
msgid "Gather Album Art"
msgstr "Hent albumbilder"
#: ../../templates/show_admin_tools.inc.php:90
msgid "Show Duplicate Songs"
msgstr "Vis duplikatspor"
#: ../../templates/show_admin_tools.inc.php:93
msgid "Preferences Permissions"
msgstr "Innstillinger tillatelser"
#: ../../templates/show_admin_tools.inc.php:94
msgid "Export To Itunes DB"
msgstr "Eksporter til Itunes database"
#: ../../templates/show_admin_tools.inc.php:95
msgid "Show Inactive Users"
msgstr "Vis inaktive brukere"
#: ../../templates/show_admin_tools.inc.php:96
msgid "Check for New Version"
msgstr "Sjekk etter ny versjon"
#: ../../templates/show_access_list.inc.php:50
msgid "Access Control Entries"
msgstr "Tilgangskontroll oppføringer"
#: ../../templates/show_access_list.inc.php:56
msgid "Start Address"
msgstr "Startadresse"
#: ../../templates/show_access_list.inc.php:57
msgid "End Address"
msgstr "Sluttadresse"
#: ../../templates/show_access_list.inc.php:60
msgid "Key"
msgstr "Nøkkel"
#: ../../templates/show_rename_artist.inc.php:29
#, php-format
msgid "Rename %s"
msgstr "Endre navn på %s"
#: ../../templates/show_rename_artist.inc.php:35
msgid "Insert current"
msgstr "Legg inn følgende"
#: ../../templates/show_rename_artist.inc.php:37
msgid "Update id3 tags"
msgstr "Oppdater id3 tag informasjon"
#: ../../templates/show_rename_artist.inc.php:38
msgid "Rename"
msgstr "Endre navn"
#: ../../templates/show_user_registration.inc.php:54
msgid "User Agreement"
msgstr "Brukeravtale"
#: ../../templates/show_user_registration.inc.php:63
msgid "I Accept"
msgstr "Jeg godtar"
#: ../../templates/show_user_registration.inc.php:69
msgid "User Information"
msgstr "Brukerinformasjon"
#: ../../templates/show_user_registration.inc.php:131
msgid "Register User"
msgstr "Registrer bruker"
#: ../../templates/show_playlist_edit.inc.php:26
msgid "Editing Playlist"
msgstr "Rediger spilleliste"
#: ../../templates/show_add_catalog.inc.php:27
msgid ""
"In the form below enter either a local path (i.e. /data/music) or the URL to "
"a remote Ampache installation (i.e http://theotherampache.com)"
msgstr ""
"I skjemaet under legger du inn enten en lokal mappebane (f.eks. /srv/musikk) "
"eller en URL til en Ampache-tjener (f,eks, http://denandreampachen.com)"
#: ../../templates/show_add_catalog.inc.php:32
msgid "Catalog Name"
msgstr "Katalognavn"
#: ../../templates/show_add_catalog.inc.php:54
msgid "Local"
msgstr "Lokal"
#: ../../templates/show_add_catalog.inc.php:55
msgid "Remote"
msgstr "Fjerntjener"
#: ../../templates/show_add_catalog.inc.php:64
msgid "Filename Pattern"
msgstr "Filnavn mønster"
#: ../../templates/show_add_catalog.inc.php:78
msgid "Build Playlists from m3u Files"
msgstr "Bygg spillelister fra m3u filer"
#: ../../templates/show_add_catalog.inc.php:84
msgid "Add Catalog"
msgstr "Legg til katalog"
#: ../../templates/show_registration_confirmation.inc.php:36
msgid "Registration Complete"
msgstr "Registrering ferdig"
#: ../../templates/show_registration_confirmation.inc.php:42
msgid ""
"Your account has been created. An activation key has been sent to the e-mail "
"address you provided. Please check your e-mail for further information"
msgstr ""
"Kontoen din har blitt opprettet. En aktiveringsnøkkel har blitt sendt til "
"den epostadressen du benyttet til å registrere deg. Sjekk eposten din for "
"mer informasjon."
#: ../../templates/show_registration_confirmation.inc.php:44
msgid "Return to Login Page"
msgstr "Gå tilbake til innloggingssiden"
#: ../../templates/show_debug.inc.php:23
msgid "Debug Tools"
msgstr "Feilsøkingsverktøy"
#: ../../templates/show_debug.inc.php:28
msgid "Generate Configuration"
msgstr "Generer konfigurasjon"
#: ../../templates/show_debug.inc.php:32
msgid "Set Database Charset"
msgstr "Endre databasens tegnsett"
#: ../../templates/show_debug.inc.php:37
msgid "PHP Settings"
msgstr "PHP Innstillinger"
#: ../../templates/show_debug.inc.php:44
msgid "Setting"
msgstr "Innstillinger"
#: ../../templates/show_debug.inc.php:48
msgid "Memory Limit"
msgstr "Minnegrense"
#: ../../templates/show_debug.inc.php:52
msgid "Maximum Execution Time"
msgstr "Maksimum kjøretid for prosess"
#: ../../templates/show_debug.inc.php:56
msgid "Override Execution Time"
msgstr "Overstyr kjøretid for prosess"
#: ../../templates/show_debug.inc.php:57
msgid "Failed"
msgstr "Feilet"
#: ../../templates/show_debug.inc.php:57
msgid "Succeeded"
msgstr "Suksess"
#: ../../templates/show_debug.inc.php:60
msgid "Safe Mode"
msgstr "Sikker modus"
#: ../../templates/show_debug.inc.php:68
msgid "Zlib Support"
msgstr "Støtte for Zlib"
#: ../../templates/show_debug.inc.php:72
msgid "GD Support"
msgstr "Støtte for GD"
#: ../../templates/show_debug.inc.php:76
msgid "Iconv Support"
msgstr "Støtte for Iconv"
#: ../../templates/show_debug.inc.php:86
msgid "Current Configuration"
msgstr "Nåværende konfigurasjon"
#: ../../templates/sidebar_modules.inc.php:27
msgid "Localplay Modules"
msgstr "Moduler for lokalavspilling"
#: ../../templates/sidebar_modules.inc.php:28
msgid "Available Plugins"
msgstr "Tilgjengelige tilleggsmoduler"
#: ../../templates/sidebar_modules.inc.php:34
msgid "Mail Users"
msgstr "Send epost til brukere"
#: ../../templates/sidebar_modules.inc.php:35
msgid "Manage Flagged"
msgstr "Behandle merkede"
#: ../../templates/sidebar_modules.inc.php:36
msgid "Show Disabled"
msgstr "Vis deaktiverte"
#: ../../templates/sidebar_modules.inc.php:43
msgid "Manage Playlist"
msgstr "Behandle spilleliste"
#: ../../templates/show_manage_shoutbox.inc.php:36
#: ../../templates/show_manage_shoutbox.inc.php:60
msgid "Sticky"
msgstr "Fest"
#: ../../templates/show_manage_shoutbox.inc.php:38
#: ../../templates/show_manage_shoutbox.inc.php:62
msgid "Date Added"
msgstr "Lagt til dato"
#: ../../artists.php:181
msgid "Show Artists starting with"
msgstr "Vis artister som starter med"
#: ../../flag.php:45
msgid "Item Flagged"
msgstr "Objekt merket"
#: ../../flag.php:45
msgid "The specified item has been flagged"
msgstr "Det spesifiserte objektet er merket"
#: ../../register.php:73
msgid "Error Captcha Required"
msgstr "Feil: CAPTCHA påkrevd"
#: ../../register.php:80
msgid "Error Captcha Failed"
msgstr "Feil: CAPTCHA feilet"
#: ../../register.php:87
msgid "You <U>must</U> accept the user agreement"
msgstr "Du <U>må</u> akseptere brukeravtalen"
#: ../../register.php:92
msgid "You did not enter a username"
msgstr "Du skrev ikke inn et brukernavn"
#: ../../register.php:96
msgid "Please fill in your full name (Firstname Lastname)"
msgstr "Vennligst skriv inn ditt fulle navn (Fornavn Etternavn)"
#: ../../register.php:122
msgid "You must enter a password"
msgstr "Du må skrive inn et passord"
#: ../../register.php:126
msgid "Your passwords do not match"
msgstr "Passord stemmer ikke overens"
#: ../../register.php:130 ../../admin/users.php:110
msgid "Error Username already exists"
msgstr "Feil: Brukernavn eksisterer"
#: ../../register.php:158
msgid "Error: Insert Failed"
msgstr "Feil: Insert feilet"
#: ../../login.php:73
msgid "User Disabled please contact Admin"
msgstr "Bruker deaktivert, kontakt administrator"
#: ../../login.php:87
msgid "Unable to create new account"
msgstr "Kan ikke opprette ny brukerkonto"
#: ../../login.php:95
msgid "No local account found"
msgstr "Ingen lokal konto funnet"
#: ../../login.php:112
msgid "User Already Logged in"
msgstr "Bruker allerede innlogget"
#: ../../democratic.php:56
msgid "The Requested Playlist has been deleted."
msgstr "Den valgte spillelisten har blitt slettet"
#: ../../lib/rating.lib.php:51
msgid "Don't Play"
msgstr "Ikke spill"
#: ../../lib/rating.lib.php:54
msgid "It's Pretty Bad"
msgstr "Ganske dårlig"
#: ../../lib/rating.lib.php:57
msgid "It's Ok"
msgstr "Godkjent"
#: ../../lib/rating.lib.php:60
msgid "It's Pretty Good"
msgstr "Bra"
#: ../../lib/rating.lib.php:63
msgid "I Love It!"
msgstr "Ganske bra"
#: ../../lib/rating.lib.php:66
msgid "It's Insane"
msgstr "Skikkelige godsaker"
#: ../../lib/rating.lib.php:70
msgid "Off the Charts!"
msgstr "Dunderhonning!"
#: ../../lib/ui.lib.php:312
msgid "Upload"
msgstr "Last opp"
#: ../../lib/ui.lib.php:315
msgid "Local Play"
msgstr "Lokalavspilling"
#: ../../lib/ui.lib.php:318
msgid "Random Play"
msgstr "Tilfeldig avspilling"
#: ../../lib/ui.lib.php:330 ../../lib/ui.lib.php:334
msgid "Admin-Catalog"
msgstr "Admin-Katalog"
#: ../../lib/ui.lib.php:338
msgid "Admin-User Management"
msgstr "Admin-Brukerbehandling"
#: ../../lib/ui.lib.php:342
msgid "Admin-Mail Users"
msgstr "Admin-Epost til brukere"
#: ../../lib/ui.lib.php:346
msgid "Admin-Manage Access Lists"
msgstr "Admin-Behandle tilgangslister"
#: ../../lib/ui.lib.php:350
msgid "Admin-Site Preferences"
msgstr "Admin-Nettsted Innstillinger"
#: ../../lib/ui.lib.php:354
msgid "Admin-Manage Modules"
msgstr "Admin-Behandle Moduler"
#: ../../lib/ui.lib.php:358
msgid "Browse Music"
msgstr "Bla i musikk"
#: ../../lib/ui.lib.php:465
msgid "Add New"
msgstr "Legg til ny"
#: ../../lib/class/browse.class.php:154
msgid "Manage Users"
msgstr "Behandle Brukere"
#: ../../lib/class/browse.class.php:172
msgid "Playlists"
msgstr "Spillelister"
#: ../../lib/class/browse.class.php:177
msgid "Playlist Songs"
msgstr "Spilleliste Sanger"
#: ../../lib/class/browse.class.php:182
msgid "Current Playlist"
msgstr "Nåværende Spilleliste"
#: ../../lib/class/browse.class.php:192
msgid "Shoutbox Records"
msgstr "Shoutbox Oppføringer"
#: ../../lib/class/browse.class.php:197
msgid "Flagged Records"
msgstr "Merkede Oppføringer"
#: ../../lib/class/browse.class.php:209
msgid "Videos"
msgstr "Videoer"
#: ../../lib/class/access.class.php:102 ../../lib/class/access.class.php:106
#: ../../lib/class/access.class.php:146 ../../lib/class/access.class.php:150
msgid "Invalid IPv4 / IPv6 Address Entered"
msgstr "Invalid IPv4 / IPv6 Adresse lagt inn"
#: ../../lib/class/access.class.php:111 ../../lib/class/access.class.php:112
#: ../../lib/class/access.class.php:155 ../../lib/class/access.class.php:156
msgid "IP Address Version Mismatch"
msgstr "IP adressene har forskjellig versjon"
#: ../../lib/class/access.class.php:443
msgid "API/RPC"
msgstr "API/RPC"
#: ../../lib/class/flag.class.php:312
msgid "Approved"
msgstr "Godkjent"
#: ../../lib/class/flag.class.php:313
msgid "Pending"
msgstr "Avventer"
#: ../../lib/class/flag.class.php:328
msgid "Re-Tag"
msgstr "Om-Tag"
#: ../../lib/class/localplay.class.php:642
msgid "Stopped"
msgstr "Stoppet"
#: ../../lib/class/localplay.class.php:645
msgid "Paused"
msgstr "Pause"
#: ../../lib/class/democratic.class.php:141
msgid "Primary"
msgstr "Primær"
#: ../../lib/class/artist.class.php:345
#, fuzzy
msgid "Fault"
msgstr "Feil"
#: ../../lib/class/artist.class.php:353 ../../lib/class/catalog.class.php:1234
#: ../../admin/users.php:142
msgid "Error"
msgstr "Feil"
#: ../../lib/class/user.class.php:379 ../../admin/users.php:55
#: ../../admin/users.php:105
msgid "Error Username Required"
msgstr "Feil: Brukernavn nødvendig"
#: ../../lib/class/user.class.php:383 ../../admin/users.php:58
#: ../../admin/users.php:101
msgid "Error Passwords don't match"
msgstr "Feil: Passord stemmer ikke overens"
#: ../../lib/class/album.class.php:489 ../../lib/class/catalog.class.php:462
msgid "Error: Unable to open"
msgstr "Feil: Kan ikke åpne"
#: ../../lib/class/ampacherss.class.php:116
msgid "RSS Feed"
msgstr "Levende bokmerke"
#: ../../lib/class/catalog.class.php:208
msgid "day"
msgid_plural "days"
msgstr[0] "dag"
msgstr[1] "dager"
#: ../../lib/class/catalog.class.php:210
msgid "hour"
msgid_plural "hours"
msgstr[0] "time"
msgstr[1] "timer"
#: ../../lib/class/catalog.class.php:308
msgid "Running Remote Sync"
msgstr "Kjører fjernsynkronisering"
#: ../../lib/class/catalog.class.php:469 ../../lib/class/catalog.class.php:512
msgid "Error: Unable to change to directory"
msgstr "Feil: Kan ikke skifte til mappe"
#: ../../lib/class/catalog.class.php:548
#, php-format
msgid "Error: Unable to get filesize for %s"
msgstr "Feil: Kan ikke hente filstørrelse for %s"
#: ../../lib/class/catalog.class.php:554
#, php-format
msgid "%s is not readable by ampache"
msgstr "%s er ikke lesbar for ampache"
#: ../../lib/class/catalog.class.php:562
#, php-format
msgid "%s does not match site charset"
msgstr "%s passer ikke med denne serverens tegnsett"
#: ../../lib/class/catalog.class.php:1029
#: ../../lib/class/catalog.class.php:1899 ../../preferences.php:111
#: ../../admin/access.php:109
msgid "Updated"
msgstr "Oppdatert"
#: ../../lib/class/catalog.class.php:1036
msgid "No Update Needed"
msgstr "Ingen oppdatering nødvendig"
#: ../../lib/class/catalog.class.php:1163
msgid "Running Remote Update"
msgstr "Kjører fjernoppdatering"
#: ../../lib/class/catalog.class.php:1190
msgid "Added Playlist From"
msgstr "Lagt til spilleliste fra"
#: ../../lib/class/catalog.class.php:1219
msgid "Catalog Update Finished"
msgstr "Katalogoppdatering ferdig"
#: ../../lib/class/catalog.class.php:1219
msgid "Total Time"
msgstr "Total tid"
#: ../../lib/class/catalog.class.php:1220
msgid "Total Songs"
msgstr "Totalt antall sanger"
#: ../../lib/class/catalog.class.php:1220
msgid "Songs Per Seconds"
msgstr "Sanger per sekund"
#: ../../lib/class/catalog.class.php:1234
msgid "Unable to load pear XMLRPC library, make sure XML-RPC is enabled"
msgstr "Kan ikke laste pear XMLRPC biblioteket, er XML-RPC aktivert?"
#: ../../lib/class/catalog.class.php:1272
#: ../../lib/class/catalog.class.php:1346
#: ../../lib/class/catalog.class.php:1379
#: ../../lib/class/catalog.class.php:2321
#: ../../lib/class/xmlrpcclient.class.php:64
#: ../../lib/class/xmlrpcclient.class.php:97
msgid "Error connecting to"
msgstr "Feil ved tilkobling til"
#: ../../lib/class/catalog.class.php:1272
#: ../../lib/class/catalog.class.php:1346
#: ../../lib/class/catalog.class.php:1379
#: ../../lib/class/catalog.class.php:2321
#: ../../lib/class/xmlrpcclient.class.php:64
#: ../../lib/class/xmlrpcclient.class.php:97
msgid "Code"
msgstr "Kode"
#: ../../lib/class/catalog.class.php:1272
#: ../../lib/class/catalog.class.php:1346
#: ../../lib/class/catalog.class.php:1379
#: ../../lib/class/catalog.class.php:2321
#: ../../lib/class/xmlrpcclient.class.php:64
msgid "Reason"
msgstr "Grunn"
#: ../../lib/class/catalog.class.php:1301
msgid "Completed updating remote catalog(s)"
msgstr "Fjernoppdatering av kataloger ferdig"
#: ../../lib/class/catalog.class.php:1305
msgid "Starting synchronisation of album images"
msgstr "Starter synkronisering av album bilder"
#: ../../lib/class/catalog.class.php:1307
msgid "Completed synchronisation of album images"
msgstr "Ferdig med synkronisering av albumbilder"
#: ../../lib/class/catalog.class.php:1342 ../../admin/access.php:93
msgid "Added"
msgstr "Lagt til"
#: ../../lib/class/catalog.class.php:1375
msgid "images synchronized: "
msgstr "bilder synkronisert: "
#: ../../lib/class/catalog.class.php:1509
msgid "Catalog Root unreadable, stopping clean"
msgstr "Katalogrot ikke lesbar, avbryter rensking"
#: ../../lib/class/catalog.class.php:1589
msgid "Catalog Clean Done"
msgstr "Katalogrensking ferdig"
#: ../../lib/class/catalog.class.php:1589
msgid "files removed"
msgstr "filer fjernet"
#: ../../lib/class/catalog.class.php:1590
msgid "Optimizing Tables"
msgstr "Optimaliserer tabeller"
#: ../../lib/class/catalog.class.php:1899
#, fuzzy
msgid "Update Finished"
msgstr "Oppdatering ferdig"
#: ../../lib/class/catalog.class.php:1899
msgid "Checked"
msgstr "Sjekket"
#: ../../lib/class/catalog.class.php:2419
#, fuzzy
msgid "Playlist creation error."
msgstr "Spilleliste opprettet"
#: ../../lib/class/catalog.class.php:2426
#, php-format
msgid "Playlist Import and Recreate Successful. Total: %d Songs"
msgstr "Spilleliste importert og gjenopprettet. Totalt %d spor."
#: ../../lib/class/catalog.class.php:2430
#, php-format
msgid "Parsing %s - Not Found: %d Songs. Please check your m3u file."
msgstr "Behandler %s - Fant ikke %d spor. Vennligst sjekk .m3u filen"
#: ../../lib/class/random.class.php:410
msgid "Related Genre"
msgstr "Relatert Sjanger"
#: ../../lib/class/vauth.class.php:484 ../../lib/class/vauth.class.php:508
#: ../../lib/class/vauth.class.php:547
msgid "Error Username or Password incorrect, please try again"
msgstr "Feil: Brukernavn eller passord stemmer ikke, prøv igjen"
#: ../../lib/class/registration.class.php:51
#: ../../lib/class/registration.class.php:53
msgid "From: Ampache "
msgstr "Fra: Ampache"
#: ../../lib/class/registration.class.php:55
#, php-format
msgid "New User Registration at %s"
msgstr "Ny brukerregistrering på %s"
#: ../../lib/class/registration.class.php:68
#, 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 ""
"Takk for registreringen\n"
"\n"
"\n"
"Behold denne eposten og brukerinformasjonen som følger:\n"
"----------------------\n"
"Brukernavn: %s\n"
"Passord: %s\n"
"----------------------\n"
"\n"
"Din brukerkonto er ikke aktiv. For å aktivere gå til denne lenken:\n"
"\n"
"%s \n"
"\n"
"Takk for registeringen\n"
#: ../../lib/class/registration.class.php:98
#, 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 ""
"En ny bruker har blitt registrert\n"
"De følgende verdier ble lagt inn.\n"
"\n"
"Brukernavn: %s\n"
"Fullt navn: %s\n"
"E-post: %s\n"
"\n"
#: ../../lib/general.lib.php:397
msgid "On"
msgstr "På"
#: ../../lib/general.lib.php:400
msgid "Off"
msgstr "Av"
#: ../../lib/preferences.php:191
msgid "M3U"
msgstr "M3U"
#: ../../lib/preferences.php:192
msgid "Simple M3U"
msgstr "Enkel M3U"
#: ../../lib/preferences.php:193
msgid "PLS"
msgstr "PLS"
#: ../../lib/preferences.php:194
msgid "Asx"
msgstr "Asx"
#: ../../lib/preferences.php:195
msgid "RAM"
msgstr "RAM"
#: ../../lib/preferences.php:196
msgid "XSPF"
msgstr "XSPF"
#: ../../lib/preferences.php:230
msgid "Disabled"
msgstr "Deaktivert"
#: ../../lib/preferences.php:232
msgid "Manager"
msgstr "Operatør"
#: ../../lib/preferences.php:252
msgid "Send on Add"
msgstr "Send ved Legg til"
#: ../../lib/preferences.php:253
msgid "Send and Clear on Add"
msgstr "Send og rensk ved Legg til"
#: ../../lib/preferences.php:254
msgid "Clear on Send"
msgstr "Rensk ved Send"
#: ../../lib/preferences.php:263
msgid "Always"
msgstr "Alltid"
#: ../../lib/install.php:81
msgid "Unable to connect to database, check your ampache config"
msgstr "Kan ikke koble til databasen, sjekk konfigurasjon av ampache"
#: ../../lib/install.php:88
msgid "Unable to select database, check your ampache config"
msgstr "Kan ikke velge databasen, sjekk konfigurasjon av ampache"
#: ../../lib/install.php:98
msgid "Existing Database detected, unable to continue installation"
msgstr "Eksisterende database valgt, kan ikke fortsette installajonen"
#: ../../lib/install.php:135 ../../install.php:94
msgid "Error: Unable to make Database Connection"
msgstr "Feil: Kan ikke opprette databaseforbindelse"
#: ../../lib/install.php:276
msgid "No Username/Password specified"
msgstr "Brukernavn/Passord Uspesifisert"
#: ../../lib/install.php:281
msgid "Passwords do not match"
msgstr "Passordene er forskjellige"
#: ../../shout.php:41
msgid "Invalid Object Selected"
msgstr "Ugyldig objekt valgt"
#: ../../server/xml.server.php:80
msgid "Error Invalid Handshake - "
msgstr "Feil: Ugyldig handshake - "
#: ../../server/xml.server.php:346 ../../server/xml.server.php:395
#: ../../server/xml.server.php:403
msgid "Invalid Request"
msgstr "Ugyldig forespørsel"
#: ../../server/xml.server.php:361 ../../server/xml.server.php:374
msgid "Media Object Invalid or Not Specified"
msgstr "Mediaobjekt invalid eller feilspesifisert"
#: ../../preferences.php:40 ../../preferences.php:75
msgid "Server"
msgstr "Tjener"
#: ../../preferences.php:107
msgid "Error Update Failed"
msgstr "Feil: Oppdatering feilet"
#: ../../preferences.php:112
msgid "Your Account has been updated"
msgstr "Din brukerkonto har blitt oppdatert"
#: ../../play/index.php:84
msgid "Session Expired: please log in again at"
msgstr "Sesjon utløpt: vennligst logg inn igjen på"
#: ../../radio.php:50
msgid "Radio Station Added"
msgstr "Radiostasjon lagt til"
#: ../../install.php:177
msgid "Error: Config file not found or Unreadable"
msgstr "Feil: Manglende eller ulesbar konfigurasjonsfil"
#: ../../update.php:47 ../../update.php:51
msgid "Ampache Update"
msgstr "Ampache Oppdatering"
#: ../../update.php:56
#, php-format
msgid ""
"This page handles all database updates to Ampache starting with "
"<strong>3.3.3.5</strong>. According to your database your current version "
"is: <strong>%s</strong>."
msgstr ""
"Denne siden omhandler databaseoppdateringer for Ampache f.o.m <strong>3.3.3.5</strong>."
"Denne databasen rapporterer versjon <strong>%s</strong>."
#: ../../update.php:57
msgid "the following updates need to be performed"
msgstr "de følgende oppdateringer må utføres"
#: ../../update.php:64
msgid "Update Now!"
msgstr "Oppdater nå!"
#: ../../update.php:68
#, fuzzy
msgid "Ampache Installation."
msgstr "Installasjon av Ampache"
#: ../../albums.php:32
msgid "Album Art Cleared"
msgstr "Album bilder rensket"
#: ../../albums.php:32
msgid "Album Art information has been removed from the database"
msgstr "Album bilder informasjon har blitt fjernet fra databasen"
#: ../../albums.php:39 ../../albums.php:56 ../../albums.php:129
msgid "Album Art Not Located"
msgstr "Album bilder ikke funnet"
#: ../../albums.php:39 ../../albums.php:56 ../../albums.php:129
msgid ""
"Album Art could not be located at this time. This may be due to write access "
"error, or the file is not received correctly."
msgstr ""
"Albumbilder ble ikke funnet. Dette kan være på grunn av tilgangsfeil, eller "
"at filen ikke ble mottatt korrekt."
#: ../../albums.php:52 ../../albums.php:80
msgid "Album Art Inserted"
msgstr "Albumbilder lagt til"
#: ../../playlist.php:57
msgid "Playlist Created"
msgstr "Spilleliste opprettet"
#: ../../playlist.php:57
msgid " has been created"
msgstr " har blitt opprettet"
#: ../../playlist.php:89
#, fuzzy
msgid "Playlist Not Imported"
msgstr "Spilleliste importert"
#: ../../playlist.php:93
msgid "Playlist Imported"
msgstr "Spilleliste importert"
#: ../../playlist.php:125
msgid "Empty Playlists Deleted"
msgstr "Tomme spillelister slettet"
#: ../../modules/horde/Browser.php:867
msgid "file"
msgstr "fil"
#: ../../modules/horde/Browser.php:871
msgid "File uploads not supported."
msgstr "Opplasting av filer ikke tilatt"
#: ../../modules/horde/Browser.php:889
msgid "No file uploaded"
msgstr "Ingen fil opplastet"
#: ../../modules/horde/Browser.php:896
#, php-format
msgid "There was a problem with the file upload: No %s was uploaded."
msgstr "Et problem oppstod under opplasting: Ingen %s ble opplastet."
#: ../../modules/horde/Browser.php:901
#, fuzzy, php-format
msgid ""
"There was a problem with the file upload: The %s was larger than the maximum "
"allowed size (%d bytes)."
msgstr "Det oppstod et problem med opplastingen: %s ble kun delvis opplastet."
#: ../../modules/horde/Browser.php:903
#, php-format
msgid ""
"There was a problem with the file upload: The %s was only partially uploaded."
msgstr "Det oppstod et problem med opplastingen: %s ble kun delvis opplastet."
#: ../../modules/localplay/mpd.controller.php:232
#: ../../modules/localplay/shoutcast.controller.php:237
#: ../../modules/localplay/httpq.controller.php:216
msgid "Instance Name"
msgstr "Navn på instans"
#: ../../modules/localplay/mpd.controller.php:233
#: ../../modules/localplay/httpq.controller.php:217
msgid "Hostname"
msgstr "Vertsnavn"
#: ../../modules/localplay/mpd.controller.php:234
#: ../../modules/localplay/httpq.controller.php:218
msgid "Port"
msgstr "Port"
#: ../../modules/localplay/shoutcast.controller.php:238
msgid "PID File"
msgstr "PID Fil"
#: ../../modules/localplay/shoutcast.controller.php:239
msgid "Playlist File"
msgstr "Spilleliste fil"
#: ../../modules/localplay/shoutcast.controller.php:240
msgid "Local Path to Files"
msgstr "Lokal bane til filer"
#: ../../admin/mail.php:90
msgid "E-mail Sent"
msgstr "Epost sendt"
#: ../../admin/mail.php:91
msgid "Your E-mail was successfully sent."
msgstr "Vellykket epostsending"
#: ../../admin/modules.php:38
msgid "Install Failed, Controller Error"
msgstr "Installasjon feilet, kontrollerfeil"
#: ../../admin/modules.php:56 ../../admin/modules.php:101
msgid "Are you sure you want to remove this plugin?"
msgstr "Er du sikker på at du vil fjerne denne utvidelsen?"
#: ../../admin/modules.php:68 ../../admin/modules.php:120
msgid "Plugin Deactivated"
msgstr "Utvidelse deaktivert"
#: ../../admin/modules.php:83
msgid "Unable to Install Plugin"
msgstr "Kunne ikke installere utvidelse"
#: ../../admin/modules.php:94
msgid "Plugin Activated"
msgstr "Utvidelse aktivert"
#: ../../admin/modules.php:129
msgid "Plugins"
msgstr "Utvidelser"
#: ../../admin/modules.php:135
msgid "Localplay Controllers"
msgstr "Lokalavspilling kontroll"
#: ../../admin/flag.php:88
msgid "Song Updated"
msgstr "Spor oppdatert"
#: ../../admin/flag.php:88
msgid "The requested song has been updated"
msgstr "Det forspurte spor har blitt oppdatert"
#: ../../admin/flag.php:130
msgid "Album Updated"
msgstr "Album oppdatert"
#: ../../admin/flag.php:172
msgid "Artist Updated"
msgstr "Artist oppdatert"
#: ../../admin/flag.php:237
msgid "Songs Updated"
msgstr "Spor oppdatert"
#: ../../admin/flag.php:245
msgid "Flag Removed"
msgstr "Merking fjernet"
#: ../../admin/flag.php:246
msgid "Flag Removed from"
msgstr "Merking fjernet fra"
#: ../../admin/flag.php:261
msgid "Flags Updated"
msgstr "Merking oppdatert"
#: ../../admin/flag.php:280
msgid "Songs Disabled"
msgstr "Spor deaktivert"
#: ../../admin/flag.php:280
msgid "The requested song(s) have been disabled"
msgstr "De forespurte spor har blitt deaktiverte"
#: ../../admin/flag.php:291
msgid "Songs Enabled"
msgstr "Spor aktivert"
#: ../../admin/flag.php:291
msgid "The requested song(s) have been enabled"
msgstr "De forespurte spor har blitt aktivert"
#: ../../admin/shout.php:35
msgid "Shoutbox Post Updated"
msgstr "Shoutbox oppføring oppdatert"
#: ../../admin/shout.php:47
msgid "Shoutbox Post Deleted"
msgstr "Shoutbox oppføring slettet"
#: ../../admin/access.php:35
msgid "Deleted"
msgstr "Slettet"
#: ../../admin/access.php:35
msgid "Your Access List Entry has been removed"
msgstr "Din oppføring i tilgangslisten har blitt slettet"
#: ../../admin/access.php:93
msgid "Your new Access Control List(s) have been created"
msgstr "Din nye oppføring i tilgangslistene har blitt lagret"
#: ../../admin/access.php:109
msgid "Access List Entry updated"
msgstr "Oppføring i tilgangslistene har blitt oppdatert"
#: ../../admin/users.php:83
msgid "User Updated"
msgstr "Bruker oppdatert"
#: ../../admin/users.php:83
msgid "updated"
msgstr "oppdatert"
#: ../../admin/users.php:129
msgid "New User Added"
msgstr "Ny bruker lagt til"
#: ../../admin/users.php:134
msgid "User Enabled"
msgstr "Bruker aktivert"
#: ../../admin/users.php:139
msgid "User Disabled"
msgstr "Bruker deaktivert"
#: ../../admin/users.php:142
msgid "Unable to Disabled last Administrator"
msgstr "Kan ikke deaktivere den siste administratoren"
#: ../../admin/users.php:154
msgid "User Deleted"
msgstr "Bruker slettet"
#: ../../admin/users.php:157
msgid "Delete Error"
msgstr "Feil ved sletting"
#: ../../admin/users.php:157
msgid "Unable to delete last Admin User"
msgstr "Kan ikke slette den siste administratoren"
#: ../../admin/users.php:163
msgid "Deletion Request"
msgstr "Slettingsforespørsel"
#: ../../admin/users.php:164
msgid "Are you sure you want to permanently delete"
msgstr "Er du sikker på at du vil slette permanent"
#: ../../admin/system.php:49
msgid "Database Charset Updated"
msgstr "Databasens tegnsett er oppdatert"
#: ../../admin/system.php:49
msgid ""
"Your Database and associated tables have been updated to match your "
"currently configured charset"
msgstr ""
"Databasen og tilhørende tabeller har blitt oppdatert for å tilpasses ditt "
"tegnsett"
#: ../../admin/catalog.php:53 ../../admin/catalog.php:73
#: ../../admin/catalog.php:98 ../../admin/catalog.php:170
msgid "Catalog Updated"
msgstr "Katalog oppdatert"
#: ../../admin/catalog.php:115
msgid "Catalog Deleted"
msgstr "Katalog slettet"
#: ../../admin/catalog.php:115
msgid "The Catalog and all associated records have been deleted"
msgstr "Katalogen og tilhørende oppføringer har blitt slettet"
#: ../../admin/catalog.php:121
msgid "Catalog Delete"
msgstr "Slett Katalog"
#: ../../admin/catalog.php:121
msgid "Confirm Deletion Request"
msgstr "Bekreft Sletting"
#: ../../admin/catalog.php:130
msgid "Songs Removed"
msgstr "Spor fjernet"
#: ../../admin/catalog.php:133
msgid "No Songs Removed"
msgstr "Ingen spor fjernet"
#: ../../admin/catalog.php:136
msgid "Disabled Songs Processed"
msgstr "Deaktiverte spor behandlet"
#: ../../admin/catalog.php:157
msgid "Catalog Cleaned"
msgstr "Katalog Rensket"
#: ../../admin/catalog.php:214
msgid "Error: Defined Path is inside an existing catalog"
msgstr "Feil: Mappebanen er i en eksisterende katalog"
#: ../../admin/catalog.php:233
msgid "Catalog Created"
msgstr "Katalog opprettet"
#: ../../admin/catalog.php:250
msgid "Catalog statistics cleared"
msgstr "Katalogstatistikk rensket"
#: ../../admin/catalog.php:263
msgid "Now Playing Cleared"
msgstr "Spilles nå rensket"
#: ../../admin/catalog.php:263
msgid "All now playing data has been cleared"
msgstr "Alle Spilles Nå data har blitt rensket"
#: ../../admin/catalog.php:273
msgid "No Disabled songs found"
msgstr "Ingen deaktiverte spor funnet"
#: ../../admin/catalog.php:282
msgid "Delete Catalog"
msgstr "Slett katalog"
#: ../../admin/catalog.php:282
msgid "Do you really want to delete this catalog?"
msgstr "Vil du virkelig slette denne katalogen?"
#: ../../admin/catalog.php:302
msgid "Album Art Search Finished"
msgstr "Søk etter Album bilder ferdig"
#: ../../bin/print_tags.inc:68
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"
"Dette verktøyet vil vise tag informasjonen for den spesifiserte filen som "
"den vil leses av \n"
"Ampache. \n"
" \n"
#: ../../bin/print_tags.inc:74
msgid "Filename:"
msgstr "Filnavn:"
#: Database words
msgid "Allow Downloads"
msgstr "Tillat nedlasting"
#: Database words
msgid "Popular Threshold"
msgstr "Terskel for popularitet"
#: Database words
msgid "Transcode Bitrate"
msgstr "Bitrate for transkoding"
#: Database words
msgid "Lock Songs"
msgstr "Lås spor"
#: Database words
msgid "Forces Http play regardless of port"
msgstr "Tving til http-spilling uansett port"
#: Database words
msgid "Non-Standard Http Port"
msgstr "Ikke-standard http port"
#: Database words
msgid "Localplay Type"
msgstr "Lokalavspillingstype"
#: Database words
msgid "Type of Playback"
msgstr "Avspillingsform"
#: Database words
msgid "Language"
msgstr "Språk"
#: Database words
msgid "Theme"
msgstr "Tema"
#: Database words
msgid "Album Ellipse Threshold"
msgstr "Ellipseterskel for album"
#: Database words
msgid "Artist Ellipse Threshold"
msgstr "Ellipseterskel for artist"
#: Database words
msgid "Title Ellipse Threshold"
msgstr "Ellipseterskel for tittel"
#: Database words
msgid "Offset Limit"
msgstr "Offsetgrense"
#: Database words
msgid "Localplay Access"
msgstr "Lokalavspillingstilgang"
#: Database words
msgid "Allow Streaming"
msgstr "Tillat streaming"
#: Database words
msgid "Allow Democratic Play"
msgstr "Tillat demokratisk avspilling"
#: Database words
msgid "Allow Localplay Play"
msgstr "Tillat lokalavspilling"
#: Database words
msgid "Statistics Day Threshold"
msgstr "Statistikkterskel i dager"
#: Database words
msgid "Min Element Count"
msgstr "Minimumsantall objekter"
#: Database words
msgid "Rate Limit"
msgstr "Bitrate grense"
#: Database words
msgid "Playlist Method"
msgstr "Metode for spilleliste"
#: Database words
msgid "Transcoding"
msgstr "Transkoding"
#: Database words
msgid "User to track"
msgstr "Bruker som skal spores"
#: Database words
msgid "Streaming"
msgstr "Streaming"
#: Database words
msgid "Interface"
msgstr "Grensesnitt"
#: Database words
msgid "System"
msgstr "System"
#: Database words
#, fuzzy
msgid "Show Lyrics"
msgstr "Vis spilelliste"
|