aboutsummaryrefslogtreecommitdiffstats
path: root/view/nb-no/hstrings.php
blob: f66946062490cf98c335d44eaf372e4495ce4d59 (plain) (blame)
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
<?php

if(! function_exists("string_plural_select_nb_no")) {
function string_plural_select_nb_no($n){
	return ($n != 1 ? 1 : 0);
}}
App::$rtl = 0;
App::$strings["plural_function_code"] = "(n != 1 ? 1 : 0)";
App::$strings["Default"] = "Standard";
App::$strings["Focus (Hubzilla default)"] = "Focus (Hubzilla standard)";
App::$strings["Submit"] = "Lagre";
App::$strings["Theme settings"] = "Instillinger for utseende";
App::$strings["Dark style"] = "";
App::$strings["Light style"] = "";
App::$strings["Common settings"] = "";
App::$strings["Default to dark mode"] = "Standard mappe for opplasting av bilder";
App::$strings["No"] = "Nei";
App::$strings["Yes"] = "Ja";
App::$strings["Always use light icons for navbar"] = "";
App::$strings["Enable this option if you use a dark navbar color in light mode"] = "";
App::$strings["Narrow navbar"] = "Smal navigasjonslinje";
App::$strings["Navigation bar background color"] = "Navigasjonslinjens bakgrunnsfarge";
App::$strings["Dark navigation bar background color"] = "Navigasjonslinjens bakgrunnsfarge";
App::$strings["Link color"] = "Lenkefarge";
App::$strings["Dark link color"] = "Lenkefarge";
App::$strings["Link hover color"] = "Lenkefarge når musepekeren er over";
App::$strings["Dark link hover color"] = "Lenkefarge når musepekeren er over";
App::$strings["Set the background color"] = "Angi bakgrunnsfargen";
App::$strings["Set the dark background color"] = "Angi bakgrunnsfargen";
App::$strings["Set the background image"] = "Angi bakgrunnsbilde";
App::$strings["Set the dark background image"] = "Angi bakgrunnsbilde";
App::$strings["Set font-size for the entire application"] = "Angi skriftstørrelsen for hele programmet";
App::$strings["Examples: 1rem, 100%, 16px"] = "For eksempel: 1rem, 100%, 16px";
App::$strings["Set radius of corners"] = "Angi hjørneradius";
App::$strings["Example: 4px"] = "For eksempel: 4px";
App::$strings["Set maximum width of content region in rem"] = "Set maksbredde for hovedregionen i rem";
App::$strings["Leave empty for default width"] = "La feltet stå tomt for å bruke standard bredde";
App::$strings["Set size of conversation author photo"] = "Angi størrelsen for samtalens forfatterbilde";
App::$strings["Set size of followup author photos"] = "Angi størrelsen på forfatterbilder ved oppfølging";
App::$strings["Show advanced settings"] = "Vis avanserte innstillinger";
App::$strings["Source channel not found."] = "Fant ikke kildekanalen.";
App::$strings["Block Completely"] = "Blokker helt";
App::$strings["superblock settings updated"] = "innstillingene til superblokk ble oppdatert";
App::$strings["Currently blocked"] = "Blokkert for øyeblikket";
App::$strings["No channels currently blocked"] = "Ingen kanaler er blokkert i øyeblikket";
App::$strings["Remove"] = "Fjern";
App::$strings["NSA Bait App"] = "";
App::$strings["Make yourself a political target."] = "";
App::$strings["Recent Channel/Profile Viewers"] = "";
App::$strings["No entries."] = "";
App::$strings["Wiki Pages"] = "Wikisider";
App::$strings["Add new page"] = "Legg til ny side";
App::$strings["Markdown"] = "Markdown";
App::$strings["BBcode"] = "BBcode";
App::$strings["Text"] = "Tekst";
App::$strings["Page name"] = "Sidenavn";
App::$strings["Options"] = "Valg";
App::$strings["Wikis"] = "Wikier";
App::$strings["Name"] = "Navn";
App::$strings["__ctx:wiki_history__ Message"] = "Melding";
App::$strings["Date"] = "Dato";
App::$strings["Revert"] = "Tilbakestill";
App::$strings["Compare"] = "Sammenlign";
App::$strings["Wiki updated successfully"] = "Wikien ble oppdatert";
App::$strings["Wiki files deleted successfully"] = "Wikifiler ble slettet";
App::$strings["(No Title)"] = "(Ingen tittel)";
App::$strings["Wiki page create failed."] = "Kunne ikke opprette wikiside.";
App::$strings["Wiki not found."] = "Fant ikke wikien.";
App::$strings["Destination name already exists"] = "Navnet finnes allerede";
App::$strings["Page not found"] = "Fant ikke siden";
App::$strings["Error reading page content"] = "Det oppstod en feil under lesing av innholder på siden";
App::$strings["Error reading wiki"] = "Det oppstod en feil ved lesing av wikien";
App::$strings["Page update failed."] = "Oppdatering av siden mislyktes.";
App::$strings["Nothing deleted"] = "Ingenting ble slettet";
App::$strings["Compare: object not found."] = "Sammanlign: fant ikke objektet.";
App::$strings["Page updated"] = "Siden ble oppdatert";
App::$strings["Wiki resource_id required for git commit"] = "Wiki ressurs_id er nødvendig for å lagre i git";
App::$strings["Page not found."] = "Siden ikke funnet.";
App::$strings["Different viewers will see this text differently"] = "Denne teksten vil se forskjellig ut for ulike besøkende";
App::$strings["Profile Unavailable."] = "Profilen er ikke tilgjengelig.";
App::$strings["Permission denied."] = "Tillatelse avslått.";
App::$strings["Invalid channel"] = "Ugyldig kanal";
App::$strings["Error retrieving wiki"] = "Det oppstod en feil ved henting av wikien";
App::$strings["Error creating zip file export folder"] = "Det oppstod en feil ved eksport av mappe til zip fil";
App::$strings["Error downloading wiki: "] = "";
App::$strings["Edit"] = "Endre";
App::$strings["Download"] = "";
App::$strings["View"] = "Vis";
App::$strings["Create New"] = "Opprett nytt";
App::$strings["Wiki name"] = "";
App::$strings["Content type"] = "";
App::$strings["Type"] = "Type";
App::$strings["Any&nbsp;type"] = "";
App::$strings["Lock content type"] = "";
App::$strings["Create a status post for this wiki"] = "";
App::$strings["Edit Wiki Name"] = "";
App::$strings["Wiki not found"] = "Fant ikke wikien.";
App::$strings["Rename page"] = "";
App::$strings["Share"] = "Del";
App::$strings["Error retrieving page content"] = "";
App::$strings["New page"] = "";
App::$strings["Revision Comparison"] = "";
App::$strings["Cancel"] = "Avbryt";
App::$strings["Short description of your changes (optional)"] = "";
App::$strings["Source"] = "";
App::$strings["New page name"] = "";
App::$strings["Embed image from photo albums"] = "";
App::$strings["Embed an image from your albums"] = "";
App::$strings["OK"] = "OK";
App::$strings["Choose images to embed"] = "";
App::$strings["Choose an album"] = "";
App::$strings["Choose a different album"] = "";
App::$strings["Error getting album list"] = "";
App::$strings["Error getting photo link"] = "";
App::$strings["Error getting album"] = "";
App::$strings["History"] = "";
App::$strings["Error creating wiki. Invalid name."] = "";
App::$strings["A wiki with this name already exists."] = "";
App::$strings["Wiki created, but error creating Home page."] = "";
App::$strings["Error creating wiki"] = "";
App::$strings["Error updating wiki. Invalid name."] = "";
App::$strings["Error updating wiki"] = "";
App::$strings["Wiki delete permission denied."] = "";
App::$strings["Error deleting wiki"] = "";
App::$strings["New page created"] = "";
App::$strings["Cannot delete Home"] = "";
App::$strings["Current Revision"] = "";
App::$strings["Selected Revision"] = "";
App::$strings["You must be authenticated."] = "";
App::$strings["System defaults:"] = "";
App::$strings["Preferred Clipart IDs"] = "";
App::$strings["List of preferred clipart ids. These will be shown first."] = "";
App::$strings["Default Search Term"] = "Standard søkeord";
App::$strings["The default search term. These will be shown second."] = "Standard søkeord. Disse vil vises som nummer to.";
App::$strings["Return After"] = "";
App::$strings["Page to load after image selection."] = "";
App::$strings["View Profile"] = "Vis profil";
App::$strings["Edit Profile"] = "Endre profil";
App::$strings["Profile List"] = "";
App::$strings["Order of Preferred"] = "";
App::$strings["Sort order of preferred clipart ids."] = "";
App::$strings["Newest first"] = "";
App::$strings["As entered"] = "";
App::$strings["Order of other"] = "";
App::$strings["Sort order of other clipart ids."] = "";
App::$strings["Most downloaded first"] = "";
App::$strings["Most liked first"] = "";
App::$strings["Preferred IDs Message"] = "";
App::$strings["Message to display above preferred results."] = "";
App::$strings["Uploaded by: "] = "";
App::$strings["Drawn by: "] = "";
App::$strings["Use this image"] = "";
App::$strings["Or select from a free OpenClipart.org image:"] = "";
App::$strings["Search Term"] = "Søkeord";
App::$strings["Unknown error. Please try again later."] = "";
App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Hold nede Shift-knappen og last siden på nytt eller tøm nettleserens mellomlager hvis det nye bildet ikke vises umiddelbart.";
App::$strings["Profile photo updated successfully."] = "";
App::$strings["Save Bookmarks"] = "Lagre bokmerker";
App::$strings["Rainbow Tag App"] = "";
App::$strings["Add some colour to tag clouds"] = "";
App::$strings["Rainbow Tag"] = "";
App::$strings["Photo Cache settings saved."] = "";
App::$strings["Saves a copy of images from external sites locally to increase your anonymity in the web."] = "";
App::$strings["Minimal photo size for caching"] = "";
App::$strings["In pixels. From 1 up to 1024, 0 will be replaced with system default."] = "";
App::$strings["Photo Cache"] = "";
App::$strings["Gallery"] = "";
App::$strings["Photo Gallery"] = "";
App::$strings["Requested profile is not available."] = "Forespurt profil er ikke tilgjengelig.";
App::$strings["Random Planet App"] = "";
App::$strings["Set a random planet from the Star Wars Empire as your location when posting"] = "";
App::$strings["Male"] = "Mannlig";
App::$strings["Female"] = "Kvinnelig";
App::$strings["OpenID protocol error. No ID returned."] = "OpenID protokollfeil. Ingen ID ble returnert.";
App::$strings["Welcome %s. Remote authentication successful."] = "Velkommen %s. Ekstern autentisering er vellykket.";
App::$strings["Login failed."] = "Innlogging mislyktes.";
App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Vi støtte på et problem under innloggingen med din OpenID. Vennligst sjekk at ID-en er stavet riktig.";
App::$strings["The error message was:"] = "Feilmeldingen var:";
App::$strings["First Name"] = "Fornavn";
App::$strings["Last Name"] = "Etternavn";
App::$strings["Nickname"] = "Kallenavn";
App::$strings["Full Name"] = "Fullt navn";
App::$strings["Email"] = "E-post";
App::$strings["Profile Photo"] = "Profilbilde";
App::$strings["Profile Photo 16px"] = "Profilbilde 16px";
App::$strings["Profile Photo 32px"] = "Profilbilde 32px";
App::$strings["Profile Photo 48px"] = "Profilbilde 48px";
App::$strings["Profile Photo 64px"] = "Profilbilde 64px";
App::$strings["Profile Photo 80px"] = "Profilbilde 80px";
App::$strings["Profile Photo 128px"] = "Profilbilde 128px";
App::$strings["Timezone"] = "Tidssone";
App::$strings["Homepage URL"] = "Hjemmeside URL";
App::$strings["Language"] = "Språk";
App::$strings["Birth Year"] = "Fødselsår";
App::$strings["Birth Month"] = "Fødselsmåne";
App::$strings["Birth Day"] = "Fødselsdag";
App::$strings["Birthdate"] = "Fødselsdato";
App::$strings["Gender"] = "Kjønn";
App::$strings["lonely"] = "Ensom";
App::$strings["drunk"] = "";
App::$strings["horny"] = "";
App::$strings["stoned"] = "";
App::$strings["fucked up"] = "";
App::$strings["clusterfucked"] = "";
App::$strings["crazy"] = "";
App::$strings["hurt"] = "";
App::$strings["sleepy"] = "";
App::$strings["grumpy"] = "";
App::$strings["high"] = "";
App::$strings["semi-conscious"] = "";
App::$strings["in love"] = "";
App::$strings["in lust"] = "";
App::$strings["naked"] = "";
App::$strings["stinky"] = "";
App::$strings["sweaty"] = "";
App::$strings["bleeding out"] = "";
App::$strings["victorious"] = "";
App::$strings["defeated"] = "";
App::$strings["envious"] = "";
App::$strings["jealous"] = "";
App::$strings["Hubzilla Directory Stats"] = "";
App::$strings["Total Hubs"] = "";
App::$strings["Hubzilla Hubs"] = "";
App::$strings["Friendica Hubs"] = "";
App::$strings["Diaspora Pods"] = "";
App::$strings["Hubzilla Channels"] = "";
App::$strings["Friendica Channels"] = "";
App::$strings["Diaspora Channels"] = "";
App::$strings["Aged 35 and above"] = "";
App::$strings["Aged 34 and under"] = "";
App::$strings["Average Age"] = "";
App::$strings["Known Chatrooms"] = "";
App::$strings["Known Tags"] = "";
App::$strings["Please note Diaspora and Friendica statistics are merely those **this directory** is aware of, and not all those known in the network.  This also applies to chatrooms,"] = "";
App::$strings["Channel is required."] = "";
App::$strings["Invalid channel."] = "Ugyldig kanal";
App::$strings["Hubzilla Crosspost Connector Settings saved."] = "";
App::$strings["Send public postings to Hubzilla channel by default"] = "";
App::$strings["Hubzilla API Path"] = "";
App::$strings["https://{sitename}/api"] = "";
App::$strings["Hubzilla login name"] = "";
App::$strings["Hubzilla channel name"] = "";
App::$strings["Hubzilla password"] = "";
App::$strings["Hubzilla Crosspost Connector"] = "";
App::$strings["Post to Hubzilla"] = "";
App::$strings["Photos imported"] = "";
App::$strings["Permission denied"] = "Tillatelse avvist";
App::$strings["Redmatrix Photo Album Import"] = "";
App::$strings["This will import all your Redmatrix photo albums to this channel."] = "";
App::$strings["Redmatrix Server base URL"] = "";
App::$strings["Redmatrix Login Username"] = "";
App::$strings["Redmatrix Login Password"] = "";
App::$strings["Import just this album"] = "";
App::$strings["Leave blank to import all albums"] = "";
App::$strings["Maximum count to import"] = "";
App::$strings["0 or blank to import all available"] = "";
App::$strings["photo"] = "foto";
App::$strings["Please contact your site administrator.<br />The provided API URL is not valid."] = "Den oppgitte URLen for APIet er ikke gyldig. Kontakt serverens administrator.";
App::$strings["We could not contact the GNU social API with the Path you entered."] = "";
App::$strings["GNU social settings updated."] = "";
App::$strings["Globally Available GNU social OAuthKeys"] = "";
App::$strings["There are preconfigured OAuth key pairs for some GNU social servers available. If you are using one of them, please use these credentials.<br />If not feel free to connect to any other GNU social instance (see below)."] = "";
App::$strings["Provide your own OAuth Credentials"] = "";
App::$strings["No consumer key pair for GNU social found. Register your Hubzilla Account as an desktop client on your GNU social account, copy the consumer key pair here and enter the API base root.<br />Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Hubzilla installation at your favourite GNU social installation."] = "";
App::$strings["OAuth Consumer Key"] = "";
App::$strings["OAuth Consumer Secret"] = "";
App::$strings["Base API Path"] = "";
App::$strings["Remember the trailing /"] = "";
App::$strings["GNU social application name"] = "";
App::$strings["To connect to your GNU social account click the button below to get a security code from GNU social which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to GNU social."] = "";
App::$strings["Log in with GNU social"] = "";
App::$strings["Copy the security code from GNU social here"] = "";
App::$strings["Cancel Connection Process"] = "";
App::$strings["Current GNU social API is"] = "";
App::$strings["Cancel GNU social Connection"] = "";
App::$strings["Currently connected to: "] = "";
App::$strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to GNU social will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "";
App::$strings["Post to GNU social by default"] = "";
App::$strings["If enabled your public postings will be posted to the associated GNU-social account by default"] = "";
App::$strings["Clear OAuth configuration"] = "";
App::$strings["GNU-Social Crosspost Connector"] = "";
App::$strings["Post to GNU social"] = "";
App::$strings["Site name"] = "Nettstedets navn";
App::$strings["API URL"] = "";
App::$strings["Consumer Secret"] = "Consumer Secret";
App::$strings["Consumer Key"] = "Consumer Key";
App::$strings["Application name"] = "";
App::$strings["Friendica Crosspost Connector Settings saved."] = "";
App::$strings["Send public postings to Friendica by default"] = "";
App::$strings["Friendica API Path"] = "";
App::$strings["Friendica login name"] = "";
App::$strings["Friendica password"] = "";
App::$strings["Friendica Crosspost Connector"] = "";
App::$strings["Post to Friendica"] = "";
App::$strings["Post to WordPress"] = "";
App::$strings["Wordpress Settings saved."] = "";
App::$strings["WordPress username"] = "";
App::$strings["WordPress password"] = "";
App::$strings["WordPress API URL"] = "";
App::$strings["Typically https://your-blog.tld/xmlrpc.php"] = "";
App::$strings["WordPress blogid"] = "";
App::$strings["For multi-user sites such as wordpress.com, otherwise leave blank"] = "";
App::$strings["Post to WordPress by default"] = "";
App::$strings["Forward comments (requires hubzilla_wp plugin)"] = "";
App::$strings["Add link to original post"] = "";
App::$strings["Link description (default:"] = "";
App::$strings["Wordpress Post"] = "";
App::$strings["No server specified"] = "";
App::$strings["Posts imported"] = "";
App::$strings["Files imported"] = "";
App::$strings["Content Import"] = "";
App::$strings["This will import all your conversations and cloud files from a cloned channel on another server. This may take a while if you have lots of posts and or files."] = "";
App::$strings["Include posts"] = "";
App::$strings["Conversations, Articles, Cards, and other posted content"] = "";
App::$strings["Include files"] = "";
App::$strings["Files, Photos and other cloud storage"] = "";
App::$strings["Original Server base URL"] = "";
App::$strings["Since modified date yyyy-mm-dd"] = "";
App::$strings["Until modified date yyyy-mm-dd"] = "";
App::$strings["Set your location"] = "Angi din plassering";
App::$strings["Clear browser location"] = "Fjern nettleserplassering";
App::$strings["Insert web link"] = "Sett inn web-lenke";
App::$strings["Embed (existing) photo from your photo albums"] = "Sett inn (eksisterende) bilde fra fotoalbumene dine";
App::$strings["Please enter a link URL:"] = "Vennligst skriv inn en lenke URL:";
App::$strings["Tag term:"] = "Merkelapp:";
App::$strings["Where are you right now?"] = "Hvor er du akkurat nå?";
App::$strings["Choose a different album..."] = "";
App::$strings["Comments enabled"] = "";
App::$strings["Comments disabled"] = "";
App::$strings["Preview"] = "Forhåndsvisning";
App::$strings["Page link name"] = "Sidens lenkenavn";
App::$strings["Post as"] = "Lag innlegg som";
App::$strings["Bold"] = "Uthevet";
App::$strings["Italic"] = "Kursiv";
App::$strings["Underline"] = "Understreket";
App::$strings["Quote"] = "Sitat";
App::$strings["Code"] = "Kode";
App::$strings["Attach/Upload file"] = "Last opp fil/vedlegg";
App::$strings["Toggle voting"] = "Skru av eller på stemming";
App::$strings["Disable comments"] = "Slå av kommentarer";
App::$strings["Toggle comments"] = "";
App::$strings["Title (optional)"] = "Tittel (valgfri)";
App::$strings["Categories (optional, comma-separated list)"] = "Kategorier (valgfri, kommaseparert liste)";
App::$strings["Permission settings"] = "Tillatelser - innstillinger";
App::$strings["Other networks and post services"] = "Andre nettverk og innleggstjenester";
App::$strings["Set expiration date"] = "Angi utløpsdato";
App::$strings["Set publish date"] = "Angi publiseringsdato";
App::$strings["Encrypt text"] = "Krypter tekst";
App::$strings["WYSIWYG status editor"] = "";
App::$strings["WYSIWYG Status App"] = "";
App::$strings["WYSIWYG Status"] = "";
App::$strings["View Larger"] = "";
App::$strings["Tile Server URL"] = "";
App::$strings["A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">public tile servers</a>"] = "";
App::$strings["Nominatim (reverse geocoding) Server URL"] = "";
App::$strings["A list of <a href=\"http://wiki.openstreetmap.org/wiki/Nominatim\" target=\"_blank\">Nominatim servers</a>"] = "";
App::$strings["Default zoom"] = "";
App::$strings["The default zoom level. (1:world, 18:highest, also depends on tile server)"] = "";
App::$strings["Include marker on map"] = "";
App::$strings["Include a marker on the map."] = "";
App::$strings["Settings updated."] = "Innstillinger oppdatert.";
App::$strings["Insane Journal Crosspost Connector Settings saved."] = "";
App::$strings["Insane Journal Crosspost Connector App"] = "";
App::$strings["Not Installed"] = "";
App::$strings["Relay public postings to Insane Journal"] = "";
App::$strings["InsaneJournal username"] = "";
App::$strings["InsaneJournal password"] = "";
App::$strings["Post to InsaneJournal by default"] = "";
App::$strings["Insane Journal Crosspost Connector"] = "";
App::$strings["Post to Insane Journal"] = "";
App::$strings["TOTP Two-Step Verification"] = "";
App::$strings["Enter the 2-step verification generated by your authenticator app:"] = "";
App::$strings["Success!"] = "";
App::$strings["Invalid code, please try again."] = "";
App::$strings["Too many invalid codes..."] = "";
App::$strings["Verify"] = "";
App::$strings["You haven't set a TOTP secret yet.\nPlease click the button below to generate one and register this site\nwith your preferred authenticator app."] = "";
App::$strings["Your TOTP secret is"] = "";
App::$strings["Be sure to save it somewhere in case you lose or replace your mobile device.\nUse your mobile device to scan the QR code below to register this site\nwith your preferred authenticator app."] = "";
App::$strings["Test"] = "Sjekk koden";
App::$strings["Generate New Secret"] = "";
App::$strings["Go"] = "";
App::$strings["Enter your password"] = "";
App::$strings["enter TOTP code from your device"] = "";
App::$strings["Pass!"] = "";
App::$strings["Fail"] = "";
App::$strings["Incorrect password, try again."] = "";
App::$strings["Record your new TOTP secret and rescan the QR code above."] = "";
App::$strings["TOTP Settings"] = "";
App::$strings["Who likes me?"] = "";
App::$strings["QR code"] = "";
App::$strings["QR Generator"] = "";
App::$strings["Enter some text"] = "";
App::$strings["ActivityPub"] = "";
App::$strings["status"] = "status";
App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s liker %2\$s sin %3\$s";
App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s liker ikke %2\$s sin %3\$s";
App::$strings["ActivityPub Protocol Settings updated."] = "";
App::$strings["The activitypub protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "";
App::$strings["Deliver to ActivityPub recipients in privacy groups"] = "";
App::$strings["May result in a large number of mentions and expose all the members of your privacy group"] = "";
App::$strings["Send multi-media HTML articles"] = "";
App::$strings["Not supported by some microblog services such as Mastodon"] = "";
App::$strings["Activitypub Protocol"] = "";
App::$strings["ERROR: word length is not correct!"] = "";
App::$strings["Fediwordle App"] = "";
App::$strings["A distributed word game inspired by wordle."] = "";
App::$strings["To start a game, enter [wordle]your_word[/wordle] somewhere in a toplevel post."] = "";
App::$strings["Your contacts can post their guess in the comments."] = "";
App::$strings["Your channel will evaluate the guess and automatically post the response."] = "";
App::$strings["Correct letters"] = "";
App::$strings["Letters contained in the word but at the wrong spot"] = "";
App::$strings["Letters not contained in the word"] = "";
App::$strings["An account has been created for you."] = "";
App::$strings["Authentication successful but rejected: account creation is disabled."] = "";
App::$strings["Dreamwidth Crosspost Connector Settings saved."] = "";
App::$strings["Dreamwidth username"] = "";
App::$strings["Dreamwidth password"] = "";
App::$strings["Post to Dreamwidth by default"] = "";
App::$strings["Dreamwidth Crosspost Connector"] = "";
App::$strings["Post to Dreamwidth"] = "";
App::$strings["bitchslap"] = "";
App::$strings["bitchslapped"] = "";
App::$strings["shag"] = "";
App::$strings["shagged"] = "";
App::$strings["patent"] = "";
App::$strings["patented"] = "";
App::$strings["hug"] = "";
App::$strings["hugged"] = "";
App::$strings["murder"] = "";
App::$strings["murdered"] = "";
App::$strings["worship"] = "";
App::$strings["worshipped"] = "";
App::$strings["kiss"] = "";
App::$strings["kissed"] = "";
App::$strings["tempt"] = "";
App::$strings["tempted"] = "";
App::$strings["raise eyebrows at"] = "";
App::$strings["raised their eyebrows at"] = "";
App::$strings["insult"] = "";
App::$strings["insulted"] = "";
App::$strings["praise"] = "";
App::$strings["praised"] = "";
App::$strings["be dubious of"] = "";
App::$strings["was dubious of"] = "";
App::$strings["eat"] = "";
App::$strings["ate"] = "";
App::$strings["giggle and fawn at"] = "";
App::$strings["giggled and fawned at"] = "";
App::$strings["doubt"] = "";
App::$strings["doubted"] = "";
App::$strings["glare"] = "";
App::$strings["glared at"] = "";
App::$strings["fuck"] = "";
App::$strings["fucked"] = "";
App::$strings["bonk"] = "";
App::$strings["bonked"] = "";
App::$strings["declare undying love for"] = "";
App::$strings["declared undying love for"] = "";
App::$strings["Errors encountered deleting database table "] = "";
App::$strings["Submit Settings"] = "";
App::$strings["Drop tables when uninstalling?"] = "";
App::$strings["If checked, the Rendezvous database tables will be deleted when the plugin is uninstalled."] = "";
App::$strings["Mapbox Access Token"] = "";
App::$strings["If you enter a Mapbox access token, it will be used to retrieve map tiles from Mapbox instead of the default OpenStreetMap tile server."] = "";
App::$strings["Rendezvous"] = "";
App::$strings["This identity has been deleted by another member due to inactivity. Please press the \"New identity\" button or refresh the page to register a new identity. You may use the same name."] = "";
App::$strings["Welcome to Rendezvous!"] = "";
App::$strings["Enter your name to join this rendezvous. To begin sharing your location with the other members, tap the GPS control. When your location is discovered, a red dot will appear and others will be able to see you on the map."] = "";
App::$strings["Let's meet here"] = "";
App::$strings["Description"] = "Beskrivelse";
App::$strings["New marker"] = "";
App::$strings["Edit marker"] = "";
App::$strings["New identity"] = "";
App::$strings["Delete marker"] = "";
App::$strings["Delete member"] = "";
App::$strings["Edit proximity alert"] = "";
App::$strings["A proximity alert will be issued when this member is within a certain radius of you.<br><br>Enter a radius in meters (0 to disable):"] = "";
App::$strings["distance"] = "";
App::$strings["Proximity alert distance (meters)"] = "";
App::$strings["A proximity alert will be issued when you are within a certain radius of the marker location.<br><br>Enter a radius in meters (0 to disable):"] = "";
App::$strings["Marker proximity alert"] = "";
App::$strings["Reminder note"] = "";
App::$strings["Enter a note to be displayed when you are within the specified proximity..."] = "";
App::$strings["Add new rendezvous"] = "";
App::$strings["Create a new rendezvous and share the access link with those you wish to invite to the group. Those who open the link become members of the rendezvous. They can view other member locations, add markers to the map, or share their own locations with the group."] = "";
App::$strings["You have no rendezvous. Press the button above to create a rendezvous!"] = "";
App::$strings["Errors encountered creating database tables."] = "Feil oppstod under opprettelsen av databasetabeller.";
App::$strings["Page to load after login"] = "";
App::$strings["Examples: &quot;apps&quot;, &quot;network?f=&gid=37&quot; (privacy collection), &quot;channel&quot; or &quot;notifications/system&quot; (leave blank for default network page (grid)."] = "";
App::$strings["Startpage"] = "";
App::$strings["Your channel has been upgraded to \$Projectname version"] = "";
App::$strings["Please have a look at the"] = "";
App::$strings["git history"] = "";
App::$strings["change log"] = "";
App::$strings["for further info."] = "";
App::$strings["Upgrade Info"] = "";
App::$strings["Do not show this again"] = "";
App::$strings["Twitter settings updated."] = "";
App::$strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "";
App::$strings["At this Hubzilla instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to Twitter."] = "";
App::$strings["Log in with Twitter"] = "";
App::$strings["Copy the PIN from Twitter here"] = "";
App::$strings["<strong>Note:</strong> Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "";
App::$strings["Twitter post length"] = "";
App::$strings["Maximum tweet length"] = "";
App::$strings["Send public postings to Twitter by default"] = "";
App::$strings["If enabled your public postings will be posted to the associated Twitter account by default"] = "";
App::$strings["Twitter Crosspost Connector"] = "";
App::$strings["Post to Twitter"] = "";
App::$strings["You are now authenticated to pumpio."] = "";
App::$strings["return to the featured settings page"] = "tilbake til funksjonsinnstillinger";
App::$strings["Post to Pump.io"] = "";
App::$strings["Pump.io Settings saved."] = "";
App::$strings["Pump.io servername"] = "";
App::$strings["Without \"http://\" or \"https://\""] = "";
App::$strings["Pump.io username"] = "";
App::$strings["Without the servername"] = "";
App::$strings["You are not authenticated to pumpio"] = "";
App::$strings["(Re-)Authenticate your pump.io connection"] = "";
App::$strings["Post to pump.io by default"] = "";
App::$strings["Should posts be public"] = "";
App::$strings["Mirror all public posts"] = "";
App::$strings["Pump.io Crosspost Connector"] = "";
App::$strings["generic profile image"] = "";
App::$strings["random geometric pattern"] = "";
App::$strings["monster face"] = "";
App::$strings["computer generated face"] = "";
App::$strings["retro arcade style face"] = "";
App::$strings["Hub default profile photo"] = "";
App::$strings["Information"] = "";
App::$strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "";
App::$strings["Save Settings"] = "";
App::$strings["Default avatar image"] = "";
App::$strings["Select default avatar image if none was found at Gravatar. See README"] = "";
App::$strings["Rating of images"] = "";
App::$strings["Select the appropriate avatar rating for your site. See README"] = "";
App::$strings["Gravatar settings updated."] = "";
App::$strings["text to include in all outgoing posts from this site"] = "";
App::$strings["Send your identity to all websites"] = "";
App::$strings["Send ZID"] = "";
App::$strings["Price"] = "";
App::$strings["Error: order mismatch. Please try again."] = "";
App::$strings["Manual payments are not enabled."] = "";
App::$strings["Order not found."] = "";
App::$strings["Finished"] = "";
App::$strings["Enable Subscription Management Module"] = "";
App::$strings["Cannot include subscription items with different terms in the same order."] = "";
App::$strings["Select Subscription to Edit"] = "";
App::$strings["Edit Subscriptions"] = "";
App::$strings["Subscription SKU"] = "";
App::$strings["Catalog Description"] = "";
App::$strings["Subscription available for purchase."] = "";
App::$strings["Maximum active subscriptions to this item per account."] = "";
App::$strings["Subscription price."] = "";
App::$strings["Quantity"] = "";
App::$strings["Term"] = "";
App::$strings["Enable Hubzilla Services Module"] = "";
App::$strings["New Sku"] = "";
App::$strings["Cannot save edits to locked item."] = "";
App::$strings["SKU not found."] = "";
App::$strings["Invalid Activation Directive."] = "";
App::$strings["Invalid Deactivation Directive."] = "";
App::$strings["Add to this privacy group"] = "";
App::$strings["Set user service class"] = "";
App::$strings["You must be using a local account to purchase this service."] = "";
App::$strings["Changes Locked"] = "";
App::$strings["Item available for purchase."] = "";
App::$strings["Photo URL"] = "";
App::$strings["Add buyer to privacy group"] = "";
App::$strings["Add buyer as connection"] = "";
App::$strings["Set Service Class"] = "";
App::$strings["Enable Order/Item Options"] = "";
App::$strings["Label"] = "";
App::$strings["Required"] = "Påkrevd";
App::$strings["Instructions"] = "";
App::$strings["Enable Paypal Button Module"] = "";
App::$strings["Use Production Key"] = "";
App::$strings["Paypal Sandbox Client Key"] = "";
App::$strings["Paypal Sandbox Secret Key"] = "";
App::$strings["Paypal Production Client Key"] = "";
App::$strings["Paypal Production Secret Key"] = "";
App::$strings["Paypal button payments are not enabled."] = "";
App::$strings["Paypal button payments are not properly configured.  Please choose another payment option."] = "";
App::$strings["Enable Paypal Button Module (API-v2)"] = "";
App::$strings["Enable Manual Cart Module"] = "";
App::$strings["Access Denied."] = "Ingen tilgang";
App::$strings["Order Not Found"] = "";
App::$strings["Access Denied"] = "Ingen tilgang";
App::$strings["Invalid Item"] = "Ugyldig element.";
App::$strings["Enable Test Catalog"] = "";
App::$strings["Enable Manual Payments"] = "";
App::$strings["Base Merchant Currency"] = "";
App::$strings["Cart Settings"] = "";
App::$strings["DB Cleanup Failure"] = "";
App::$strings["[cart] Item Added"] = "";
App::$strings["Order already checked out."] = "";
App::$strings["Drop database tables when uninstalling."] = "";
App::$strings["Shop"] = "";
App::$strings["You must be logged into the Grid to shop."] = "";
App::$strings["Access denied."] = "Ingen tilgang";
App::$strings["No Order Found"] = "";
App::$strings["An unknown error has occurred Please start again."] = "";
App::$strings["Requirements not met."] = "";
App::$strings["Review your order and complete any needed requirements."] = "";
App::$strings["Invalid Payment Type.  Please start again."] = "";
App::$strings["Order not found"] = "";
App::$strings["nofed Settings saved."] = "";
App::$strings["Federate posts by default"] = "";
App::$strings["No Federation"] = "";
App::$strings["Federate"] = "";
App::$strings["Hide the button and show the smilies directly."] = "";
App::$strings["Smileybutton Settings"] = "";
App::$strings["file"] = "";
App::$strings["Redmatrix File Storage Import"] = "";
App::$strings["This will import all your Redmatrix cloud files to this channel."] = "";
App::$strings["Please install the statistics addon to be able to configure a diaspora relay"] = "";
App::$strings["Diaspora Relay Handle"] = "";
App::$strings["Address of a diaspora relay. Example: relay@diasporarelay.tld"] = "";
App::$strings["Diaspora relay could not be imported"] = "";
App::$strings["No subject"] = "";
App::$strings["\$projectname"] = "\$projectname";
App::$strings["No username found in import file."] = "Ingen brukernavn ble funnet i importfilen.";
App::$strings["Unable to create a unique channel address. Import failed."] = "Klarte ikke å lage en unik kanaladresse. Import mislyktes.";
App::$strings["Import completed."] = "Import ferdig.";
App::$strings["Diaspora Protocol Settings updated."] = "";
App::$strings["The diaspora protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "";
App::$strings["Prevent your hashtags from being redirected to other sites"] = "";
App::$strings["Sign and forward posts and comments with no existing Diaspora signature"] = "";
App::$strings["Followed hashtags (comma separated, do not include the #)"] = "";
App::$strings["Diaspora Protocol"] = "";
App::$strings["%1\$s dislikes %2\$s's %3\$s"] = "";
App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s deltar på %2\$ss %3\$s";
App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s deltar ikke på %2\$ss %3\$s";
App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s deltar kanskje på %2\$ss %3\$s";
App::$strings["This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> analytics tool."] = "";
App::$strings["If you do not want that your visits are logged this way you <a href='%s'>can set a cookie to prevent Piwik from tracking further visits of the site</a> (opt-out)."] = "";
App::$strings["Piwik Base URL"] = "";
App::$strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "";
App::$strings["Site ID"] = "";
App::$strings["Show opt-out cookie link?"] = "";
App::$strings["Asynchronous tracking"] = "";
App::$strings["Enable frontend JavaScript error tracking"] = "";
App::$strings["This feature requires Piwik >= 2.2.0"] = "";
App::$strings["Workflow user."] = "";
App::$strings["This channel"] = "";
App::$strings["Primary"] = "Primær";
App::$strings["Create New Workflow Item"] = "";
App::$strings["Workflow"] = "";
App::$strings["No Workflows Available"] = "";
App::$strings["Add item to which workflow"] = "";
App::$strings["Create Workflow Item"] = "";
App::$strings["Link"] = "";
App::$strings["Web link."] = "";
App::$strings["Title"] = "Tittel";
App::$strings["Brief description or title"] = "";
App::$strings["Notes"] = "Merknader";
App::$strings["Notes and Info"] = "";
App::$strings["Body"] = "";
App::$strings["Workflow Settings"] = "";
App::$strings["Project Servers and Resources"] = "";
App::$strings["Project Creator and Tech Lead"] = "";
App::$strings["And the hundreds of other people and organisations who helped make the Hubzilla possible."] = "";
App::$strings["The Redmatrix/Hubzilla projects are provided primarily by volunteers giving their time and expertise - and often paying out of pocket for services they share with others."] = "";
App::$strings["There is no corporate funding and no ads, and we do not collect and sell your personal information. (We don't control your personal information - <strong>you do</strong>.)"] = "";
App::$strings["Help support our ground-breaking work in decentralisation, web identity, and privacy."] = "";
App::$strings["Your donations keep servers and services running and also helps us to provide innovative new features and continued development."] = "";
App::$strings["Donate"] = "";
App::$strings["Choose a project, developer, or public hub to support with a one-time donation"] = "";
App::$strings["Donate Now"] = "";
App::$strings["<strong><em>Or</em></strong> become a project sponsor (Hubzilla Project only)"] = "";
App::$strings["Please indicate if you would like your first name or full name (or nothing) to appear in our sponsor listing"] = "";
App::$strings["Sponsor"] = "";
App::$strings["Special thanks to: "] = "";
App::$strings["Your Webbie:"] = "";
App::$strings["Fontsize (px):"] = "";
App::$strings["Link:"] = "";
App::$strings["Like us on Hubzilla"] = "";
App::$strings["Embed:"] = "";
App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = "Søk %1\$s (%2\$s)";
App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname";
App::$strings["\$Projectname"] = "\$Projectname";
App::$strings["Search \$Projectname"] = "";
App::$strings["Fuzzloc Settings updated."] = "";
App::$strings["Minimum offset in meters"] = "";
App::$strings["Maximum offset in meters"] = "";
App::$strings["Fuzzy Location"] = "";
App::$strings["Send email to all members"] = "";
App::$strings["%s Administrator"] = "%s administrator";
App::$strings["No recipients found."] = "";
App::$strings["%1\$d of %2\$d messages sent."] = "";
App::$strings["Send email to all hub members."] = "";
App::$strings["Message subject"] = "";
App::$strings["Sender Email address"] = "";
App::$strings["Test mode (only send to hub administrator)"] = "";
App::$strings["Categories"] = "Kategorier";
App::$strings["Everything"] = "Alt";
App::$strings["Item not found"] = "Elementet ble ikke funnet.";
App::$strings["Channel not found."] = "Kanalen ble ikke funnet.";
App::$strings["Edit Card"] = "";
App::$strings["Delete"] = "Slett";
App::$strings["Cards"] = "";
App::$strings["View Cards"] = "";
App::$strings["View in context"] = "Vis i sammenheng";
App::$strings["Add Card"] = "";
App::$strings["Save"] = "Lagre";
App::$strings["New registration"] = "";
App::$strings["%s : Message delivery failed."] = "%s : meldingslevering feilet.";
App::$strings["Message sent to %s. New account registration: %s"] = "";
App::$strings["Not allowed."] = "";
App::$strings["Permissions"] = "Tillatelser";
App::$strings["Set/edit permissions"] = "Angi/endre tillatelser";
App::$strings["Item not found."] = "Elementet ble ikke funnet.";
App::$strings["Post to Libertree"] = "";
App::$strings["Libertree Crosspost Connector Settings saved."] = "";
App::$strings["Libertree API token"] = "";
App::$strings["Libertree site URL"] = "";
App::$strings["Post to Libertree by default"] = "";
App::$strings["Libertree Crosspost Connector"] = "";
App::$strings["You're welcome."] = "";
App::$strings["Ah shucks..."] = "";
App::$strings["Don't mention it."] = "";
App::$strings["&lt;blush&gt;"] = "";
App::$strings["Report Bug"] = "";
App::$strings["Logfile archive directory"] = "";
App::$strings["Directory to store rotated logs"] = "";
App::$strings["Logfile size in bytes before rotating"] = "";
App::$strings["Number of logfiles to retain"] = "";
App::$strings["Your account on %s will expire in a few days."] = "";
App::$strings["Your test account is about to expire."] = "";
App::$strings["Hide Aside App"] = "";
App::$strings["Fade out aside areas after a while when using endless scroll"] = "";
App::$strings["Some setting"] = "";
App::$strings["A setting"] = "";
App::$strings["Skeleton Settings"] = "";
App::$strings["Network error"] = "";
App::$strings["API error"] = "";
App::$strings["Unknown issue"] = "";
App::$strings["Unable to retrieve email address from remote identity provider"] = "";
App::$strings["Unable to login using email address "] = "";
App::$strings["Social Authentication using your social media account"] = "";
App::$strings["This app enables one or more social provider sign-in buttons on the login page."] = "";
App::$strings["Add an identity provider"] = "";
App::$strings["Enable "] = "Skru på";
App::$strings["Key"] = "";
App::$strings["Word"] = "";
App::$strings["Secret"] = "";
App::$strings["Add a custom provider"] = "";
App::$strings["Remove an identity provider"] = "";
App::$strings["Social authentication"] = "";
App::$strings["Error while saving provider settings"] = "";
App::$strings["Custom provider already exists"] = "";
App::$strings["Social authentication settings saved."] = "";
App::$strings["Possible adult content"] = "";
App::$strings["%s - view"] = "";
App::$strings["NSFW Settings saved."] = "";
App::$strings["This app looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW.  This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "";
App::$strings["Comma separated list of keywords to hide"] = "";
App::$strings["Word, /regular-expression/, lang=xx, lang!=xx"] = "";
App::$strings["NSFW"] = "";
App::$strings["Show Upload Limits"] = "";
App::$strings["Hubzilla configured maximum size: "] = "";
App::$strings["PHP upload_max_filesize: "] = "";
App::$strings["PHP post_max_size (must be larger than upload_max_filesize): "] = "";
App::$strings["Three Dimensional Tic-Tac-Toe"] = "";
App::$strings["3D Tic-Tac-Toe"] = "";
App::$strings["New game"] = "";
App::$strings["New game with handicap"] = "";
App::$strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "";
App::$strings["In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels."] = "";
App::$strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "";
App::$strings["You go first..."] = "";
App::$strings["I'm going first this time..."] = "";
App::$strings["You won!"] = "";
App::$strings["\"Cat\" game!"] = "";
App::$strings["I won!"] = "";
App::$strings["Send test email"] = "";
App::$strings["Mail sent."] = "";
App::$strings["Sending of mail failed."] = "";
App::$strings["Mail Test"] = "";
App::$strings["Livejournal username"] = "";
App::$strings["Livejournal password"] = "";
App::$strings["Post to Livejournal by default"] = "";
App::$strings["Send wall-to-wall posts to Livejournal"] = "";
App::$strings["Livejournal Crosspost Connector"] = "";
App::$strings["Post to Livejournal"] = "";
App::$strings["Posted by"] = "";
App::$strings["Use markdown for editing posts"] = "";
App::$strings["Edit Article"] = "";
App::$strings["Articles"] = "";
App::$strings["View Articles"] = "";
App::$strings["Add Article"] = "";
App::$strings["Hubzilla File Storage Import"] = "";
App::$strings["This will import all your cloud files from another server."] = "";
App::$strings["Hubzilla Server base URL"] = "";
App::$strings["Allow magic authentication only to websites of your immediate connections"] = "";
App::$strings["Authchoose"] = "";
App::$strings["pageheader Settings saved."] = "";
App::$strings["Message to display on every page on this server"] = "";
App::$strings["Page Header"] = "";
App::$strings["Popular Channels"] = "";
App::$strings["Channels to auto connect"] = "";
App::$strings["Comma separated list"] = "";
App::$strings["IRC Settings"] = "";
App::$strings["IRC settings saved."] = "";
App::$strings["IRC Chatroom"] = "";
App::$strings["Jabber BOSH host"] = "";
App::$strings["Use central userbase"] = "";
App::$strings["If enabled, members will automatically login to an ejabberd server that has to be installed on this machine with synchronized credentials via the \"auth_ejabberd.php\" script."] = "";
App::$strings["XMPP settings updated."] = "";
App::$strings["XMPP App"] = "";
App::$strings["Embedded XMPP (Jabber) client"] = "";
App::$strings["Individual credentials"] = "";
App::$strings["Jabber BOSH server"] = "";
App::$strings["XMPP Settings"] = "";
App::$strings["prev"] = "forrige";
App::$strings["first"] = "første";
App::$strings["last"] = "siste";
App::$strings["next"] = "neste";
App::$strings["older"] = "eldre";
App::$strings["newer"] = "nyere";
App::$strings["Connections"] = "Forbindelser";
App::$strings["Accepts"] = "";
App::$strings["Comments"] = "";
App::$strings["Stream items"] = "";
App::$strings["Wall posts"] = "";
App::$strings["Nothing"] = "";
App::$strings["View all %s connections"] = "Vis alle %s forbindelser";
App::$strings["Network: %s"] = "";
App::$strings["Search"] = "Søk";
App::$strings["poke"] = "prikk";
App::$strings["poked"] = "prikket";
App::$strings["ping"] = "varsle";
App::$strings["pinged"] = "varslet";
App::$strings["happy"] = "glad";
App::$strings["sad"] = "trist";
App::$strings["mellow"] = "dempet";
App::$strings["tired"] = "trøtt";
App::$strings["perky"] = "oppkvikket";
App::$strings["angry"] = "sint";
App::$strings["stupefied"] = "lamslått";
App::$strings["puzzled"] = "forundret";
App::$strings["interested"] = "interessert";
App::$strings["bitter"] = "bitter";
App::$strings["cheerful"] = "munter";
App::$strings["alive"] = "levende";
App::$strings["annoyed"] = "irritert";
App::$strings["anxious"] = "nervøs";
App::$strings["cranky"] = "gretten";
App::$strings["disturbed"] = "foruroliget";
App::$strings["frustrated"] = "frustrert";
App::$strings["depressed"] = "lei seg";
App::$strings["motivated"] = "motivert";
App::$strings["relaxed"] = "avslappet";
App::$strings["surprised"] = "overrasket";
App::$strings["Monday"] = "mandag";
App::$strings["Tuesday"] = "tirsdag";
App::$strings["Wednesday"] = "onsdag";
App::$strings["Thursday"] = "torsdag";
App::$strings["Friday"] = "fredag";
App::$strings["Saturday"] = "lørdag";
App::$strings["Sunday"] = "søndag";
App::$strings["January"] = "januar";
App::$strings["February"] = "februar";
App::$strings["March"] = "mars";
App::$strings["April"] = "april";
App::$strings["May"] = "mai";
App::$strings["June"] = "juni";
App::$strings["July"] = "juli";
App::$strings["August"] = "august";
App::$strings["September"] = "september";
App::$strings["October"] = "oktober";
App::$strings["November"] = "november";
App::$strings["December"] = "desember";
App::$strings["Unknown attachment"] = "Ukjent vedlegg";
App::$strings["Size"] = "Størrelse";
App::$strings["unknown"] = "ukjent";
App::$strings["remove category"] = "fjern kategori";
App::$strings["remove from file"] = "fjern fra fil";
App::$strings["Download binary/encrypted content"] = "";
App::$strings["__ctx:noun__ %d Vote"] = array(
	0 => "",
	1 => "",
);
App::$strings["__ctx:noun__ %d Vote in total"] = array(
	0 => "",
	1 => "",
);
App::$strings["Poll has ended"] = "Spørreskjema har utløpt";
App::$strings["Poll ends in %s"] = "Spørreskjema utløper om %s";
App::$strings["Vote"] = "";
App::$strings["Link to Source"] = "Lenke til kilde";
App::$strings["default"] = "standard";
App::$strings["Page layout"] = "Sidens layout";
App::$strings["You can create your own with the layouts tool"] = "Du kan lage din egen med layout-verktøyet";
App::$strings["HTML"] = "";
App::$strings["Comanche Layout"] = "";
App::$strings["PHP"] = "";
App::$strings["Page content type"] = "Sidens innholdstype";
App::$strings["event"] = "hendelse";
App::$strings["post"] = "innlegg";
App::$strings["comment"] = "kommentar";
App::$strings["activity"] = "aktivitet";
App::$strings["poll"] = "spørreskjema";
App::$strings["a-z, 0-9, -, and _ only"] = "";
App::$strings["Design Tools"] = "Designverktøy";
App::$strings["Blocks"] = "Byggeklosser";
App::$strings["Menus"] = "Menyer";
App::$strings["Layouts"] = "Layout";
App::$strings["Pages"] = "Sider";
App::$strings["Import"] = "Importer";
App::$strings["Import website..."] = "";
App::$strings["Select folder to import"] = "";
App::$strings["Import from a zipped folder:"] = "";
App::$strings["Import from cloud files:"] = "";
App::$strings["/cloud/channel/path/to/folder"] = "";
App::$strings["Enter path to website files"] = "";
App::$strings["Select folder"] = "";
App::$strings["Export website..."] = "";
App::$strings["Export to a zip file"] = "";
App::$strings["website.zip"] = "";
App::$strings["Enter a name for the zip file."] = "";
App::$strings["Export to cloud files"] = "";
App::$strings["/path/to/export/folder"] = "";
App::$strings["Enter a path to a cloud files destination."] = "";
App::$strings["Specify folder"] = "";
App::$strings["This is the home page of %s."] = "";
App::$strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
App::$strings["Starts:"] = "Starter:";
App::$strings["Finishes:"] = "Slutter:";
App::$strings["Location:"] = "Plassering:";
App::$strings["l F d, Y"] = "";
App::$strings["Start:"] = "";
App::$strings["End:"] = "";
App::$strings["This event has been added to your calendar."] = "Denne hendelsen er lagt til i din kalender.";
App::$strings["Not specified"] = "Ikke spesifisert";
App::$strings["Needs Action"] = "Trenger handling";
App::$strings["Completed"] = "Ferdig";
App::$strings["In Process"] = "Igang";
App::$strings["Cancelled"] = "Avbrutt";
App::$strings["Mobile"] = "mobil";
App::$strings["Home"] = "Hjem";
App::$strings["Home, Voice"] = "";
App::$strings["Home, Fax"] = "";
App::$strings["Work"] = "";
App::$strings["Work, Voice"] = "";
App::$strings["Work, Fax"] = "";
App::$strings["Other"] = "Annen";
App::$strings["Off"] = "Av";
App::$strings["On"] = "På";
App::$strings["Calendar"] = "Kalender";
App::$strings["Start calendar week on Monday"] = "";
App::$strings["Default is Sunday"] = "";
App::$strings["Event Timezone Selection"] = "";
App::$strings["Allow event creation in timezones other than your own."] = "";
App::$strings["Channel Home"] = "Kanalhjem";
App::$strings["Search by Date"] = "Søk etter dato";
App::$strings["Ability to select posts by date ranges"] = "Mulighet for å velge innlegg etter datoområde";
App::$strings["Tag Cloud"] = "Merkelappsky";
App::$strings["Provide a personal tag cloud on your channel page"] = "Tilby en personlig merkelappsky på din kanalside";
App::$strings["Use blog/list mode"] = "Bruk blogg/listemodus";
App::$strings["Comments will be displayed separately"] = "Kommentarer blir vist separat fra innlegget";
App::$strings["Connection Filtering"] = "Filtrer forbindelser";
App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtrer innkommende innlegg fra forbindelser basert på nøkkelord/innhold";
App::$strings["Conversation"] = "";
App::$strings["Emoji Reactions"] = "";
App::$strings["Add emoji reaction ability to posts"] = "";
App::$strings["Dislike Posts"] = "Mislik innlegg";
App::$strings["Ability to dislike posts/comments"] = "Mulighet til å mislike innlegg/kommentarer";
App::$strings["Star Posts"] = "Stjerneinnlegg";
App::$strings["Ability to mark special posts with a star indicator"] = "Mulighet til å merke spesielle innlegg med en stjerne";
App::$strings["Reply on comment"] = "";
App::$strings["Ability to reply on selected comment"] = "";
App::$strings["Directory"] = "Katalog";
App::$strings["Advanced Directory Search"] = "Avansert katalogsøk";
App::$strings["Allows creation of complex directory search queries"] = "Gjør det mulig å bruke avanserte kriterier ved søk i katalogen";
App::$strings["Editor"] = "";
App::$strings["Post Categories"] = "Innleggskategorier";
App::$strings["Add categories to your posts"] = "Legg kategorier til dine innlegg";
App::$strings["Large Photos"] = "Store bilder";
App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Inkluder store (1024px) småbilder i innlegg. Hvis denne ikke er påskrudd, bruk små (640px) småbilder";
App::$strings["Even More Encryption"] = "Enda mer kryptering";
App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Tillat valgfri kryptering av innhold ende-til-ende via en delt hemmelig nøkkel";
App::$strings["Disable Comments"] = "Slå av kommentarer";
App::$strings["Provide the option to disable comments for a post"] = "Slår på valg for å ikke tillate kommentarer til innlegget";
App::$strings["Delayed Posting"] = "Tidfest publisering";
App::$strings["Allow posts to be published at a later date"] = "Tillat innlegg å bli publisert på et senere tidspunkt";
App::$strings["Content Expiration"] = "Innholdet utløper";
App::$strings["Remove posts/comments and/or private messages at a future time"] = "Fjern innlegg/kommentarer og/eller private meldinger på et angitt tidspunkt i fremtiden";
App::$strings["Suppress Duplicate Posts/Comments"] = "Forhindre duplikat av innlegg/kommentarer";
App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Forhindre innlegg med identisk innhold fra å bli publisert hvis det er mindre enn to minutter mellom innsendingene.";
App::$strings["Auto-save drafts of posts and comments"] = "Automatisk lagring av kladd for innlegg og kommentarer";
App::$strings["Automatically saves post and comment drafts in local browser storage to help prevent accidental loss of compositions"] = "Lagrer automatisk utkast til innlegg og kommentarer i nettleserens interne lager for å unngå å tape innholet ved et uhell";
App::$strings["Manage"] = "";
App::$strings["Navigation Channel Select"] = "Navigasjon kanalvalg";
App::$strings["Change channels directly from within the navigation dropdown menu"] = "Endre kanaler direkte fra navigasjonsmenyen";
App::$strings["Network"] = "Nettverk";
App::$strings["Events Filter"] = "Arrangementsfilter";
App::$strings["Ability to display only events"] = "Mulighet for kun å vise arrangementer";
App::$strings["Polls Filter"] = "Filer for Spørreskjema";
App::$strings["Ability to display only polls"] = "Mulighet for å kun vise spørreskjema";
App::$strings["Saved Searches"] = "Lagrede søk";
App::$strings["Save search terms for re-use"] = "Lagre søkeuttrykk for senere bruk";
App::$strings["Saved Folders"] = "Lagrede mapper";
App::$strings["Ability to file posts under folders"] = "Mulighet til å sortere innlegg i mapper";
App::$strings["Alternate Stream Order"] = "Alternativer for sortering";
App::$strings["Ability to order the stream by last post date, last comment date or unthreaded activities"] = "Mulighet for å sortere tidslinjen etter dato for siste innlegg, siste kommentar eller som separate aktiviteter";
App::$strings["Contact Filter"] = "Kontaktfilter";
App::$strings["Ability to display only posts of a selected contact"] = "Mulighet for å kun vise innlegg fra en bestemt kontakt";
App::$strings["Forum Filter"] = "Forumfilter";
App::$strings["Ability to display only posts of a specific forum"] = "Mulighet for å kun vise innlegg i et bestemt forum";
App::$strings["Personal Posts Filter"] = "Filter for personlige innlegg";
App::$strings["Ability to display only posts that you've interacted on"] = "Mulighet til å vise kun innlegg du har deltatt på";
App::$strings["Photos"] = "Bilder";
App::$strings["Photo Location"] = "Bildeplassering";
App::$strings["If location data is available on uploaded photos, link this to a map."] = "Hvis plasseringsdata er tilgjengelige i opplastede bilder, plasser dette på et kart.";
App::$strings["Flag Adult Photos"] = "";
App::$strings["Provide photo edit option to hide inappropriate photos from default album view"] = "";
App::$strings["Profiles"] = "";
App::$strings["Advanced Profiles"] = "Avanserte profiler";
App::$strings["Additional profile sections and selections"] = "Ytterlige seksjoner og utvalg til profilen";
App::$strings["Profile Import/Export"] = "Profil-import/-eksport";
App::$strings["Save and load profile details across sites/channels"] = "Lagre og åpne profildetaljer på tvers av nettsteder/kanaler";
App::$strings["Multiple Profiles"] = "Flere profiler";
App::$strings["Ability to create multiple profiles"] = "Mulig å lage flere profiler";
App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Skjemaets sikkerhetspollett var ikke gyldig. Dette skjedde antakelig fordi skjemaet har vært åpnet for lenge (>3 timer) før det ble sendt inn.";
App::$strings["Delete this item?"] = "Slett dette elementet?";
App::$strings["Item deleted"] = "";
App::$strings["Comment"] = "Kommentar";
App::$strings["%s show all"] = "";
App::$strings["%s show less"] = "";
App::$strings["%s expand"] = "";
App::$strings["%s collapse"] = "";
App::$strings["Password too short"] = "Passordet er for kort";
App::$strings["Passwords do not match"] = "Passordene er ikke like";
App::$strings["everybody"] = "alle";
App::$strings["Secret Passphrase"] = "Hemmelig passordsetning";
App::$strings["Passphrase hint"] = "Hint om passordsetning";
App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Varsel: Tillatelser har blitt endret, men de har ennå ikke blitt sendt inn.";
App::$strings["close all"] = "lukk alle";
App::$strings["Nothing new here"] = "Ikke noe nytt her";
App::$strings["Rate This Channel (this is public)"] = "Vurder denne kanalen (dette er offentlig)";
App::$strings["Rating"] = "Vurdering";
App::$strings["Describe (optional)"] = "Beskriv (valgfritt)";
App::$strings["Please enter a link URL"] = "Vennligst skriv inn en lenke URL";
App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Endringene er ikke lagret. Er du sikker på at du ønsker å forlate denne siden?";
App::$strings["Location"] = "Plassering";
App::$strings["lovely"] = "";
App::$strings["wonderful"] = "";
App::$strings["fantastic"] = "";
App::$strings["great"] = "";
App::$strings["Your chosen nickname was either already taken or not valid. Please use our suggestion ("] = "";
App::$strings[") or enter a new one."] = "";
App::$strings["Thank you, this nickname is valid."] = "";
App::$strings["A channel name is required."] = "";
App::$strings["This is a "] = "";
App::$strings[" channel name"] = "Kanalnavn";
App::$strings["Back to reply"] = "";
App::$strings["Pinned"] = "";
App::$strings["Pin to the top"] = "";
App::$strings["Unpin from the top"] = "";
App::$strings["%d minutes"] = array(
	0 => "%d minutter",
	1 => "%d minutter",
);
App::$strings["about %d hours"] = array(
	0 => "omtrent %d timer",
	1 => "omtrent %d timer",
);
App::$strings["%d days"] = array(
	0 => "%d dager",
	1 => "%d dager",
);
App::$strings["%d months"] = array(
	0 => "%d måneder",
	1 => "%d måneder",
);
App::$strings["%d years"] = array(
	0 => "%d år",
	1 => "%d år",
);
App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo";
App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow";
App::$strings["timeago.suffixAgo"] = "siden";
App::$strings["timeago.suffixFromNow"] = "";
App::$strings["less than a minute"] = "mindre enn ett minutt";
App::$strings["about a minute"] = "omtrent et minutt";
App::$strings["about an hour"] = "omtrent en time";
App::$strings["a day"] = "en dag";
App::$strings["about a month"] = "omtrent en måned";
App::$strings["about a year"] = "omtrent et år";
App::$strings[" "] = " ";
App::$strings["timeago.numbers"] = "timeago.numbers";
App::$strings["__ctx:long__ May"] = "mai";
App::$strings["Jan"] = "Jan";
App::$strings["Feb"] = "Feb";
App::$strings["Mar"] = "Mar";
App::$strings["Apr"] = "Apr";
App::$strings["__ctx:short__ May"] = "mai";
App::$strings["Jun"] = "Jun";
App::$strings["Jul"] = "Jul";
App::$strings["Aug"] = "Aug";
App::$strings["Sep"] = "Sep";
App::$strings["Oct"] = "Okt";
App::$strings["Nov"] = "Nov";
App::$strings["Dec"] = "Des";
App::$strings["Sun"] = "Søn";
App::$strings["Mon"] = "Man";
App::$strings["Tue"] = "Tirs";
App::$strings["Wed"] = "Ons";
App::$strings["Thu"] = "Tors";
App::$strings["Fri"] = "Fre";
App::$strings["Sat"] = "Lør";
App::$strings["__ctx:calendar__ today"] = "idag";
App::$strings["__ctx:calendar__ month"] = "måned";
App::$strings["__ctx:calendar__ week"] = "uke";
App::$strings["__ctx:calendar__ day"] = "dag";
App::$strings["__ctx:calendar__ All day"] = "Hele dagen";
App::$strings["Please stand by while your download is being prepared."] = "";
App::$strings["Email address not valid"] = "";
App::$strings["Help:"] = "Hjelp:";
App::$strings["Help"] = "Hjelp";
App::$strings["Not Found"] = "Ikke funnet";
App::$strings["Image exceeds website size limit of %lu bytes"] = "Bilde overstiger nettstedets størrelsesbegrensning på %lu bytes";
App::$strings["Image file is empty."] = "Bildefilen er tom.";
App::$strings["Unable to process image"] = "Kan ikke behandle bildet";
App::$strings["Photo storage failed."] = "Bildelagring mislyktes.";
App::$strings["a new photo"] = "et nytt bilde";
App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s la inn %2\$s til %3\$s";
App::$strings["Photo Albums"] = "Fotoalbum";
App::$strings["Recent Photos"] = "Nye bilder";
App::$strings["Upload New Photos"] = "Last opp nye bilder";
App::$strings["url: "] = "";
App::$strings["error_code: "] = "";
App::$strings["error_string: "] = "";
App::$strings["content-type: "] = "";
App::$strings["Friendica"] = "Friendica";
App::$strings["OStatus"] = "OStatus";
App::$strings["GNU-Social"] = "";
App::$strings["RSS/Atom"] = "RSS/Atom";
App::$strings["Diaspora"] = "Diaspora";
App::$strings["Facebook"] = "Facebook";
App::$strings["Zot"] = "Zot";
App::$strings["LinkedIn"] = "LinkedIn";
App::$strings["XMPP/IM"] = "XMPP/IM";
App::$strings["MySpace"] = "MySpace";
App::$strings[" and "] = " og ";
App::$strings["public profile"] = "offentlig profil";
App::$strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s endret %2\$s til &ldquo;%3\$s&rdquo;";
App::$strings["Visit %1\$s's %2\$s"] = "Besøk %1\$s sitt %2\$s";
App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s har oppdatert %2\$s, endret %3\$s.";
App::$strings["%d invitation available"] = array(
	0 => "%d invitasjon tilgjengelig",
	1 => "%d invitasjoner tilgjengelig",
);
App::$strings["Advanced"] = "Avansert";
App::$strings["Find Channels"] = "Finn kanaler";
App::$strings["Enter name or interest"] = "Skriv navn eller interesse";
App::$strings["Connect/Follow"] = "Forbindelse/Følg";
App::$strings["Examples: Robert Morgenstein, Fishing"] = "Eksempler: Ola Nordmann, fisking";
App::$strings["Find"] = "Finn";
App::$strings["Channel Suggestions"] = "Kanalforslag";
App::$strings["Random Profile"] = "Tilfeldig profil";
App::$strings["Invite Friends"] = "Inviter venner";
App::$strings["Advanced example: name=fred and country=iceland"] = "Avansert eksempel: navn=fred og land=island";
App::$strings["Common Connections"] = "";
App::$strings["View all %d common connections"] = "";
App::$strings["Select an alternate language"] = "Velg et annet språk";
App::$strings["Unable to import a removed channel."] = "";
App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kan ikke lage en kopi av kanal-identifikatoren på dette systemet. Import mislyktes.";
App::$strings["Cloned channel not found. Import failed."] = "Klonet kanal ble ikke funnet. Import mislyktes.";
App::$strings["Remote authentication"] = "Fjernautentisering";
App::$strings["Click to authenticate to your home hub"] = "Klikk for å godkjennes mot din hjemme-hub";
App::$strings["Channels"] = "Kanaler";
App::$strings["Manage your channels"] = "Behandle kanalene dine";
App::$strings["Settings"] = "Innstillinger";
App::$strings["Account/Channel Settings"] = "Konto-/kanalinnstillinger";
App::$strings["Logout"] = "Logg ut";
App::$strings["End this session"] = "Avslutt denne økten";
App::$strings["Your profile page"] = "Din profilside";
App::$strings["Edit Profiles"] = "Endre profiler";
App::$strings["Manage/Edit profiles"] = "Håndter/endre profiler";
App::$strings["Edit your profile"] = "Rediger profil";
App::$strings["Login"] = "Logg inn";
App::$strings["Sign in"] = "Logg på";
App::$strings["Take me home"] = "";
App::$strings["Log me out of this site"] = "";
App::$strings["Register"] = "Registrer";
App::$strings["Create an account"] = "Lag en konto";
App::$strings["Help and documentation"] = "Hjelp og dokumentasjon";
App::$strings["Search site @name, !forum, #tag, ?docs, content"] = "Søk etter @navn, !forum, #emne, ?dokumentasjon eller innhold";
App::$strings["Admin"] = "Administrator";
App::$strings["Site Setup and Configuration"] = "Nettstedsoppsett og -konfigurasjon";
App::$strings["Loading"] = "Laster...";
App::$strings["@name, #tag, ?doc, content"] = "@navn, #merkelapp, ?dokumentasjon, innhold";
App::$strings["Please wait..."] = "Vennligst vent...";
App::$strings["Apps"] = "Apper";
App::$strings["Channel Apps"] = "";
App::$strings["System Apps"] = "";
App::$strings["Pinned Apps"] = "";
App::$strings["Featured Apps"] = "Fremhevede apper";
App::$strings["Channel"] = "Kanal";
App::$strings["Status Messages and Posts"] = "Statusmeldinger og -innlegg";
App::$strings["About"] = "Om";
App::$strings["Profile Details"] = "Profildetaljer";
App::$strings["Files"] = "Filer";
App::$strings["Files and Storage"] = "Filer og lagring";
App::$strings["Chatrooms"] = "Chatrom";
App::$strings["Bookmarks"] = "Bokmerker";
App::$strings["Saved Bookmarks"] = "Lagrede bokmerker";
App::$strings["Webpages"] = "Websider";
App::$strings["View Webpages"] = "";
App::$strings["Wiki"] = "";
App::$strings["Delegation session ended."] = "";
App::$strings["Logged out."] = "Logget ut.";
App::$strings["Email validation is incomplete. Please check your email."] = "";
App::$strings["Failed authentication"] = "Mislykket autentisering";
App::$strings["Miscellaneous"] = "Forskjellig";
App::$strings["Birthday"] = "Fødselsdag:";
App::$strings["Age: "] = "Alder: ";
App::$strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD eller MM-DD";
App::$strings["never"] = "aldri";
App::$strings["less than a second ago"] = "for mindre enn ett sekund siden";
App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s siden";
App::$strings["__ctx:relative_date__ year"] = array(
	0 => "år",
	1 => "år",
);
App::$strings["__ctx:relative_date__ month"] = array(
	0 => "måned",
	1 => "måneder",
);
App::$strings["__ctx:relative_date__ week"] = array(
	0 => "uke",
	1 => "uker",
);
App::$strings["__ctx:relative_date__ day"] = array(
	0 => "dag",
	1 => "dager",
);
App::$strings["__ctx:relative_date__ hour"] = array(
	0 => "time",
	1 => "timer",
);
App::$strings["__ctx:relative_date__ minute"] = array(
	0 => "minutt",
	1 => "minutter",
);
App::$strings["__ctx:relative_date__ second"] = array(
	0 => "sekund",
	1 => "sekunder",
);
App::$strings["%1\$s's birthday"] = "%1\$s sin fødselsdag";
App::$strings["Happy Birthday %1\$s"] = "Gratulerer med dagen, %1\$s";
App::$strings["INVALID EVENT DISMISSED!"] = "";
App::$strings["Summary: "] = "Sammendrag";
App::$strings["Unknown"] = "Ukjent";
App::$strings["Date: "] = "Dato";
App::$strings["Reason: "] = "";
App::$strings["INVALID CARD DISMISSED!"] = "";
App::$strings["Name: "] = "Navn";
App::$strings["channel"] = "kanal";
App::$strings["likes %1\$s's %2\$s"] = "";
App::$strings["doesn't like %1\$s's %2\$s"] = "";
App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s er nå forbundet med %2\$s";
App::$strings["%1\$s poked %2\$s"] = "%1\$s prikket %2\$s";
App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s er %2\$s";
App::$strings["This is an unsaved preview"] = "";
App::$strings["__ctx:title__ Likes"] = "Liker";
App::$strings["__ctx:title__ Dislikes"] = "Liker ikke";
App::$strings["__ctx:title__ Agree"] = "Enig";
App::$strings["__ctx:title__ Disagree"] = "Uenig";
App::$strings["__ctx:title__ Abstain"] = "Avstår";
App::$strings["__ctx:title__ Attending"] = "Deltar";
App::$strings["__ctx:title__ Not attending"] = "Deltar ikke";
App::$strings["__ctx:title__ Might attend"] = "Deltar kanskje";
App::$strings["Select"] = "Velg";
App::$strings["Toggle Star Status"] = "Skru av og på stjernestatus";
App::$strings["Private Message"] = "Privat melding";
App::$strings["Message signature validated"] = "Innleggets signatur er bekreftet";
App::$strings["Message signature incorrect"] = "Innleggets signatur er feil";
App::$strings["Approve"] = "Godkjenn";
App::$strings["View %s's profile @ %s"] = "Vis %s sin profile @ %s";
App::$strings["Categories:"] = "Kategorier:";
App::$strings["Filed under:"] = "Sortert under:";
App::$strings["from %s"] = "fra %s";
App::$strings["last edited: %s"] = "sist endret: %s";
App::$strings["Expires: %s"] = "Utløper: %s";
App::$strings["Please wait"] = "Vennligst vent";
App::$strings["remove"] = "fjern";
App::$strings["Loading..."] = "Laster...";
App::$strings["Conversation Features"] = "Samtaleinnstillinger";
App::$strings["Delete Selected Items"] = "Slett valgte elementer";
App::$strings["View Source"] = "Vis kilde";
App::$strings["Follow Thread"] = "Følg tråd";
App::$strings["Unfollow Thread"] = "Ikke følg tråd";
App::$strings["Recent Activity"] = "Nylig aktivitet";
App::$strings["Connect"] = "Koble";
App::$strings["Edit Connection"] = "Endre forbindelse";
App::$strings["Poke"] = "Prikk";
App::$strings["Approve this item"] = "Fjern denne filen";
App::$strings["Delete this item"] = "Slett dette elementet?";
App::$strings["%s likes this."] = "%s liker dette.";
App::$strings["%s doesn't like this."] = "%s liker ikke dette.";
App::$strings["<span  %1\$s>%2\$d people</span> like this."] = array(
	0 => "<span %1\$s>%2\$d person</span> liker dette.",
	1 => "<span %1\$s>%2\$d personer</span> liker dette.",
);
App::$strings["<span  %1\$s>%2\$d people</span> don't like this."] = array(
	0 => "<span %1\$s>%2\$d person</span> liker ikke dette.",
	1 => "<span %1\$s>%2\$d personer</span> liker ikke dette.",
);
App::$strings["and"] = "og";
App::$strings[", and %d other people"] = array(
	0 => ", og %d annen person",
	1 => ", og %d andre personer",
);
App::$strings["%s like this."] = "%s liker dette.";
App::$strings["%s don't like this."] = "%s liker ikke dette.";
App::$strings["Toggle poll"] = "Spørreskjema (på/av)";
App::$strings["Option"] = "Valg";
App::$strings["Add option"] = "Legg til valg";
App::$strings["Minutes"] = "Minutter";
App::$strings["Hours"] = "timer";
App::$strings["Days"] = "dager";
App::$strings["Allow multiple answers"] = "Tillat flere svar";
App::$strings["Summary (optional)"] = "Sammendrag (valgfritt)";
App::$strings["__ctx:noun__ Like"] = array(
	0 => "Liker",
	1 => "Liker",
);
App::$strings["__ctx:noun__ Dislike"] = array(
	0 => "Liker ikke",
	1 => "Liker ikke",
);
App::$strings["__ctx:noun__ Attending"] = array(
	0 => "Deltar",
	1 => "Deltar",
);
App::$strings["__ctx:noun__ Not Attending"] = array(
	0 => "Deltar ikke",
	1 => "Deltar ikke",
);
App::$strings["__ctx:noun__ Undecided"] = array(
	0 => "Ikke bestemt",
	1 => "Ikke bestemt",
);
App::$strings["__ctx:noun__ Agree"] = array(
	0 => "Enig",
	1 => "Enige",
);
App::$strings["__ctx:noun__ Disagree"] = array(
	0 => "Uenig",
	1 => "Uenige",
);
App::$strings["__ctx:noun__ Abstain"] = array(
	0 => "Avstår",
	1 => "Avstår",
);
App::$strings["Select a profile to assign to this contact"] = "";
App::$strings["Frequently"] = "Ofte";
App::$strings["Hourly"] = "Hver time";
App::$strings["Twice daily"] = "To ganger daglig";
App::$strings["Daily"] = "Daglig";
App::$strings["Weekly"] = "Ukentlig";
App::$strings["Monthly"] = "Månedlig";
App::$strings["Currently Male"] = "For tiden mann";
App::$strings["Currently Female"] = "For tiden kvinne";
App::$strings["Mostly Male"] = "For det meste mann";
App::$strings["Mostly Female"] = "For det meste kvinne";
App::$strings["Transgender"] = "Transkjønnet";
App::$strings["Intersex"] = "interkjønnet";
App::$strings["Transsexual"] = "Transseksuell";
App::$strings["Hermaphrodite"] = "Hermafroditt";
App::$strings["Neuter"] = "Intetkjønn";
App::$strings["Non-specific"] = "Ubestemt";
App::$strings["Undecided"] = "Ubestemt";
App::$strings["Males"] = "Menn";
App::$strings["Females"] = "Kvinner";
App::$strings["Gay"] = "Homo";
App::$strings["Lesbian"] = "Lesbisk";
App::$strings["No Preference"] = "Ingen preferanse";
App::$strings["Bisexual"] = "Biseksuell";
App::$strings["Autosexual"] = "Autoseksuell";
App::$strings["Abstinent"] = "Avholdende";
App::$strings["Virgin"] = "Jomfru";
App::$strings["Deviant"] = "Avviker";
App::$strings["Fetish"] = "Fetisj";
App::$strings["Oodles"] = "Masse";
App::$strings["Nonsexual"] = "Ikke-seksuell";
App::$strings["Single"] = "Enslig";
App::$strings["Lonely"] = "Ensom";
App::$strings["Available"] = "Tilgjengelig";
App::$strings["Unavailable"] = "Ikke tilgjengelig";
App::$strings["Has crush"] = "Er forelsket";
App::$strings["Infatuated"] = "Betatt";
App::$strings["Dating"] = "Sammen med";
App::$strings["Unfaithful"] = "Utro";
App::$strings["Sex Addict"] = "Sexavhengig";
App::$strings["Friends"] = "Venner";
App::$strings["Friends/Benefits"] = "Venner/Frynsegoder";
App::$strings["Casual"] = "Tilfeldig";
App::$strings["Engaged"] = "Forlovet";
App::$strings["Married"] = "Gift";
App::$strings["Imaginarily married"] = "Gift i fantasien";
App::$strings["Partners"] = "Partnere";
App::$strings["Cohabiting"] = "Samboer";
App::$strings["Common law"] = "Samboer";
App::$strings["Happy"] = "Lykkelig";
App::$strings["Not looking"] = "Ikke på utkikk";
App::$strings["Swinger"] = "Partnerbytte";
App::$strings["Betrayed"] = "Bedratt";
App::$strings["Separated"] = "Separert";
App::$strings["Unstable"] = "Ustabilt";
App::$strings["Divorced"] = "Skilt";
App::$strings["Imaginarily divorced"] = "Skilt i fantasien";
App::$strings["Widowed"] = "Enke";
App::$strings["Uncertain"] = "Usikkert";
App::$strings["It's complicated"] = "Det er komplisert";
App::$strings["Don't care"] = "Bryr meg ikke";
App::$strings["Ask me"] = "Spør meg";
App::$strings["New window"] = "Nytt vindu";
App::$strings["Open the selected location in a different window or browser tab"] = "Åpne det valgte stedet i et annet vindu eller nettleser-fane";
App::$strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "En slettet gruppe med dette navnet ble gjenopprettet. Eksisterende tillatelser for elementet <strong>kan</strong> gjelde for denne gruppen og fremtidige medlemmer. Hvis du ønsket noe annet, vennligst lag en ny gruppe med et annet navn.";
App::$strings["Add new connections to this privacy group"] = "Legg nye forbindelser i denne personverngruppen";
App::$strings["edit"] = "endre";
App::$strings["Privacy Groups"] = "Personverngrupper";
App::$strings["Edit group"] = "Endre gruppe";
App::$strings["Manage privacy groups"] = "";
App::$strings["Channels not in any privacy group"] = "Kanaler uten personverngruppe";
App::$strings["add"] = "legg til";
App::$strings["Trending"] = "";
App::$strings["Tags"] = "Merkelapper";
App::$strings["Keywords"] = "Nøkkelord";
App::$strings["have"] = "har";
App::$strings["has"] = "har";
App::$strings["want"] = "ønsker";
App::$strings["wants"] = "ønsker";
App::$strings["like"] = "liker";
App::$strings["likes"] = "liker";
App::$strings["dislike"] = "misliker";
App::$strings["dislikes"] = "misliker";
App::$strings["Visible to anybody on the internet."] = "Synlig for enhver på Internett.";
App::$strings["Visible to you only."] = "Synlig bare for deg.";
App::$strings["Visible to anybody in this network."] = "Synlig for enhver i dette nettverket.";
App::$strings["Visible to anybody authenticated."] = "Synlig for enhver som er autentisert.";
App::$strings["Visible to anybody on %s."] = "Synlig for alle på %s.";
App::$strings["Visible to all connections."] = "Synlig for alle forbindelser.";
App::$strings["Visible to approved connections."] = "Synlig for godkjente forbindelser.";
App::$strings["Visible to specific connections."] = "Synlig for spesifikke forbindelser.";
App::$strings["&#x1f501; Repeated %1\$s's %2\$s"] = "";
App::$strings["Privacy group not found."] = "Personverngruppen ble ikke funnet.";
App::$strings["Privacy group is empty."] = "Personverngruppen er tom.";
App::$strings["Privacy group: %s"] = "Personverngruppe: %s";
App::$strings["Connection: %s"] = "Forbindelse: %s";
App::$strings["Connection not found."] = "Forbindelsen ble ikke funnet.";
App::$strings["female"] = "kvinne";
App::$strings["%1\$s updated her %2\$s"] = "%1\$s oppdaterte %2\$s sitt";
App::$strings["male"] = "mann";
App::$strings["%1\$s updated his %2\$s"] = "%1\$s oppdaterte %2\$s sitt";
App::$strings["%1\$s updated their %2\$s"] = "%1\$s oppdaterte %2\$s deres";
App::$strings["profile photo"] = "profilbilde";
App::$strings["[Edited %s]"] = "";
App::$strings["__ctx:edit_activity__ Post"] = "Innlegg";
App::$strings["__ctx:edit_activity__ Comment"] = "Kommentar";
App::$strings["The provided email address is not valid"] = "";
App::$strings["The provided email domain is not among those allowed on this site"] = "";
App::$strings["The provided email address is already registered at this site"] = "";
App::$strings["There is a pending registration for this address - click \"Register\" to continue verification"] = "";
App::$strings["An invitation is required."] = "En invitasjon er påkrevd.";
App::$strings["Invitation could not be verified."] = "Invitasjon kunne ikke bekreftes.";
App::$strings["Please enter the required information."] = "Vennligst skriv inn nødvendig informasjon.";
App::$strings["Failed to store account information."] = "Mislyktes med å lagre kontoinformasjon.";
App::$strings["Registration confirmation for %s"] = "Registreringsbekreftelse for %s";
App::$strings["Registration request at %s"] = "Registreringsforespørsel hos %s";
App::$strings["your registration password"] = "ditt registreringspassord";
App::$strings["Registration details for %s"] = "Registreringsdetaljer for %s";
App::$strings["Account approved."] = "Konto godkjent.";
App::$strings["Registration revoked for %s"] = "Registrering trukket tilbake for %s";
App::$strings["Could not revoke registration for %s"] = "";
App::$strings["Click here to upgrade."] = "Klikk her for å oppgradere.";
App::$strings["This action exceeds the limits set by your subscription plan."] = "Denne handlingen går utenfor grensene satt i din abonnementsplan.";
App::$strings["This action is not available under your subscription plan."] = "Denne handlingen er ikke tilgjengelig i din abonnementsplan.";
App::$strings["open"] = "";
App::$strings["closed"] = "";
App::$strings["Registration is currently"] = "";
App::$strings["please come back"] = "";
App::$strings["Profile Photos"] = "Profilbilder";
App::$strings["Item was not found."] = "Elementet ble ikke funnet.";
App::$strings["Unknown error."] = "";
App::$strings["No source file."] = "Ingen kildefil.";
App::$strings["Cannot locate file to replace"] = "Kan ikke finne filen som skal byttes ut";
App::$strings["Cannot locate file to revise/update"] = "Finner ikke filen som skal revideres/oppdateres";
App::$strings["File exceeds size limit of %d"] = "Filens størrelse overgår grensen på %d";
App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Du har nådd din lagringsgrense for vedlegg på %1$.0f Mbytes.";
App::$strings["File upload failed. Possible system limit or action terminated."] = "Mislyktes med å laste opp filen. Mulig systemgrense eller handling avbrutt.";
App::$strings["Stored file could not be verified. Upload failed."] = "Lagret fil kunne ikke bekreftes. Opplasting mislyktes.";
App::$strings["Path not available."] = "Stien er ikke tilgjengelig.";
App::$strings["Empty pathname"] = "Tomt sti-navn";
App::$strings["duplicate filename or path"] = "duplikat av filnavn eller sti";
App::$strings["Path not found."] = "Stien ble ikke funnet.";
App::$strings["mkdir failed."] = "mkdir mislyktes.";
App::$strings["database storage failed."] = "databaselagring mislyktes.";
App::$strings["Empty path"] = "Tom sti";
App::$strings["%s shared an %s with you"] = "Filer: delt med meg";
App::$strings["%s shared a %s with you"] = "";
App::$strings["image"] = "Bilde";
App::$strings["%1\$s's bookmarks"] = "%1\$s sine bokmerker";
App::$strings["Image/photo"] = "Bilde/fotografi";
App::$strings["Encrypted content"] = "Kryptert innhold";
App::$strings["Install %1\$s element %2\$s"] = "";
App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dette innlegget inneholder det installerbare elementet %s, men du mangler tillatelse til å installere det på dette nettstedet.";
App::$strings["webpage"] = "nettside";
App::$strings["layout"] = "layout";
App::$strings["block"] = "byggekloss";
App::$strings["menu"] = "meny";
App::$strings["card"] = "";
App::$strings["article"] = "";
App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s skrev følgende %2\$s %3\$s";
App::$strings["Click to open/close"] = "Klikk for å åpne/lukke";
App::$strings["spoiler"] = "";
App::$strings["View article"] = "";
App::$strings["View summary"] = "";
App::$strings["$1 wrote:"] = "$1 skrev:";
App::$strings["Unable to obtain identity information from database"] = "Klarer ikke å få tak i identitetsinformasjon fra databasen";
App::$strings["Empty name"] = "Mangler navn";
App::$strings["Name too long"] = "Navnet er for langt";
App::$strings["No account identifier"] = "Ingen kontoidentifikator";
App::$strings["Nickname is required."] = "Kallenavn er påkrevd.";
App::$strings["Reserved nickname. Please choose another."] = "Reservert kallenavn. Vennligst velg et annet.";
App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Kallenavnet inneholder tegn som ikke er støttet eller det er allerede i bruk på dette nettstedet.";
App::$strings["Unable to retrieve created identity"] = "Klarer ikke å hente den lagede identiteten";
App::$strings["Default Profile"] = "Standardprofil";
App::$strings["Unable to retrieve modified identity"] = "";
App::$strings["Requested channel is not available"] = "";
App::$strings["Change profile photo"] = "Endre profilbilde";
App::$strings["Create New Profile"] = "Lag ny profil";
App::$strings["Profile Image"] = "Profilbilde";
App::$strings["Visible to everybody"] = "";
App::$strings["Edit visibility"] = "Endre synlighet";
App::$strings["Gender:"] = "Kjønn:";
App::$strings["Status:"] = "Status:";
App::$strings["Homepage:"] = "Hjemmeside:";
App::$strings["Hometown:"] = "Hjemby:";
App::$strings["Online Now"] = "Online nå";
App::$strings["This channel has not added a profile description yet"] = "";
App::$strings["Change your profile photo"] = "";
App::$strings["Trans"] = "";
App::$strings["Full Name:"] = "Fullt navn:";
App::$strings["Like this channel"] = "Lik denne kanalen";
App::$strings["j F, Y"] = "j F, Y";
App::$strings["j F"] = "j F";
App::$strings["Birthday:"] = "Fødselsdag:";
App::$strings["Age:"] = "Alder:";
App::$strings["for %1\$d %2\$s"] = "for %1\$d %2\$s";
App::$strings["Tags:"] = "Merkelapper:";
App::$strings["Sexual Preference:"] = "Seksuell preferanse:";
App::$strings["Political Views:"] = "Politiske synspunkter:";
App::$strings["Religion:"] = "Religion:";
App::$strings["About:"] = "Om:";
App::$strings["Hobbies/Interests:"] = "Hobbyer/interesser:";
App::$strings["Likes:"] = "Liker:";
App::$strings["Dislikes:"] = "Misliker:";
App::$strings["Contact information and Social Networks:"] = "Kontaktinformasjon og sosiale nettverk:";
App::$strings["My other channels:"] = "Mine andre kanaler:";
App::$strings["Musical interests:"] = "Musikkinteresse:";
App::$strings["Books, literature:"] = "Bøker, litteratur:";
App::$strings["Television:"] = "TV:";
App::$strings["Film/dance/culture/entertainment:"] = "Film/dans/kultur/underholdning:";
App::$strings["Love/Romance:"] = "Kjærlighet/romantikk:";
App::$strings["Work/employment:"] = "Arbeid/sysselsetting:";
App::$strings["School/education:"] = "Skole/utdannelse:";
App::$strings["Profile"] = "Profil";
App::$strings["Like this thing"] = "Lik denne tingen";
App::$strings["Export"] = "Eksport";
App::$strings["cover photo"] = "forsidebilde";
App::$strings["Remote Authentication"] = "Fjernautentisering";
App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Skriv din kanaladresse (for eksempel channel@exampel.com)";
App::$strings["Authenticate"] = "Autentiser";
App::$strings["Account '%s' deleted"] = "Kontoen '%s' slettet";
App::$strings["Visible to your default audience"] = "Synlig for ditt standard publikum";
App::$strings["Profile-Based Privacy Groups"] = "";
App::$strings["Private Forum"] = "";
App::$strings["Forums"] = "Forum";
App::$strings["Only me"] = "Kun meg";
App::$strings["Share with"] = "Del med";
App::$strings["Custom selection"] = "Tilpasset utvalg";
App::$strings["Select \"Allow\" to allow viewing. \"Don't allow\" lets you override and limit the scope of \"Allow\"."] = "";
App::$strings["Allow"] = "";
App::$strings["Don't allow"] = "";
App::$strings["Close"] = "Lukk";
App::$strings["Post permissions %s cannot be changed %s after a post is shared.</br />These permissions set who is allowed to view the post."] = "Tillatelsene til innlegget %s kan ikke endres %s etter at innlegget er delt.</br />Disse tillatelsene avgjør hvem som kan se innlegget.";
App::$strings["View PDF"] = "";
App::$strings[" by "] = " av ";
App::$strings[" on "] = "På";
App::$strings["Embedded content"] = "Innebygget innhold";
App::$strings["Embedding disabled"] = "Innbygging avskrudd";
App::$strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$s ønsker %2\$s velkommen";
App::$strings["Commented Date"] = "";
App::$strings["Order by last commented date"] = "";
App::$strings["Posted Date"] = "";
App::$strings["Order by last posted date"] = "";
App::$strings["Date Unthreaded"] = "";
App::$strings["Order unthreaded by date"] = "";
App::$strings["Stream Order"] = "";
App::$strings["Add new guest"] = "";
App::$strings["Guest access"] = "";
App::$strings["Archives"] = "Arkiv";
App::$strings["View Photo"] = "Vis foto";
App::$strings["Edit Album"] = "Endre album";
App::$strings["Upload"] = "Last opp";
App::$strings["Tasks"] = "Oppgaver";
App::$strings["Chat Members"] = "";
App::$strings["Welcome"] = "Velkommen";
App::$strings["No recent activities"] = "Nylig aktivitet";
App::$strings["__ctx:noun__ new connection"] = array(
	0 => "ny forbindelse",
	1 => "nye forbindelser",
);
App::$strings["__ctx:noun__ notice"] = array(
	0 => "varsel",
	1 => "varsel",
);
App::$strings["I will attend"] = "Jeg vil delta";
App::$strings["I will not attend"] = "Jeg deltar ikke";
App::$strings["I might attend"] = "Jeg vil kanskje delta";
App::$strings["I agree"] = "Jeg er enig";
App::$strings["I disagree"] = "Jeg er uenig";
App::$strings["I abstain"] = "Jeg avstår";
App::$strings["Share This"] = "Del dette";
App::$strings["share"] = "del";
App::$strings["View %s's profile - %s"] = "Vis %s sin profil - %s";
App::$strings["via"] = "via";
App::$strings["Attendance Options"] = "";
App::$strings["Voting Options"] = "";
App::$strings["Pinned post"] = "";
App::$strings["Don't show"] = "Ikke vis";
App::$strings["__ctx:widget__ Activity"] = "aktivitet";
App::$strings["Select Channel"] = "";
App::$strings["Read-write"] = "";
App::$strings["Read-only"] = "";
App::$strings["Channel Calendar"] = "";
App::$strings["CalDAV Calendars"] = "";
App::$strings["Shared CalDAV Calendars"] = "";
App::$strings["Share this calendar"] = "";
App::$strings["Calendar name and color"] = "";
App::$strings["Create new CalDAV calendar"] = "";
App::$strings["Create"] = "Lag";
App::$strings["Calendar Name"] = "";
App::$strings["Calendar Tools"] = "";
App::$strings["Channel Calendars"] = "";
App::$strings["Import calendar"] = "";
App::$strings["Select a calendar to import to"] = "";
App::$strings["Addressbooks"] = "";
App::$strings["Addressbook name"] = "";
App::$strings["Create new addressbook"] = "";
App::$strings["Addressbook Name"] = "";
App::$strings["Addressbook Tools"] = "";
App::$strings["Import addressbook"] = "";
App::$strings["Select an addressbook to import to"] = "";
App::$strings["Remove term"] = "Fjern begrep";
App::$strings["Suggested Chatrooms"] = "Foreslåtte chatrom";
App::$strings["Account settings"] = "Kontoinnstillinger";
App::$strings["Channel settings"] = "Kanalinnstillinger";
App::$strings["Privacy settings"] = "Personverninnstillinger";
App::$strings["Display settings"] = "Visningsinnstillinger";
App::$strings["Manage locations"] = "";
App::$strings["Overview"] = "";
App::$strings["Ignore/Hide"] = "Ignorer/Skjul";
App::$strings["Suggestions"] = "Forslag";
App::$strings["See more..."] = "Se mer...";
App::$strings["Bookmarked Chatrooms"] = "Bokmerkede chatrom";
App::$strings["App Categories"] = "";
App::$strings["Toggle post editor"] = "Vis redigering av innlegg";
App::$strings["Toggle personal notes"] = "";
App::$strings["Channel activities"] = "";
App::$strings["Add new role"] = "";
App::$strings["Contact roles"] = "";
App::$strings["Role members"] = "";
App::$strings["photo/image"] = "foto/bilde";
App::$strings["Site"] = "Nettsted";
App::$strings["Accounts"] = "Kontoer";
App::$strings["Member registrations waiting for confirmation"] = "";
App::$strings["Security"] = "Sikkerhet";
App::$strings["Features"] = "Funksjoner";
App::$strings["Addons"] = "Tillegg";
App::$strings["Themes"] = "Utseende";
App::$strings["Inspect queue"] = "Inspiser kø";
App::$strings["Queueworker"] = "";
App::$strings["Profile Fields"] = "Profilfelter";
App::$strings["DB updates"] = "Databaseoppdateringer";
App::$strings["Logs"] = "Logger";
App::$strings["Addon Features"] = "";
App::$strings["Direct Messages"] = "Direktemeldinger";
App::$strings["Show direct (private) messages"] = "Vis direktemeldinger (private meldinger)";
App::$strings["Events"] = "Hendelser";
App::$strings["Show posts that include events"] = "";
App::$strings["Polls"] = "Spørreskjema";
App::$strings["Show posts that include polls"] = "Vis innlegg som inneholder spørreskjema";
App::$strings["Show posts related to the %s privacy group"] = "";
App::$strings["Show my privacy groups"] = "";
App::$strings["Show posts to this forum"] = "";
App::$strings["Show forums"] = "";
App::$strings["Starred Posts"] = "";
App::$strings["Show posts that I have starred"] = "";
App::$strings["Personal Posts"] = "";
App::$strings["Show posts that mention or involve me"] = "";
App::$strings["Show posts that I have filed to %s"] = "";
App::$strings["Show filed post categories"] = "";
App::$strings["Panel search"] = "";
App::$strings["Filter by name"] = "Filtrer etter navn";
App::$strings["Remove active filter"] = "";
App::$strings["Stream Filters"] = "Filtere for tidslinjen";
App::$strings["App Collections"] = "";
App::$strings["Installed apps"] = "";
App::$strings["Available Apps"] = "";
App::$strings["Add new group"] = "";
App::$strings["Privacy groups"] = "Personverngrupper";
App::$strings["Rating Tools"] = "Vurderingsverktøy";
App::$strings["Rate Me"] = "Vurder meg";
App::$strings["View Ratings"] = "Vis vurderinger";
App::$strings["Click to show more"] = "";
App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Du har %1$.0f av %2$.0f tillate forbindelser.";
App::$strings["Add New Connection"] = "Legg til ny forbindelse";
App::$strings["Enter channel address"] = "Skriv kanaladressen";
App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Eksempel: ola@eksempel.no, https://eksempel.no/kari";
App::$strings["Public and restricted messages"] = "";
App::$strings["Direct messages"] = "Direktemeldinger";
App::$strings["Starred messages"] = "";
App::$strings["Notices"] = "Varsel";
App::$strings["No messages"] = "Ingen meldinger";
App::$strings["Unseen"] = "";
App::$strings["Filter by name or address"] = "Filtrer etter navn eller adresse";
App::$strings["Profile Creation"] = "Oppretting av profil";
App::$strings["Upload profile photo"] = "Last opp profilbilde";
App::$strings["Upload cover photo"] = "Last opp bannerbilde";
App::$strings["Find and Connect with others"] = "Finn andre";
App::$strings["View the directory"] = "Se i katalogen";
App::$strings["View friend suggestions"] = "Vis venneforslag";
App::$strings["Manage your connections"] = "Behandle forbindelser";
App::$strings["Communicate"] = "Kommuniser";
App::$strings["View your channel homepage"] = "Vis kanalens hjemmeside";
App::$strings["View your network stream"] = "Vis nettverksstrømmen";
App::$strings["Documentation"] = "Dokumentasjon";
App::$strings["Missing Features?"] = "Noe som mangler?";
App::$strings["Pin apps to navigation bar"] = "Fest apper til navigasjonslinjen";
App::$strings["Install more apps"] = "Legg til flere apper";
App::$strings["View public stream"] = "";
App::$strings["New Member Links"] = "Lenker for nye medlemmer";
App::$strings["Read mode"] = "";
App::$strings["Edit mode"] = "";
App::$strings["Editing"] = "";
App::$strings["Saving"] = "";
App::$strings["Saved"] = "";
App::$strings["Me"] = "Meg";
App::$strings["Family"] = "Familie";
App::$strings["Acquaintances"] = "Bekjente";
App::$strings["All"] = "Alle";
App::$strings["Refresh"] = "Forny";
App::$strings["New network activity notifications"] = "";
App::$strings["Network stream"] = "";
App::$strings["Mark all notifications read"] = "";
App::$strings["Show new posts only"] = "";
App::$strings["New home activity notifications"] = "";
App::$strings["Home stream"] = "";
App::$strings["Mark all notifications seen"] = "";
App::$strings["New direct messages notifications"] = "Varsel om nye direktemeldinger";
App::$strings["Direct messages stream"] = "Strøm for direktemeldinger";
App::$strings["New events notifications"] = "";
App::$strings["View events"] = "";
App::$strings["Mark all events seen"] = "Merk alle hendelser som sett";
App::$strings["New Connections"] = "Nye forbindelser";
App::$strings["New connections notifications"] = "";
App::$strings["View all connections"] = "";
App::$strings["New files notifications"] = "";
App::$strings["View all notices"] = "";
App::$strings["Mark all notices seen"] = "";
App::$strings["Registrations"] = "";
App::$strings["New registrations notifications"] = "";
App::$strings["Public Stream"] = "";
App::$strings["New public stream notifications"] = "";
App::$strings["Public stream"] = "";
App::$strings["Sorry, you have got no notifications at the moment"] = "";
App::$strings["This channel is limited to %d tokens"] = "";
App::$strings["Name and Password are required."] = "";
App::$strings["Token saved."] = "";
App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in privacy groups and visitors may login using these credentials to access private content."] = "";
App::$strings["Please select a role for this guest!"] = "";
App::$strings["Select a role for this guest"] = "";
App::$strings["Guest Access"] = "";
App::$strings["Login Name"] = "";
App::$strings["Login Password"] = "";
App::$strings["Expires (yyyy-mm-dd)"] = "";
App::$strings["File not found."] = "Filen ble ikke funnet.";
App::$strings["Can not copy folder into itself."] = "";
App::$strings["Can not move folder \"%s\" into itself."] = "";
App::$strings["No such group"] = "Gruppen finnes ikke";
App::$strings["No such channel"] = "Ingen slik kanal";
App::$strings["Search Results For:"] = "Søkeresultat for:";
App::$strings["Reset form"] = "Nullstill skjema";
App::$strings["Privacy group is empty"] = "Personverngruppen er tom";
App::$strings["Privacy group: "] = "Personverngruppe: ";
App::$strings["Not a zip file or zip file corrupted."] = "";
App::$strings["Import Items"] = "Importer elementer";
App::$strings["Use this form to import existing posts and content from an export file."] = "Bruk dette skjemaet for å importere eksisterende innlegg og innhold fra en eksportfil.";
App::$strings["File to Upload"] = "Fil som skal lastes opp";
App::$strings["Imported file is empty."] = "Importert fil er tom.";
App::$strings["Content import completed"] = "";
App::$strings["Chatroom import completed"] = "";
App::$strings["Channel calendar import 1/2 completed"] = "";
App::$strings["Channel calendar import 2/2 completed"] = "";
App::$strings["Menu import completed"] = "";
App::$strings["Wiki import completed"] = "";
App::$strings["Webpages import completed"] = "";
App::$strings["Nothing to import."] = "Ingenting å importere.";
App::$strings["Unable to download data from old server"] = "Ikke i stand til å laste ned data fra gammel tjener";
App::$strings["Your service plan only allows %d channels."] = "Din tjenesteplan tillater bare %d kanaler.";
App::$strings["No channel. Import failed."] = "Ingen kanal. Import mislyktes.";
App::$strings["Automatic content and files import was not possible due to API version incompatiblity. Please import content and files manually!"] = "";
App::$strings["You must be logged in to use this feature."] = "Du må være innlogget for å bruke denne funksjonen.";
App::$strings["Channel Import"] = "";
App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Bruk dette skjemaet for å importere en eksisterende kanal fra en annen tjener/hub. Du kan hente inn kanalidentiteten fra den gamle tjeneren/huben via nettverket eller ved å bruke en eksportfil.";
App::$strings["Or provide the old server/hub details"] = "Eller oppgi detaljene fra den gamle tjeneren/hub-en";
App::$strings["Your old identity address (xyz@example.com)"] = "Din gamle identitetsadresse (xyz@example.com)";
App::$strings["Your old login email address"] = "Din gamle innloggings e-postadresse";
App::$strings["Your old login password"] = "Ditt gamle innloggingspassord";
App::$strings["Import your items and files (limited by available memory)"] = "";
App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Enten du tar det ene eller det andre valget, vennligst angi om du vil at denne hubben skal være din nye primære adresse, eller om din gamle plassering skal fortsette å ha denne rollen. Du kan lage innlegg fra den ene eller den andre plasseringen, men bare en av dem kan markeres som den primære plasseringen for filer, bilder og media.";
App::$strings["Make this hub my primary location"] = "Gjør dette nettstedet til min primære plassering";
App::$strings["Move this channel (disable all previous locations)"] = "";
App::$strings["Use this channel nickname instead of the one provided"] = "";
App::$strings["Leave blank to keep your existing channel nickname. You will be randomly assigned a similar nickname if either name is already allocated on this site."] = "";
App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Denne prosessen kan ta flere minutter å fullføre. Vennligst send inn dette skjemaet bare en gang og la siden være åpen inntil den er ferdig.";
App::$strings["You must be logged in to see this page."] = "Du må være innloegget for å se denne siden.";
App::$strings["Update to Hubzilla 5.0 step 2"] = "";
App::$strings["To complete the update please run"] = "";
App::$strings["php util/z6convert.php"] = "";
App::$strings["from the terminal."] = "";
App::$strings["Email address required"] = "";
App::$strings["No password provided"] = "";
App::$strings["Terms of Service not accepted"] = "";
App::$strings["Invitation code succesfully applied"] = "";
App::$strings["Invitation not in time or too late"] = "";
App::$strings["Invitation email failed"] = "";
App::$strings["Invitation code failed"] = "";
App::$strings["Invitations are not available"] = "";
App::$strings["Registration on this hub is by invitation only"] = "";
App::$strings["New register request"] = "";
App::$strings["Error creating dId A"] = "";
App::$strings["Registration on this hub is disabled."] = "Registrering ved dette nettstedet er skrudd av.";
App::$strings["Registration on this hub is by approval only."] = "Registrering ved dette nettstedet skjer på godkjenning.";
App::$strings["Register at another affiliated hub in case when prefered"] = "";
App::$strings["Registration on this hub is by invitation only."] = "";
App::$strings["Register at another affiliated hub"] = "";
App::$strings["Terms of Service"] = "Tjenesteavtale";
App::$strings["I accept the %s for this website"] = "Jeg godtar %s for dette nettstedet";
App::$strings["I am over %s years of age and accept the %s for this website"] = "";
App::$strings["Your email address"] = "Din e-postadresse";
App::$strings["Optional"] = "Valgfritt";
App::$strings["Choose a password"] = "Velg et passord";
App::$strings["Please re-enter your password"] = "Vennligst skriv ditt passord en gang til";
App::$strings["Please enter your invitation code"] = "Vennligst skriv din invitasjonskode";
App::$strings["Your name"] = "";
App::$strings["Real name is preferred"] = "";
App::$strings["Choose a short nickname"] = "Velg et kort kallenavn";
App::$strings["Your nickname will be used to create an easy to remember channel address"] = "";
App::$strings["Why do you want to join this hub?"] = "";
App::$strings["This will help to review your registration"] = "";
App::$strings["Registration"] = "Registrering";
App::$strings["I have an invite code"] = "";
App::$strings["This site has exceeded the number of allowed daily account registrations."] = "";
App::$strings["Public access denied."] = "Offentlig tilgang avvist.";
App::$strings["Items tagged with: %s"] = "Elementer merket med: %s";
App::$strings["Search results for: %s"] = "Søkeresultater for: %s";
App::$strings["\$Projectname Server - Setup"] = "\$Projectname-tjener - oppsett";
App::$strings["Could not connect to database."] = "Fikk ikke kontakt med databasen.";
App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Fikk ikke kontakt med det angitte nettstedets URL. Problemet kan muligens skyldes SSL-sertifikatet eller DNS.";
App::$strings["Could not create table."] = "Kunne ikke lage tabellen.";
App::$strings["Your site database has been installed."] = "Databasen til ditt nettsted har blitt installert.";
App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Du må kanskje importere filen \"install/schmea_xxx.sql\" manuelt ved å bruke en databaseklient.";
App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Vennligst les filen \"install/INSTALL.txt\".";
App::$strings["System check"] = "Systemsjekk";
App::$strings["Next"] = "Neste";
App::$strings["Check again"] = "Sjekk igjen";
App::$strings["Database connection"] = "Databaseforbindelse";
App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "For å installere \$Projectname må du oppgi hvordan din database kan kontaktes.";
App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Vennligst kontakt din nettstedstilbyder eller nettstedsadministrator hvis du har spørsmål om disse innstillingene.";
App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Databasen du oppgir nedenfor må finnes på forhånd. Hvis den ikke finnes, vennligst lag den før du fortsetter.";
App::$strings["Database Server Name"] = "Navn på databasetjener";
App::$strings["Default is 127.0.0.1"] = "Standard er 127.0.0.1";
App::$strings["Database Port"] = "Databaseport";
App::$strings["Communication port number - use 0 for default"] = "Kommunikasjonsportnummer - bruk 0 for standard";
App::$strings["Database Login Name"] = "Database innloggingsnavn";
App::$strings["Database Login Password"] = "Database innloggingspassord";
App::$strings["Database Name"] = "Databasenavn";
App::$strings["Database Type"] = "Databasetype";
App::$strings["Site administrator email address"] = "E-postadressen til administrator ved nettstedet";
App::$strings["Your account email address must match this in order to use the web admin panel."] = "Din konto sin e-postadresse må være lik denne for å kunne bruke web-administrasjonspanelet.";
App::$strings["Website URL"] = "Nettstedets URL";
App::$strings["Please use SSL (https) URL if available."] = "Vennligst bruk SSL (https) URL hvis tilgjengelig.";
App::$strings["Please select a default timezone for your website"] = "Vennligst velg en standard tidssone for ditt nettsted";
App::$strings["Site settings"] = "Nettstedets innstillinger";
App::$strings["PHP version 8.0 or greater is required."] = "";
App::$strings["PHP version"] = "";
App::$strings["Could not find a command line version of PHP in the web server PATH."] = "Fant ikke en kommandolinjeversjon av PHP i webtjenerens sti (PATH).";
App::$strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "Hvis du ikke har en kommandolinjeversjon av PHP installert på tjeneren, så vil du ikke kunne kjøre bakgrunnshenting via cron.";
App::$strings["PHP executable path"] = "PHP-kjørefilens sti";
App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Skriv full sti til kjørefilen for PHP. Du kan la denne stå blank for å fortsette installasjonen.";
App::$strings["Command line PHP"] = "Kommandolinje PHP";
App::$strings["Unable to check command line PHP, as shell_exec() is disabled. This is required."] = "";
App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Kommandolinjeversjonen av PHP på ditt system har ikke \"register_argc_argv\" påskrudd.";
App::$strings["This is required for message delivery to work."] = "Dette er påkrevd for at meldingslevering skal virke.";
App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv";
App::$strings["This is not sufficient to upload larger images or files. You should be able to upload at least 4 MB at once."] = "";
App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "Den største totale opplastingsstørrelsen du er tillatt er satt til %s. Filstørrelsen på en enkelt fil er satt til å maksimalt være %s. Du har lov til å laste opp inntil %d filer samtidig.";
App::$strings["You can adjust these settings in the server php.ini file."] = "";
App::$strings["PHP upload limits"] = "PHP opplastingsgrenser";
App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Feil: \"openssl_pkey_new\"-funksjonen på dette systemet er ikke i stand til å lage krypteringsnøkler";
App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Ved kjøring på Windows, vennligst se \"http://www.php.net/manual/en/openssl.installation.php\".";
App::$strings["Generate encryption keys"] = "Lag krypteringsnøkler";
App::$strings["libCurl PHP module"] = "libCurl PHP-modul";
App::$strings["GD graphics PHP module"] = "GD graphics PHP-modul";
App::$strings["OpenSSL PHP module"] = "OpenSSL PHP-modul";
App::$strings["PDO database PHP module"] = "";
App::$strings["mb_string PHP module"] = "mb_string PHP-modul";
App::$strings["xml PHP module"] = "xml PHP modul";
App::$strings["zip PHP module"] = "";
App::$strings["Apache mod_rewrite module"] = "Apache mod_rewrite-modul";
App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Feil: Apache web-tjenerens mod-rewrite-modul er påkrevd, men ikke installert.";
App::$strings["exec"] = "";
App::$strings["Error: exec is required but is either not installed or has been disabled in php.ini"] = "";
App::$strings["shell_exec"] = "";
App::$strings["Error: shell_exec is required but is either not installed or has been disabled in php.ini"] = "";
App::$strings["Error: libCURL PHP module required but not installed."] = "Feil: libCURL PHP-modul er påkrevd, men er ikke installert.";
App::$strings["Error: GD PHP module with JPEG support or ImageMagick graphics library required but not installed."] = "";
App::$strings["Error: openssl PHP module required but not installed."] = "Feil: openssl PHP-modul er påkrevd, men er ikke installert.";
App::$strings["Error: PDO database PHP module missing a driver for either mysql or pgsql."] = "";
App::$strings["Error: PDO database PHP module required but not installed."] = "";
App::$strings["Error: mb_string PHP module required but not installed."] = "Feil: mb_string PHP-modul er påkrevd, men  er ikke installert.";
App::$strings["Error: xml PHP module required for DAV but not installed."] = "Feil: XML PHP modul er påkrevet for DAV, men den er ikke installert.";
App::$strings["Error: zip PHP module required but not installed."] = "";
App::$strings[".htconfig.php is writable"] = ".htconfig.php kan skrives til";
App::$strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Web-installasjonen må kunne lage en fil kalt \".htconfig.php\" i toppkatalogen til web-tjeneren din, men dette får den ikke til.";
App::$strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Dette er oftest tillatelsesinnstilling, ettersom webtjeneren kanskje kan skrive til filer i din mappe - selv om du kan.";
App::$strings["Please see install/INSTALL.txt for additional information."] = "";
App::$strings["This software uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "";
App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the top level web folder."] = "";
App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Vennligst sikre at brukeren som din web-tjeneste kjører som (for eksempel www-data) har skrivetilgang til denne katalogen.";
App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Merknad: som et sikkerhetstiltak bør du bare gi webtjerenn skrivetilgang til %s - ikke til malfilene (.tpl) som den inneholder.";
App::$strings["%s is writable"] = "%s kan skrives til";
App::$strings["This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the top level web folder"] = "";
App::$strings["store is writable"] = "lageret kan skrives til";
App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "SSL-sertifikatet kan ikke kontrolleres. Fiks sertifikatet eller skru av https tilgang til dette nettstedet.";
App::$strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "Hvis du har HTTPS-tilgang til ditt nettsted eller tillater forbindelser til TCP port 443 (HTTPS-porten), så MÅ du bruke nettlesergodkjent sertifkater. Du MÅ IKKE bruke egensignert sertifikater!";
App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Denne begrensningen er tatt inn fordi offentlige innlegg fra deg kan for eksempel inneholde referanser til bilder på din egen hub.";
App::$strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "Hvis sertifikatet ditt ikke gjenkjennes, så vil medlemmer på andre nettsteder (som selv kan ha godkjente sertifikater) få en beskjed med en advarsel på deres eget nettsted som klager over sikkerhetsproblemer.";
App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Dette kan gi problemer med brukervennlighet (ikke bare på ditt eget nettsted), så vi må insistere på dette kravet.";
App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Det finnes tilbydere som utsteder gratis sertifikater som er gyldige i nettlesere.";
App::$strings["If you are confident that the certificate is valid and signed by a trusted authority, check to see if you have failed to install an intermediate cert. These are not normally required by browsers, but are required for server-to-server communications."] = "";
App::$strings["SSL certificate validation"] = "SSL sertifikat-kontroll";
App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "URL omskriving (rewrite) i .htaccess virker ikke. Sjekk konfigurasjonen til tjeneren din. Test: ";
App::$strings["Url rewrite is working"] = "URL rewrite virker";
App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Databasekonfigurasjonsfilen \".htconfig.php\" kunne ikke skrives. Vennligst bruk den medfølgende teksten for å lage en konfigurasjonsfil i toppkatalogen av din web-tjener.";
App::$strings["<h1>What next?</h1>"] = "";
App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "VIKTIG: Du må [manuelt] sette opp en automatisert tidfestet oppgave til bakgrunnshenteren.";
App::$strings["No connections."] = "Ingen forbindelser.";
App::$strings["Visit %s's profile [%s]"] = "Besøk %s sin profil [%s]";
App::$strings["View Connections"] = "Vis forbindelser";
App::$strings["Public Hubs"] = "Offentlige huber";
App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself <strong>may</strong> provide additional details."] = "Nettstedene på listen tillater offentlig registrering i \$Projectname-nettverket. Alle nettsteder i nettverket er forbundet så medlemskap på enhver av dem formidler medlemskap i nettverket som helhet. Noen nettsteder kan kreve abonnement eller tilby lagdelte tjenesteavtaler. Nettstedene selv <strong>kan</strong> gi tilleggsopplysninger.";
App::$strings["Hub URL"] = "Nettstedets URL";
App::$strings["Access Type"] = "Tilgangstype";
App::$strings["Registration Policy"] = "Retningslinjer for registrering";
App::$strings["Stats"] = "Statistikk";
App::$strings["Software"] = "Programvare";
App::$strings["Ratings"] = "Vurderinger";
App::$strings["Rate"] = "Vurder";
App::$strings["Posts and comments"] = "Innlegg og kommentarer";
App::$strings["Only posts"] = "Kun innlegg";
App::$strings["Malformed message id."] = "";
App::$strings["Insufficient permissions.  Request redirected to profile page."] = "Utilstrekkelig tillatelse. Forespørsel omdirigert til profilsiden.";
App::$strings["You must enable javascript for your browser to be able to view this content."] = "";
App::$strings["Invalid profile identifier."] = "Ugyldig profil-identifikator.";
App::$strings["Profile Visibility Editor"] = "Endre profilsynlighet";
App::$strings["Click on a contact to add or remove."] = "Klikk på en kontakt for å legge til eller fjerne.";
App::$strings["Visible To"] = "Synlig for";
App::$strings["All Connections"] = "Alle forbindelser";
App::$strings["Privacy group created."] = "Personverngruppen er opprettet.";
App::$strings["Could not create privacy group."] = "Kunne ikke opprette personverngruppen.";
App::$strings["Privacy group updated."] = "Personverngruppen er oppdatert.";
App::$strings["Post to this group by default"] = "";
App::$strings["Add new contacts to this group by default"] = "";
App::$strings["Privacy group name"] = "Personverngruppens navn:";
App::$strings["Members are visible to other channels"] = "Medlemmer er synlig for andre kanaler";
App::$strings["Privacy group removed."] = "Personverngruppen er fjernet.";
App::$strings["Unable to remove privacy group."] = "Ikke i stand til å fjerne personverngruppen.";
App::$strings["Privacy Group: %s"] = "Personverngruppe: %s";
App::$strings["Privacy group name: "] = "Personverngruppens navn: ";
App::$strings["Group members"] = "";
App::$strings["Not in this group"] = "";
App::$strings["Click a channel to toggle membership"] = "";
App::$strings["This page is available only to site members"] = "";
App::$strings["What would you like to do?"] = "";
App::$strings["Please bookmark this page if you would like to return to it in the future"] = "";
App::$strings["Upload a profile photo"] = "";
App::$strings["Upload a cover photo"] = "";
App::$strings["Edit your default profile"] = "";
App::$strings["View the channel directory"] = "";
App::$strings["View/edit your channel settings"] = "";
App::$strings["View the site or project documentation"] = "";
App::$strings["Visit your channel homepage"] = "";
App::$strings["View your connections and/or add somebody whose address you already know"] = "";
App::$strings["View your personal stream (this may be empty until you add some connections)"] = "";
App::$strings["View the public stream. Warning: this content is not moderated"] = "";
App::$strings["Name is required"] = "Navn er påkrevd";
App::$strings["Key and Secret are required"] = "Nøkkel og hemmelighet er påkrevd";
App::$strings["Update"] = "Oppdater";
App::$strings["Add application"] = "Legg til program";
App::$strings["Name of application"] = "Navn på program";
App::$strings["Automatically generated - change if desired. Max length 20"] = "Automatisk laget - kan endres om du vil. Største lengde 20";
App::$strings["Redirect"] = "Omdirigering";
App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "Omdirigerings-URI - la stå tomt hvis ikke ditt program spesifikt krever dette";
App::$strings["Icon url"] = "Ikon-URL";
App::$strings["Application not found."] = "Programmet ble ikke funnet.";
App::$strings["Connected OAuth Apps"] = "";
App::$strings["Client key starts with"] = "Klientnøkkel starter med";
App::$strings["No name"] = "Ikke noe navn";
App::$strings["Remove authorization"] = "Fjern tillatelse";
App::$strings["Page link"] = "Sidelenke";
App::$strings["Edit Webpage"] = "Endre webside";
App::$strings["This site is not a directory server"] = "Dette nettstedet er ikke en katalogtjener";
App::$strings["This directory server requires an access token"] = "Denne katalogtjeneren krever en tilgangsnøkkel (access token)";
App::$strings["Unable to locate original post."] = "Ikke i stand til å finne opprinnelig innlegg.";
App::$strings["Room not found"] = "Rommet ble ikke funnet";
App::$strings["Leave Room"] = "Forlat rom";
App::$strings["Delete Room"] = "Slett rom";
App::$strings["I am away right now"] = "Jeg er borte akkurat nå";
App::$strings["I am online"] = "Jeg er online";
App::$strings["Bookmark this room"] = "Bokmerk dette rommet";
App::$strings["New Chatroom"] = "Nytt chatrom";
App::$strings["Chatroom name"] = "Romnavn";
App::$strings["Expiration of chats (minutes)"] = "Chat utgår (antall minutter)";
App::$strings["%1\$s's Chatrooms"] = "%1\$s sine chatrom";
App::$strings["No chatrooms available"] = "Ingen rom tilgjengelige";
App::$strings["Add Room"] = "";
App::$strings["Expiration"] = "Utløp";
App::$strings["min"] = "min";
App::$strings["Event can not end before it has started."] = "Hendelsen kan ikke slutte før den starter.";
App::$strings["Unable to generate preview."] = "Klarer ikke å lage forhåndsvisning.";
App::$strings["Event title and start time are required."] = "Hendelsestittel og starttidspunkt er påkrevd.";
App::$strings["Event not found."] = "Hendelsen ble ikke funnet.";
App::$strings["Edit event"] = "Endre hendelse";
App::$strings["Delete event"] = "Slett hendelse";
App::$strings["Link to source"] = "Lenke til kilde";
App::$strings["calendar"] = "kalender";
App::$strings["Failed to remove event"] = "Mislyktes med å slette hendelse";
App::$strings["Account not found."] = "Kontoen ble ikke funnet";
App::$strings["Multifactor Verification"] = "";
App::$strings["Please enter the verification key from your authenticator app"] = "";
App::$strings["Like/Dislike"] = "Liker/Liker ikke";
App::$strings["This action is restricted to members."] = "Denne handlingen er begrenset til medlemmer.";
App::$strings["Please <a href=\"rmagic\">login with your \$Projectname ID</a> or <a href=\"register\">register as a new \$Projectname member</a> to continue."] = "Vennligst <a href=\"rmagic\">logg inn med din \$Projectname ID</a> eller <a href=\"register\">registrer deg som et nytt \$Projectname-medlem</a> for å fortsette.";
App::$strings["Invalid request."] = "Ugyldig forespørsel.";
App::$strings["thing"] = "ting";
App::$strings["Channel unavailable."] = "Kanalen er utilgjengelig.";
App::$strings["Previous action reversed."] = "Forrige handling er omgjort.";
App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s er enig med %2\$s sin %3\$s";
App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s er ikke enig med %2\$s sin %3\$s";
App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s avstår fra å mene noe om %2\$s sin %3\$s";
App::$strings["Action completed."] = "Handling ferdig.";
App::$strings["Thank you."] = "Tusen takk.";
App::$strings["Poke somebody"] = "Dult noen";
App::$strings["Poke or ping somebody"] = "Dult noen";
App::$strings["Recipient"] = "Mottaker";
App::$strings["Choose action"] = "Forbindelser";
App::$strings["Make this post private"] = "Gjør dette innlegget privat";
App::$strings["Calendar entries imported."] = "Kalenderhendelsene er importert.";
App::$strings["No calendar entries found."] = "Ingen kalenderhendelser funnet.";
App::$strings["Event title"] = "Tittel på hendelse";
App::$strings["Start date and time"] = "Startdato og tidspunkt";
App::$strings["End date and time"] = "";
App::$strings["Timezone:"] = "Tidssone";
App::$strings["Previous"] = "Forrige";
App::$strings["Today"] = "Idag";
App::$strings["Month"] = "måned";
App::$strings["Week"] = "uke";
App::$strings["Day"] = "dag";
App::$strings["List month"] = "";
App::$strings["List week"] = "";
App::$strings["List day"] = "";
App::$strings["More"] = "";
App::$strings["Less"] = "";
App::$strings["Select calendar"] = "";
App::$strings["Delete all"] = "";
App::$strings["Sorry! Editing of recurrent events is not yet implemented."] = "";
App::$strings["Could not fetch calendar resource. The selected calendar might be disabled."] = "";
App::$strings["Organisation"] = "";
App::$strings["Phone"] = "";
App::$strings["Instant messenger"] = "";
App::$strings["Website"] = "";
App::$strings["Address"] = "Adresse";
App::$strings["Note"] = "";
App::$strings["Add Contact"] = "";
App::$strings["Add Field"] = "";
App::$strings["P.O. Box"] = "";
App::$strings["Additional"] = "";
App::$strings["Street"] = "";
App::$strings["Locality"] = "";
App::$strings["Region"] = "";
App::$strings["ZIP Code"] = "";
App::$strings["Country"] = "Land";
App::$strings["Default Calendar"] = "";
App::$strings["Default Addressbook"] = "";
App::$strings["Remote privacy information not available"] = "";
App::$strings["__ctx:acl__ Profile"] = "Profil";
App::$strings["Privacy group"] = "Personverngruppe:";
App::$strings["Item"] = "";
App::$strings["Click to copy link to this ressource for guest %s to clipboard"] = "";
App::$strings["Link copied"] = "";
App::$strings["Access"] = "Tilgang";
App::$strings["OCAP access"] = "";
App::$strings["Empty post discarded."] = "Tomt innlegg forkastet.";
App::$strings["Duplicate post suppressed."] = "Duplikat av innlegg forhindret.";
App::$strings["System error. Post not saved."] = "Systemfeil. Innlegg ble ikke lagret.";
App::$strings["Your comment is awaiting approval."] = "";
App::$strings["Unable to obtain post information from database."] = "Ikke i stand til å få tak i informasjon om innlegg fra databasen.";
App::$strings["You have reached your limit of %1$.0f top level posts."] = "Du har nådd din grense på %1$.0f startinnlegg.";
App::$strings["You have reached your limit of %1$.0f webpages."] = "Du har nådd din grense på %1$.0f websider.";
App::$strings["Menu not found."] = "Menyen ble ikke funnet.";
App::$strings["Unable to create element."] = "Klarer ikke å lage element.";
App::$strings["Unable to update menu element."] = "Ikke i stand til å oppdatere menyelement.";
App::$strings["Unable to add menu element."] = "Ikke i stand til å legge til menyelement.";
App::$strings["Not found."] = "Ikke funnet.";
App::$strings["Menu Item Permissions"] = "Menyelement Tillatelser";
App::$strings["(click to open/close)"] = "(klikk for å åpne/lukke)";
App::$strings["Link Name"] = "Lenkenavn";
App::$strings["Link or Submenu Target"] = "Lenke- eller undermeny-mål";
App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Skriv URL-en til lenken eller velg et menynavn for å lage en undermeny";
App::$strings["Use magic-auth if available"] = "Bruk magic-autent hvis mulig";
App::$strings["Open link in new window"] = "Åpne lenke i nytt vindu";
App::$strings["Order in list"] = "Ordne i liste";
App::$strings["Higher numbers will sink to bottom of listing"] = "Høyere tall vil synke mot bunnen av listen";
App::$strings["Submit and finish"] = "Send inn og avslutt";
App::$strings["Submit and continue"] = "Send inn og fortsett";
App::$strings["Menu:"] = "Meny:";
App::$strings["Link Target"] = "Lenkemål";
App::$strings["Edit menu"] = "Endre meny";
App::$strings["Edit element"] = "Endre element";
App::$strings["Drop element"] = "Slett element";
App::$strings["New element"] = "Nytt element";
App::$strings["Edit this menu container"] = "Endre denne menybeholderen";
App::$strings["Add menu element"] = "Legg til menyelement";
App::$strings["Delete this menu item"] = "Slett dette menyelementet";
App::$strings["Edit this menu item"] = "Endre dette menyelementet";
App::$strings["Menu item not found."] = "Menyelement ble ikke funnet.";
App::$strings["Menu item deleted."] = "Menyelement slettet.";
App::$strings["Menu item could not be deleted."] = "Menyelement kunne ikke bli slettet.";
App::$strings["Edit Menu Element"] = "Endre menyelement";
App::$strings["Link text"] = "Lenketekst";
App::$strings["vcard"] = "";
App::$strings["Files: shared with me"] = "Filer: delt med meg";
App::$strings["NEW"] = "NY";
App::$strings["Last Modified"] = "Sist endret";
App::$strings["Remove all files"] = "Fjern alle filer";
App::$strings["Remove this file"] = "Fjern denne filen";
App::$strings["Documentation Search"] = "Søk i dokumentasjon";
App::$strings["Members"] = "Medlemmer";
App::$strings["Administrators"] = "";
App::$strings["Developers"] = "";
App::$strings["Tutorials"] = "";
App::$strings["\$Projectname Documentation"] = "\$Projectname dokumentasjon";
App::$strings["Contents"] = "";
App::$strings["Import Webpage Elements"] = "";
App::$strings["Import selected"] = "";
App::$strings["Export Webpage Elements"] = "";
App::$strings["Export selected"] = "";
App::$strings["Actions"] = "Handlinger";
App::$strings["Page Link"] = "Sidelenke";
App::$strings["Page Title"] = "Sidetittel";
App::$strings["Created"] = "Laget";
App::$strings["Edited"] = "Endret";
App::$strings["Invalid file type."] = "";
App::$strings["Error opening zip file"] = "";
App::$strings["Invalid folder path."] = "";
App::$strings["No webpage elements detected."] = "";
App::$strings["Import complete."] = "";
App::$strings["Deprecated!"] = "";
App::$strings["Permission Denied."] = "Tillatelse avvist.";
App::$strings["Edit file permissions"] = "Endre filtillatelser";
App::$strings["Include all files and sub folders"] = "Inkluder alle filer og undermapper";
App::$strings["Return to file list"] = "Gå tilbake til filoversikten";
App::$strings["Copy/paste this code to attach file to a post"] = "Kopier og lim inn denne koden for å legge til filen i et innlegg";
App::$strings["Copy/paste this URL to link file from a web page"] = "Kopier og lim inn denne URL-en for å lenke til filen fra en webside";
App::$strings["Share this file"] = "Del denne filen";
App::$strings["Show URL to this file"] = "Vis URLen til denne filen";
App::$strings["Show in your contacts shared folder"] = "";
App::$strings["Tag removed"] = "Merkelapp fjernet";
App::$strings["Remove Item Tag"] = "Fjern merkelapp fra element";
App::$strings["Select a tag to remove: "] = "Velg merkelapp å fjerne: ";
App::$strings["Continue"] = "Fortsett";
App::$strings["Premium Channel Setup"] = "Premiumkanal-oppsett";
App::$strings["Enable premium channel connection restrictions"] = "Slå på restriksjoner for forbindelse med premiumkanal";
App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Vennligst skriv dine restriksjoner og betingelser, slik som PayPal-kvittering, retningslinjer for bruk, og så videre.";
App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Denne kanalen kan kreve ytterligere steg og bekreftelse av følgende betingelser før tilkobling:";
App::$strings["Potential connections will then see the following text before proceeding:"] = "Potensielle forbindelser vil da se følgende tekst før de går videre:";
App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Ved å fortsette bekrefter jeg at jeg har oppfylt alle instruksjoner gitt på denne siden.";
App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Ingen spesifikke instruksjoner er gitt av kanaleieren.)";
App::$strings["Restricted or Premium Channel"] = "Begrenset kanal eller premiumkanal";
App::$strings["Post repeated"] = "";
App::$strings["network"] = "nettverk";
App::$strings["Item is not editable"] = "Elementet kan ikke endres";
App::$strings["Edit post"] = "Endre innlegg";
App::$strings["Post not found."] = "";
App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s merket %3\$s til %2\$s med %4\$s";
App::$strings["Unknown App"] = "";
App::$strings["Authorize"] = "";
App::$strings["Do you authorize the app %s to access your channel data?"] = "";
App::$strings["Deny"] = "Avslå";
App::$strings["Max queueworker threads"] = "";
App::$strings["Minimum 4, default 4"] = "";
App::$strings["Assume workers dead after"] = "";
App::$strings["Minimum 120, default 300 seconds"] = "";
App::$strings["Pause before starting next task"] = "";
App::$strings["Minimum 100, default 100 microseconds"] = "";
App::$strings["Automatically adjust pause before starting next task"] = "";
App::$strings["Queueworker Settings"] = "";
App::$strings["Queue Statistics"] = "Køstatistikk";
App::$strings["Total Entries"] = "Totalt antall oppføringer";
App::$strings["Priority"] = "Prioritet";
App::$strings["Destination URL"] = "Mål-URL";
App::$strings["Mark hub permanently offline"] = "Merk hub som permanent offline";
App::$strings["Retry delivery to this hub"] = "";
App::$strings["Empty queue for this hub"] = "Tøm køen for denne hubben";
App::$strings["Last known contact"] = "Siste kjente kontakt";
App::$strings["Theme settings updated."] = "Temainnstillinger er oppdatert.";
App::$strings["No themes found."] = "Ingen temaer er funnet.";
App::$strings["Disable"] = "Skru av";
App::$strings["Enable"] = "Skru på";
App::$strings["Screenshot"] = "Skjermbilde";
App::$strings["Administration"] = "Administrasjon";
App::$strings["Toggle"] = "Skru av og på";
App::$strings["Author: "] = "Forfatter: ";
App::$strings["Maintainer: "] = "Vedlikeholder: ";
App::$strings["[Experimental]"] = "[Eksperimentelt]";
App::$strings["[Unsupported]"] = "[Ingen støtte]";
App::$strings["Lock feature %s"] = "Lås funksjon %s";
App::$strings["Manage Additional Features"] = "Håndter tilleggsfunksjoner";
App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "Ufiltrert HTML er i utgangspunktet tillatt i innebygde media. Dette er en sikkerhetsrisiko.";
App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "Det anbefales at man kun tillater ufiltrert HTML fra følgende nettsteder:";
App::$strings["https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br />https://vimeo.com/<br />https://soundcloud.com/<br />"] = "https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br />https://vimeo.com/<br />https://soundcloud.com/<br />";
App::$strings["All other embedded content will be filtered, <strong>unless</strong> embedded content from that site is explicitly blocked."] = "Alt annet innebygget innhold vil bli filtrert, <strong>med mindre</strong> innebygget innhold fra den aktuelle siden eksplisitt er blokkert.";
App::$strings["Block public"] = "Blokker offentlig tilgang";
App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Kryss av for å blokkere tilgang til alle personlige sider som ellers ville vært offentlig tilgjengelige på dette nettstedet med mindre du er logget inn.";
App::$strings["Provide a cloud root directory"] = "";
App::$strings["The cloud root directory lists all channel names which provide public files"] = "";
App::$strings["Show total disk space available to cloud uploads"] = "";
App::$strings["Set \"Transport Security\" HTTP header"] = "Slå på \"Transport Security\" i HTTP meldingshodet";
App::$strings["Set \"Content Security Policy\" HTTP header"] = "Sett \"Content Security Policy\" i HTTP meldingshodet";
App::$strings["Allowed email domains"] = "Tillate e-postdomener";
App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Kommaseparert liste med domener som er tillatt i e-postadresser ved registrering på dette nettstedet. Jokertegn er akseptert. Tomt betyr at alle domener er tillatt";
App::$strings["Not allowed email domains"] = "Ikke tillatte e-postdomener";
App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Kommaseparert liste med domener som ikke er tillatt i e-postadresser ved registrering på dette nettstedet. Jokertegn er akseptert. Tomt betyr at alle domener er tillatt, med mindre tillate domener er blitt definert.";
App::$strings["Allow communications only from these sites"] = "Tillat kommunikasjon med bare disse nettstedene";
App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Et nettsted per linje. La det stå tomt for å tillate kommunikasjon med ethvert nettsted som standard";
App::$strings["Block communications from these sites"] = "Blokker kommunikasjon fra disse nettstedene";
App::$strings["Allow communications only from these channels"] = "Tillat kommunikasjon med bare disse kanalene";
App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "En kanal (hash) per linje. La det stå tomt for å tillate enhver kanal som standard";
App::$strings["Block communications from these channels"] = "Blokker kommunikasjon fra disse kanalene";
App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Kun tillat innebygget innhold fra sikre (HTTPS) nettsteder og lenker.";
App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Kun tillat ufiltrert innebygget innhold fra disse domenene";
App::$strings["One site per line. By default embedded content is filtered."] = "Ett nettsted pr. linje. Innebygget innhold er filtrert i utgangsounktet.";
App::$strings["Block embedded HTML from these domains"] = "Blokker innbygget HTML fra disse domenene";
App::$strings["Allow SVG thumbnails in file browser"] = "";
App::$strings["WARNING: SVG images may contain malicious code."] = "";
App::$strings["Allow embedded (inline) PDF files"] = "";
App::$strings["Additional trusted directory server URLs"] = "Standard katalogtjener";
App::$strings["Accept directory flags (spam, nsfw) from those servers. One per line like https://example.tld"] = "";
App::$strings["%s account blocked/unblocked"] = array(
	0 => "%s konto blokkert/ikke blokkert lenger",
	1 => "%s kontoer blokkert/ikke blokkert lenger",
);
App::$strings["%s account deleted"] = array(
	0 => "%s konto slettet",
	1 => "%s kontoer slettet",
);
App::$strings["Account not found"] = "Kontoen ble ikke funnet";
App::$strings["Account '%s' blocked"] = "Kontoen '%s' blokkert";
App::$strings["Account '%s' unblocked"] = "Kontoen '%s' er ikke blokkert lenger";
App::$strings["Unverified"] = "";
App::$strings["Expired"] = "";
App::$strings["Show verified registrations"] = "";
App::$strings["Show all registrations"] = "";
App::$strings["Select toggle"] = "";
App::$strings["Deny selected"] = "";
App::$strings["Approve selected"] = "";
App::$strings["All registrations"] = "";
App::$strings["Verified registrations waiting for approval"] = "";
App::$strings["Request date"] = "Dato for forespørsel";
App::$strings["Requests"] = "";
App::$strings["No registrations available"] = "";
App::$strings["No verified registrations available"] = "";
App::$strings["Block"] = "Blokker";
App::$strings["Unblock"] = "Ikke blokker lenger";
App::$strings["Verified"] = "";
App::$strings["Not yet verified"] = "";
App::$strings["ID"] = "ID";
App::$strings["All channels"] = "";
App::$strings["Register date"] = "Registreringsdato";
App::$strings["Last login"] = "Siste innlogging";
App::$strings["Expires"] = "Utløper";
App::$strings["Service class"] = "";
App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Valgte kontoer vil bli slettet!\\n\\nAlt disse kontoene har lagt inn på dette nettstedet vil bli slettet permanent!\\n\\nEr du sikker på at du vil slette disse valgte kontoene?";
App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Kontoen {0} vl bli slettet!\\n\\nAlt denne kontoen har lagt inn på dette nettstedet vil bli slettet permanent!\\n\\nEr du sikker på at du vil slette denne kontoen?";
App::$strings["Message"] = "Melding";
App::$strings["Invalid input"] = "";
App::$strings["Errors"] = "";
App::$strings["Site settings updated."] = "Nettstedsinnstillinger er oppdatert.";
App::$strings["%s - (Incompatible)"] = "";
App::$strings["mobile"] = "mobil";
App::$strings["experimental"] = "eksperimentell";
App::$strings["unsupported"] = "ikke støttet";
App::$strings["Yes - with approval"] = "Ja - med godkjenning";
App::$strings["My site is not a public server"] = "Mitt nettsted er ikke en offentlig tjeneste";
App::$strings["My site has paid access only"] = "Mitt nettsted gir kun tilgang mot betaling";
App::$strings["My site has free access only"] = "Mitt nettsted har kun gratis tilgang";
App::$strings["My site offers free accounts with optional paid upgrades"] = "Mitt nettsted tilbyr gratis konto med valgfri oppgradering til betalt tjeneste";
App::$strings["Default permission role for new accounts"] = "";
App::$strings["This role will be used for the first channel created after registration."] = "";
App::$strings["Minute(s)"] = "";
App::$strings["Hour(s)"] = "";
App::$strings["Day(s)"] = "";
App::$strings["Week(s)"] = "";
App::$strings["Month(s)"] = "";
App::$strings["Year(s)"] = "";
App::$strings["Register verification delay"] = "";
App::$strings["Time to wait before a registration can be verified"] = "";
App::$strings["duration up from now"] = "";
App::$strings["Register verification expiration time"] = "";
App::$strings["Time before an unverified registration will expire"] = "";
App::$strings["File upload"] = "Last opp fil";
App::$strings["Policies"] = "Retningslinjer";
App::$strings["Banner/Logo"] = "Banner/Logo";
App::$strings["Unfiltered HTML/CSS/JS is allowed"] = "";
App::$strings["Administrator Information"] = "Administratorinformasjon";
App::$strings["Contact information for site administrators.  Displayed on siteinfo page.  BBCode can be used here"] = "Kontaktinformasjon til nettstedsadministratorer. Vises på siteinfo-siden. BBCode kan brukes her";
App::$strings["Site Information"] = "";
App::$strings["Publicly visible description of this site.  Displayed on siteinfo page.  BBCode can be used here"] = "";
App::$strings["System theme"] = "Systemtema";
App::$strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Standard systemtema - kan overstyres av brukerprofiler - <a href='#' id='cnftheme'>endre temainnstillinger</a>";
App::$strings["Allow Feeds as Connections"] = "Tillat strømmer som forbindelser";
App::$strings["(Heavy system resource usage)"] = "(Tung bruk av systemressurser)";
App::$strings["Maximum image size"] = "Største bildestørrelse";
App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Største størrelse i bytes for opplastede bilder. Standard er 0, som betyr ubegrenset.";
App::$strings["Minimum age"] = "";
App::$strings["Minimum age (in years) for who may register on this site."] = "";
App::$strings["Which best describes the types of account offered by this hub?"] = "Hvilket alternativ beskriver best hva slags kontotype som tilbys av dette nettstedet/denne hubben?";
App::$strings["This is displayed on the public server site list."] = "";
App::$strings["Register text"] = "Registreringstekst";
App::$strings["This text will be displayed prominently at the registration page"] = "";
App::$strings["Does this site allow new member registration?"] = "Tillater dette nettstedet registrering av nye medlemmer?";
App::$strings["Configure the registration open days/hours"] = "";
App::$strings["Empty or '-:-' value will keep registration open 24/7 (default)"] = "";
App::$strings["Weekdays and hours must be separated by colon ':', From-To ranges with a dash `-` example: 1:800-1200"] = "";
App::$strings["Weekday:Hour pairs must be separated by space ' ' example: 1:900-1700 2:900-1700"] = "";
App::$strings["From-To ranges must be separated by comma ',' example: 1:800-1200,1300-1700 or 1-2,4-5:900-1700"] = "";
App::$strings["Advanced examples:"] = "";
App::$strings["or"] = "eller";
App::$strings["Check your configuration"] = "";
App::$strings["Max account registrations per day"] = "";
App::$strings["Unlimited if zero or no value - default 50"] = "";
App::$strings["Max account registrations from same IP"] = "";
App::$strings["Unlimited if zero or no value - default 3"] = "";
App::$strings["Auto channel create"] = "";
App::$strings["If disabled the channel will be created in a separate step during the registration process"] = "";
App::$strings["Require invite code"] = "";
App::$strings["Allow invite code"] = "";
App::$strings["Require email address"] = "";
App::$strings["The provided email address will be verified (recommended)"] = "";
App::$strings["Abandon account after x days"] = "";
App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Vil ikke kaste bort systemressurser på å spørre eksterne nettsteder etter forlatte kontoer. Skriv 0 for å ikke sette noen tidsgrense.";
App::$strings["Site homepage to show visitors (default: login box)"] = "Nettstedets hjemmeside som vises til besøkende (standard: innloggingsboks)";
App::$strings["example: 'pubstream' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "";
App::$strings["Preserve site homepage URL"] = "Bevar URL-en til nettstedets hjemmeside";
App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Presenter hjemmesiden til nettstedet i en ramme fra den opprinnelige plasseringen i stedet for å omdirigere";
App::$strings["Allowed friend domains"] = "Tillatte vennedomener";
App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Kommaseparert liste over domener som har lov til å etablere vennskap med dette nettstedet. Jokertegn er akseptert. Tøm for å tillate alle domener";
App::$strings["Force publish"] = "Tving publisering";
App::$strings["Check to force all profiles on this site to be listed in the site directory"] = "Kryss av for å tvinge alle profiler på dette nettstedet til å bli oppført i nettstedet sin katalog.";
App::$strings["Enable public stream"] = "";
App::$strings["Enable the public stream. Warning: this content is unmoderated"] = "Importer og gi tilgang til offentlig innhold trukket inn fra andre nettsteder. Advarsel: dette innholdet er ikke moderert.";
App::$strings["Site only public stream"] = "Mitt nettsted er ikke en offentlig tjeneste";
App::$strings["Restrict the public stream to content originating at this site"] = "";
App::$strings["Allow anybody on the internet to access the public streams"] = "";
App::$strings["Disable to require authentication before viewing"] = "";
App::$strings["Only import Public stream posts with this text"] = "";
App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "ord per linje eller #merkelapper eller /mønster/ eller språk lang=xx, la stå blankt for å importere alle innlegg";
App::$strings["Do not import Public stream posts with this text"] = "";
App::$strings["Login on Homepage"] = "Logg inn på hjemmesiden";
App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Presenter en innloggingsboks til besøkende på hjemmesiden hvis ikke noe annet innhold har blitt konfigurert.";
App::$strings["Enable context help"] = "Slå på kontekstuell hjelp";
App::$strings["Display contextual help for the current page when the help button is pressed."] = "Vis kontekstuell hjelp for den gjeldende siden når du klikker på hjelpeknappen.";
App::$strings["Reply-to email address for system generated email."] = "";
App::$strings["Sender (From) email address for system generated email."] = "";
App::$strings["Name of email sender for system generated email."] = "";
App::$strings["Directory Server URL"] = "Katalogtjener URL";
App::$strings["Default directory server"] = "Standard katalogtjener";
App::$strings["Enable SSE Notifications"] = "";
App::$strings["If disabled, traditional polling will be used. Warning: this setting might not be suited for shared hosting"] = "";
App::$strings["Proxy user"] = "Brukernavn mellomtjener";
App::$strings["Proxy URL"] = "Mellomtjener URL";
App::$strings["Network timeout"] = "Nettverk tidsavbrudd";
App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Verdien i sekunder. Skriv 0 for ubegrenset (ikke anbefalt).";
App::$strings["Delivery interval"] = "Leveringsinterval";
App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Forsink leveringsprosessene i bakgrunnen med dette antall sekunder for å redusere systembelastningen. Anbefaling: 4-5 for delte tjenere, 2-3 for virtuelle tjenere, 0-1 for større dedikerte tjenere.";
App::$strings["Deliveries per process"] = "Leveranser per prosess";
App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Antall leveranser som forsøkes i en enkelt operativsystemprosess. Juster om nødvendig for å fininnstille systemets yteevne. Anbefaling: 1-5.";
App::$strings["Poll interval"] = "Spørreintervall";
App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Forsink spørreprosessene i bakgrunnen med dette antall sekunder for å redusere systembelastningen. Hvis 0, bruk dette leveringsintervallet.";
App::$strings["Path to ImageMagick convert program"] = "";
App::$strings["If set, use this program to generate photo thumbnails for huge images ( > 4000 pixels in either dimension), otherwise memory exhaustion may occur. Example: /usr/bin/convert"] = "";
App::$strings["Maximum Load Average"] = "Største belastningsgjennomsnitt";
App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Største systembelastning før leverings- og spørreprosesser blir utsatt - standard 50.";
App::$strings["Expiration period in days for imported (grid/network) content"] = "Antall dager før importert innhold (nettet/nettverk) utgår";
App::$strings["0 for no expiration of imported content"] = "0 dersom importert innhold ikke skal utgå";
App::$strings["Do not expire any posts which have comments less than this many days ago"] = "";
App::$strings["Public servers: Optional landing (marketing) webpage for new registrants"] = "";
App::$strings["Create this page first. Default is %s/register"] = "";
App::$strings["Page to display after creating a new channel"] = "";
App::$strings["Default: profiles"] = "";
App::$strings["Optional: site location"] = "";
App::$strings["Region or country"] = "";
App::$strings["Invalid 24h time value (hhmm/hmm)"] = "";
App::$strings["Log settings updated."] = "Logginnstillinger er oppdatert.";
App::$strings["Clear"] = "Tøm";
App::$strings["Debugging"] = "Feilsøking";
App::$strings["Log file"] = "Loggfil";
App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "";
App::$strings["Log level"] = "Loggnivå";
App::$strings["%s channel censored/uncensored"] = array(
	0 => "%s kanal er sensurert/ikke sensurert lenger",
	1 => "%s kanaler er sensurert/ikke sensurert lenger",
);
App::$strings["%s channel code allowed/disallowed"] = array(
	0 => "%s kanal med kode tillatt/ikke tillatt",
	1 => "%s kanaler med kode tillatt/ikke tillatt",
);
App::$strings["%s channel deleted"] = array(
	0 => "%s kanal slettet",
	1 => "%s kanaler slettet",
);
App::$strings["Channel not found"] = "Kanalen ble ikke funnet";
App::$strings["Channel '%s' deleted"] = "Kanalen '%s' er slettet";
App::$strings["Channel '%s' censored"] = "Kanalen '%s' er sensurert";
App::$strings["Channel '%s' uncensored"] = "Kanalen '%s' er ikke sensurert lenger";
App::$strings["Channel '%s' code allowed"] = "Kanal '%s' kode tillatt";
App::$strings["Channel '%s' code disallowed"] = "Kanal '%s' kode ikke tillatt";
App::$strings["select all"] = "velg alle";
App::$strings["Censor"] = "Sensurer";
App::$strings["Uncensor"] = "Ikke sensurer lenger";
App::$strings["Allow Code"] = "Tillat kode";
App::$strings["Disallow Code"] = "Ikke tillat kode";
App::$strings["UID"] = "UID";
App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Valgte kanaler vil bli slettet!\\n\\nAlt innhold som er lagt inn i disse kanalene på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette disse kanalene med alt innhold?";
App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Kanalen {0} vil bli slettet!\\n\\nAlt innhold som er lagt inn i denne kanalen på dettet nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette denne kanalen med alt innhold?";
App::$strings["Password changed for account %d."] = "";
App::$strings["Account settings updated."] = "";
App::$strings["Account Edit"] = "";
App::$strings["New Password"] = "";
App::$strings["New Password again"] = "";
App::$strings["Account language (for emails)"] = "";
App::$strings["New Profile Field"] = "Nytt profilfelt";
App::$strings["Field nickname"] = "Feltets kallenavn";
App::$strings["System name of field"] = "Systemnavnet til feltet";
App::$strings["Input type"] = "Inndata-type";
App::$strings["Field Name"] = "Feltnavn";
App::$strings["Label on profile pages"] = "Merkelapp på profilsider";
App::$strings["Help text"] = "Hjelpetekst";
App::$strings["Additional info (optional)"] = "Tilleggsinformasjon (valgfritt)";
App::$strings["Field definition not found"] = "Feltdefinisjonen ble ikke funnet";
App::$strings["Edit Profile Field"] = "Endre profilfelt";
App::$strings["Basic Profile Fields"] = "Grunnleggende profilfelter";
App::$strings["Advanced Profile Fields"] = "Utvidede profilfelter";
App::$strings["(In addition to basic fields)"] = "(I tillegg til grunnleggende felt)";
App::$strings["All available fields"] = "Alle tilgjengelige felt";
App::$strings["Custom Fields"] = "";
App::$strings["Create Custom Field"] = "Legg til egendefinert felt";
App::$strings["Update has been marked successful"] = "Oppdateringen har blitt merket som en suksess";
App::$strings["Verification of update %s failed. Check system logs."] = "";
App::$strings["Update %s was successfully applied."] = "Oppdatering %s ble gjennomført med suksess.";
App::$strings["Verifying update %s did not return a status. Unknown if it succeeded."] = "";
App::$strings["Update %s does not contain a verification function."] = "";
App::$strings["Update function %s could not be found."] = "Oppdatering av funksjon %s kunne ikke finnes.";
App::$strings["Executing update procedure %s failed. Check system logs."] = "";
App::$strings["Update %s did not return a status. It cannot be determined if it was successful."] = "";
App::$strings["Failed Updates"] = "Mislykkede oppdateringer";
App::$strings["Mark success (if update was manually applied)"] = "Marker suksess (hvis oppdateringen ble gjennomført manuelt)";
App::$strings["Attempt to verify this update if a verification procedure exists"] = "";
App::$strings["Attempt to execute this update step automatically"] = "Prøv å gjennomføre dette oppdateringstrinnet automatisk";
App::$strings["No failed updates."] = "Ingen mislykkede oppdateringer.";
App::$strings["Plugin %s disabled."] = "Tilleggsfunksjonen %s er avskrudd.";
App::$strings["Plugin %s enabled."] = "Tilleggsfunksjonen %s er påskrudd.";
App::$strings["Minimum project version: "] = "Minimum prosjektversjon: ";
App::$strings["Maximum project version: "] = "Maksimum prosjektversjon: ";
App::$strings["Minimum PHP version: "] = "Minimum PHP-versjon: ";
App::$strings["Compatible Server Roles: "] = "";
App::$strings["Requires: "] = "Krever: ";
App::$strings["Disabled - version incompatibility"] = "Skrudd av - versjonsinkompatibilitet";
App::$strings["Enter the public git repository URL of the addon repo."] = "";
App::$strings["Addon repo git URL"] = "";
App::$strings["Custom repo name"] = "";
App::$strings["(optional)"] = "Valgfritt";
App::$strings["Download Addon Repo"] = "";
App::$strings["Install new repo"] = "";
App::$strings["Install"] = "Installer";
App::$strings["Manage Repos"] = "";
App::$strings["Installed Addon Repositories"] = "";
App::$strings["Install a New Addon Repository"] = "";
App::$strings["Switch branch"] = "";
App::$strings["Installed Apps"] = "";
App::$strings["Manage Apps"] = "";
App::$strings["Create Custom App"] = "";
App::$strings["Some blurb about what to do when you're new here"] = "En standardtekst om hva du bør gjøre som ny her";
App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Fjerning av kanaler er ikke tillatt innen 48 timer etter endring av kontopassordet.";
App::$strings["Remove Channel"] = "Fjern kanal";
App::$strings["WARNING: "] = "ADVARSEL: ";
App::$strings["This channel will be permanently removed. "] = "";
App::$strings["This action can not be undone!"] = "";
App::$strings["Please enter your password for verification:"] = "Vennligst skriv ditt passord for å få bekreftelse:";
App::$strings["Email resent"] = "";
App::$strings["Email resend failed"] = "";
App::$strings["Verification successful"] = "";
App::$strings["Account successfull created"] = "";
App::$strings["Channel successfull created"] = "";
App::$strings["Automatic channel creation failed. Please create a channel."] = "";
App::$strings["Account creation error"] = "";
App::$strings["Verify failed"] = "";
App::$strings["Token verification failed"] = "";
App::$strings["Request not inside time frame"] = "";
App::$strings["Identity unknown"] = "";
App::$strings["dId2 mistaken"] = "";
App::$strings["Your Registration ID"] = "";
App::$strings["Registration verification"] = "";
App::$strings["Hold on, you can start verification in"] = "";
App::$strings["Please remember your verification token for ID"] = "";
App::$strings["Token validity"] = "";
App::$strings["Resend email"] = "";
App::$strings["Registration status"] = "";
App::$strings["Verification successful!"] = "";
App::$strings["Your login ID is"] = "";
App::$strings["After your account has been approved by our administrator you will be able to login with your login ID and your provided password."] = "";
App::$strings["Registration request revoked"] = "";
App::$strings["Sorry for any inconvience. Thank you for your response."] = "";
App::$strings["Please enter your verification token for ID"] = "";
App::$strings["Please check your email!"] = "";
App::$strings["Verification token"] = "";
App::$strings["ID expired"] = "";
App::$strings["You will require the verification token for ID"] = "";
App::$strings["Unknown or expired ID"] = "";
App::$strings["dId2 malformed"] = "";
App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Du har laget %1$.0f av %2$.0f tillatte kanaler.";
App::$strings["Create a new channel"] = "Lag en ny kanal";
App::$strings["Current Channel"] = "Gjeldende kanal";
App::$strings["Switch to one of your channels by selecting it."] = "Bytt til en av dine kanaler ved å velge den.";
App::$strings["Default Channel"] = "Standardkanal";
App::$strings["Make Default"] = "Gjør til standard";
App::$strings["%d new introductions"] = "%d nye introduksjoner";
App::$strings["Delegated Channel"] = "Delegert kanal";
App::$strings["Layout not found"] = "Layouten ble ikke funnet.";
App::$strings["This template does not support pdledi_gui (no content regions defined)"] = "";
App::$strings["Main page content"] = "";
App::$strings["The main page content can not be edited!"] = "";
App::$strings["toggle full screen mode"] = "";
App::$strings["Away"] = "Borte";
App::$strings["Online"] = "Online";
App::$strings["Contact role deleted."] = "";
App::$strings["Permission category name is required."] = "";
App::$strings["Contact role saved."] = "";
App::$strings["Role to assign affected contacts and default role to"] = "";
App::$strings["Role to assign affected contacts to"] = "";
App::$strings["Assign this role to"] = "";
App::$strings["All my contacts"] = "";
App::$strings["Automatically assign this role to new contacts"] = "";
App::$strings["Contact Roles"] = "";
App::$strings["Role name"] = "";
App::$strings["System role - not editable"] = "";
App::$strings["Deleting"] = "";
App::$strings["inherited"] = "arvet";
App::$strings["Role Permissions"] = "";
App::$strings["Some permissions may be inherited from your <a href=\"settings\">channel role</a>, which have higher priority than contact role settings."] = "";
App::$strings["Token verification failed."] = "";
App::$strings["Email verification resent"] = "";
App::$strings["Unable to resend email verification message."] = "";
App::$strings["Permissions denied."] = "Tillatelse avvist.";
App::$strings["item"] = "";
App::$strings["Change Order of Pinned Navbar Apps"] = "";
App::$strings["Change Order of App Tray Apps"] = "";
App::$strings["Use arrows to move the corresponding app left (top) or right (bottom) in the navbar"] = "";
App::$strings["Use arrows to move the corresponding app up or down in the app tray"] = "";
App::$strings["Unable to find your hub."] = "Ikke i stand til å finne hubben din.";
App::$strings["Post successful."] = "Innlegg vellykket.";
App::$strings["Item approved"] = "Konto godkjent.";
App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Sletting av kontoer er ikke tillatt innen 48 timer etter endring av kontopassordet.";
App::$strings["Remove This Account"] = "Slett denne kontoen";
App::$strings["This account and all its channels will be completely removed from the network. "] = "Denne kontoen og alle dens kanaler vil bli fullstendig fjernet fra nettverket. ";
App::$strings["This action is permanent and can not be undone!"] = "Denne handlingen er permanent og kan ikke angres!";
App::$strings["Remove Account"] = "Slett konto";
App::$strings["Language App"] = "";
App::$strings["No content available for year"] = "";
App::$strings["Export Channel"] = "Eksporter kanal";
App::$strings["Export channel"] = "Eksporter kanal";
App::$strings["This will export your identity and social graph into a file which can be used to import your channel to a new hub."] = "";
App::$strings["Export content"] = "";
App::$strings["This will export your posts, direct messages, articles and cards per month stored into a zip file per year. Months with no posts will be dismissed."] = "Dette vil eksportere dine innlegg, direktemeldinger, artikler og kort, en fil for hver måned, pakket i en zip fil for hvert år. Måneder uten innhold blir ignorert.";
App::$strings["Export wikis"] = "";
App::$strings["This will export your wikis and wiki pages."] = "";
App::$strings["Export webpages"] = "";
App::$strings["This will export your webpages and menus."] = "";
App::$strings["Export channel calendar"] = "";
App::$strings["This will export your channel calendar events and associated items. CalDAV calendars are not included."] = "";
App::$strings["Export chatrooms"] = "";
App::$strings["This will export your chatrooms. Chat history is dismissed."] = "";
App::$strings["This export can be imported or restored by visiting <a href=\"%1\$s\">%2\$s</a> on any site containing your channel."] = "";
App::$strings["Article"] = "";
App::$strings["Item has been removed."] = "";
App::$strings["No channel."] = "Ingen kanal.";
App::$strings["No connections in common."] = "Ingen forbindelser felles.";
App::$strings["View Common Connections"] = "";
App::$strings["%s element installed"] = "%s element installert";
App::$strings["%s element installation failed"] = "Installasjon av %s-element mislyktes";
App::$strings["Your real name is recommended."] = "";
App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Eksempel: \"Ola Nordmann\", \"Lisa og hestene hennes\", \"Fotball\", \"Sykkelgruppa\"";
App::$strings["This will be used to create a unique network address (like an email address)."] = "";
App::$strings["Allowed characters are a-z 0-9, - and _"] = "";
App::$strings["Channel name"] = "Kanalnavn";
App::$strings["Channel role"] = "";
App::$strings["Create a Channel"] = "";
App::$strings["A channel is a unique network identity. It can represent a person (social network profile), a forum (group), a business or celebrity page, a newsfeed, and many other things."] = "";
App::$strings["or <a href=\"import\">import an existing channel</a> from another location."] = "eller <a href=\"import\">importer en eksisterende kanal</a> fra et annet sted.";
App::$strings["Validate"] = "";
App::$strings["Entry censored"] = "";
App::$strings["Entry OK"] = "";
App::$strings["No service class restrictions found."] = "Ingen restriksjoner er funnet i tjenesteklasse.";
App::$strings["Mood"] = "Stemning";
App::$strings["Set your current mood and tell your friends"] = "Angi ditt nåværende humør og fortell dine venner";
App::$strings["About this site"] = "";
App::$strings["Site Name"] = "Nettstedets navn";
App::$strings["Administrator"] = "Administrator";
App::$strings["Software and Project information"] = "";
App::$strings["This site is powered by \$Projectname"] = "";
App::$strings["Federated and decentralised networking and identity services provided by Zot"] = "";
App::$strings["Additional federated transport protocols:"] = "";
App::$strings["Version %s"] = "Versjon %s";
App::$strings["Project homepage"] = "";
App::$strings["Developer homepage"] = "";
App::$strings["App installed."] = "App installert.";
App::$strings["Malformed app."] = "Feil oppsett for app-en.";
App::$strings["Embed code"] = "Innbyggingskode";
App::$strings["Edit App"] = "Endre app";
App::$strings["Create App"] = "Lag app";
App::$strings["Name of app"] = "Navn på app";
App::$strings["Location (URL) of app"] = "Plassering (URL) til app";
App::$strings["Photo icon URL"] = "Bildeikon URL";
App::$strings["80 x 80 pixels - optional"] = "80 x80 pixler - valgfritt";
App::$strings["Categories (optional, comma separated list)"] = "Kategorier (valgfri, kommaseparert liste)";
App::$strings["Version ID"] = "Versjons-ID";
App::$strings["Price of app"] = "Pris på app";
App::$strings["Location (URL) to purchase app"] = "Plassering (URL) for å kjøpe app";
App::$strings["Blocked accounts"] = "";
App::$strings["Expired accounts"] = "";
App::$strings["Expiring accounts"] = "";
App::$strings["Message queues"] = "Meldingskøer";
App::$strings["Your software should be updated"] = "Programvaren bør oppdateres";
App::$strings["Summary"] = "Sammendrag";
App::$strings["Registered accounts"] = "Registrerte kontoer";
App::$strings["Pending registrations"] = "Ventende registreringer";
App::$strings["Registered channels"] = "Registrerte kanaler";
App::$strings["Active addons"] = "Aktive tillegg";
App::$strings["Version"] = "Versjon";
App::$strings["Repository version (master)"] = "";
App::$strings["Repository version (dev)"] = "";
App::$strings["Invalid abook_id"] = "";
App::$strings["Could not access contact record."] = "Fikk ikke tilgang til kontaktinformasjonen.";
App::$strings["Could not locate selected profile."] = "Fant ikke valgt profil.";
App::$strings["is now connected to"] = "er nå forbundet til";
App::$strings["Contact Tools"] = "";
App::$strings["Approve this contact"] = "";
App::$strings["Accept contact to allow communication"] = "";
App::$strings["Please select a role for this contact!"] = "";
App::$strings["This contact is unreachable from this location."] = "";
App::$strings["This contact may be unreachable from other channel locations."] = "";
App::$strings["Location independence is not supported by their network."] = "";
App::$strings["View profile"] = "Vis profil";
App::$strings["This is a group/forum channel"] = "";
App::$strings["Select a role for this contact"] = "";
App::$strings["Slide to adjust your degree of friendship"] = "Flytt for å justere din grad av vennskap";
App::$strings["Custom Filter"] = "Tilpasset filter";
App::$strings["Only import posts with this text"] = "Bare importer innlegg med disse ordene";
App::$strings["Do not import posts with this text"] = "Ikke importer innlegg med denne teksten";
App::$strings["Approve contact"] = "";
App::$strings["Their"] = "";
App::$strings["My"] = "";
App::$strings["Roles"] = "";
App::$strings["Compare permissions"] = "";
App::$strings["Permission"] = "";
App::$strings["Affinity"] = "";
App::$strings["Content filter"] = "";
App::$strings["Contact updated"] = "";
App::$strings["Contact update failed"] = "";
App::$strings["Approve connection"] = "Godkjenn forbindelse";
App::$strings["Refresh succeeded"] = "";
App::$strings["Refresh failed - channel is currently unavailable"] = "Oppfrisking mislyktes - kanalen er for øyeblikket utilgjengelig.";
App::$strings["Block status updated"] = "";
App::$strings["Block failed"] = "";
App::$strings["Ignore status updated"] = "";
App::$strings["Ignore failed"] = "";
App::$strings["Archive status updated"] = "";
App::$strings["Archive failed"] = "";
App::$strings["Hide status updated"] = "";
App::$strings["Hide failed"] = "";
App::$strings["Contact removed"] = "";
App::$strings["Delete failed"] = "";
App::$strings["Refresh Permissions"] = "Oppfrisk tillatelser";
App::$strings["Fetch updated permissions"] = "Hent oppdaterte tillatelser";
App::$strings["Refresh Photo"] = "";
App::$strings["Fetch updated photo"] = "";
App::$strings["Block (or Unblock) all communications with this connection"] = "Blokker eller fjern blokkering av all kommunikasjon med denne forbindelsen";
App::$strings["This connection is blocked!"] = "Denne forbindelsen er blokkert!";
App::$strings["Unignore"] = "Ikke ignorer lenger";
App::$strings["Ignore"] = "Ignorer";
App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignorer eller fjern ignorering av all inngående kommunikasjon fra denne forbindelsen";
App::$strings["This connection is ignored!"] = "Denne forbindelsen er ignorert!";
App::$strings["Unarchive"] = "Ikke arkiver lenger";
App::$strings["Archive"] = "Arkiver";
App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Arkiver eller fjern arkivering av denne forbindelsen - marker kanal som død, men behold innhold";
App::$strings["This connection is archived!"] = "Denne forbindelsen er arkivert!";
App::$strings["Unhide"] = "Ikke skjul lenger";
App::$strings["Hide"] = "Skjul";
App::$strings["Hide or Unhide this connection from your other connections"] = "Skjul eller fjern skjuling av denne forbindelsen fra dine andre forbindelser";
App::$strings["This connection is hidden!"] = "Denne forbindelsen er skjult!";
App::$strings["Delete this connection"] = "Slett denne forbindelsen";
App::$strings["No default suggestions were found."] = "";
App::$strings["Gender: "] = "Kjønn: ";
App::$strings["Status: "] = "Status: ";
App::$strings["Homepage: "] = "Hjemmeside: ";
App::$strings["Description:"] = "Beskrivelse:";
App::$strings["Unsafe"] = "";
App::$strings["Spam"] = "";
App::$strings["Public Forum:"] = "Offentlig forum:";
App::$strings["Keywords: "] = "Nøkkelord: ";
App::$strings["Don't suggest"] = "Ikke foreslå";
App::$strings["Common connections (estimated):"] = "";
App::$strings["Global Directory"] = "Global katalog";
App::$strings["Local Directory"] = "Lokal katalog";
App::$strings["Finding:"] = "Finner:";
App::$strings["next page"] = "neste side";
App::$strings["previous page"] = "forrige side";
App::$strings["Sort options"] = "Sorteringsvalg";
App::$strings["Alphabetic"] = "Alfabetisk";
App::$strings["Reverse Alphabetic"] = "Omvendt alfabetisk";
App::$strings["Newest to Oldest"] = "Nyest til eldst";
App::$strings["Oldest to Newest"] = "Eldst til nyest";
App::$strings["No entries (some entries may be hidden)."] = "Ingen oppføringer (noen oppføringer kan være skjult).";
App::$strings["Authorize application connection"] = "Tillat programforbindelse";
App::$strings["Return to your app and insert this Security Code:"] = "";
App::$strings["Please login to continue."] = "Vennligst logg inn for å fortsette.";
App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vil du tillate dette programmet å få tilgang til dine innlegg og kontakter, og/eller lage nye innlegg for deg?";
App::$strings["Please login."] = "Vennligst logg inn.";
App::$strings["Block Name"] = "Byggeklossens navn";
App::$strings["Block Title"] = "Byggeklossens tittel";
App::$strings["Email Verification Required"] = "";
App::$strings["A verification token was sent to your email address [%s]. Enter that token here to complete the account verification step. Please allow a few minutes for delivery, and check your spam folder if you do not see the message."] = "En verifikasjonskode ble sendt til epostadressen din [%s]. Skriv inn koden du mottok her for å fullføre kontoverifikasjonen. Det kan ta noen minutter før du mottar koden. Sjekk også at eposten ikke har havnet i mappen for søppelpost om du ikke ser den etter en stund.";
App::$strings["Resend Email"] = "";
App::$strings["Validation token"] = "";
App::$strings["Item not available."] = "Elementet er ikke tilgjengelig.";
App::$strings["Poll not found."] = "Fant ikke spørreskjema.";
App::$strings["Invalid response."] = "";
App::$strings["Response submitted. Updates may not appear instantly."] = "";
App::$strings["Image uploaded but image cropping failed."] = "Bildet ble lastet opp, men beskjæring av bildet mislyktes.";
App::$strings["Image resize failed."] = "Endring av bildestørrelse mislyktes.";
App::$strings["Image upload failed."] = "Opplasting av bildet mislyktes.";
App::$strings["Unable to process image."] = "Kan ikke behandle bildet.";
App::$strings["Photo not available."] = "Bildet er ikke tilgjengelig.";
App::$strings["This profile photo will be visible to anybody on the internet and may be distributed to other websites."] = "";
App::$strings["This profile photo will be visible only to channels with permission to view this profile."] = "";
App::$strings["Use Photo for Profile"] = "";
App::$strings["Change Profile Photo"] = "Endre profilbilde";
App::$strings["Reset to default"] = "";
App::$strings["Use a photo from your albums"] = "";
App::$strings["Select existing"] = "";
App::$strings["Crop Image"] = "Beskjær bildet";
App::$strings["Please adjust the image cropping for optimum viewing."] = "Vennligst juster bildebeskjæringen for optimal visning.";
App::$strings["Done editing"] = "Avslutt redigering";
App::$strings["Edit Block"] = "Endre byggekloss";
App::$strings["Enter a folder name"] = "";
App::$strings["or select an existing folder (doubleclick)"] = "";
App::$strings["Save to Folder"] = "Lagre i mappe";
App::$strings["Layout Name"] = "Layout-navn";
App::$strings["Layout Description (Optional)"] = "Layoutens beskrivelse (valgfritt)";
App::$strings["Edit Layout"] = "Endre layout";
App::$strings["Active"] = "";
App::$strings["Blocked"] = "Blokkert";
App::$strings["Ignored"] = "Ignorert";
App::$strings["Hidden"] = "Skjult";
App::$strings["Archived/Unreachable"] = "";
App::$strings["New"] = "Nye";
App::$strings["Active Connections"] = "";
App::$strings["Show active connections"] = "";
App::$strings["Show pending (new) connections"] = "Vis ventende (nye) forbindelser";
App::$strings["Only show blocked connections"] = "Vis bare forbindelser som er blokkert";
App::$strings["Only show ignored connections"] = "Vis bare ignorerte forbindelser";
App::$strings["Only show archived/unreachable connections"] = "";
App::$strings["Only show hidden connections"] = "Vis bare skjulte forbindelser";
App::$strings["Show all connections"] = "Vis alle forbindelser";
App::$strings["Pending approval"] = "Venter på godkjenning";
App::$strings["Archived"] = "Arkivert";
App::$strings["Not connected at this location"] = "";
App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]";
App::$strings["Edit connection"] = "Endre forbindelse";
App::$strings["Delete connection"] = "Slett forbindelse";
App::$strings["Channel address"] = "Kanaladresse";
App::$strings["Call"] = "";
App::$strings["Status"] = "Status";
App::$strings["Connected"] = "Forbundet";
App::$strings["Ignore connection"] = "Ignorer forbindelse";
App::$strings["Recent activity"] = "Nylig aktivitet";
App::$strings["Connect at this location"] = "";
App::$strings["Contact role"] = "";
App::$strings["Search your connections"] = "Søk blant dine forbindelser";
App::$strings["Contact search"] = "";
App::$strings["Cover Photos"] = "Forsidebilder";
App::$strings["Your cover photo may be visible to anybody on the internet"] = "";
App::$strings["Upload File:"] = "Last opp fil:";
App::$strings["Select a profile:"] = "Velg en profil:";
App::$strings["Change Cover Photo"] = "Endre omslagsbilde";
App::$strings["Select existing photo"] = "";
App::$strings["Done Editing"] = "Avslutt redigering";
App::$strings["Album not found."] = "Albumet ble ikke funnet.";
App::$strings["Delete Album"] = "Slett album";
App::$strings["Delete Photo"] = "Slett bilde";
App::$strings["No photos selected"] = "Ingen bilder valgt";
App::$strings["Access to this item is restricted."] = "Tilgang til dette elementet er begrenset.";
App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB lagringsplass til bilder er brukt.";
App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB av %2$.2f MB lagringsplass til bilder er brukt.";
App::$strings["Upload Photos"] = "Last opp bilder";
App::$strings["Enter an album name"] = "Skriv et albumnavn";
App::$strings["or select an existing album (doubleclick)"] = "eller velg et eksisterende album (dobbeltklikk)";
App::$strings["Create a status post for this upload"] = "Lag et statusinnlegg for denne opplastingen";
App::$strings["Description (optional)"] = "";
App::$strings["Show Newest First"] = "Vis nyeste først";
App::$strings["Show Oldest First"] = "Vis eldste først";
App::$strings["Add Photos"] = "";
App::$strings["Permission denied. Access to this item may be restricted."] = "Tillatelse avvist. Tilgang til dette elementet kan være begrenset.";
App::$strings["Photo not available"] = "Bilde er utilgjengelig";
App::$strings["Use as profile photo"] = "Bruk som profilbilde";
App::$strings["Use as cover photo"] = "Bruk som omslagsbilde";
App::$strings["Private Photo"] = "Privat bilde";
App::$strings["View Full Size"] = "Vis i full størrelse";
App::$strings["Edit photo"] = "Endre bilde";
App::$strings["Rotate CW (right)"] = "Roter med klokka (mot høyre)";
App::$strings["Rotate CCW (left)"] = "Roter mot klokka (venstre)";
App::$strings["Move photo to album"] = "";
App::$strings["Enter a new album name"] = "Skriv et nytt albumnavn";
App::$strings["or select an existing one (doubleclick)"] = "eller velg et eksisterende album (dobbeltklikk)";
App::$strings["Add a Tag"] = "Legg til merkelapp";
App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Eksempel: @bob, @Barbara_Jensen, @jim@example.com";
App::$strings["Flag as adult in album view"] = "Flag som voksent i albumvisning";
App::$strings["I like this (toggle)"] = "Jeg liker dette (skru av og på)";
App::$strings["I don't like this (toggle)"] = "Jeg liker ikke dette (skru av og på)";
App::$strings["This is you"] = "Dette er deg";
App::$strings["View all"] = "Vis alle";
App::$strings["Photo Tools"] = "Fotoverktøy";
App::$strings["In This Photo:"] = "I dette bildet:";
App::$strings["Map"] = "Kart";
App::$strings["__ctx:noun__ Likes"] = "Liker";
App::$strings["__ctx:noun__ Dislikes"] = "Liker ikke";
App::$strings["No valid account found."] = "Ingen gyldig konto funnet.";
App::$strings["Password reset request issued. Check your email."] = "Forespørsel om å tilbakestille passord er mottatt. Sjekk e-posten din.";
App::$strings["Site Member (%s)"] = "Nettstedsmedlem (%s)";
App::$strings["Password reset requested at %s"] = "Forespurt om å tilbakestille passord hos %s";
App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Forespørsel kunne ikke bekreftes. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord mislyktes.";
App::$strings["Password Reset"] = "Tilbakestill passord";
App::$strings["Your password has been reset as requested."] = "Ditt passord har blitt tilbakestilt som forespurt.";
App::$strings["Your new password is"] = "Ditt nye passord er";
App::$strings["Save or copy your new password - and then"] = "Lagre eller kopier ditt nye passord, og deretter kan du";
App::$strings["click here to login"] = "klikke her for å logge inn";
App::$strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Ditt passord kan endres på siden <em>Innstillinger</em> etter vellykket innlogging.";
App::$strings["Your password has changed at %s"] = "Ditt passord er endret hos %s";
App::$strings["Forgot your Password?"] = "Glemt passord ditt?";
App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Skriv e-postadressen din og send inn for å tilbakestille passordet ditt. Sjekk deretter din e-post for videre instruksjoner.";
App::$strings["Email Address"] = "E-postadresse";
App::$strings["Reset"] = "Tilbakestill";
App::$strings["Connection added."] = "";
App::$strings["Invalid item."] = "Ugyldig element.";
App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.";
App::$strings["Profile not found."] = "Profilen ble ikke funnet.";
App::$strings["Profile deleted."] = "Profilen er slettet.";
App::$strings["Profile-"] = "Profil-";
App::$strings["New profile created."] = "Ny profil opprettet.";
App::$strings["Profile unavailable to clone."] = "Profilen er utilgjengelig for klonen.";
App::$strings["Profile unavailable to export."] = "Profilen er utilgjengelig for eksport.";
App::$strings["Profile Name is required."] = "Profilnavn er påkrevd.";
App::$strings["Marital Status"] = "Sivilstand";
App::$strings["Romantic Partner"] = "Romantisk partner";
App::$strings["Likes"] = "Liker";
App::$strings["Dislikes"] = "Liker ikke";
App::$strings["Work/Employment"] = "Arbeid/sysselsetting";
App::$strings["Religion"] = "Religion";
App::$strings["Political Views"] = "Politiske synspunkter";
App::$strings["Sexual Preference"] = "Seksuelle preferanser";
App::$strings["Homepage"] = "Hjemmeside";
App::$strings["Interests"] = "Interesser";
App::$strings["Profile updated."] = "Profilen er oppdatert.";
App::$strings["Hide my connections from viewers of this profile"] = "";
App::$strings["Publish my default profile in the network directory"] = "";
App::$strings["Suggest me as a potential contact to new members"] = "";
App::$strings["Reveal my online status"] = "";
App::$strings["Edit Profile Details"] = "Endre profildetaljer";
App::$strings["View this profile"] = "Vis denne profilen";
App::$strings["Profile Tools"] = "Profilverktøy";
App::$strings["Change cover photo"] = "Endre omslagsbilde";
App::$strings["Create a new profile using these settings"] = "Lag en ny profil ved å bruke disse innstillingene";
App::$strings["Clone this profile"] = "Klon denne profilen";
App::$strings["Delete this profile"] = "Slett denne profilen";
App::$strings["Add profile things"] = "Legg til profilting";
App::$strings["Basic"] = "";
App::$strings["Relationship"] = "";
App::$strings["Import profile from file"] = "Importer profil fra fil";
App::$strings["Export profile to file"] = "Eksporter profil til fil";
App::$strings["Your gender"] = "Kjønn";
App::$strings["Marital status"] = "Sivilstatus";
App::$strings["Sexual preference"] = "Legning";
App::$strings["Profile name"] = "Profilnavn";
App::$strings["This is your default profile."] = "Dette er din standardprofil.";
App::$strings["Your full name"] = "Fullt navn";
App::$strings["Short title/description"] = "";
App::$strings["Maximal 190 characters"] = "";
App::$strings["Street address"] = "Gateadresse";
App::$strings["Locality/City"] = "Sted/by";
App::$strings["Region/State"] = "Region";
App::$strings["Postal/Zip code"] = "Postnummer";
App::$strings["Who (if applicable)"] = "Hvem (om relevant)";
App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Eksempler: kari123, Kari Villiamsen, kari@example.com";
App::$strings["Since (date)"] = "Fra (dato)";
App::$strings["Tell us about yourself"] = "Fortell oss om deg selv";
App::$strings["Hometown"] = "Hjemsted";
App::$strings["Political views"] = "Politiske holdninger";
App::$strings["Religious views"] = "Religiøse holdninger";
App::$strings["Keywords used in directory listings"] = "Nøkkelord for bruk i katalogoppføringen";
App::$strings["Example: fishing photography software"] = "Eksempel: fisking fotografering programvare";
App::$strings["Musical interests"] = "Musikkinteresser";
App::$strings["Books, literature"] = "Bøker, litteratur";
App::$strings["Television"] = "TV/fjernsyn";
App::$strings["Film/Dance/Culture/Entertainment"] = "Film/dans/kultur/underholdning";
App::$strings["Hobbies/Interests"] = "Hobbier/Interesser";
App::$strings["Love/Romance"] = "Kjærlighet/romantikk";
App::$strings["School/Education"] = "Skolle/utdanning";
App::$strings["Contact information and social networks"] = "Kontaktinformasjon og andre sosiale nettverk";
App::$strings["My other channels"] = "Mine andre kanaler";
App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s følger %2\$s sin %3\$s";
App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s stopped å følge %2\$s sin %3\$s";
App::$strings["Bookmark added"] = "Bokmerke lagt til";
App::$strings["My Connections Bookmarks"] = "Mine forbindelsers bokmerker";
App::$strings["Channel name changes are not allowed within 48 hours of changing the account password."] = "";
App::$strings["Change channel nickname/address"] = "";
App::$strings["Any/all connections on other networks will be lost!"] = "";
App::$strings["New channel address"] = "";
App::$strings["Rename Channel"] = "";
App::$strings["Invite App"] = "";
App::$strings["Register is closed"] = "";
App::$strings["Note, the invitation code is valid up to"] = "";
App::$strings["Too many recipients for one invitation (max %d)"] = "";
App::$strings["No recipients for this invitation"] = "";
App::$strings["(%s) : Not a real email address"] = "(%s): Ikke en virkelig epostadresse";
App::$strings["(%s) : Not allowed email address"] = "(%s): Ikke en tillatt epostadresse";
App::$strings["(%s) : email address already in use"] = "(%s): epostadressen er allerede i bruk";
App::$strings["(%s) : Accepted email address"] = "(%s): Godkjent epostadresse";
App::$strings["To %s : Message delivery success."] = "";
App::$strings["%1\$d mail(s) sent, %2\$d mail error(s)"] = "";
App::$strings["Invites not proposed by configuration"] = "";
App::$strings["Contact the site admin"] = "";
App::$strings["Invites by users not enabled"] = "";
App::$strings["You have no more invitations available"] = "Du har ikke flere invitasjoner tilgjengelig";
App::$strings["Not on xchan"] = "";
App::$strings["All users invitation limit exceeded."] = "";
App::$strings["Invitation expires after"] = "";
App::$strings["Invitation"] = "";
App::$strings["Send invitations"] = "Send invitasjoner";
App::$strings["Invitations I am using"] = "";
App::$strings["Invitations we are using"] = "";
App::$strings["§ Note, the email(s) sent will be recorded in the system logs"] = "";
App::$strings["Enter email addresses, one per line:"] = "Skriv e-postadresser, en per linje:";
App::$strings["Your message:"] = "Din melding:";
App::$strings["Invite template"] = "";
App::$strings["Subject:"] = "Emne:";
App::$strings["Here you may enter personal notes to the recipient(s)"] = "";
App::$strings["Private forum"] = "";
App::$strings["Public forum"] = "Offentlig forum:";
App::$strings["Xchan Lookup"] = "Xchan oppslag";
App::$strings["Lookup xchan beginning with (or webbie): "] = "Slå opp xchan som begynner med (eller webbie): ";
App::$strings["Affinity Tool settings updated."] = "";
App::$strings["The numbers below represent the minimum and maximum slider default positions for your network/stream page as a percentage."] = "";
App::$strings["Default maximum affinity level"] = "";
App::$strings["0-99 default 99"] = "Standard";
App::$strings["Default minimum affinity level"] = "";
App::$strings["0-99 - default 0"] = "Standard";
App::$strings["Persistent affinity levels"] = "";
App::$strings["If disabled the max and min levels will be reset to default after page reload"] = "";
App::$strings["Affinity Tool Settings"] = "";
App::$strings["Max height of content (in pixels)"] = "Maks høyde for innhold (i piksler)";
App::$strings["Click to expand content exceeding this height"] = "Klikk for å vise hele innlegg som overskrider denne grensen";
App::$strings["Stream Settings"] = "Instillinger for tidslinjen";
App::$strings["Additional Features"] = "Ekstra funksjoner";
App::$strings["Please select a channel role"] = "";
App::$strings["Your channel address is"] = "Din kanaladresse er";
App::$strings["Your files/photos are accessible via WebDAV at"] = "";
App::$strings["Channel Settings"] = "Kanalinnstillinger";
App::$strings["Basic Settings"] = "Grunninnstillinger";
App::$strings["Channel timezone:"] = "";
App::$strings["Default post location:"] = "";
App::$strings["Geographical location to display on your posts"] = "Geografisk plassering som vises på dine innlegg";
App::$strings["Use browser location"] = "";
App::$strings["Adult content"] = "";
App::$strings["This channel frequently or regularly publishes adult content"] = "";
App::$strings["Maximum Friend Requests/Day:"] = "Maksimalt antall venneforespørsler per dag:";
App::$strings["May reduce spam activity"] = "Kan redusere søppelpostaktivitet";
App::$strings["Notification Settings"] = "Varslingsinnstillinger";
App::$strings["By default post a status message when:"] = "Legg inn en statusmelding når du:";
App::$strings["accepting a friend request"] = "aksepterer en venneforespørsel";
App::$strings["joining a forum/community"] = "blir med i et forum/miljø";
App::$strings["making an <em>interesting</em> profile change"] = "gjør en <em>interessant</em> profilendring";
App::$strings["Send a notification email when:"] = "Send en varsel-e-post når:";
App::$strings["You receive a connection request"] = "Du har mottatt en forespørsel om forbindelse";
App::$strings["Your connections are confirmed"] = "Dine forbindelser er bekreftet";
App::$strings["Someone writes on your profile wall"] = "Noen skriver på din profilvegg";
App::$strings["Someone writes a followup comment"] = "Noen skriver en oppfølgende kommentar";
App::$strings["You receive a private message"] = "Du mottar en privat melding";
App::$strings["You receive a friend suggestion"] = "Du mottok et venneforslag";
App::$strings["You are tagged in a post"] = "Du merkes i et innlegg";
App::$strings["You are poked/prodded/etc. in a post"] = "Du ble prikket/oppildnet/og så vider i et innlegg";
App::$strings["Someone likes your post/comment"] = "";
App::$strings["Show visual notifications including:"] = "Vis visuelle varslinger om:";
App::$strings["Unseen stream activity"] = "";
App::$strings["Unseen channel activity"] = "Usett kanalaktivitet";
App::$strings["Unseen private messages"] = "Usette private meldinger";
App::$strings["Recommended"] = "Anbefalt";
App::$strings["Upcoming events"] = "Kommende hendelser";
App::$strings["Events today"] = "Hendelser idag";
App::$strings["Upcoming birthdays"] = "Kommende fødselsdager";
App::$strings["Not available in all themes"] = "Ikke tilgjengelig i alle temaer";
App::$strings["System (personal) notifications"] = "System (personlige) varslinger";
App::$strings["System info messages"] = "System infomeldinger";
App::$strings["System critical alerts"] = "System kritiske varsel";
App::$strings["New connections"] = "Nye forbindelser";
App::$strings["System Registrations"] = "Systemregistreringer";
App::$strings["Unseen shared files"] = "";
App::$strings["Unseen public stream activity"] = "";
App::$strings["Unseen likes and dislikes"] = "";
App::$strings["Unseen forum posts"] = "";
App::$strings["Email notification hub (hostname)"] = "";
App::$strings["If your channel is mirrored to multiple hubs, set this to your preferred location. This will prevent duplicate email notifications. Example: %s"] = "";
App::$strings["Show new wall posts, private messages and connections under Notices"] = "";
App::$strings["Mark all notices of the thread read if a notice is clicked"] = "";
App::$strings["If no, only the clicked notice will be marked read"] = "";
App::$strings["Desktop notifications are unavailable because the required browser permission has not been granted"] = "";
App::$strings["Grant permission"] = "";
App::$strings["Notify me of events this many days in advance"] = "Varsle meg om hendelser dette antall dager på forhånd";
App::$strings["Must be greater than 0"] = "Må være større enn 0";
App::$strings["Default photo upload folder"] = "Standard mappe for opplasting av bilder";
App::$strings["%Y - current year, %m -  current month"] = "%Y - nåværende år, %m - nåværende måned";
App::$strings["Default file upload folder"] = "Standard mappe for opplasting av filer";
App::$strings["Remove this channel."] = "Fjern denne kanalen.";
App::$strings["Expire other channel content after this many days"] = "Annet kanal innhold utløper etter så mange dager";
App::$strings["0 or blank to use the website limit."] = "";
App::$strings["This website expires after %d days."] = "";
App::$strings["This website does not expire imported content."] = "";
App::$strings["The website limit takes precedence if lower than your limit."] = "";
App::$strings["Words one per line or #tags, \$categories, /patterns/, lang=xx, lang!=xx - leave blank to import all posts"] = "";
App::$strings["Not valid email."] = "Ikke gyldig e-post.";
App::$strings["Protected email address. Cannot change to that email."] = "Beskyttet e-postadresse. Kan ikke endre til den e-postadressen.";
App::$strings["System failure storing new email. Please try again."] = "Systemfeil ved lagring av ny e-post. Vennligst prøv igjen.";
App::$strings["Password verification failed."] = "Passordbekreftelsen mislyktes.";
App::$strings["Passwords do not match. Password unchanged."] = "Passordene stemmer ikke overens. Passord uforandret.";
App::$strings["Empty passwords are not allowed. Password unchanged."] = "Tomme passord er ikke tillatt. Passord uforandret.";
App::$strings["Password changed."] = "Passord endret.";
App::$strings["Password update failed. Please try again."] = "Passord oppdatering mislyktes. Vennligst prøv igjen.";
App::$strings["Account Settings"] = "Kontoinnstillinger";
App::$strings["Current Password"] = "Nåværende passord";
App::$strings["Enter New Password"] = "Skriv nytt passord";
App::$strings["Confirm New Password"] = "Bekreft nytt passord";
App::$strings["Leave password fields blank unless changing"] = "La passordfeltene stå blanke om det ikke skal endres";
App::$strings["Multi-Factor Authentication"] = "Flerfaktorautentisering";
App::$strings["DId2 or Email Address:"] = "DId2 eller epostadresse:";
App::$strings["Remove this account including all its channels"] = "Slett denne kontoen inkludert alle dens kanaler";
App::$strings["No feature settings configured"] = "Ingen funksjonsinnstillinger er konfigurert";
App::$strings["Addon Settings"] = "Instillinger for tillegg";
App::$strings["Please save/submit changes to any panel before opening another."] = "Husk å lagre endringene i ett panel før du åpner andre.";
App::$strings["Events Settings"] = "";
App::$strings["Channel Manager Settings"] = "";
App::$strings["Personal menu to display in your channel pages"] = "Personlig meny som kan vises på dine kanalsider";
App::$strings["Channel Home Settings"] = "";
App::$strings["Calendar Settings"] = "";
App::$strings["Password is required"] = "Navn er påkrevd";
App::$strings["The provided password is not correct"] = "";
App::$strings["Account Multi-Factor Authentication"] = "Tofaktorautentisering";
App::$strings["This is your generated secret. It may be used in some cases if the QR image cannot be read. Please store it in a safe place."] = "Dette er en generert sikkerhetskode. Den kan være nyttig i enkelte tilfeller hvor QR koden ikke kan leses. Lagre den et sikkert sted.";
App::$strings["Please enter the code from your authenticator app"] = "Skriv inn koden fra din autentiseringsapp";
App::$strings["You will only be able to enable MFA if the test passes"] = "Flerfaktorautentisering vil kun bli slått på dersom denne testen lykkes";
App::$strings["Congratulations, the provided code was correct"] = "";
App::$strings["Incorrect code"] = "";
App::$strings["Enable Multi-Factor Authentication"] = "Mislykket autentisering";
App::$strings["Logging in will require you to be in possession of your smartphone"] = "";
App::$strings["Your account password"] = "Ditt nye passord er";
App::$strings["%s - (Experimental)"] = "%s - (Eksperimentelt)";
App::$strings["Display Settings"] = "Visningsinnstillinger";
App::$strings["Theme Settings"] = "Temainnstillinger";
App::$strings["Custom Theme Settings"] = "Tilpassede temainnstillinger";
App::$strings["Content Settings"] = "Innholdsinnstillinger";
App::$strings["Display Theme:"] = "Visningstema:";
App::$strings["Select scheme"] = "Velg skjema";
App::$strings["Preload images before rendering the page"] = "Last inn bildene før gjengivelsen av siden";
App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "Den personlige opplevelsen av lastetiden vil være lenger, men siden vil være klar når den vises";
App::$strings["Enable user zoom on mobile devices"] = "Skru på brukerstyrt zoom på mobile enheter";
App::$strings["Update browser every xx seconds"] = "Oppdater nettleser hvert xx sekunder";
App::$strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 sekunder, ikke noe maksimum";
App::$strings["Maximum number of conversations to load at any time:"] = "Maksimalt antall samtaler å laste samtidig:";
App::$strings["Maximum of 30 items"] = "";
App::$strings["Show emoticons (smilies) as images"] = "Vis emoticons (smilefjes) som bilder";
App::$strings["Link post titles to source"] = "Lenk innleggets tittel til kilden";
App::$strings["Display new member quick links menu"] = "Vis hurtiglenker for nye medlemmer";
App::$strings["Directory Settings"] = "";
App::$strings["Editor Settings"] = "Instillinger for redigering";
App::$strings["Connections Settings"] = "";
App::$strings["Photos Settings"] = "";
App::$strings["Default profile for new contacts"] = "";
App::$strings["Profiles Settings"] = "";
App::$strings["Privacy settings updated."] = "Personverninnstillingene ble oppdatert.";
App::$strings["Only those you specifically allow"] = "Bare de du spesifikt tillater";
App::$strings["Approved connections"] = "Godkjente forbindelser";
App::$strings["Any connections"] = "Enhver forbindelse";
App::$strings["Anybody on this website"] = "Enhver ved dette nettstedet";
App::$strings["Anybody in this network"] = "Enhver i dette nettverket";
App::$strings["Anybody authenticated"] = "Enhver som er autentisert";
App::$strings["Anybody on the internet"] = "Enhver på Internett";
App::$strings["Advise: set to \"Anybody on the internet\" and use privacy groups to restrict access"] = "";
App::$strings["Privacy Settings"] = "Personverninnstillinger";
App::$strings["Advanced configuration"] = "";
App::$strings["Proceed with caution"] = "";
App::$strings["Changing advanced configuration settings can impact your, and your contacts channels functionality and security."] = "";
App::$strings["Accept the risk and continue"] = "";
App::$strings["Automatically approve new contacts"] = "Automatisk godkjenn nye kontakter";
App::$strings["Opt-out of search engine indexing"] = "Ikke la søkemotorer indeksere denne kanalen";
App::$strings["Group actor"] = "";
App::$strings["Allow this channel to act as a forum"] = "";
App::$strings["Accept all messages which mention you"] = "Godta alle meldinger som nevner deg";
App::$strings["This setting bypasses normal permissions"] = "Denne instillingen overstyrer vanlig tilgangskontroll";
App::$strings["Accept unsolicited comments for moderation"] = "Godta kommentarer fra fremmede for moderering";
App::$strings["Otherwise they will be silently dropped"] = "Ellers vil de avvises uten varsel";
App::$strings["Enable OCAP access"] = "Slå på OCAP tilgangskontroll";
App::$strings["Grant limited posts the right to access linked private media"] = "Gi begrensede innlegg tilgang til private media som er lenket fra dem";
App::$strings["Settings saved."] = "";
App::$strings["Settings saved. Reload page please."] = "";
App::$strings["Conversation Settings"] = "";
App::$strings["Unable to update menu."] = "Ikke i stand til å oppdatere meny.";
App::$strings["Unable to create menu."] = "Ikke i stand til å lage meny.";
App::$strings["Menu Name"] = "Menynavn";
App::$strings["Unique name (not visible on webpage) - required"] = "Unikt navn (ikke synlig på websiden) - påkrevet";
App::$strings["Menu Title"] = "Menytittel";
App::$strings["Visible on webpage - leave empty for no title"] = "Synlig på websiden - la stå tomt for ingen tittel";
App::$strings["Allow Bookmarks"] = "Tillat bokmerker";
App::$strings["Menu may be used to store saved bookmarks"] = "Menyen kan brukes til å lagre lagrede bokmerker";
App::$strings["Submit and proceed"] = "Send inn og fortsett";
App::$strings["Drop"] = "Slett";
App::$strings["Bookmarks allowed"] = "Bokmerker tillatt";
App::$strings["Delete this menu"] = "Slett denne menyen";
App::$strings["Edit menu contents"] = "Endre menyinnholdet";
App::$strings["Edit this menu"] = "Endre denne menyen";
App::$strings["Menu could not be deleted."] = "Menyen kunne ikke bli slettet.";
App::$strings["Edit Menu"] = "Endre meny";
App::$strings["Add or remove entries to this menu"] = "Legg til eller fjern punkter i denne menyen";
App::$strings["Menu name"] = "Menynavn";
App::$strings["Must be unique, only seen by you"] = "Må være unik, ses bare av deg";
App::$strings["Menu title"] = "Menytittel";
App::$strings["Menu title as seen by others"] = "Menytittelen andre ser";
App::$strings["Allow bookmarks"] = "Tillat bokmerker";
App::$strings["Connection Default Permissions"] = "Forbindelsens standard tillatelser";
App::$strings["Apply these permissions automatically"] = "Bruk disse tillatelsene automatisk";
App::$strings["If enabled, connection requests will be approved without your interaction"] = "";
App::$strings["Permission role"] = "";
App::$strings["Add permission role"] = "";
App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Tillatelsene angitt på denne siden gjøres gjeldende for alle nye forbindelser.";
App::$strings["Automatic approval settings"] = "";
App::$strings["My Settings"] = "Mine innstillinger";
App::$strings["Individual Permissions"] = "Individuelle tillatelser";
App::$strings["Some individual permissions may have been preset or locked based on your channel type and privacy settings."] = "";
App::$strings["This setting requires special processing and editing has been blocked."] = "Denne innstillingen krever spesiell behandling og redigering har blitt blokkert.";
App::$strings["Configuration Editor"] = "Konfigurasjonsbehandler";
App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Advarsel: kanalen din kan slutte å virke ved endring av enkelte innstillinger. Vennligst forlat denne siden med mindre du er komfortabel med dette og vet hvordan du bruker denne funksjonen riktig.";
App::$strings["Name and Secret are required"] = "";
App::$strings["Add OAuth2 application"] = "";
App::$strings["Grant Types"] = "";
App::$strings["leave blank unless your application sepcifically requires this"] = "";
App::$strings["Authorization scope"] = "";
App::$strings["OAuth2 Application not found."] = "";
App::$strings["leave blank unless your application specifically requires this"] = "";
App::$strings["Connected OAuth2 Apps"] = "";
App::$strings["Invalid message"] = "Ugyldig melding";
App::$strings["no results"] = "ingen resultater";
App::$strings["channel sync processed"] = "kanalsynkronisering er behandlet";
App::$strings["queued"] = "lagt i kø";
App::$strings["posted"] = "lagt inn";
App::$strings["accepted for delivery"] = "akseptert for levering";
App::$strings["updated"] = "oppdatert";
App::$strings["update ignored"] = "oppdatering ignorert";
App::$strings["permission denied"] = "tillatelse avvist";
App::$strings["recipient not found"] = "mottaker ble ikke funnet";
App::$strings["Delivery report for %1\$s"] = "Leveringsrapport for %1\$s";
App::$strings["Redeliver"] = "";
App::$strings["Thing updated"] = "Tingen er oppdatert";
App::$strings["Object store: failed"] = "Objektlagring: mislyktes";
App::$strings["Thing added"] = "Ting lagt til";
App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s";
App::$strings["Show Thing"] = "Vis ting";
App::$strings["item not found."] = "element ble ikke funnet.";
App::$strings["Edit Thing"] = "Endre ting";
App::$strings["Select a profile"] = "Velg en profil";
App::$strings["Post an activity"] = "Legg inn en aktivitet";
App::$strings["Only sends to viewers of the applicable profile"] = "Sender bare til seere av den aktuelle profilen";
App::$strings["Name of thing e.g. something"] = "Navn på ting for eksempel noe";
App::$strings["URL of thing (optional)"] = "URL til ting (valgfritt)";
App::$strings["URL for photo of thing (optional)"] = "URL til bilde av ting (valgfritt)";
App::$strings["Add Thing to your Profile"] = "Legg til ting i din profil";
App::$strings["Authentication failed."] = "Autentisering mislyktes.";
App::$strings["Item sync completed!"] = "";
App::$strings["Item sync completed but no items were found!"] = "";
App::$strings["File sync completed!"] = "";
App::$strings["File sync completed but no files were found!"] = "";
App::$strings["Channel clone status"] = "";
App::$strings["Item sync status"] = "";
App::$strings["File sync status"] = "";
App::$strings["Channel cloning completed!"] = "";
App::$strings["Resume"] = "";
App::$strings["Only resume if sync stalled!"] = "";
App::$strings["Layout updated."] = "Layout er oppdatert.";
App::$strings["Edit System Page Description"] = "Endre beskrivelsen av systemsiden";
App::$strings["(modified)"] = "(endret)";
App::$strings["Layout not found."] = "Layouten ble ikke funnet.";
App::$strings["Module Name:"] = "Modulnavn:";
App::$strings["Layout Help"] = "Layout-hjelp";
App::$strings["Edit another layout"] = "";
App::$strings["System layout"] = "";
App::$strings["Welcome to %s"] = "Velkommen til %s";
App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Ingen forslag tilgjengelige. Hvis dette er et nytt nettsted, vennligst prøv igjen om 24 timer.";
App::$strings["Connection updated."] = "Forbindelsen er oppdatert.";
App::$strings["Failed to update connection record."] = "Mislyktes med å oppdatere forbindelsesinformasjonen.";
App::$strings["Could not access address book record."] = "Fikk ikke tilgang til informasjonen i adresseboken.";
App::$strings["Refresh failed - channel is currently unavailable."] = "Oppfrisking mislyktes - kanalen er for øyeblikket utilgjengelig.";
App::$strings["Unable to set address book parameters."] = "Ikke i stand til å angi parametre for adresseboken.";
App::$strings["Connection has been removed."] = "Forbindelsen har blitt fjernet.";
App::$strings["View %s's profile"] = "Vis %s sin profil";
App::$strings["View recent posts and comments"] = "Vis nylige innlegg og kommentarer";
App::$strings["Fetch Vcard"] = "";
App::$strings["Fetch electronic calling card for this connection"] = "";
App::$strings["Open Set Affinity section by default"] = "";
App::$strings["Filter"] = "";
App::$strings["Open Custom Filter section by default"] = "";
App::$strings["Set Affinity"] = "Angi nærhet";
App::$strings["Set Profile"] = "Angi profil";
App::$strings["Set Affinity & Profile"] = "Angi nærhet og profil";
App::$strings["Contact: %s"] = "";
App::$strings["Manage contact roles"] = "";
App::$strings["This contacts's primary address is"] = "";
App::$strings["Available locations:"] = "Tilgjengelige plasseringer:";
App::$strings["Contact Pending Approval"] = "";
App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Vennligst velg profilen du ønsker å vise %s når profilen din ses på en sikret måte.";
App::$strings["Some permissions may be inherited from your channel's <a href=\"settings\"><strong>privacy settings</strong></a>, which have higher priority than individual settings. You can <strong>not</strong> change those settings here."] = "Noen tillatelser kan være arvet fra din kanals <a ref=\"settings\"><strong>personverninnstillinger</strong></a>, som har høyere prioritet enn individuelle innstillinger. Du kan <strong>ikke</strong> endre arvede innstillingene her.";
App::$strings["Some permissions may be inherited from your channel's <a href=\"settings\"><strong>privacy settings</strong></a>, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Noen tillatelser kan være arvet fra din kanals <a ref=\"settings\"><strong>personverninnstillinger</strong></a>, som har høyere prioritet enn individuelle innstillinger. Du kan endre disse innstillingene her, men de vil ikke få noen effekt før de arvede innstillingene endres.";
App::$strings["Last update:"] = "Siste oppdatering:";
App::$strings["Details"] = "";
App::$strings["No more system notifications."] = "Ingen flere systemvarsler.";
App::$strings["System Notifications"] = "Systemvarsler";
App::$strings["Mark all seen"] = "Merk alle som sett";
App::$strings["Comanche page description language help"] = "Hjelp med Comanche sidebeskrivelsesspråk";
App::$strings["Layout Description"] = "Layout-beskrivelse";
App::$strings["Download PDL file"] = "Last ned PDL-fil";
App::$strings["Location not found."] = "Plassering er ikke funnet.";
App::$strings["Location lookup failed."] = "Oppslag på plassering mislyktes.";
App::$strings["Please select another location to become primary before removing the primary location."] = "Vennligst velg en annen plassering som primær før du sletter gjeldende primære plassering.";
App::$strings["Syncing locations"] = "Synkroniserer plasseringer";
App::$strings["No locations found."] = "Ingen plasseringer ble funnet.";
App::$strings["Manage Channel Locations"] = "Håndter kanalplasseringer";
App::$strings["Sync Now"] = "Synkroniser nå";
App::$strings["Please wait several minutes between consecutive operations."] = "Vennligst vent flere minutter mellom hver etterfølgende operasjon.";
App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Når mulig, fjern en plassering ved å logge inn på det nettstedet eller den hub-en og fjern din kanal.";
App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Bruk dette skjemaet for å fjerne plasseringen hvis huben ikke er i drift lenger.";
App::$strings["Failed to create source. No channel selected."] = "Mislyktes med å lage kilde. Ingen kanal er valgt.";
App::$strings["Source created."] = "Kilden er laget.";
App::$strings["Source updated."] = "Kilden er oppdatert.";
App::$strings["*"] = "*";
App::$strings["Channel Sources"] = "Kanalkilder";
App::$strings["Manage remote sources of content for your channel."] = "Håndtere eksterne innholdskilder til din kanal.";
App::$strings["New Source"] = "Ny kilde";
App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importer alt eller et utvalgt av innhold fra følgende kanal inn i denne kanalen og distribuer det i henhold til dine egne kanalinnstillinger.";
App::$strings["Only import content with these words (one per line)"] = "Bare importer innhold med disse ordene (ett ord per linje)";
App::$strings["Leave blank to import all public content"] = "La stå tomt for å importere alt offentlig innhold";
App::$strings["Channel Name"] = "Kanalnavn";
App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "";
App::$strings["Resend posts with this channel as author"] = "";
App::$strings["Copyrights may apply"] = "";
App::$strings["Source not found."] = "Kilden ble ikke funnet.";
App::$strings["Edit Source"] = "Endre kilde";
App::$strings["Delete Source"] = "Slett kilde";
App::$strings["Source removed"] = "Kilden er fjernet";
App::$strings["Unable to remove source."] = "Ikke i stand til å fjerne kilde.";
App::$strings["Select a bookmark folder"] = "Velg en bokmerkemappe";
App::$strings["Save Bookmark"] = "Lagre bokmerke";
App::$strings["URL of bookmark"] = "URL-en til bokmerket";
App::$strings["Or enter new bookmark folder name"] = "Eller skriv nytt navn på bokmerkemappe";
App::$strings["A deleted privacy group with this name was revived. Existing item permissions <strong>may</strong> apply to this privacy group and any future members. If this is not what you intended, please create another privacy group with a different name."] = "";
App::$strings["Select a privacy group"] = "";
App::$strings["__ctx:permcat__ Default"] = "Standard";
App::$strings["Likes %1\$s's %2\$s"] = "";
App::$strings["Doesn't like %1\$s's %2\$s"] = "";
App::$strings["Will attend %s's event"] = "";
App::$strings["Will not attend %s's event"] = "";
App::$strings["May attend %s's event"] = "";
App::$strings["May not attend %s's event"] = "";
App::$strings["\$Projectname Notification"] = "\$Projectname varsling";
App::$strings["Thank You,"] = "Tusen takk,";
App::$strings["This email was sent by %1\$s at %2\$s."] = "";
App::$strings["To stop receiving these messages, please adjust your Notification Settings at %s"] = "";
App::$strings["To stop receiving these messages, please adjust your %s."] = "";
App::$strings["%s <!item_type!>"] = "%s <!item_type!>";
App::$strings["[\$Projectname:Notify] New direct message received at %s"] = "[\$Projectname:Notify] Ny direktemelding mottatt kl. %s";
App::$strings["%1\$s sent you a new direct message at %2\$s"] = "%1\$s sendte deg en ny direktemelding kl. %2\$s";
App::$strings["%1\$s sent you %2\$s."] = "%1\$s sendte deg %2\$s.";
App::$strings["a direct message"] = "en direktemelding";
App::$strings["Please visit %s to view and/or reply to your direct messages."] = "Gå til %s for å vise og/eller svare på dine direktemeldinger.";
App::$strings["requested to comment on"] = "";
App::$strings["commented on"] = "";
App::$strings["requested to like"] = "Dato for forespørsel";
App::$strings["liked"] = "";
App::$strings["requested to dislike"] = "";
App::$strings["disliked"] = "";
App::$strings["voted on"] = "";
App::$strings["%1\$s %2\$s [zrl=%3\$s]a %4\$s[/zrl]"] = "";
App::$strings["%1\$s %2\$s [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "";
App::$strings["%1\$s %2\$s [zrl=%3\$s]your %4\$s[/zrl]"] = "";
App::$strings["[\$Projectname:Notify] Moderated Comment to conversation #%1\$d by %2\$s"] = "";
App::$strings["[\$Projectname:Notify] Comment to conversation #%1\$d by %2\$s"] = "";
App::$strings["%1\$s commented on an item/conversation you have been following"] = "";
App::$strings["Please visit %s to view and/or reply to the conversation."] = "Vennligst besøk %s for å se og/eller svare i samtalen.";
App::$strings["Please visit %s to approve or reject this comment."] = "";
App::$strings["[\$Projectname:Notify] Like received to conversation #%1\$d by %2\$s"] = "";
App::$strings["%1\$s liked an item/conversation you created"] = "";
App::$strings["[\$Projectname:Notify] %s posted to your profile wall"] = "";
App::$strings["%1\$s posted to your profile wall at %2\$s"] = "";
App::$strings["%1\$s posted to [zrl=%2\$s]your wall[/zrl]"] = "";
App::$strings["[\$Projectname:Notify] %s tagged you"] = "";
App::$strings["%1\$s tagged you at %2\$s"] = "";
App::$strings["%1\$s [zrl=%2\$s]tagged you[/zrl]."] = "";
App::$strings["[\$Projectname:Notify] %1\$s poked you"] = "";
App::$strings["%1\$s poked you at %2\$s"] = "";
App::$strings["%1\$s [zrl=%2\$s]poked you[/zrl]."] = "";
App::$strings["[\$Projectname:Notify] %s tagged your post"] = "";
App::$strings["%1\$s tagged your post at %2\$s"] = "";
App::$strings["%1\$s tagged [zrl=%2\$s]your post[/zrl]"] = "";
App::$strings["[\$Projectname:Notify] Introduction received"] = "";
App::$strings["You've received an new connection request from '%1\$s' at %2\$s"] = "";
App::$strings["You've received [zrl=%1\$s]a new connection request[/zrl] from %2\$s."] = "";
App::$strings["You may visit their profile at %s"] = "Du kan besøke profilen deres på %s";
App::$strings["Please visit %s to approve or reject the connection request."] = "Vennligst besøk %s for å godkjenne eller avslå forespørselen om forbindelse.";
App::$strings["[\$Projectname:Notify] Friend suggestion received"] = "";
App::$strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "";
App::$strings["You've received [zrl=%1\$s]a friend suggestion[/zrl] for %2\$s from %3\$s."] = "";
App::$strings["Name:"] = "Navn:";
App::$strings["Photo:"] = "Bilde:";
App::$strings["Please visit %s to approve or reject the suggestion."] = "Vennligst besøk %s for å godkjenne eller avslå dette forslaget.";
App::$strings["[\$Projectname:Notify]"] = "";
App::$strings["created a new poll"] = "opprettet spørreskjema";
App::$strings["created a new post"] = "laget et nytt innlegg";
App::$strings["voted on %s's poll"] = "stemte på %s sitt spørreskjema";
App::$strings["commented on %s's post"] = "kommenterte på %s sitt innlegg";
App::$strings["repeated %s's post"] = "";
App::$strings["liked %s's post"] = "";
App::$strings["disliked %s's post"] = "";
App::$strings["shared a file with you"] = "";
App::$strings["edited a post dated %s"] = "";
App::$strings["edited a comment dated %s"] = "";
App::$strings["added your channel"] = "la til din kanal";
App::$strings["sent you a direct message"] = "sendte deg en direktemelding";
App::$strings["g A l F d"] = "g A l F d";
App::$strings["[today]"] = "[idag]";
App::$strings["created an event"] = "";
App::$strings["status verified"] = "";
App::$strings["Channel is blocked on this site."] = "Kanalen er blokkert på dette nettstedet.";
App::$strings["Channel location missing."] = "Kanalplassering mangler.";
App::$strings["Remote channel or protocol unavailable."] = "";
App::$strings["Channel discovery failed."] = "Kanaloppdagelse mislyktes.";
App::$strings["Protocol disabled."] = "Protokollen er avskrudd.";
App::$strings["Cannot connect to yourself."] = "Kan ikke lage forbindelse med deg selv.";
App::$strings["error saving data"] = "";
App::$strings["Missing room name"] = "Mangler romnavn";
App::$strings["Duplicate room name"] = "Duplikat romnavn";
App::$strings["Invalid room specifier."] = "Ugyldig rom-spesifisering.";
App::$strings["Room not found."] = "Rommet ble ikke funnet.";
App::$strings["Room is full"] = "Rommet er fullt";
App::$strings["Affinity Tool"] = "Nærhetsverktøy";
App::$strings["Site Admin"] = "Nettstedsadministrator";
App::$strings["Content Filter"] = "";
App::$strings["Remote Diagnostics"] = "";
App::$strings["Suggest Channels"] = "Foreslå kanaler";
App::$strings["Channel Manager"] = "Kanalstyring";
App::$strings["Stream"] = "Tidslinje";
App::$strings["Mail"] = "Melding";
App::$strings["Chat"] = "Chat";
App::$strings["Probe"] = "Undersøk";
App::$strings["Suggest"] = "Forreslå";
App::$strings["Random Channel"] = "Tilfeldig kanal";
App::$strings["Invite"] = "Inviter";
App::$strings["Post"] = "Innlegg";
App::$strings["Notifications"] = "Varsler";
App::$strings["Order Apps"] = "";
App::$strings["CardDAV"] = "";
App::$strings["OAuth Apps Manager"] = "";
App::$strings["OAuth2 Apps Manager"] = "";
App::$strings["PDL Editor"] = "";
App::$strings["My Chatrooms"] = "";
App::$strings["Channel Export"] = "";
App::$strings["Purchase"] = "Kjøp";
App::$strings["Undelete"] = "";
App::$strings["Add to app-tray"] = "";
App::$strings["Remove from app-tray"] = "";
App::$strings["Pin to navbar"] = "";
App::$strings["Unpin from navbar"] = "";
App::$strings["0. Beginner/Basic"] = "";
App::$strings["1. Novice - not skilled but willing to learn"] = "";
App::$strings["2. Intermediate - somewhat comfortable"] = "";
App::$strings["3. Advanced - very comfortable"] = "";
App::$strings["4. Expert - I can write computer code"] = "";
App::$strings["5. Wizard - I probably know more than you do"] = "";
App::$strings["Directory Options"] = "Kataloginnstillinger";
App::$strings["Safe Mode"] = "Trygt modus";
App::$strings["Public Forums Only"] = "Bare offentlige forum";
App::$strings["This Website Only"] = "Kun dette nettstedet";
App::$strings["Unable to verify channel signature"] = "Ikke i stand til å sjekke kanalsignaturen";
App::$strings["Restricted message"] = "Begrenset melding";
App::$strings["Direct message"] = "Direktemelding";
App::$strings["Public Policy"] = "";
App::$strings["Privacy conflict. Discretion advised."] = "";
App::$strings["Admin Delete"] = "";
App::$strings["Reply on this comment"] = "";
App::$strings["reply"] = "";
App::$strings["Reply to"] = "";
App::$strings["Delivery Report"] = "Leveringsrapport";
App::$strings["%d Comment"] = array(
	0 => "%d kommentar",
	1 => "%d kommentarer",
);
App::$strings["%d unseen"] = "";
App::$strings["Forum"] = "";
App::$strings["to"] = "til";
App::$strings["Wall-to-Wall"] = "Vegg-til-vegg";
App::$strings["via Wall-To-Wall:"] = "via vegg-til-vegg:";
App::$strings["Attend"] = "";
App::$strings["Go to previous comment"] = "";
App::$strings["Add to Calendar"] = "Legg til i kalender";
App::$strings["Image"] = "Bilde";
App::$strings["Insert Link"] = "Sett inn lenke";
App::$strings["Video"] = "Video";
App::$strings["Your full name (required)"] = "";
App::$strings["Your email address (required)"] = "";
App::$strings["Your website URL (optional)"] = "";
App::$strings["Source code of failed update: "] = "";
App::$strings["Update Error at %s"] = "Oppdateringsfeil ved %s";
App::$strings["Update %s failed. See error logs."] = "Oppdatering %s mislyktes. Se feilloggen.";
App::$strings["Public"] = "Offentlig";
App::$strings["Anybody in the \$Projectname network"] = "";
App::$strings["Any account on %s"] = "";
App::$strings["Any of my connections"] = "";
App::$strings["Only connections I specifically allow"] = "";
App::$strings["Anybody authenticated (could include visitors from other networks)"] = "";
App::$strings["Any connections including those who haven't yet been approved"] = "";
App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "";
App::$strings["This is your default setting for who can view your default channel profile"] = "";
App::$strings["This is your default setting for who can view your connections"] = "";
App::$strings["This is your default setting for who can view your file storage and photos"] = "";
App::$strings["This is your default setting for the audience of your webpages"] = "";
App::$strings["Unable to verify site signature for %s"] = "Ikke i stand til å bekrefte signaturen til %s";
App::$strings["Social Networking"] = "Sosialt nettverk";
App::$strings["Social - Federation"] = "";
App::$strings["Social - Mostly Public"] = "Sosial - ganske offentlig";
App::$strings["Social - Restricted"] = "Sosial - begrenset";
App::$strings["Social - Private"] = "Sosial - privat";
App::$strings["Community Forum"] = "Forum for fellesskap";
App::$strings["Forum - Mostly Public"] = "Forum - ganske offentlig";
App::$strings["Forum - Restricted"] = "Forum - begrenset";
App::$strings["Forum - Private"] = "Forum - privat";
App::$strings["Feed Republish"] = "Republisering av strømmet innhold";
App::$strings["Feed - Mostly Public"] = "Strøm - ganske offentlig";
App::$strings["Feed - Restricted"] = "Strøm - begrenset";
App::$strings["Special Purpose"] = "Spesiell bruk";
App::$strings["Special - Celebrity/Soapbox"] = "Spesiell - kjendis/talerstol";
App::$strings["Special - Group Repository"] = "Spesiell - gruppelager";
App::$strings["Custom/Expert Mode"] = "Tilpasset/Ekspertmodus";
App::$strings["Personal"] = "Personlig";
App::$strings["Community forum"] = "Forum for fellesskap";
App::$strings["Custom"] = "";
App::$strings["Can view my channel stream and posts"] = "";
App::$strings["Can send me their channel stream and posts"] = "Kan sende meg deres kanalstrøm og innlegg";
App::$strings["Can view my default channel profile"] = "Kan se min standard kanalprofil";
App::$strings["Can view my connections"] = "Kan se mine forbindelser";
App::$strings["Can view my file storage and photos"] = "Kan se mine filer og bilder";
App::$strings["Can upload/modify my file storage and photos"] = "";
App::$strings["Can view my channel webpages"] = "";
App::$strings["Can view my wiki pages"] = "";
App::$strings["Can create/edit my channel webpages"] = "";
App::$strings["Can write to my wiki pages"] = "";
App::$strings["Can post on my channel (wall) page"] = "";
App::$strings["Can comment on or like my posts"] = "Kan kommentere på eller like mine innlegg";
App::$strings["Can send me direct messages"] = "Kan sende meg direktemeldinger";
App::$strings["Can like/dislike profiles and profile things"] = "";
App::$strings["Can chat with me"] = "";
App::$strings["Can source/mirror my public posts in derived channels"] = "";
App::$strings["Can administer my channel"] = "";
App::$strings["Change filename to"] = "";
App::$strings["Select a target location"] = "";
App::$strings["Copy to target location"] = "";
App::$strings["Set permissions for all files and sub folders"] = "";
App::$strings["Notify your contacts about this file"] = "Varsle dine kontakter om denne filen";
App::$strings["File category"] = "";
App::$strings["Total"] = "Totalt";
App::$strings["Shared"] = "Delt";
App::$strings["Add Files"] = "";
App::$strings["parent"] = "opp et nivå";
App::$strings["Select All"] = "velg alle";
App::$strings["Bulk Actions"] = "";
App::$strings["Adjust Permissions"] = "";
App::$strings["Move or Copy"] = "";
App::$strings["Info"] = "";
App::$strings["Rename"] = "";
App::$strings["Attachment BBcode"] = "";
App::$strings["Embed BBcode"] = "";
App::$strings["Link BBcode"] = "";
App::$strings["You are using %1\$s of your available file storage."] = "Du bruker %1\$s av din tilgjengelige lagringsplass.";
App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s&#37;)"] = "Du bruker %1\$s av %2\$s tilgjengelig lagringsplass (%3\$s&#37;)";
App::$strings["WARNING:"] = "ADVARSEL:";
App::$strings["Create new folder"] = "Lag ny mappe";
App::$strings["Upload file"] = "Last opp fil";
App::$strings["Drop files here to immediately upload"] = "";
App::$strings["You can select files via the upload button or drop them right here or into an existing folder."] = "";
App::$strings["Create an account to access services and applications"] = "";
App::$strings["Email or nickname"] = "";
App::$strings["Password"] = "Passord";
App::$strings["Remember me"] = "Husk meg";
App::$strings["Forgot your password?"] = "Glemt passordet ditt?";
App::$strings["[\$Projectname] Website SSL error for %s"] = "";
App::$strings["Website SSL certificate is not valid. Please correct."] = "Nettstedets SSL-sertifikat er ikke gyldig. Vennligst fiks dette.";
App::$strings["[\$Projectname] Cron tasks not running on %s"] = "";
App::$strings["Cron/Scheduled tasks not running."] = "Cron/planlagte oppgaver kjører ikke.";