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
|
<?php
$lang=Array(
"User_versions_for" => "Brukerversjoner for",
"Version" => "Versjon",
"Date" => "Dato",
"Page" => "Side",
"Ip" => "Ip",
"Comment" => "Kommentar",
"Action" => "Handling",
"view" => "vis",
"No records found" => "Søket ga ingen resultater",
"Administration" => "Administrasjon",
"Links/Commands" => "Linker/Kommandoer",//perhaps not used
"Preferences" => "Innstilinger",
"Wiki Features" => "Wiki Egenskaper",
"Admin users" => "Administrere brukere",
"Generate dump" => "Generer dump",
"Download last dump" => "Last ned siste dump",
"Create a tag for the current wiki" => "Lag et bokmerke for denne wiki",
"create tag" => "Lag et bokmerke",//perhaps not used
"Restore the wiki" => "Gjenopprett wiki",
"restore" => "gjenopprett",
"Tag Name" => "Bokmerkenavn",
"remove" => "fjern",
"Remove a tag" => "Fjern et bokmerke",
"Anonymous users can edit pages" => "Anonyme brukere kan redigere sider",//perhaps not used
"Users can register" => "Brukere kan registrere seg",
"Open external links in new window" => "Åpne eksterne linker i et nytt vindu",
"Maximum number of versions for history" => "Maks antall versjoner som lagres i loggen",
"Maximum number of records in listings" => "Maks antall rader i lister",
"Wiki_Tiki_Title" => "Wiki_Tiki_Tittel",
"Change preferences" => "Endre innstilinger",
"Last changes" => "Siste endringer",
"Dump" => "Dump",
"Ranking" => "Rangering",
"History" => "Versjoner",
"List pages" => "Sideliste",
"Backlinks" => "Refererende sider",
"Like pages" => "Lignende sider",
"Search" => "Søk",
"Image Galleries" => "Bildegallerier",
"User versions" => "Bruker-versjoner",//perhaps not used
"Set features" => "Lagre innstilinger",
"Change admin password" => "Endre admin passord",
"Again" => "Igjen",
"Repeat password" => "Igjen",
"change" => "endre",
"name" => "navn",
"desc" => "beskrivelse",
"action" => "handling",
"assign" => "tildel",
"prev" => "forrige",
"next" => "neste",
"backlinks to" => "referanser til",
"No backlinks to this page" => "Ingen referanser til denna siden",
"Edit" => "Rediger",
"Allow HTML" => "Tillat HTML",
"preview" => "forhåndsvisning",
"save" => "lagre",
"TextFormattingRules" => "TekstFormateringsRegler",
"Emphasis" => "Vektlegging",
"italics" => "kursiv",
"for" => "for",
"bold" => "fet",
"both" => "begge",
"Lists" => "Lister",
"for bullet lists" => "for punktliste",
"for numbered lists" => "for nummerert liste",
"term" => "uttrykk",
"definition" => "definisjon",
"for definiton lists" => "for definisjonsliste",
"References" => "Referanser",//perhaps not used
"JoinCapitalizedWords" => "SammansatteOrdMedStoreBokstaver",//perhaps not used
"or use square brackets for an" => "eller bruk hakeparenteser for a lage",//perhaps not used
"external link" => "eksterne linker",
"link_description" => "beskrivelse av link",
"Misc" => "Div.",
"make_headings" => "lag overskrift",
"makes a horizontal rule" => "lager en horisontal strek",
"Title_bar" => "Tittellinje",//perhaps not used
"title" => "tittel",
"creates a title bar" => "lag en tittellinje",
"Images" => "Bilder",
"img" => "img",//perhaps not used
"displays an image" => "viser et bilde",
"height width desc link and align are optional" => "høyde, bredde, beskrivelse, link og justering er valfritt",
"Tables" => "Tabeller",
"creates a table" => "lag en tabell",
"Last Changes" => "Siste endringer",
"Today" => "I dag",
"days" => "dager",
"Days" => "Dager",
"Last" => "Siste",
"Week" => "Uke",
"Weeks" => "Uker",
"Month" => "Måned",
"All" => "Alle",
"User" => "Bruker",
"Pages like" => "Lignende sider",
"No pages found" => "Fant ingen sider",
"Pages" => "Sider",
"Hits" => "Treff",
"Last modified" => "Sist endret",
"Last author" => "Sist endret av",
"Last version" => "Siste versjon",
"Status" => "Status",
"Versions" => "Versjon",
"Links" => "Linker",
"Size" => "Størrelse",
"printable" => "utskriftsvennlig",//perhaps not used
"edit" => "rediger",
"remove page" => "fjern side",
"unlock" => "lås opp",
"lock" => "lås",
"permissions" => "rettigheter",
"history" => "logg",
"backlinks" => "refererende sider",
"like pages" => "lignende sider",//perhaps not used
"History of" => "Logg for",//perhaps not used
"Actual_version" => "Faktisk versjon",
"current_version" => "nåværende versjon",
"rollback" => "endre tilbake",
"diff" => "forskjell",
"Preview" => "Forhåndsvisning",
"all" => "alle",
"pages" => "sider",
"Top" => "Opp",
"top" => "opp",
"All pages" => "Alle sider",//perhaps not used
"Remove page" => "Fjern side",
"version" => "versjon",
"You are about to remove the page" => "Du er i ferd med å fjerne siden",
"permanently" => "permanent",
"Remove all versions of this page" => "Fjern alle versjoner av denne siden",
"Rollback_page" => "Endre tilbake siden",//perhaps not used
"to_version" => "til versjon",
"Search results" => "Søkeresultat",
"Last modification date" => "Sist endret dato",
"No pages matched the search criteria" => "Ingen sider matchet søkekriteriene",
"Register as a new user" => "Registrer deg som ny bruker",
"Name" => "Navn",
"Password" => "Passord",
"Email" => "E-post",
"register" => "registrer",
"email" => "e-post",
"last_login" => "Siste innlogging",
"Groups" => "Grupper",
"delete" => "slett",
"assign group" => "tildel gruppe",
"Add a new user" => "Legg til en ny bruker",
"Pass" => "Passord",
"Add" => "Legg til",
"Admin groups" => "Admin grupper",
"Permissions" => "Rettigheter",
"Add a new group" => "Legg til en ny gruppe",
"Group" => "Gruppe",
"Desc" => "Beskrivelse",
"Galleries" => "Gallerier",
"Create or edit a gallery using this form" => "Legg til eller rediger et galleri",
"Max Rows per page" => "Maks antall rader per side",
"Images per row" => "Bilder per rad",
"Thumbnails size X" => "Thumbnail størrelse X",
"Thumbnails size Y" => "Thumbnail størrelse Y",
"Other users can upload images to this gallery" => "Andre brukere kan laste opp bilder til dette galleriet",
"edit/create" => "rediger/opprett",
"You can access the gallery using the following URL" => "Du kan aksessere galleriet med følgende URL",
"Available Galleries" => "Tilgjengelige gallerier",
"Find" => "Søk",
"Description" => "Beskrivelse",
"Created" => "Opprettet",
"Theme" => "Tema",
"Remove" => "Fjern",
"Browse" => "Bla gjennom",
"changed" => "endret",
"versions" => "versjoner",//perhaps not used
"Current permissions for this page" => "Nåværende rettigheter for denne siden",
"Perm" => "Permanent",//perhaps not used
"No individual permissions global permissions to all pages apply" => "Ingen individuelle rettigheter, globale rettigheter for alle sider gjelder",//perhaps not used
"Assign permissions to thispage" => "Tildel rettigheter for denne siden",//perhaps not used
"Cache" => "Cache",
"URL" => "URL",
"Last updated" => "Sist oppdatert",
"home" => "hjem",
"last changes" => "Siste endringer",
"dump" => "dump",
"ranking" => "rangering",//perhaps not used
"list_pages" => "Sideoversikt",//perhaps not used
"my galleries" => "mine gallerier",//perhaps not used
"upload image" => "Laste opp bilde",
"admin" => "admin",
"users" => "brukere",
"groups" => "grupper",
"cache" => "cache",
"Upload Image" => "Last opp bilde",
"Image Name" => "Navn på bilde",
"Image Description" => "Beskrivelse av bilde",
"Gallery" => "Galleri",
"Now enter the image URL" => "Skriv inn bilde-URL",
" or upload a local image from your disk" => " eller last opp et bilde fra maskinen din",
"Upload from disk:" => "Last opp fra disk:",
"upload" => "last opp",
"Upload successful!" => "Bildet ble lastet opp!",
"The following image was successfully uploaded" => "Følgende bilde ble lastet opp",
"Thumbnail" => "Thumbnail",
"You can view this image in your browser using" => "Du kan se dette bildet i din browser ved hjelp av",
"You can include the image in an HTML/Tiki page using" => "Du kan bruke bildet i en HTML/Tiki-side ved hjelp av",
"Browsing Gallery" => "Ser gjennom galleri",
"edit gallery" => "rediger galleri",
"rebuild thumbnails" => "bygg thumbnails på nytt",
"list gallery" => "Gallerioversikt",
"Sort Images by" => "Sorter bilder etter",
"hits" => "treff",
"Browsing Image" => "Ser på bilde",
"return to gallery" => "tilbake til galleriet",
"Move image" => "Flytt bildet",
"move" => "flytt",
"You can include the image in an HTML or Tiki page using" => "Du kan sätta in bilden i en HTML- eller Tiki-side ved hjälp af",
"Cached" => "Cachad",
"This is a cached version of the page." => "Detta är en cachad versin av sidan.",
"Admin Modules" => "Administrera moduler",
"assign module" => "tildela modul",
"left modules" => "vänstermoduler",
"right modules" => "högermoduler",
"clear cache" => "töm cache",
"User Modules" => "Användarmoduler",
"order" => "ordning",
"x" => "x",
"rows" => "rader",
"down" => "ner",
"up" => "upp",
"create/edit" => "skapa/redigera",
"url" => "url",
"browse gallery" => "visa galleri",
"ID" => "ID",
"Filesize" => "Filstorlek",
"Menu" => "Meny",
"Top Images" => "Populäraste bilderna",
"Top Pages" => "Populäraste sidorna",
"search" => "sök",
"Login" => "Login",
"logged as" => "Inloggad som",
"Logout" => "Logga ut",
"user" => "användare",
"pass" => "lösenord",
"login" => "login",
"Admin" => "Administrera",
"modules" => "moduler",//perhaps not used
"links" => "länkar",//perhaps not used
"system gallery" => "systemgalleri",//perhaps not used
"Top galleries" => "Populäraste gallerier",
"Online users" => "Anslutna användare",
"Last galleries" => "Seneste gallerier",
"My Pages" => "Mina sidor",
"My galleries" => "Mina gallerier",
"Featured links" => "Utvalda länkar",
"You dont have permission to use this feature" => "Du har inte åtkomst til denna funktion",
"Tag already exists" => "Bokmärket finns redan",
"Tag not found" => "Bokmärket saknas",
"The passwords dont match" => "Lösenorden stämmer ej",
"User already exists" => "Användaren finns redan",
"This feature is disabled" => "Denna funktion är inte aktiverad",
"No page indicated" => "Ingen sida valdes",
"Permission denied you cannot view backlinks for this page" => "Du har inte tilstånd att se refererande länkar til denna sida",
"The page cannot be found" => "Sidan kan inte hittas",
"Page cannot be found" => "Sida kan ej hittas",
"Cannot edit page because it is locked" => "Kan kan inte redigera sidan eftersom den är låst",
"Permission denied you cannot edit this page" => "Du har inte rättigheter att redigera denna sida",
"Anonymous users cannot edit pages" => "Anonyma användare kan inte redigera denna sida",
"Permission denied you cannot view this page" => "Du har inte rättighet att se denna sida",
"Permission denied you cannot view pages like this page" => "Du har inte rättghet att se sidor som denna",
"Permission denied you cannot view pages" => "Du har inte rättighet att se sidor",
"Permission denied you cannot browse this page history" => "Du har inte rättighet se denna sidas version",
"Permission denied you cannot remove versions from this page" => "Du har inga rättigheter att ta bort versioner från denna sida",
"No version indicated" => "Du har inte valt någon version",
"Unexistant version" => "Versionen finns inte",
"Permission denied you cannot rollback this page" => "Du har inte rättighet att ändra tilbaka til tidigare version av denna sida",
"No user indicated" => "Ingen användare vald",
"Unexistant user" => "Användaren finns ej",
"Group already exists" => "Gruppen finns redan",
"Invalid username or password" => "Otilåtet användranamn eller lösenord",
"Unknown group" => "Okänd grupp",
"Group doesnt exist" => "Gruppen finns inte",
"Unknown user" => "Okänd användare",
"User doesnt exist" => "Användaren finns inte",
"Permission denied you cannot assign permissions for this page" => "Du har inga rättigheter att tildela andra rättigheter för denna sida",
"No image indicated" => "Ingen bild vald",
"Permission denied you cannot browse this gallery" => "Du har inte rättighet att bläddra i detta galleri",
"Permission denied you cannot move images from this gallery" => "Du har inga rättigheter att flytta bilder från detta galleri",
"Permission denied you cannot access this gallery" => "Du har inte rättgheter för att komma åt detta galleri",
"Permission denied you cannot upload images" => "Du har inte rättighet att lägga in bilder",
"No gallery indicated" => "Inget galleri valt",
"Permission denied you cannot remove images from this gallery" => "Du har inga rättigheter att ta bort bilder från detta galleri",
"Permission denied you can upload images but not to this gallery" => "Du har rättigheter att lägga in bilder, men inte i detta galleri",
"No cache information available" => "Ingeh cache information tilgänglig",
"view info" => "visa information",
"Admin Topics" => "Administrera ämnen",
"Image" => "Bild",
"Active?" => "Aktiv?",
"Activate" => "Aktivera",
"Deactivate" => "Deaktivera",
"Title" => "Titel",
"Author Name" => "Förafattarens Namn",
"Topic" => "Ämne",
"Own Image" => "Egen bild",
"Use own image" => "Använd egen bild",
"Own image size x" => "X-storlek på egen bild",
"Own image size y" => "Y-storlek på egen bild",
"Heading" => "Rubrik",
"Body" => "Brödtext",
"Publish Date" => "Publiceringsdatum",
"By:" => "Av:",
"on:" => "den:",
"reads" => "läser",
"Articles" => "Artiklar",
"PublishDate" => "PubliceringsDatum",
"AuthorName" => "FörfattarNamn",
"Reads" => "Läser",
"HasImg" => "HarBild",//perhaps not used
"UseImg" => "AnvändBild",//perhaps not used
"Read" => "Läs",
"Read More" => "Läs mer",
"Submissions" => "Bidrag",
"Approve" => "Godkänn",
"Edit Blog" => "Redigera blog",
"Number of posts to show" => "Antal inlägg som skall visas",
"Allow other user to post in this blog" => "Tillåt andra användare att göra indlägg i denna blog",
"Blogs" => "Bloggar",
"Last Modified" => "Senast ändrad",
"Public" => "Offentlig",//perhaps not used
"Posts" => "Inlägg",
"Visits" => "Besök",
"Activity" => "Aktivitet",
"Post" => "Indlägg",
"Edit Post" => "Redigera inlägg",
"Blog" => "Blog",
"Data" => "Data",
"Created by" => "Skapad av",
" on " => " den ",
"posts" => "inlägg",
"visits" => "besök",
"Activity=" => "Aktivitet=",
"Description:" => "Beskrivning:",
"Find:" => "Sök:",
"find" => "sök",
"Sort posts by:" => "Sortera inlägg efter:",
"Id" => "Id",
"Blog Title" => "Blogtitel",
"Hotwords" => "Nyckelord",
"User preferences screen" => "Användarinställingar",
"Display modules to all groups always" => "Visa alltid alle gruppers moduler",
"Use cache for external pages" => "Använd cache til externa sidor",
"Use cache for external images" => "Använd cache til externa bilder",
"Language" => "Språk",
"Dumps" => "Avbild",
"create" => "skapa",
"Sandbox" => "Sandlåda",
"Maximum number of articles in home" => "Max. antal artikler på hemsidan",
"Admin Hotwords" => "Administrera nyckelord",
"Word" => "Ord",
"Module Name" => "Modulnamn",
"Position" => "Position",
"Order" => "Ordning",
"Cache Time" => "Cachens Tidsstempel",
"Rows" => "Rader",
"The SandBox is a page where you can practice your editing skills, use the preview feature to preview the appeareance of the page, no versions are stored for this page." => "Sandlådan är en sida där du kan öva din skicklighet i att redigera, använd förhandsgranskning för att se sidans slutresultat, inga versioner av denna sida sparas.",
"User Preferences" => "Användarinställningar",
"User Information" => "Användarinformation",
"Last login" => "Senaste inloggning",
"Real Name" => "Riktigt namn",
"HomePage" => "HemSida",
"Your personal Wiki Page" => "Din personliga Wiki-sida",
"set" => "sätt",
"Change your password" => "ändra lösenordet",
"Old password" => "Gammalt lösenord",
"New password" => "Nytt lösenord",
"Again please" => "Prova igen",
"Configure this page" => "Konfigurera denna sida",
"User Pages" => "Användarsidor",
"User Blogs" => "Användarbloggar",
"hotwords" => "nyckelord",//perhaps not used
"list pages" => "sidöversikt",
"sandbox" => "sandlåda",
"user preferences" => "användarinställningar",//perhaps not used
"You cannot edit this page because it is a user personal page" => "Du kan inte redigera denna sida eftersom det är en personlig användarsida",
"The SandBox is disabled" => "SandLådan är stängd",
"Cannot get image from URL" => "Kan inte överföra bilden från URL",
"cannot process upload" => "kan inte utföra överförningen",
"You have to provide a name to the image" => "Du måste ge bilden ett namn",
"No blog indicated" => "Ingen blog vald",
"Blog not found" => "Blogen finns inte",
"Permission denied you cannot remove the post" => "Du har itne rättighet att ta bort inlägget",
"You cannot admin blogs" => "Du har inte rättgihet att administrera bloggar",
"No image uploaded" => "Intet bild skickades",
"You are not logged in" => "Du är inte inloggad",
"You dont have permission to view other users data" => "Du har inte rättighet att se andra användares data",
"The passwords didn't match" => "Lösenorden stämde inte",
"Invalid old password" => "Ogilltigt gammalt lösenord",
"Permission denied you cannot edit this article" => "Du har inte rättighet att redigera denna artikel",
"Permission denied you cannot remove articles" => "Du har inte rättighet att ta bort denna artikel",
"No article indicated" => "Ingen artikel vald",
"Article not found" => "Artikeln finns inte",
"Article is not published yet" => "Artiklen är ännu ej publicerad",
"Permission denied you cannot send submissions" => "Du har inte rättighet att skicka bidrag",
"Permission denied you cannot edit submissions" => "Du har inte rättighet att redigera bidrag",
"Permission denied you cannot remove submissions" => "Du har inte rättighet att ta bort bidrag",
"Permission denied you cannot approve submissions" => "Du har inte rättighet att godkänna bidrag",
"Permission denied you cannot create or edit blogs" => "Du har inte rättighet att skapa eller redigera bloggar",
"Permission denied you cannot edit this blog" => "Du har inte rättighet att redigera denna blog",
"Permission denied you cannot remove this blog" => "Du har inte rättighet att ta bort denna blog",
"Permission denied you cannot post" => "Du har inte rättighet att skapa inlägg",
"Permission denied you cannot edit this post" => "Du har inte rättighet att redigera detta inlägg",
"You can't post in any blog maybe you have to create a blog first" => "Du kan inta skapa inlägg i någon blog - kanske måste du skapa en blog först",
"Rankings" => "Rangordning",
"Top 10" => "Top 10",
"Top 20" => "Top 20",
"Top 50" => "Top 50",
"Top 100" => "Top 100",
"Banners" => "Banners",
"Client" => "Kunder",
"Zone" => "Zoner",
"Method" => "Metod",
"Use Dates?" => "Använd datum?",
"Max Impressions" => "Max antal visningar",
"Impressions" => "Visningar",
"Clicks" => "Klick",
"Stats" => "Statistik",
"Create new banner" => "Skapa en ny bannerannons",
"Click ratio" => "Klickfrekvens",
"Use dates" => "Använd datum",
"Hours" => "Timmar",
"From" => "Frän",
"to" => "til",
"Weekdays" => "Veckodagar",
"mon" => "mån",
"tue" => "tis",
"wed" => "ons",
"thu" => "tor",
"fri" => "fre",
"sat" => "lör",
"sun" => "sön",
"Banner raw data" => "Rådata til banners",
"Search in" => "Sök i",
"galleries" => "gallerier",
"images" => "bilder",
"blogs" => "bloggar",
"blog posts" => "bloginlägg",
"articles" => "artiklar",
"Found" => "Hittade",
"in" => "i",
"Template" => "Mall",
"Dynamic content system" => "Dynamisk innehållshantering (CMS)",
"create new block" => "Skapa ett nytt block",
"Available content blocks" => "Tillgängliga indhollsblock",
"Current version" => "Nuvarande version",//perhaps not used
"Next version" => "Nästa version",//perhaps not used
"Programmed versions" => "Programmerade versioner",//perhaps not used
"Old versions" => "Gamla versioner",//perhaps not used
"Edit desc" => "Redigera beskrivning",//perhaps not used
"Program" => "Program",
"Wiki" => "Wiki",
"XMLRPC API" => "XMLRPC API",
"Edit templates" => "Redigera mallar",
"Edit Templates" => "Redigera mallar",
"Index page" => "Indexsida",//perhaps not used
"Home Gallery (main gallery)" => "Hemgalleri (huvudgalleri)",
"Galleries features" => "Gallerifunktioner",
"Remove images in the system gallery not being used in Wiki pages, articles or blog posts" => "Ta bort bilder från systemgalleriet som ej används av Wiki-sidor, artiklar eller bloginlägg",
"CMS features" => "CMS funktioner",
"Home Blog (main blog)" => "Hemblog (huvudblog)",
"Set prefs" => "Sätt preferenser",
"Blog features" => "Blogfunktioner",
"URL to link the banner" => "URL som länkar til bannern",
"Max impressions" => "Max visningar av bannern",
"create zone" => "skapa zon",
"Show the banner only between these dates" => "Visa endast bannern mellem dessa datym",
"From date" => "Från datum",
"To date" => "Till datum",
"Show the banner only in this hours" => "Visa endast bannern vid dessa tidpunkter",
"from" => "från",
"Mon" => "Mån",
"Tue" => "Tis",
"Wed" => "Ons",
"Thu" => "Tor",
"Fri" => "Fre",
"Sat" => "Lör",
"Sun" => "Sön",
"Select ONE method for the banner" => "Välg EN metod för bannern",
"Use HTML" => "Använd HTML",
"HTML code" => "HTML kod",
"Use image" => "Använd billd",
"Image:" => "Bild:",
"Current Image" => "Nuvarande bild",
"Use image generated by URL (the image will be requested att the URL for each impression)" => "Använd bild som hämtas från URL (bilden kommer att hämtas vid varje visning)",//perhaps not used
"Use text" => "Använd text",
"Text" => "Text",
"save the banner" => "spara bannern",
">Remove Zones (you lose entered info for the banner)" => ">Ta bort Zoner (du mister inmatad information om bannern)",
"Program dynamic content for block" => "Programmera dynamiskt innehåll för block",
">Block description: " => ">Block beskrivning: ",//perhaps not used
"You are editing block:" => "Du redigerar block:",
"Return to block listing" => "Återvänd til blocklista",
"Publishing date" => "Publiceringsdatum",
"Publishing Date" => "Publiceringsdatum",
"Users" => "Användare",
"Modules" => "Moduler",
"System gallery" => "Systemgalleri",
"Topics" => "Ämnen",
"Edit article" => "Redigera artikel",
"Admin content" => "Administrera innehåll",//perhaps not used
"Last submissions" => "Seneste bidrag",
"Top articles" => "Populäraste artiklar",
"Old articles" => "Gamle artiklar",
"Waiting Submissions" => "Väntande bidrag",
"We have" => "Vi har",
"submissions waiting to be examined" => "bidrag som väntar på att bli behandlade",
"Most visited blogs" => "Mest besökta bloggar",
"Most Active blogs" => "Mest aktiva bloggar",
"Last Modified blogs" => "Senast ändrade bloggar",
"Last Created blogs" => "Senast skapade bloggar",
"My blogs" => "Mina bloggar",
"in:" => "i:",
"go" => "förtsätt",
"rankings" => "rangordningar",
"Upload image" => "Skicka bild",
"CMS" => "CMS",
"Articles Home" => "Hemsida för artiklar",
"List articles" => "Lista artiklar",
"Submit article" => "Skicka artikel",
"View submissions" => "Visa bidrag",
"List blogs" => "Bloglista ",
"Create/Edit Blog" => "Skapa/Redigera blogar",
"You dont have permissions to edit banners" => "Du har inte rättighet att redigera bannera",
"Banner not found" => "Bannern finns ej",
"You dont have permission to edit this banner" => "Du har inte rättighet att redigera denna banner",
"Permission denied you cannot remove banners" => "Du har inte rättighet att ta bort banners",
"No banner indicated" => "Ingen banner vald",
"Feature disabled" => "Funktionen är inte aktiverad",
"You dont have permission to write the template" => "Du har inte rättighet att spara mallen",
"You dont have permission to read the template" => "Du har inte rättighet att läsa mallen",
"No content id indicated" => "Ingen innehållsID vald",
"List" => "Lista",
"Last mod" => "Seneste ändringar",
"Last ver" => "Seneste version",
"Com" => "Com",
"Vers" => "Version",
"Create or edit content" => "Skapa eller redigera innehåll",
"position" => "position",
"disables the link" => "avaktiverar länken",
"files" => "filer",
"General" => "Generell",
"File galleries" => "Filgallerier",
"Comments" => "Kommentarer",
"Image galleries" => "Bildgallerier",
"type" => "typ",
"Page generated in" => "Sidan genererad på",
"seconds" => "sekunder",
"Wiki comments settings" => "Wiki kommentarinställningar",
"Default number of comments per page" => "Förvalt antal kommentarer per sida",
"Comments default ordering" => "Förvald sorteringsordning av kommentarer",
"Points" => "Poäng",
"Warn on edit" => "Varna vid ändring",
"comments" => "kommentarer",
"Show comments" => "Visa kommentarer",//perhaps not used
"Hide comments" => "Göm kommentarer",//perhaps not used
"Post new comment" => "Skicka en ny kommentar",
"post" => "skicka",
"Posting comments" => "Skicka kommentarer",
"Use" => "Använd",
"or" => "eller",
"for links" => "til länkar",
"HTML tags are not allowed insida comments" => "HTML taggar kan inte användas i kommentarer",//perhaps not used
"Sort by" => "Sortera efter",
"Threshold" => "Tröskelvärde",
"Containing" => "Indehållande",
"Vote" => "Rösta",
"reply to this" => "svar på detta",
"by" => "av",
"Score" => "Poäng",
"on" => "i",
"Comments below your current threshold" => "Kommentarer som är under ditt nuvarande tröskelvärde",
"File Galleries" => "Filgallerier",
"Create or edit a file gallery using this form" => "Skapa eller redigera ett filgalleri med hjälp av detta formulär",
"Other users can upload files to this gallery" => "Andre användare kan lägga til filer i detta galleri",
"You can access the file gallery using the following URL" => "Du kan få tilgång til detta filgalleri med följande URL",
"Available File Galleries" => "Tillgängliga filgallerier",
"Files" => "Filer",
"Upload File" => "Skicka Fil",
"File Title" => "Filtitel",
"File Description" => "Filbeskrivning",
"File Gallery" => "Filgalleri",
"Now enter the file URL" => "Mata in filens URL",
" or upload a local file from your disk" => " eller skicka en lokal fil från din disk",
"The following file was successfully uploaded" => "Denna fil skickades framgångsrikt",
"You can download this file using" => "Du kan hämta denna fil med",
"You can include the file in an HTML/Tiki page using" => "Du kan lägga in filen i en HTML/Tiki-sida med",
"Listing Gallery" => "Gallerilista",
"upload file" => "skicka fil",
"Dls" => "Dls",
"Top Files" => "Mest populära filer",
"Last Files" => "Senaste filer",
"Top File Galleries" => "Mest populära filgallerier",
"Last modified file galleries" => "Senast ändrade filgallerier",
"Image Gals" => "Bildgallerier",
"List galleries" => "Lista över gallerier",
"Upload file" => "Skicka fil",
"Unexistant link" => "Länken finns inte",
"Permission denied you cannot create galleries and so you cant edit them" => "Du har inte rättighet att skapa eller redigera gallerier",
"Permission denied you cannot edit this gallery" => "Du har inte rättighet att redigera detta galleri",
"Permission denied you cannot remove this gallery" => "Du har inte rättighet att slett detta galleri",
"Permission denied you can upload files but not to this file gallery" => "Du har rättighet att lägga in filer men inte til detta galleri",
"Cannot get file from URL" => "Kan inte hämta filen från denna URL",//perhaps not used
"Unexistant gallery" => "Galleriet finns inte",
"Permission denied you cannot remove files from this gallery" => "Du har inte rättighet til att slett filer från detta galleri",
"You cant download files" => "Du har inte rättighet til att hämta filer",//perhaps not used
"No file" => "Ingen fil",//perhaps not used
"Generate positions by hits" => "Generara rangordningen utifrån antal besökare",
"Add Featured Link" => "Lägg til utvald link",
"Rollback page" => "Ursprunglig sida",
"List of existing groups" => "Liste över existerende grupper",
"Create/edit Forums" => "Skapa/redigera fora",
"There are inddividual permissions set for this forum" => "Det finns individuelle åtkomsträttigheter til detta forum",//perhaps not used
"Prevent flooding" => "Förhindra översvämning",
"Minimum time between posts" => "Minimal tid mellem inlägg",
"Topics per page" => "Ämner per sida",
"Moderator" => "Moderator",//perhaps not used
"Default ordering for topics" => "Förvald sortering av ämnen",
"Replies (desc)" => "Svar (fallande)",
"Reads (desc)" => "Lästa (fallande)",
"Last post (desc)" => "Senaste inlägg (fallande)",
"Title (desc)" => "Titel (fallande)",
"Title (asc)" => "Titel (stigande)",
"Default ordering for threads" => "Förvald sortering av trådar",
"Date (desc)" => "Datum (fallande)",
"Score (desc)" => "Poäng (fallande)",
"Send this forums posts to this email" => "Skicka inlägg i detta forum til e-post",
"Prune unreplied messages after" => "Radera obesvarde meddelanden efter",
"Prune old messages after" => "Radera gamla meddelanden efter",
"Save" => "Spara",
"topics" => "ämnen",
"coms" => "kommentarer",
"age" => "ålder",
"ppd" => "rättighetsbegränsing",
"last post" => "senaste indlägg",
"perms" => "rättigheter",
"forums" => "fora",
"Assign permissions to group" => "Tilldela rättigheter til grupp",
"Group Information" => "Gruppinformation",
"Forums" => "Fora",
"Comm" => "Komm.",
"Cms" => "Cms",
"Chat" => "Chat",
"Assign user" => "Anslut användare",
"to groups" => "til grupper",
"prev image" => "föregående bild",
"next image" => "nästa bild",
"Template listing" => "Malllista",
"Upload from disk" => "Skicka från disk",
"Thumbnail (optional, overrides automatic thumbnail generation)" => "Indexbild (valfri, har företrädesrätt framför automatiskt genererade indexbilder",
"There are inddividual permissions set for this gallery" => "Det finns individuella åtkomsträttigheter satta för detta galleri",//perhaps not used
"Gallery is visible to non-admin users?" => "Galleriet är synligt för icke-administratörer?",
" modified" => " ändrat",
"Imgs" => "Bilder",
"Current ver" => "Aktuell version",
"Next ver" => "Nästa version",
"Old vers" => "Gammal version",
"group" => "grupp",
"permission" => "rättighet",
"No individual permissions global permissions apply" => "Inga individuella rättigheter, globala rettigheter gäller",
"Assign permissions to this page" => "Tilldela rättigheter til denna sida",
"Show Post Form" => "Visa inäggets formulär",
"Hide Post Form" => "Göm inläggets formulär",
"Forum List" => "Forumlista",
"Edit Forum" => "Redigera Forum",
"Editing comment" => "Redigera kommentar",
"post new comment" => "skicka ny kommentar",
"smileys" => "gladisar",
"Type" => "Typ",
"normal" => "normal",
"announce" => "kungörelse",
"hot" => "het",
"sticky" => "klistrig",
"locked" => "låst",
"Sort" => "Sortera",
"message" => "meddelande",
"score" => "poäng",
"author" => "författare",
"Non cacheable images" => "O-cachade bilder",
"RSS feeds" => "RSS matning",
"displays rss feed with id=n maximum=m items" => "visa rss matning med id=n maximum=m ämnen",
"Simple box" => "Vanlig låda",
"Box content" => "Lådans innehåll",
"Creates a box with the data" => "Skapa en låda med data",
"Dynamic content" => "Dynamiskt innehåll",
"Will be replaced by the actual value of the dynamic content block with id=n" => "Kommer att ersättas av det faktiska värdet av den dynamiska innehållsblok med ID=n",
"Send objects" => "Skicka objekt",
"Transmission results" => "Transmissionsresultat",
"Send objects to this site" => "Skicka objekt til denna sajt",
"site" => "sajt",
"path" => "sökväg",
"username" => "användranamn",
"password" => "lösenord",
"send" => "skicka",
"Send Wiki Pages" => "Skicka Wiki sidor",
"add page" => "lägg til sida",
"clear" => "nollställ",
"Edit received page" => "Redigera modtagen sida",
"comment" => "kommentar",
"Site" => "Sajt",
"accept" => "godkänn",
"Current category" => "Aktuell kategori",
"Child categories" => "Underkategorier",
"Edit or add category" => "Redigera eller lägg til kategorin",
"Objects in category" => "Objekt i kategorin",
"Add objects to category" => "Lägg til objekt til kategorin",
"filter" => "filter",
"add" => "lägg til",
"sub categories" => "underkategorier",
"There are inddividual permissions set for this blog" => "Det finns individuelle tilgångsrättigheter til denna blog",//perhaps not used
"Features" => "Funktioner",
"Tiki sections and features" => "Tiki sektioner och funktioner",
"Polls" => "Omröstningar",
"Communications (send/receive objects)" => "Kommunikation (skicka/ta emot objekt)",
"Categories" => "Kategorier",
"Layout options" => "Layout-inställningar",//perhaps not used
"Left column" => "Vänstra kolumnen",
"Right column" => "Högra kolumnen",
"Top bar" => "Sidhuvud",
"Bottom bar" => "Sidfot",
"General preferences and settings" => "Generelle preferense och indställningar",
"Image Gallery" => "Bildgalleri",
"Forum" => "Forum",
"Custom home" => "Egen startsida",
"Wiki settings" => "Wiki indställningar",
"Never delete versions younger than days" => "Radera aldrig versioner yngre än detta antal dagar",
"Set" => "Sätt",
"wiki" => "wiki",
"polls" => "omröstningar",//perhaps not used
"Image galleries comments settings" => "Kommentarinställningar i bildgallerier",
"features" => "funktioner",//perhaps not used
"File galleries comments settings" => "Kommentarindställningar i filgallerier",
"cms" => "cms",//perhaps not used
"CMS settings" => "CMS indställningar",
"Article comments settings" => "Kommentarinställningar för artiklar",
"Poll settings" => "Inställningar för omröstningar",
"Poll comments settings" => "Kommentarinställningar för omröstningar",
"image galleries" => "bildgallerier",//perhaps not used
"Blog settings" => "Blog-inställningar",
"Blog comments settings" => "Kommentarinställningar för bloggar",
"general" => "generelt",//perhaps not used
"Forums settings" => "Inställningar för fora",
"Home Forum (main forum)" => "Hemforum (hovedforum)",
"Set home forum" => "Sätt hemforum",
"Ordering for forums in the forum listing" => "Sortering av fora i forumlista",
"Creation Date (desc)" => "Skapelsedatum (fallande)",
"Topics (desc)" => "Ämnen (fallande)",
"Threads (desc)" => "Trådar (fallande)",
"Visits (desc)" => "Besök (fallande)",
"Name (desc)" => "Namn (fallande)",
"Name (asc)" => "Namn (stigande)",
"file galleries" => "filgallerier",//perhaps not used
"rss" => "rss",//perhaps not used
"<b>Feed</b>" => "<b>Nyhetskälla</b>",
"<b>enable/disable</b>" => "<b>aktivera/deaktivera</b>",
"<b>Max number of items</b>" => "<b>Max antal ämnen</b>",
"Feed for Articles" => "Matning til Artikler",
"Feed for Weblogs" => "Matning til Weblogss",
"Feed for Image Galleries" => "Matning til Bildgallerier",
"Feed for File Galleries" => "Mating til Filgallerier",
"Feed for the Wiki" => "Matning til Wiki",
"Feed for individual Image Galleries" => "Matning til personliga Bildgallerier",
"Feed for individual File Galleries" => "Matning til personliga Filgallerier",
"Feed for individual weblogs" => "Matning til personliga webloggar",
"Set feeds" => "Sätt matningar",
"Objects that can be included" => "Objekter som kan infogas",
"Available polls" => "Tillgängliga omröstningar",
"use poll" => "använd omröstningar",
"Dynamic content blocks" => "Dynamiske innehållsblock",
"use dynamic content" => "använd dynamisk innehåll",
"RSS modules" => "RSS moduler",
"use rss module" => "använd rss moduler",
"Banner zones" => "Bannerzoner",
"use banner zone" => "använd bannerzoner",
"Error" => "Fel",
"Return to home page" => "Återvänd til hemsida",
"Block description: " => "Blockbeskrivning: ",
"Smileys" => "Gladisar",
"There are inddividual permissions set for this file gallery" => "Det finns individuella åtkomsträttigheter för detta filgalleri",//perhaps not used
"Create/edit channel" => "Skapa/redigera kanal",
"Active" => "Aktiv",
"Refresh rate" => "Uppdateringsfrekvens",
"half a second" => "varje havlsekund",
"second" => "sekund",
"description" => "beskivning",
"active" => "aktiv",
"refresh" => "updatering",
"enter chat room" => "gå in i chatroom",
"Chatroom" => "Chatroom",
"Active Channels" => "Aktiva kanaler",
"Channel Information" => "Kanalinformation",
"Content for the feed" => "Innehåll för matningen",
"Create/edit RSS module" => "Skapa/redigera RSS modul",
"minute" => "minut",
"minutes" => "minuter",
"hour" => "timme",
"hours" => "timmar",
"day" => "dag",
"Last update" => "Seneste updatering",
"Create/edit Menus" => "Skapa/Redigera menyer",
"dynamic collapsed" => "dynamiskt kollpsad",
"dynamic extended" => "dynamisk utvecklad",
"fixed" => "fast",
"options" => "valmöjligheter",
"List menus" => "Menyöversigt",
"Edit this menu" => "Redigera denna meny",
"Preview menu" => "Förhandsgranska meny",
"Edit menu options" => "Redigera menyn's valmöjligheter",
"section" => "sektion",
"option" => "valmöjlighet",
"Some useful URLs" => "Användbara URL'er",
"Home Page" => "Hemsida",
"Home Blog" => "Hemblog",
"Home Image Gal" => "Hembildgalleri",
"Home Image Gallery" => "Hembildgalleri",
"Home File Gal" => "Hemfilgalleri",
"Home File Gallery" => "Hemfilgalleri",
"User preferences" => "Använderinställningar",
"User prefs" => "Använder inställningar",
"Wiki Home" => "Wiki Hemsida",
"List image galleries" => "Lista Bildgalleri",
"Gallery Rankings" => "Rangordning av gallerier",
"Browse a gallery" => "Bläddra i ett galleri",
"Articles home" => "Artikelhemsida",
"All articles" => "Alla artiklar",
"Submit" => "Skicka in",
"List Blogs" => "Bloglista",
"Create blog" => "Skapa blog",
"View a forum" => "Visa ett forum",
"View a thread" => "Visa en tråd",
"Create/edit Polls" => "Skapa/redigera omröstningar",
"current" => "aktuell",
"closed" => "stängd",
"votes" => "röster",
"Publish" => "Publicera",
"List polls" => "omröstningslistor",
"Edit this poll" => "Redigera omröstningar",
"Preview poll" => "Visa omröstningar",
"Edit or add poll options" => "Redigera eller lägg til valmöjligheter",
"Option" => "Val",
"vote" => "rösta",
"Results" => "Resultat",
"Total" => "Total",
"Other Polls" => "Andra omröstningar",
"Published" => "Publicerad",
"Votes" => "Röster",
"back" => "tilbaka",
"Current permissions for this object" => "Nuvarande åtkomsträttigheter för detta objekt",
"Assign permissions to this object" => "Tilldela åtkomsrättigheter til detta objekt",
"Wiki Pages" => "Wiki sidor",
"Blog Posts" => "Blog-indlägg",
"chat" => "chat",
"categories" => "kategorier",
"received pages" => "mottagna sidor",
"Menus" => "Menyer",
"Admin chat" => "Administrera chat",//perhaps not used
"Admin forums" => "Administrera fora",
"Templates" => "Mallar",
"Random Pages" => "Slumpmässaiga sidor",
"Last blog posts" => "Seneste bloginlägg",
"Last forum topics" => "Seneste ämnen i forum",
"Most read topics" => "Mest lästa ämnen",
"Top topics" => "Populäraste ämnen",
"Most visited forums" => "Mest besökta fora",
"Most commented forums" => "Fora med flest kommentarer",
"Received objects" => "Modtagna objekt",
"Pages:" => "Sidor:",
"Username is too long" => "Användarnamnet är för långt",
"Invalid username" => "Otilåtet användarnamn",
"Permission denied you cannot view this section" => "Du har inte rättighet til att se denna sektion",
"Permission denied you cant view this section" => "Du har inte rättighet til att denna sektion",//perhaps not used
"No menu indicated" => "Ingen meny vald",
"No poll indicated" => "Ingen omrösting vald",
"Not enough information to display this page" => "Inte tilräckligt med information för att vise denna sida",
"Fatal error" => "Fatalt fel",
"This feature has been disabled" => "Denna funktion er inte aktiverad",
"No forum indicated" => "Inget forum valt",
"Please wait 2 minutes between posts" => "Venta venligst 2 minuter mellan inläggen",
"No thread indicated" => "Ingen tråd vald",
"Permission denied to use this feature" => "Du har inte rättighet til att använde denna funktion",
"No channel indicated" => "Ingen kanal vald",
"No nickname indicated" => "Intet kaldenamn vald",
"Search by Date" => "Sök efter datum",
"LastChanges" => "SenesteÄndringar",
"Generate a password" => "Generera ett lösenord",
"faqs" => "faq'er",
"Available FAQs" => "Tillgängliga FAQ'er",
"File gals" => "Filgallerier",
"Image gals" => "Bildgallerier",
"FAQs" => "FAQ'er",
"of" => "från",
"Comparing versions" => "Jämför versioner",
"compare" => "jämför",
"RSS" => "RSS",
"Article" => "Artikel",
"Review" => "Granska",
"Rating" => "Betyg",
"Quicklinks" => "Snabblänkar",
"Spellcheck" => "Stavningskontroll",
"Wiki References" => "Wiki Referencer",
"JoinCapitalizedWords or use" => "SammmanSattaOrdMedVersaler eller använd",
"for wiki references" => "som wiki referencer",
"prevents referencing" => "förhindrar referencer",
"External links" => "Externa länkar",
"use square brackets for an" => "använd hakparenteser til",
"Title bar" => "Titelhuvud",
"Colored text" => "Färgad text",
"Will display using the indicated HTML color" => "Kommer att visas med den valda HTML färgen",
"Center" => "Centrera",
"Will display the text centered" => "Kommer att visa texten centrerad",
"Filter" => "Filter",
"Send Articles" => "Skicka artiklar",
"add article" => "lägg til artikel",
"Img" => "Bild",
"deep" => "djup",
"Allowed HTML:" => "HTML tilåtet:",//perhaps not used
"undo" => "ångra",
"Users can configure modules" => "Användere kan konfigurera moduler",
"User bookmarks" => "Användarbokmärken",
"Games" => "Spel",
"Validate users by email" => "Kerifiera användera via e-post",
"Remind passwords by email" => "Skicka glömda lösenord med e-post",
"Undo" => "Ångra",
"MultiPrint" => "MultiPrint",
"Spellchecking" => "Stavningskontroll",
"FAQs settings" => "FAQ inställningar",
"FAQ comments" => "FAQ kommentarer",
"Feed for forums" => "Matning til fora",
"Feed for individual forums" => "Matning til personlige fora",
"User Bookmarks" => "Användarbokmärke",
"Configure modules" => "Konfigurera moduler",//perhaps not used
"Number of visited pages to remember" => "Antal besökta sidor att minnas",
"to insert a random tagline" => "infoga ett slumpmässigt valt citat",//perhaps not used
"Users in this channel" => "Användare på denna kanal",
"Use :nickname:message for private messages" => "Använd :smeknamn:meddelande för privata meddelanden",
"Use [URL|description] or [URL] for links" => "Använd [URL|länktext] eller [URL] til länkar",
"Use (:name:) for smileys" => "Använd (:namn:) til gladisar",
"Admin cookies" => "Administrera cookies",
"Create/edit cookies" => "Skapa/redigera cookies",
"Cookie" => "Cookie",
"Upload Cookies from textfile" => "Skicak cookies från textfil",
"Cookies" => "Cookies",
"cookie" => "cookie",
"Orphan Pages" => "Oreffererade sidor",
"Edit received article" => "Redigera motttagen artikell",
"Use Image" => "Använd bild",
"yes" => "ja",
"no" => "nej",
"Image x size" => "Bildens x storlek",
"Image y size" => "Bildets y storlek",
"Image name" => "Bildnamn",
"Image size" => "Bildstorlek",
"Accept Article" => "Godkänn artikel",
"Filename" => "Filnamn",
"Restoring a backup" => "Återskapar en säkerhetskopia",
"Warning!" => "Warning!",
"Restoring a backup destoys all the data in your Tiki database.
All your tables will be replaced with the information in the backup." => "Återkskapandet av säkerhetskopian skriver över all data i din Tiki databas.
Alle dina tabeller blir ersatta med innehållet i säkerhetskopian.",//perhaps not used
"Click here to confirm restoring" => "Klicka här for att bekräfta inläsingen",
"Create new backup" => "Skapa en ny säkerhetskopia",
"Creating backups may take a long time. If the process is not completed you will
see a blank screen. If so you need to increment the maximum script execution time
from your php.ini file" => "Att skapa en säkerhetskopia kan ta lång tid. Om kopierandet inte slutförs kommer su att se en baln skärm. Då måste du öka den maximale exekveringstid i din php.ini fil",//perhaps not used
"Click here to create a new backup" => "Klicka här for att skapa en ny säkerhetskopia",
"Upload a backup" => "Återskapa en säkerhetskopia",
"Upload backup" => "Återkspa säkerhetskopia",
"All games are from" => "Alla spel är från",
"visit the site for more games and fun" => "besök sajten för att få; tilgång til flere spel och mer underhållning",
"Upload a game" => "Lägg til ett spel",
"Upload a new game" => "Lägg til ett nytt spel",
"Flash binary (.sqf or .dcr)" => "Flash binärfil (.sqf eller .dcr)",
"Thumbnail (if the game is foo.swf the thumbnail must be named foo.swf.gif or foo.swf.png or foo.swf.jpg)" => "Indexbild (om spelet heter fil.swf måste bilden heta fil.swf.gif eller fil.swf.png eller fil.swf.jpg)",
"Edit game" => "Redigera spel",
"Played" => "Spellat",
"times" => "gånger",
"If you can't see the game then you need a flash plugin for your browser" => "Om du inte kan se spelet, saknar du en flash-plugin til din browser",
"Create/edit Faq" => "Skapa/redigera FAQ",
"created" => "skapat",
"questions" => "frågor",
"List FAQs" => "FAQ Listning",
"View FAQ" => "Visa FAQ",
"Edit this FAQ" => "Redigera denna FAQ",
"new question" => "ny fråga",
"Edit FAQ questions" => "Redigera FAQ frågor",
"Answer" => "Svar",
"Use a question from another FAQ" => "Använd en fråga från en annan FAQ",
"Question" => "Fråga",
"use" => "använd",
"FAQ questions" => "FAQ frågor",
"question" => "fråga",
"FAQ Questions" => "FAQ Frågor",
"FAQ Answers" => "FAQ Svar",
"Print multiple pages" => "Skriv ut flera sidor",
"Print Wiki Pages" => "Skriv ut Wiki Sidor",
"print" => "skriv ut",
">I forgot my password" => ">Jeg har glömt mitt lösenord",//perhaps not used
"send me my password" => "skika mig mitt lösenord",
"I forgot my password" => "Jeg har glömt mitt lösenord",
"Return to HomePage" => "Återvänd til HjemmeSidan",
"Add or edit folder" => "Lägg til eller redigera mappen",
"Add or edit a URL" => "Lägg til eller redigera en URL",
"User assigned modules" => "Användartildelade moduler",
"Restore defaults" => "Återskapa förval",
"column" => "kolumn",//perhaps not used
"Assign module" => "Tilldela modul",
"Module" => "Modul",
"Column" => "Kolumn",
"Site Stats" => "Sajtstatistik",
"Started" => "Startade",
"Days online" => "Dagar i bruk",
"Total pageviews" => "Totalt visade sidor",
"Average pageviews per day" => "Genomsnittligt antal sidvisningar per dag",
"Best day" => "Bedsta dag",
"Worst day" => "Sämsta dag",
"Show chart for the last " => "Visa graf för de sidsta ",
"days (0=all)" => "dagar (0=alla)",
"dispay" => "visa",//perhaps not used
"Wiki Stats" => "Wiki Statistik",
"Size of Wiki Pages" => "Storlek på Wiki Sidor",
"Average page length" => "Genomsnittlig sidlängd",
"Average versions per page" => "Genomsnittligt antal versioner per sida",
"Visits to wiki pages" => "Besök til wiki sidor",
"Orphan pages" => "Oreffererade sidor",
"Average links per page" => "Genomsnittligt antal länkar per sida",
"Image galleries Stats" => "Bildgalleristatistik",
"Average images per gallery" => "Genomsnittligt antal bilder per galleri",
"Total size of images" => "Bildernas totala storlek",
"Average image size" => "Genomsnittlig bildstorlek",
"Visits to image galleries" => "Antal besök i bildgallerier",
"File galleries Stats" => "Filgalleristatistik",
"Average files per gallery" => "Genomsnittligt antal filer per galleri",
"Total size of files" => "Filernas totala storlek",
"Average file size" => "Genomsnittlig filstorlek",
"Visits to file galleries" => "Antal besök i filgallerier",
"Downloads" => "Antal inläsningar (downloads)",
"CMS Stats" => "CMS statistik",
"Total reads" => "Totalt antal lästa artiklar",
"Average reads per article" => "Genomsnittligt antal läsnigar per artikel",
"Total articles size" => "Total artiklerstorlek",
"Average article size" => "Genomsnittlig artikelstorlek",
"Forum Stats" => "Forumstatistik",
"Total topics" => "Totalt antal ämnen",
"Average topics per forums" => "Genomsnittligt antal ämnen per forum",
"Total threads" => "Totlatl antal trådar",
"Average threads per topic" => "Genomsnittligt antal trådar per ämne",
"Visits to forums" => "Antal besök i fora",
"Blog Stats" => "Blogstatistik",
"Weblogs" => "Weblogs",
"Total posts" => "Totalt antal inlägg",
"Average posts pero weblog" => "Genomsnittligt antal inlägg per weblog",
"Total size of blog posts" => "Total storlek på bloginläggen",
"Average posts size" => "Genomsnittligt storlek på bloginläggen",
"Visits to weblogs" => "Antal besök i webloggar",
"Poll Stats" => "Omröstningsstatistik",
"Total votes" => "Totalt antal röster",
"Average votes per poll" => "Genomsnittligt antal röseter per omrösting",
"Faq Stats" => "FAQ statistik",
"Total questions" => "Totalt antal frågor",
"Average questions per FAQ" => "Genomsnittligt antal frågor per FAQ",
"User Stats" => "Använderstatistik",
"Average bookmarks per user" => "Genomsnittligt antal bokmärken per användare",
"user bookmarks" => "användarbokmärken",//perhaps not used
"stats" => "statistik",
"games" => "spel",
"orphan pages" => "orefererade sidor",
"Backups" => "Säkerhetskopior",
"Admin FAQs" => "Administrera FAQ's",
"Admin Cookies" => "Administrera Cookies",//perhaps not used
"I forgot my pass" => "Jeg har glömt mitt lösenord",
"Recently visited pages" => "Nyligen besökta sidor",
"Last Created FAQs" => "Senast skapade FAQ's",
"Top Visited FAQs" => "Mest besökta FAQ's",
"Quick edit a Wiki page" => "Snabbredigering av Wiki-sida",
"Bookmakrs" => "Bokmärken",//perhaps not used
"mark" => "märke",
"new" => "nytt",
"Permision denied" => "Otilräckliga rättigheter",
"Upload failed" => "Inlägningen misslyckades",
"No faq indicated" => "Ingen faq är vald",
"No pages indicated" => "Ingen sidor är valda",
"You must log in to use this feature" => "Du måste vara inlogad för att använda denna funktion",
"No url indicated" => "Ingen URL är vald",
"The thumbnail name must be" => "Indexbildens namn måste vara",
"Passcode to register (not your user password)" => "Anmälningskod (inte ditt lösenord)",
"Link type" => "Länk typ",
"replace current page" => "ersätt nuvarande sida",
"framed" => "inramad",
"open new window" => "öppna nytt fönster",
"Include" => "Infoga",
"Includes" => "Infogas",
"uploaded" => "inlagd",
"size" => "storlek",
"dls" => "dls",
"No attachments for this page" => "Inge bilagda filer tilhör denna sida",//perhaps not used
"attach" => "bilägg",
"Entire site" => "Hela sajten",//perhaps not used
"Quizzes" => "Frågesport",
"content templates" => "innehållsmallar",//perhaps not used
"shoutbox" => "megafon",//perhaps not used
"drawings" => "teckningar",//perhaps not used
"HTML pages" => "HTML sidor",
"assigned" => "tildelad",//perhaps not used
"edit image" => "redigera bild",
"Browse gallery" => "Visa galleri",
"Articles (subs)" => "Artiklar (ämnen)",
"Apply template" => "Använd mall",
"none" => "ingen",
"Search stats" => "Sökstatistik",
"Hotwords in new window" => "Nyckelord i nytt fönster",
"Allow smileys" => "Tillåt gladisar",
"Shoutbox" => "Megafon",
"Drawings" => "Teckningar",
"Referer stats" => "Hänvisningsstatistik",
"Referer Stats" => "Hänvisningsstatistik",
"General Layout options" => "Generella layout-inställningar",
"Layout per section" => "Layout per sektion",
"Admin layout per section" => "Administrera layout per sektion",
"Home page" => "Hemsida",
"Use URI as Home Page" => "Använd URI som hemsida",
"Request passcode to register" => "Begär anmälningskod för att registrera",
"Count admin pageviews" => "Räkna administratorns sidvisningar",
"Browser title" => "Browserns titel",
"Reg users can change theme" => "Registrerede användere kan ändra tema",
"Reg users can change language" => "Registrerede användere kan ändra språk",
"Wiki attachments" => "Wiki bilagor",
"Use a directory to store files" => "Använd en katalog för att lagra filer",
"Path" => "Sökväg",
"Use templates" => "Använd mallar",
"Show page title" => "Visa sidans titel",
"Use database to store images" => "Använd databasen för att lagra bilder",
"Use a directory to store images" => "Använd en katalog för att lagra bilder",
"Directory path" => "Katalogens sökväg",
"Uploaded image names must match regex" => "Namn på bilder som skall läggas in måste stämma med reguljärt uttryck",
"Uploaded image names cannot match regex" => "Namn på bilder som skall läggas in får inte stämma med reguljärt uttryck",
"Use database to store files" => "Använd databasen til att lagra filer",
"Uploaded filenames must match regex" => "Namn på filer som skall läggas in måste stämma med reguljärt uttryck",
"Uploaded filenames cannot match regex" => "Namn på filer som skall läggas in får inte stämma med reguljärt uttryck",
"Default ordering for blog listing" => "Förvald sortering av bloglistor",
"Creation date (desc)" => "Skapelsedatum (fallande)",
"Last modification date (desc)" => "Senast ändrat (fallande)",
"Blog title (asc)" => "Blog titel (stigande)",
"Number of posts (desc)" => "Antal inlägg (fallande)",
"Activity (desc)" => "Aktivitet (fallande)",
"Parameters" => "Parametrar",
"Random image from" => "Slumpmässig bild från",
"use gallery" => "använd galleri",
"use menu" => "använd meny",
"cancel edit" => "avbryt redigering",
"Upload" => "Lägg in",
"View a FAQ" => "Visa en FAQ",
"Take a quiz" => "Delta i frågesport",
"Quiz stats" => "Frågesport",
"Stats for a Quiz" => "Statistik for en frågesport",
"list quizzes" => "Frågesportslista",
"quiz stats" => "Frågesportsstatistik",
"admin quizzes" => "admininistrera frågesporter",
"Create/edit quizzes" => "Skapa/redigera frågesporter",
"There are individual permissions set for this quiz" => "Der finns individuella åtkomsträttigheter för denna frågesport",
"Quiz can be repeated" => "Frågensport kan göras igen",
"Store quiz results" => "Spara resultat för frågesporten",
"Questions per page" => "Frågor per sida",
"Quiz is time limited" => "Frågesporten är tidsbegränsad",
"Maximum time" => "Maximal tid",
"can_repeat" => "kanGörasOm",
"time_limit" => "tidsGräns",
"results" => "resultat",
"this quiz stats" => "statistik för denna frågesport",
"edit this quiz" => "redigera denna frågesport",
"Reuse question" => "Återanvänd frågan",
"Questions" => "Frågor",
"maxScore" => "maxPoäng",
"text" => "text",
"points" => "poäng",
"Time Left" => "Resterande tid",
"send answers" => "skicka svar",
"Result" => "Resultat",
"To Points" => "Till Poäng",
"From Points" => "Från poäng",
"answer" => "svar",
"Stats for quizzes" => "Frågesportsstatistik",
"Quiz" => "Frågesport",
"taken" => "besvarad",
"Av score" => "Medelpoäng",
"Av time" => "Medeltid",
"Stats for quiz" => "statistik för frågesporter",
"clear stats" => "Nollställ statistik",
"date" => "datum",
"time" => "tid",
"result" => "resultat",
"details" => "detaljer",
"del" => "slett",
"Stats for this quiz Questions " => "Statistik för frågor i denna frågesport ",
"Average" => "Genomsnitt",
"Quiz result stats" => "Statistik på frågesportsresultat",
"Time" => "Tid",
"User answers" => "Användarsvar",
"Users can suggest questions" => "Användere kan foreslå frågor",
"suggested" => "föreslagen",//perhaps not used
"underline" => "understruken",
"table" => "tabell",
"wiki link" => "wiki länk",
"heading1" => "överskrift1",
"heading2" => "överskrift2",//perhaps not used
"heading3" => "överskrift3",//perhaps not used
"title bar" => "titelhuvud",
"box" => "låda",
"rss feed" => "rss matning",
"dynamic content" => "dynamiskt innehåll",
"tagline" => "citat",
"hr" => "horisontel linjal",
"center text" => "centrera text",
"colored text" => "färgad text",
"image" => "bild",
"special chars" => "specielle tecken",
"Suggested questions" => "Föreslagna frågor",
"approve" => "godkänn",
"Show suggested questions/suggest a question" => "Visa föreslagna frågor/föreslå ej fråga",
"Hide suggested questions" => "Göm föreslagna frågor",
"Admin templates" => "Administrera mallar",
"Create/edit templates" => "Skapa/redigera mallar",
"use in cms" => "använd i cms",
"use in wiki" => "använd i wiki",
"use in HTML pages" => "använd i HTML sidor",
"template" => "mall",
"last modif" => "senast ändrad",
"sections" => "sektioner",
"Usage chart" => "Nyttjandegraf",
"Quiz Stats" => "Frågesports statistik",
"Average questions per quiz" => "Genomsnittligt antal frågor per frågesport",
"Quizzes taken" => "Genomförda frågesporter",
"Average quiz score" => "Genomsnittligt frågesportsresultat",
"Average time per quiz" => "Genomsnittlig tid per frågesport",
"Mail notifications" => "Besked via e-post",
"Add notification" => "Lägg til besked",
"Event" => "Händelse",
"A user registers" => "En använder registererar sig",
"A user submits an article" => "En använder bidrar med en artikel",
"use admin email" => "använd administratörens e-post",
"event" => "händelse",
"object" => "objekt",
"categorize" => "Kategorisera",
"show categories" => "visa kategorier",
"hide categories" => "göm kategorier",
"categorize this object" => "kategorisera objekt",
"Admin categories" => "Administrera kategorier",
"Tiki Shoutbox" => "Tiki Megafon",
"Post or edit a message" => "Skicka eller redigera ett meddelande",
"Messages" => "Meddelanden",
"Edit Image" => "Redigera bild",
"Edit successful!" => "Redigering lyckades!",
"The following image was successfully edited" => "Följande bild redigerades framångsrikt",
"creates the editable drawing foo" => "skapar den redigerbara tecknignen foo",
"underlines text" => "understryker text",
"Admin HTML pages" => "Administrera HTML sidor",
"Create/edit HTML pages" => "Skapa/redigera HTML sidor",
"Page name" => "Sidnamn",
"Dynamic" => "Dynamisk",
"Static" => "Statisk",
"Refresh rate (if dynamic) [secs]" => "Uppdateringshastighet (om dynamisk) [sek]",
"Content" => "Innehåll",
"content" => "innehåll",
"Admin HTML page dynamic zones" => "Administrea HTML-sidans dynamsika zoner",
"Edit this HTML page" => "Redigera denna HTML sida",//perhaps not used
"View page" => "Visa sida",
"Edit zone" => "Redigera zon",
"Dynamic zones" => "Dynamiska zoner",
"zone" => "zon",
"Mass update" => "Massuppdatering",
"layout options" => "layout inställningar",
"searched" => "sökte",
"Available drawings" => "Tilgängliga teckningar",
"last" => "sista",
"Admin Menu" => "Administrera Meny",
"Admin drawings" => "Administrera tegninger",
"Content templates" => "Innehållsmallar",
"Entire Site" => "Hela Sajten",
"Send articles" => "Skicka artiklar",
"Received articles" => "Modtagne artikler",
"Admin topics" => "Administrator ämnen",
"Admin posts" => "Administrera inlägg",
"List Quizzes" => "Frågesportslista",
"Last Created Quizzes" => "Senest skapatede quiz'er",
"Top Quizzes" => "Populäraste frågesporter",
"Top games" => "Populäraste spel",
"Since your last visit" => "Sedan ditt senaste besök",
"Since your last visit on" => "Sedan ditt senaste besök den",
"new images" => "nya bilder",
"wiki pages changed" => "ändrade wiki sidor",
"new files" => "nya filer",
"new comments" => "nya kommentarer",
"new users" => "nya användare",
"Google Search" => "Google sökning",
"Username cannot contain whitespace" => "Användarnamn kan inte indehålla blanktecken",
"Wrong passcode you need to know the passcode to register in this site" => "Felaktig anmälningskod. Du måste känna til anmälningskoden för att kunna registerar dig på denna hemsida",
"No quiz indicated" => "Ingen frågesport vald",
"You cannot take this quiz twice" => "Du kan inte delta i denna frågesport två gånger",
"Quiz time limit excedeed quiz cannot be computed" => "Tidsgränsen för denna frågesport överskreds, resultat är ogilltigt",
"No result indicated" => "Inget resultat valt",
"You dont have permission to edit messages" => "Du har inte rättighet att redigera meddelanden",
"Invalid request to edit an image" => "Otilåten begäran att redigera en bild",
"Permission denied you cannot edit images" => "Du har inte rättighet att redigera bilder",
"Permission denied you can edit images but not in this gallery" => "Du har rättighet att redigera bilder men inte i detta galleri",
"Failed to edit the image" => "Misslyckades med att redigera bilden",
"No question indicated" => "Ingen fråga vald",
"feat" => "bedrift",//perhaps not used
"Full Text Search" => "Full Textsökning",
"Trackers" => "Spårhundar",
"Surveys" => "Undersökning",
"Newsletters" => "Nyhetsbrev",
"Directory" => "Mapp",
"Use gzipped output" => "Använd gzippad utdata",
"Use direct pagination links" => "Använd sidbrytingslänkar",
"Slideshows theme" => "Bildspelstema",
"Server name (for absolute URIs)" => "Server namn (för absoluta URIs)",
"Server time zone" => "Serverns tidszon",
"Displayed time zone" => "Visad tidszon",
"Long date format" => "Långt datumformat",
"Short date format" => "Kort datumformat",
"Long time format" => "Långt tidsformat",
"Short time format" => "Kort tidsformat",
"User registration and login" => "Användarregistrering och inlogning",
"Store plaintext passwords" => "Spara lösenord som råtext",
"Use challenge/response authentication" => "Använd challenge/response autentifikation",
"Force to use chars and nums in passwords" => "Kräv att lösenordet innehåller siffror och bokstäver",
"Minimum password length" => "Minimal lösenordslängd",
"Password invalid after days" => "Lösenordet ogiltigt efter dagar",
"Require HTTP Basic authentication" => "Kräv HTTP grundläggande autentifikation",
"Allow secure (https) login" => "Tillåt säkra (https) inlogningar",
"Require secure (https) login" => "Kräv säkra (https) inlogningar",
"HTTP server name" => "HTTP server namn",
"HTTP port" => "HTTP port",
"HTTP URL prefix" => "HTTP URL prefix",
"HTTPS server name" => "HTTPS server namm",
"HTTPS port" => "HTTPS port",
"HTTPS URL prefix" => "HTTPS URL prefix",
"Export Wiki Pages" => "Exportera Wiki Sidor",
"Export" => "Exportera",
"Remove unused pictures" => "Ta bort oanvända bilder",
"Wiki Home Page" => "Wiki Hemsida",
"Wiki Page Names" => "Wiki Sidnamn",
"full" => "full",
"strict" => "strikt",
"Pictures" => "Bilder",
"Use page description" => "Använd sidbeskrivning",
"gral" => "gral",//perhaps not used
"file gls" => "file glr",//perhaps not used
"trckrs" => "spårhundar",//perhaps not used
"Blog level comments" => "Blog level comments",
"Post level comments" => "Post level comments",
"frms" => "mallar",//perhaps not used
"img gls" => "img glr",//perhaps not used
"webmail" => "webmail",//perhaps not used
"Webmail" => "Webmail",
"Allow viwing HTML mails?" => "Tillåt visning av HTML post?",//perhaps not used
"Maximum size for each attachment" => "Maxal storlek för varje bilaga",
"use in newsletters" => "använd i nyhetsbrev",
"Section" => "Sektion",
"None" => "Ingen",
"Create new" => "Skapa ny",
"list newsletters" => "lista nyhetsbrev",
"admin newsletters" => "administrera nyhetsbrev",
"send newsletters" => "skicak nyhetsbrev",
"Newsletter" => "Nyhetsbrev",
"Add a subscription newsletters" => "Lägg til prenumeration på nyhetsbrev",
"Add all your site users to this newsletter (broadcast)" => "Lägg til alla sajtens användare til detta nyhetsbrev (sprid ut)",
"Add users" => "Lägg til användare",
"valid" => "giltig",
"subscribed" => "prenumererad",
"Create/edit newsletters" => "Skapa/redigera nyhetsbrev",
"There are individual permissions set for this newsletter" => "Det finns indevuduella rättigheter för detta nyhetsbrev",
"Users can subscribe any email addresss" => "Användare kan använda valfri e-postadress för prenumerationen",
"Frequency" => "Frekvens",
"editions" => "utgåvor",
"last sent" => "senast skickad",
"subscriptions" => "prenumerationer",
"Structures" => "Strukturer",
"Create new structure" => "Skapa en ny structur",
"Structure" => "Structur",
"List surveys" => "Lista undersökningar",
"survey stats" => "undersökningsstatistik",
"this survey stats" => "denna undersöknings statistik",
"edit this survey" => "redigera denna undersökning",
"admin surveys" => "administrera undersökningar",
"One choice" => "Envalsfråga",
"Multiple choices" => "Flervalsfråga",
"Short text" => "Kort text",
"Rate (1..5)" => "Betyg (1..5)",
"Rate (1..10)" => "Betyg (1..10)",
"Options (if apply)" => "Valmöjligheter (om möjligt)",
"list surveys" => "lista undersökningar",
"Create/edit surveys" => "Skapa/redigera undersökningar",
"There are individual permissions set for this survey" => "Det finns individuella rättigheter för denna undersökning",
"open" => "öppen",
"status" => "status",
"List trackers" => "Lista spårhundar",
"Admin trackers" => "Administrera spårhundar",
"Edit this tracker" => "Redigera denna spårhunden",
"View this tracker items" => "Visa denna spårhunds poster",
"Edit tracker fields" => "Redigera spårhundens poster",
"checkbox" => "kryssruta",
"text field" => "text fält",
"textarea" => "textarea",
"drop down" => "nedfallande",
"user selector" => "användarval",
"group selector" => "gruppval",
"date and time" => "datum och tid",
"Options (separated by commas used in dropdowns only)" => "Valmöjligheter (separerade av komman - används enbart i nedfallande listor)",
"Is column visible when listing tracker items?" => "Är kolumnen synlig när man listar spårhund poster",
"Column links to edit/view item?" => "Kolumnlänkar til redigera/visa post?",
"Tracker fields" => "Spårhundsfält",
"is_main" => "is_main",
"Tbl vis" => "Tbl vis",
"Create/edit trackers" => "Skapa/redigera spårhundar",
"There are inddividual permissions set for this tracker" => "det finns individuella rättigheter för denna spårhund",//perhaps not used
"Show status when listing tracker items?" => "Visa status vid listning av spårhundsposter?",
"Show creation date when listing tracker items?" => "Visa skapelsedatum vid listning av spårhundsposter?",
"Show last_modified date when listing tracker items?" => "Visa senast ändrade datum vid listning av spårhundsposter?",
"Tracker items allow comments?" => "Spårhundsposter tilåter kommentarter?",
"Tracker items allow attachments?" => "Spårhundsposter tilåter bilagor?",
"items" => "poster",
"fields" => "fält",
"search category" => "sökkategori",
"Change password enforced" => "Lösenordsändring krävs",
"Page alias" => "Page alias",
"page" => "sida",
"page|desc" => "sida|beskrivning",
"SomeName" => "NågotNamn",
"some text" => "någon text",
"Non parsed sections" => "Icke analyserade sektioner",
"data" => "data",
"Prevents parsing data" => "Förhindrar analys av data",
"b" => "b",//perhaps not used
"i" => "i",//perhaps not used
"ul" => "ul",//perhaps not used
"tbl" => "tbl",//perhaps not used
"a" => "a",//perhaps not used
"h1" => "h1",//perhaps not used
"h2" => "h2",//perhaps not used
"h3" => "h3",//perhaps not used
"dcs" => "dcs",//perhaps not used
"center" => "center",
"col" => "col",//perhaps not used
"img nc" => "img nc",
"chars" => "chars",//perhaps not used
"In parent page" => "I refererande sida",
"After page" => "Efter sida",
"create page" => "skapa page",
"Remove only from structure" => "Ta endast bort från strukturen",
"Remove from structure and remove page too" => "Ta både bort från strukturen och sidan",
"list submissions" => "lista bidrag",
"at" => "vid",
"Import page" => "Importera sida",
"export all versions" => "exportera alla versioner",
"Upload picture" => "Lägg in bild",
"Import pages from a PHPWiki Dump" => "Importera sidor från en PHPWiki avbild",
"Path to where the dumped files are" => "Sökvägen til där den avbildade filen finns ",//perhaps not used
"Overwrite existing pages if the name is the same" => "Skriv över existerande sidor om namnet är det samma",
"Previously remove existing page versions" => "Ta bort existerande versioner av sidan",
"import" => "importera",
"ver" => "version",
"excerpt" => "utdrag",
"edit new article" => "redigera ny artikel",
"view articles" => "Visa artiklar",
"edit new submission" => "redigera nya bidrag",
"Survey stats" => "Undersökningsstatistik",
"Thanks for your subscription. You will receive an email soon to confirm your subscription.
No newsletters will be sent to you until the subscription is confirmed." => "Tack för din prenumeration. Du kommer snart att få ett e-postmeddelande för att bekräfta din prenumeration.
Inga nyhetsbrev kommer att skickas innan du bekräftat prenumerationen.",//perhaps not used
"Your email address was removed from the list of subscriptors." => "Din e-postadress har tagits bort från listan med prenumeranter.",
"Subscription confirmed!" => "Prenumerationen bekräftad!",
"Subscribe to newsletter" => "Prenumerara på ett nyhetsbrev",
"Email:" => "E-post:",
"Subscribe" => "Prenumerera",
"similar" => "liknande",
"slides" => "bildspel",
"export" => "exportera",
"Pick your avatar" => "Välj din Avatar",
"Pick user Avatar" => "Välj användarens Avatar",
"Your current avatar" => "Din nuvarande Avatar",
"Upload your own avatar" => "Lägg in din egen Avatar",
"File" => "Fil",
"Received pages" => "Emottagna sidor",
"Send newsletters" => "Skicka nyhetsbrev",
"cancel" => "avbryt",
"Prepare a newsletter to be sent" => "Förbered ett nyhetsbrev för att skickas",
"Subject" => "Ämne",
"Send Newsletters" => "Skicka Nyhetsbrev",
"Sent editions" => "Skicka utgåva",
"subject" => "ämne",
"sent" => "skickat",
"Stats for surveys" => "Statistik för underökningar",
"Survey" => "Undersökning",
"Last taken" => "Senast tagen",
"Stats for survey" => "Statistik för undersökningen",
"Stats for this survey Questions " => "Statistik för denna undersöknings frågor ",
"Batch upload" => "Klumpinlägging",
"Avatar" => "Avatar",
"at tracker" => "vid spårhund",
"Print" => "Skriv ut",
"view comments" => "vida kommentarer",
"Viewing blog post" => "Visa bloginlägg",
"Return to blog" => "Återvänd til bloggen",
"Insert new item" => "Lägg in ny post",
"Tracker Items" => "Spårhundsposter",
"Filters" => "Filter",
"any" => "valfri",
"checked" => "ikryssad",
"unchecked" => "okryssad",
"last_modified" => "senastÄndrad",
"Editing tracker item" => "Redigera spårhundsposter",
"Edit item" => "Redigera post",
"View item" => "Visa post",
"Add a comment" => "Lägg til kommentar",
"posted on" => "inlagd den",
"Attach a file to this item" => "Billägg en fil til denna post",
"Attachments" => "Bilagor",
"No attachments for this item" => "Inga bilagor til denna post",
"settings" => "inställnigar",
"mailbox" => "brevlåda",
"compose" => "komponera",
"contacts" => "kontakter",
"Add new mail account" => "Lägg til entt nytt mailkonto",
"Account name" => "Kontonamn",
"POP server" => "POP server",
"SMTP server" => "SMTP server",
"Port" => "Port",
"SMTP requires authentication" => "SMTP kräver autentifikation",
"Yes" => "Ja",
"No" => "Nej",
"Username" => "Användarnamn",
"Messages per page" => "Meddelanden per sida",
"User accounts" => "Användarkonton",
"account" => "konto",
"pop" => "pop",
"View All" => "Visa Alla",
"Unread" => "Olästa",
"Flagged" => "Flaggad",
"Msg" => "Meddelande",
"First" => "Först",
"Prev" => "Föregående",
"Mark as Flagged" => "Markera som Flaggad",
"Mark as unflagged" => "Avmarkera Flaggning",
"Mark as read" => "Markera som läst",
"Mark as unread" => "Markera som oläst",
"ok" => "OK",
"sender" => "avsändare",
"Next" => "Nästa",
"back to mailbox" => "back to mailbox",
"full headers" => "fullständiga sidhuvuden",
"normal headers" => "normala sidhuvuden",
"reply" => "besvara",
"reply all" => "besvara til alla",
"forward" => "vidarebefordra",
"To" => "Till",
"Cc" => "Cc",
"Create/edit contacts" => "Skapa/redigera kontakt",
"Nickname" => "Smeknamn",
"Contacts" => "Kontakter",
"First Name" => "Förnamn",
"select from address book" => "välj från adressboken",
"cc" => "cc",
"bcc" => "bcc",
"Use HTML mail" => "Använd HTML i post",
"The following addresses are not in your address book" => "Följande adresser finns inte i din adressbok",
"Last Name" => "Efternamn",
"add contacts" => "Lägg til kontakt",
"Attachment 1" => "Bilaga 1",
"Attachment 2" => "Bilaga 2",
"Attachment 3" => "Bilaga 3",
"done" => "klar",
"Address book" => "Addres bok",
"Directory Administration" => "Map Administration",
"Statistics" => "Statistik",
"invalid sites" => "ogiltiga sajter",
"There are" => "Det finns",
"valid sites" => "giltiga sajter",
"Users have visited" => "Användare har besökt",
"sites from the directory" => "sajter från mappen",
"Users have searched" => "Användare har sökt",
"times from the directory" => "gånger från mappen",
"Admin sites" => "Administrera sajter",
"Admin category relationships" => "Administrera kategoriberoenden",
"Validate links" => "Validera länkar",
"Settings" => "Inställningar",
"Admin directory categories" => "Administrera map kategorier",
"Parent category" => "Faderkattegori",
"Add or edit a category" => "Lägg til eller redigera en kategori",
"Children type" => "Barntyp",
"Most visited sub-categories" => "Mest besökta underkategorier",
"Category description" => "Kategori beskrivning",
"Random sub-categories" => "Slumpmässiga underkategorier",
"Maximum number of children to show" => "Maximala antalet barn att visa",
"Allow sites in this category" => "Tillåt sajter i denna kategori",
"Show number of sites in this category" => "Visa antalet sajetr i denna kategori",
"Editor group" => "Redigera grupp",
"Subcategories" => "Underkategorier",
"cType" => "cType",
"allow" => "tilåt",
"count" => "st",
"editor" => "redaktör",
"relate" => "relatera",
"Wiki Import dump" => "Wiki Importera avbild",
"phpinfo" => "phpinfo",
"List Trackers" => "Lista Spårhundar",
"List Surveys" => "Lista Undersökningar",
"Last Modified Items" => "Senast Modifierade Poster",
"Last Items" => "Senaste Poster",
"standard" => "standard",
"secure" => "säker",
"stay in ssl mode" => "fortsätt använda ssl",
"Missing title or body when trying to post a comment" => "Titel eller brödtext saknas när komentaren lades in",
"No newsletter indicated" => "Inget nyhetsbrev valt",
"No survey indicated" => "Ingen undersökning vald",
"No tracker indicated" => "Ingen spårhund vald",
"You cant use the same password again" => "Du kan inte använda samma lösenord igen",//perhaps not used
"Password should be att least" => "Lösenordet måste minst vara",//perhaps not used
"characters long" => "tecken långt",
"Password must contain both letters and numbers" => "Lösenordet måste innehålla både siffror och bokstäver",
"No structure indicated" => "Ingen struktur vald",
"You dont have permission to do that" => "Du har inte rättigheter att göra detta",
"You must be logged in to subscribe to newsletters" => "Du måste vara inloggad för att prenumerera på nyhetsbrev",
"You cannot take this survey twice" => "Du får inte delta i denna underökning mer än en gång (din fuskare)",
"You have to provide a name to the file" => "Du måste förse filen men ett namn",//perhaps not used
"No post indicated" => "Inget inlägg valt",
"No item indicated" => "Ingen post vald",
"HTML tags are not allowed inside comments" => "HTML tags are not allowed inside comments",
"parent" => "parent",
"directory" => "directory",
"userfiles" => "userfiles",//perhaps not used
"User Messages" => "User Messages",
"User Tasks" => "User Tasks",
"Newsreader" => "Newsreader",
"Contact" => "Contact",
"User Notepad" => "User Notepad",
"User files" => "User files",
"User menu" => "User menu",
"Mini calendar" => "Mini calendar",
"Ephemerides" => "Ephemerides",
"Theme control" => "Theme control",
"Theme Control" => "Theme control",
"OS" => "OS",
"Unix" => "Unix",
"Windows" => "Windows",
"Unknown/Other" => "Unknown/Other",
"Use database for translation" => "Use database for translation",
"Record untranslated" => "Record untranslated",
"Temporary directory" => "Temporary directory",
"Map" => "Map",
"Help" => "Help",
"Contact user" => "Contact user",
"contact feature disabled" => "contact feature disabled",
"Remember me feature" => "Remember me feature",
"Disabled" => "Disabled",
"Only for users" => "Only for users",
"Users and admins" => "Users and admins",
"Duration:" => "Duration:",
"week" => "week",
"mins" => "mins",
"Cache wiki pages" => "Cache wiki pages",
"no cache" => "no cache",
"Footnotes" => "Footnotes",
"Users can save pages to notepad" => "Users can save pages to notepad",//perhaps not used
"Users can lock pages (if perm)" => "Users can lock pages (if perm)",
"Tables syntax" => "Tables syntax",
"|| for rows" => "|| for rows",
"\n for rows" => "\n for rows",//perhaps not used
"Wiki History" => "Wiki History",
"Forum settings" => "Forum settings",//perhaps not used
"Allow wiki markup" => "Allow wiki markup",//perhaps not used
"Describe topics in listing" => "Describe topics in listing",//perhaps not used
"Allow viewing HTML mails" => "Allow viewing HTML mails",//perhaps not used
"Unlimited" => "Unlimited",//perhaps not used
"Number of columns per page when listing categories" => "Number of columns per page when listing categories",
"Links per page" => "Links per page",
"Validate URLs" => "Validate URLs",
"Method to open directory links" => "Method to open directory links",
"replace current window" => "replace current window",
"new window" => "new window",
"inline frame" => "inline frame",
"Quota (Mb)" => "Quota (Mb)",
"Use database to store userfiles" => "Use database to store userfiles",
"Use a directory to store userfiles" => "Use a directory to store userfiles",
"subs" => "subs",
"objs" => "objs",
"article" => "article",
"blog" => "blog",
"image gal" => "image gal",
"file gal" => "file gal",
"forum" => "forum",
"poll" => "poll",
"faq" => "faq",
"quiz" => "quiz",
"Chat Administration" => "Chat Administration",
"Chat channels" => "Chat channels",
"Admin content templates" => "Admin content templates",
"Remove all cookies" => "Remove all cookies",
"Edit drawings & pictures" => "Edit drawings & pictures",//perhaps not used
"Admin Forums" => "Admin Forums",
"There are individual permissions set for this forum" => "There are individual permissions set for this forum",
"secs" => "secs",
"min" => "min",
"Add Hotword" => "Add Hotword",
"Edit this page" => "Edit this page",
"Admin layout" => "Admin layout",
"List of featured links" => "List of featured links",
"Admin Menus" => "Admin Menus",
"
<b>Note 1</b>: if you allow your users to configure modules then assigned
modules won't be reflected in the screen until you configure them
from MyTiki->modules.<br />
<b>Note 2</b>: If you assign modules to groups make sure that you
have turned off the option 'display modules to all groups always'
from Admin->General
" => "
<b>Note 1</b>: if you allow your users to configure modules then assigned
modules won't be reflected in the screen until you configure them
from MyTiki->modules.<br />
<b>Note 2</b>: If you assign modules to groups make sure that you
have turned off the option 'display modules to all groups always'
from Admin->General
",//perhaps not used
"left" => "left",
"right" => "right",
"Assigned Modules" => "Assigned Modules",
"Left Modules" => "Left Modules",
"Right Modules" => "Right Modules",
"Edit/Create user module" => "Edit/Create user module",
"All galleries" => "All galleries",
"Admin newsletter subscriptions" => "Admin newsletter subscriptions",
"Admin newsletters" => "Admin newsletters",
"Admin Polls" => "Admin Polls",
"Poll options" => "Poll options",
"Set last poll as current" => "Set last poll as current",
"Close all polls but last" => "Close all polls but last",
"Activate all polls" => "Activate all polls",
"Admin RSS modules" => "Admin RSS modules",
"Rss channels" => "Rss channels",
"Edit survey questions" => "Edit survey questions",
"Create/edit questions for survey" => "Create/edit questions for survey",
"Admin surveys" => "Admin surveys",
"Create a new topic" => "Create a new topic",
"Topic Name" => "Topic Name",
"List of topics" => "List of topics",
"Admin tracker" => "Admin tracker",
"There are individual permissions set for this tracker" => "There are individual permissions set for this tracker",
"trackers" => "trackers",
"assign_perms" => "assign_perms",
"Create level" => "Create level",
"all permissions in level" => "all permissions in level",
"update" => "update",
"Content Templates" => "Content Templates",
"DSN" => "DSN",
"level" => "level",
"assgn" => "assgn",
"List of available backups" => "List of available backups",
"Restoring a backup destoys all the data in your Tiki database. All your tables will be replaced with the information in the backup." => "Restoring a backup destoys all the data in your Tiki database. All your tables will be replaced with the information in the backup.",
"Creating backups may take a long time. If the process is not completed you will see a blank screen. If so you need to increment the maximum script execution time from your php.ini file" => "Creating backups may take a long time. If the process is not completed you will see a blank screen. If so you need to increment the maximum script execution time from your php.ini file",
"view blog" => "view blog",
"list blogs" => "list blogs",
"Objects" => "Objects",
"original size" => "original size",
"rotate right" => "rotate right",
"rotate left" => "rotate left",//perhaps not used
"Klick to enlarge" => "Klick to enlarge",
"smaller" => "smaller",
"bigger" => "bigger",
"Welcome to the Tiki Chat Rooms" => "Welcome to the Tiki Chat Rooms",
"Please select a chat channel" => "Please select a chat channel",
"Browser not supported" => "Browser not supported",
"Channel" => "Channel",
"Ratio" => "Ratio",
"browse" => "browse",
"related" => "related",
"sites" => "sites",
"validate" => "validate",
"Admin related categories" => "Admin related categories",
"Category" => "Category",
"Mutual" => "Mutual",
"Related categories" => "Related categories",
"category" => "category",
"Add or edit a site" => "Add or edit a site",
"Country" => "Country",
"Is valid" => "Is valid",
"Sites" => "Sites",
"country" => "country",
"Validate sites" => "Validate sites",
"list articles" => "list articles",
"Use image generated by URL (the image will be requested at the URL for each impression)" => "Use image generated by URL (the image will be requested at the URL for each impression)",
"There are individual permissions set for this blog" => "There are individual permissions set for this blog",
"Create/edit options for question" => "Create/edit options for question",
"Create/edit questions for quiz" => "Create/edit questions for quiz",
"You will remove" => "You will remove",
"and its subpages from the structure, now you have two options:" => "and its subpages from the structure, now you have two options:",
"There are individual permissions set for this file gallery" => "There are individual permissions set for this file gallery",
"There are individual permissions set for this gallery" => "There are individual permissions set for this gallery",
"Available scales" => "Available scales",
"No scales available" => "No scales available",
"Add scaled images size X x Y" => "Add scaled images size X x Y",
"Path to where the dumped files are (relative to tiki basedir with trailing slash ex: dump/)" => "Path to where the dumped files are (relative to tiki basedir with trailing slash ex: dump/)",
"hist" => "hist",
"Create banner" => "Create banner",
"edit blog" => "edit blog",
"Create or edit content block" => "Create or edit content block",
"Thanks for your subscription. You will receive an email soon to confirm your subscription. No newsletters will be sent to you until the subscription is confirmed." => "Thanks for your subscription. You will receive an email soon to confirm your subscription. No newsletters will be sent to you until the subscription is confirmed.",
"Assign permissions to " => "Assign permissions to ",
"to group" => "to group",
"rename" => "rename",
"Diff to version" => "Diff to version",
"source" => "source",
"Assign permissions to page" => "Assign permissions to page",
"Send email notifications when this page changes to" => "Send email notifications when this page changes to",
"add email" => "add email",
"Notifications" => "Notifications",
"Pick avatar from the library" => "Pick avatar from the library",
"Received Articles" => "Received Articles",
"wiki pages" => "wiki pages",//perhaps not used
"Relevance" => "Relevance",
"locked by" => "locked by",
"Save to notepad" => "Save to notepad",
"pvs" => "pvs",
"display" => "display",
"Mb" => "Mb",
"bytes" => "bytes",
"This is" => "This is",
"by the" => "by the",
"use filename" => "use filename",
"unassign" => "unassign",
"Current folder" => "Current folder",
"User information" => "User information",
"private" => "private",
"public" => "public",
"Use dbl click to edit pages" => "Use dbl click to edit pages",
"Allow messages from other users" => "Allow messages from other users",
"Send me an email for messages with priority equal or greater than" => "Send me an email for messages with priority equal or greater than",
"Tasks per page" => "Tasks per page",
"My Tiki" => "My Tiki",
"My pages" => "My pages",
"My messages" => "My messages",
"My tasks" => "My tasks",
"My items" => "My items",
"replies" => "replies",
"pts" => "pts",
"quote" => "quote",//perhaps not used
"private message" => "private message",
"Tasks" => "Tasks",
"All tasks" => "All tasks",
"mark as done" => "mark as done",
"open tasks" => "open tasks",
"start" => "start",
"priority" => "priority",
"completed" => "completed",
"Add or edit a task" => "Add or edit a task",
"Start date" => "Start date",
"Completed" => "Completed",
"Priority" => "Priority",
"Percentage completed" => "Percentage completed",
"in entire directory" => "in entire directory",
"in current category" => "in current category",
"name (desc)" => "name (desc)",
"name (asc)" => "name (asc)",
"hits (desc)" => "hits (desc)",
"hits (asc)" => "hits (asc)",
"creation date (desc)" => "creation date (desc)",
"creation date (asc)" => "creation date (asc)",
"last updated (desc)" => "last updated (desc)",
"last updated (asc)" => "last updated (asc)",
"Added" => "Added",
"new sites" => "new sites",
"cool sites" => "cool sites",
"add a site" => "add a site",
"Total categories" => "Total categories",
"Total links" => "Total links",
"Links to validate" => "Links to validate",
"Searches performed" => "Searches performed",
"Total links visited" => "Total links visited",
"Add a new site" => "Add a new site",
"Site added" => "Site added",
"The following site was added and validation by admin may be needed before appearing on the lists" => "The following site was added and validation by admin may be needed before appearing on the lists",
"Directory ranking" => "Directory ranking",
"Mailin accounts" => "Mailin accounts",
"wiki-get" => "wiki-get",
"wiki-put" => "wiki-put",
"wiki-append" => "wiki-append",
"Send me a message" => "Send me a message",
"Lowest" => "Lowest",
"Low" => "Low",
"Normal" => "Normal",
"High" => "High",
"Very High" => "Very High",
"Read message" => "Read message",
"Return to messages" => "Return to messages",
"replyall" => "replyall",
"Unflagg" => "Unflagg",
"Flag this message" => "Flag this message",
"Compose message" => "Compose message",
"CC" => "CC",
"BCC" => "BCC",
"Unflagged" => "Unflagged",
"1" => "1",
"2" => "2",
"3" => "3",
"4" => "4",
"5" => "5",
"Mark as flagged" => "Mark as flagged",
"No messages to display" => "No messages to display",
"Mailbox" => "Mailbox",
"Compose" => "Compose",
"Broadcast" => "Broadcast",
"Broadcast message" => "Broadcast message",
"All users" => "All users",
"Contact us" => "Contact us",
"Send a message to us" => "Send a message to us",
"Contact us by email" => "Contact us by email",
"User Galleries" => "User Galleries",
"Assigned items" => "Assigned items",
"Unread Messages" => "Unread Messages",
"Edit or ex/import Languages" => "Edit or ex/import Languages",
"Edit and create Languages" => "Edit and create Languages",
"Im- Export Languages" => "Im- Export Languages",
"Edit and create languages" => "Edit and create languages",
"Create Language" => "Create Language",
"Shortname" => "Shortname",
"like" => "like",
"Longname" => "Longname",
"Select the language to edit" => "Select the language to edit",
"Add a translation" => "Add a translation",
"Edit translations" => "Edit translations",
"Translate recorded" => "Translate recorded",
"Original" => "Original",
"Translation" => "Translation",
"translate" => "translate",
"reset table" => "reset table",
"previous page" => "previous page",
"next page" => "next page",
"Im- Export languages" => "Im- Export languages",
"Select the language to Import" => "Select the language to Import",
"Select the language to Export" => "Select the language to Export",
"MyTiki" => "MyTiki",
"Prefs" => "Prefs",
"Bookmarks" => "Bookmarks",
"Notepad" => "Notepad",
"MyFiles" => "MyFiles",
"Calendar" => "Calendar",
"Configure news servers" => "Configure news servers",
"Select a news server to browse" => "Select a news server to browse",
"server" => "server",
"Add or edit a news server" => "Add or edit a news server",
"News server" => "News server",
"port" => "port",
"Select news group" => "Select news group",
"Back to servers" => "Back to servers",
"Msgs" => "Msgs",
"Newss from" => "Newss from",
"Back to groups" => "Back to groups",
"Save position" => "Save position",
"Reading article from" => "Reading article from",
"Back to list of articles" => "Back to list of articles",
"Newsgroup" => "Newsgroup",
"Notes" => "Notes",
"quota" => "quota",
"Write a note" => "Write a note",
"Reading note:" => "Reading note:",
"List notes" => "List notes",
"Write note" => "Write note",
"User Files" => "User Files",
"Theme Control Center: categories" => "Theme Control Center: categories",
"If a theme is assigned to the individual object that theme is used." => "If a theme is assigned to the individual object that theme is used.",
"If not then if a theme is assigned to the object's category that theme is used" => "If not then if a theme is assigned to the object's category that theme is used",
"If not then a theme for the section is used" => "If not then a theme for the section is used",
"If none of the above was selected the user theme is used" => "If none of the above was selected the user theme is used",
"Finally if the user didn't select a theme the default theme is used" => "Finally if the user didn't select a theme the default theme is used",
"Control by Object" => "Control by Object",
"Control by Sections" => "Control by Sections",
"Assign themes to categories" => "Assign themes to categories",
"Assigned categories" => "Assigned categories",
"theme" => "theme",
"Admin ephemerides" => "Admin ephemerides",
"All ephemerides" => "All ephemerides",
"Theme Control Center: Objects" => "Theme Control Center: Objects",
"Control by category" => "Control by category",
"Assign themes to objects" => "Assign themes to objects",
"Object" => "Object",
"Assigned objects" => "Assigned objects",
"Theme Control Center: sections" => "Theme Control Center: sections",
"Control by Categories" => "Control by Categories",
"Assign themes to sections" => "Assign themes to sections",
"Assigned sections" => "Assigned sections",
"Mini Calendar: Preferences" => "Mini Calendar: Preferences",
"Daily" => "Daily",
"Weekly" => "Weekly",
"Calendar Interval in daily view" => "Calendar Interval in daily view",
"Start hour for days" => "Start hour for days",
"End hour for days" => "End hour for days",
"Upcoming events" => "Upcoming events",
"Reminders" => "Reminders",
"no reminders" => "no reminders",
"Import CSV file" => "Import CSV file",
"Or enter path or URL" => "Or enter path or URL",
"add topic" => "add topic",
"topic image" => "topic image",
"User Menu" => "User Menu",
"May need to refresh twice to see changes" => "May need to refresh twice to see changes",
"Add top level bookmarks to menu" => "Add top level bookmarks to menu",
"Pos" => "Pos",
"Mode" => "Mode",
"Add or edit an item" => "Add or edit an item",
"replace window" => "replace window",
"Mini Calendar" => "Mini Calendar",
"Import" => "Import",
"Remove old events" => "Remove old events",
"duration" => "duration",
"topic" => "topic",
"h" => "h",
"Add or edit event" => "Add or edit event",
"Start" => "Start",
"Duration" => "Duration",
"Admin external wikis" => "Admin external wikis",
"Create/edit extwiki" => "Create/edit extwiki",
"URL (use to be replaced by the page name in the URL example: http://www.example.com/wiki/index.php?page=)" => "URL (use to be replaced by the page name in the URL example: http://www.example.com/wiki/index.php?page=)",//perhaps not used
"extwiki" => "extwiki",
"Admin dsn" => "Admin dsn",
"Create/edit dsn" => "Create/edit dsn",
"dsn" => "dsn",
"Rename page" => "Rename page",
"New name" => "New name",
"Mail-in" => "Mail-in",
"External wikis" => "External wikis",
"contact us" => "contact us",
"My files" => "My files",
"structures" => "structures",
"List forums" => "List forums",
"Browse Directory" => "Browse Directory",
"Admin directory" => "Admin directory",
"Admin quiz" => "Admin quiz",
"Admin (click!)" => "Admin (click!)",
"Edit languages" => "Edit languages",
"online users" => "online users",
"Remember me" => "Remember me",
"Tiki Logo" => "Tiki Logo",
"User tasks" => "User tasks",
"You have" => "You have",
"new message" => "new message",
"new messages" => "new messages",
"Last Sites" => "Last Sites",
"Top Sites" => "Top Sites",
"Directory Stats" => "Directory Stats",
"Sites to validate" => "Sites to validate",
"Searches" => "Searches",
"Visited links" => "Visited links",
"TOP" => "TOP",
"Permission denied you can not view this section" => "Permission denied you can not view this section",
"Permission denied you cannot rebuild thumbnails in this gallery" => "Permission denied you cannot rebuild thumbnails in this gallery",
"Permission denied you cannot rotate images in this gallery" => "Permission denied you cannot rotate images in this gallery",
"You can not use the same password again" => "You can not use the same password again",
"Password should be at least" => "Password should be at least",
"Permission denied" => "Permission denied",
"Mus enter a name to add a site" => "Mus enter a name to add a site",
"Must enter a url to add a site" => "Must enter a url to add a site",
"Must select a category" => "Must select a category",
"You can not download files" => "You can not download files",
"Invalid email address. You must enter a valid email address" => "Invalid email address. You must enter a valid email address",
"No site indicated" => "No site indicated",
"Must enter a name to add a site" => "Must enter a name to add a site",
"URL already added to the directory. Duplicate site?" => "URL already added to the directory. Duplicate site?",
"URL cannot be accessed wrong URL or site is offline and cannot be added to the directory" => "URL cannot be accessed wrong URL or site is offline and cannot be added to the directory",
"You are not logged in and no user indicated" => "You are not logged in and no user indicated",
"The user has choosen to make his information private" => "The user has choosen to make his information private",
"Shortname must be 2 Characters" => "Shortname must be 2 Characters",
"You must provide a longname" => "You must provide a longname",
"Language created" => "Language created",
"Page must be defined inside a structure to use this feature" => "Page must be defined inside a structure to use this feature",
"Must be logged to use this feature" => "Must be logged to use this feature",
"No server indicated" => "No server indicated",
"Cannot connect to" => "Cannot connect to",
"Missing information to read news (server,port,username,password,group) required" => "Missing information to read news (server,port,username,password,group) required",
"Cannot get messages" => "Cannot get messages",
"File is too big" => "File is too big",
"No note indicated" => "No note indicated",
"picture not found" => "picture not found",
"Menu options" => "Menu options",
"Charts" => "Charts",
"No charts defined yet" => "No charts defined yet",
"Admin charts" => "Admin charts",
"Add or edit a chart" => "Add or edit a chart",
"Users can vote only one item from this chart per period" => "Users can vote only one item from this chart per period",
"Prevent users from voting same item more than one time" => "Prevent users from voting same item more than one time",
"Users can suggest new items" => "Users can suggest new items",
"Auto validate user suggestions" => "Auto validate user suggestions",
"Ranking shows" => "Ranking shows",
"Voting system" => "Voting system",
"Ranking frequency" => "Ranking frequency",
"Show Average" => "Show Average",
"Show Votes" => "Show Votes",
"Use Cookies for unregistered users" => "Use Cookies for unregistered users",
"Users can vote again after" => "Users can vote again after",
"Items" => "Items",
"Ranks" => "Ranks",
"All items" => "All items",
"Top 10 items" => "Top 10 items",
"Top 20 items" => "Top 20 items",
"Top 40 items" => "Top 40 items",
"Top 50 items" => "Top 50 items",
"Top 100 items" => "Top 100 items",
"Top 250 items" => "Top 250 items",
"Vote items" => "Vote items",
"Rank 1..5" => "Rank 1..5",
"Rank 1..10" => "Rank 1..10",
"Realtime" => "Realtime",
"Each 5 minutes" => "Each 5 minutes",
"Monthly" => "Monthly",
"Anytime" => "Anytime",
"5 minutes" => "5 minutes",
"1 day" => "1 day",
"1 week" => "1 week",
"1 month" => "1 month",
"You will receive an email with your password soon" => "You will receive an email with your password soon",//perhaps not used
"Thank you for you registration. You may log in now." => "Thank you for you registration. You may log in now.",
"Batch upload (CSV file)" => "Batch upload (CSV file)",
"Overwrite" => "Overwrite",
"Displays the user Avatar" => "Displays the user Avatar",
"Centers the plugin content in the wiki page" => "Centers the plugin content in the wiki page",
"Displays a snippet of code.
Set optional paramater -+ln+- to 1 if you need line numbering feature." => "Displays a snippet of code.
Set optional paramater -+ln+- to 1 if you need line numbering feature.",//perhaps not used
"No description available" => "No description available",
"Displays a graphical GAUGE" => "Displays a graphical GAUGE",
"Renders a graph" => "Renders a graph",
"Insert copyright notices" => "Insert copyright notices",
"Displays a module inlined in page" => "Displays a module inlined in page",
"Insert theme styled box on wiki page" => "Insert theme styled box on wiki page",
"PluginsHelp" => "PluginsHelp",
"Wiki quick help" => "Wiki quick help",
"create new empty structure" => "create new empty structure",
"Create structure from tree" => "Create structure from tree",
"Use single spaces to indent structure levels" => "Use single spaces to indent structure levels",
"tree" => "tree",
"Admin structures" => "Admin structures",
"Click twice if once is not enough !" => "Click twice if once is not enough !",
"Toggle display of comment zone" => "Toggle display of comment zone",
"Copyrights" => "Copyrights",
"Go back" => "Go back",
"In blog listing show user as" => "In blog listing show user as",
"Plain text" => "Plain text",
"Link to user information" => "Link to user information",
"User avatar" => "User avatar",
"Blog listing configuration (when listing available blogs)" => "Blog listing configuration (when listing available blogs)",
"creation date" => "creation date",
"last modification time" => "last modification time",
"activity" => "activity",
"Articles listing configuration" => "Articles listing configuration",
"Author" => "Author",
"Edit css" => "Edit css",
"Workflow engine" => "Workflow engine",
"Use PHPOpenTracker" => "Use PHPOpenTracker",
"User watches" => "User watches",
"Live support system" => "Live support system",
"Banning system" => "Banning system",
"please read" => "please read",
"Gallery listing configuration" => "Gallery listing configuration",
"Accept wiki syntax" => "Accept wiki syntax",
"Forum quick jumps" => "Forum quick jumps",
"Forum listing configuration" => "Forum listing configuration",
"Posts per day" => "Posts per day",
"Last post" => "Last post",
"Library to use for processing images" => "Library to use for processing images",
"Display menus as folders" => "Display menus as folders",
"Sender Email" => "Sender Email",
"Sections" => "Sections",
"Authentication method" => "Authentication method",
"Just Tiki" => "Just Tiki",
"Web Server" => "Web Server",
"Tiki and PEAR::Auth" => "Tiki and PEAR::Auth",
"Tiki and HTTP Auth" => "Tiki and HTTP Auth",
"Use WebServer authentication for Tiki" => "Use WebServer authentication for Tiki",
"Prevent automatic/robot registration" => "Prevent automatic/robot registration",
"PEAR::Auth" => "PEAR::Auth",
"Create user if not in Tiki?" => "Create user if not in Tiki?",
"Create user if not in Auth?" => "Create user if not in Auth?",
"Just use Tiki auth for admin?" => "Just use Tiki auth for admin?",
"LDAP Host" => "LDAP Host",
"LDAP Port" => "LDAP Port",
"LDAP Scope" => "LDAP Scope",
"LDAP Base DN" => "LDAP Base DN",
"LDAP User DN" => "LDAP User DN",
"LDAP User Attribute" => "LDAP User Attribute",
"LDAP User OC" => "LDAP User OC",
"LDAP Group DN" => "LDAP Group DN",
"LDAP Group Atribute" => "LDAP Group Atribute",
"LDAP Group OC" => "LDAP Group OC",
"LDAP Member Attribute" => "LDAP Member Attribute",
"LDAP Member Is DN" => "LDAP Member Is DN",
"LDAP Admin User" => "LDAP Admin User",
"LDAP Admin Pwd" => "LDAP Admin Pwd",
"Allow viewing HTML mails?" => "Allow viewing HTML mails?",
"PDF Export" => "PDF Export",
"Wiki Discussion" => "Wiki Discussion",
"Discuss pages on forums" => "Discuss pages on forums",
"Wiki page list configuration" => "Wiki page list configuration",
"Creator" => "Creator",
"PDF generation" => "PDF generation",
"Page creators are admin of their pages" => "Page creators are admin of their pages",
"Automonospaced text" => "Automonospaced text",
"Copyright Management" => "Copyright Management",
"Enable Feature" => "Enable Feature",
"License Page" => "License Page",
"Submit Notice" => "Submit Notice",
"Add or edit a rule" => "Add or edit a rule",
"Rule title" => "Rule title",
"Username regex matching" => "Username regex matching",
"IP regex matching" => "IP regex matching",
"Banned from sections" => "Banned from sections",
"Rule activated by dates" => "Rule activated by dates",
"Rule active from" => "Rule active from",
"Rule active until" => "Rule active until",
"Custom message to the user" => "Custom message to the user",
"Rules" => "Rules",
"User/IP" => "User/IP",
"Admin Calendars" => "Admin Calendars",
"Create/edit Calendars" => "Create/edit Calendars",
"Custom Locations" => "Custom Locations",
"Custom Categories" => "Custom Categories",
"Custom Languages" => "Custom Languages",
"Custom Priorities" => "Custom Priorities",
"List of Calendars" => "List of Calendars",
"loc" => "loc",
"cat" => "cat",
"lang" => "lang",
"prio" => "prio",
"Admin chart items" => "Admin chart items",
"charts" => "charts",
"edit chart" => "edit chart",
"Chart items" => "Chart items",
"No items defined yet" => "No items defined yet",
"Edit drawings" => "Edit drawings",
"Ver" => "Ver",
"URL (use \$page to be replaced by the page name in the URL example: http://www.example.com/wiki/index.php?page=\$page)" => "URL (use \$page to be replaced by the page name in the URL example: http://www.example.com/wiki/index.php?page=\$page)",
"Show description" => "Show description",
"Moderator user" => "Moderator user",
"Moderator group" => "Moderator group",
"Password protected" => "Password protected",
"Topics only" => "Topics only",
"All posts" => "All posts",
"Forum password" => "Forum password",
"Date (asc)" => "Date (asc)",
"Topic list configuration" => "Topic list configuration",
"Replies" => "Replies",
"Threads can be voted" => "Threads can be voted",
"Forward messages to this forum to this email" => "Forward messages to this forum to this email",
"Add messages from this email to the forum" => "Add messages from this email to the forum",
"POP3 server" => "POP3 server",
"Use topic smileys" => "Use topic smileys",
"Show topic summary" => "Show topic summary",
"User information display" => "User information display",
"avatar" => "avatar",
"flag" => "flag",
"user level" => "user level",
"online" => "online",
"Approval type" => "Approval type",
"All posted" => "All posted",
"Queue anonymous posts" => "Queue anonymous posts",
"Queue all posts" => "Queue all posts",
"No attachments" => "No attachments",
"Everybody can attach" => "Everybody can attach",
"Only users with attach permission" => "Only users with attach permission",
"Moderators and admin can attach" => "Moderators and admin can attach",
"Store attachments in:" => "Store attachments in:",
"Database" => "Database",
"Directory (include trailing slash)" => "Directory (include trailing slash)",
"Max attachment size (bytes)" => "Max attachment size (bytes)",
"Use {literal}{{/literal}ed id=name} or {literal}{{/literal}ted id=name} to insert dynamic zones" => "Use {literal}{{/literal}ed id=name} or {literal}{{/literal}ted id=name} to insert dynamic zones",
"Use wysiwyg editor" => "Use wysiwyg editor",
"Use normal editor" => "Use normal editor",
"Subscriptions" => "Subscriptions",
"Destroy the structure leaving the wiki pages" => "Destroy the structure leaving the wiki pages",
"Destroy the structure and remove the pages" => "Destroy the structure and remove the pages",
"export pages" => "export pages",
"dump tree" => "dump tree",
"stat" => "stat",
"Batch Upload Results" => "Batch Upload Results",
"Added users" => "Added users",
"Rejected users" => "Rejected users",
"Reason" => "Reason",
"Number of displayed rows" => "Number of displayed rows",
"Workflow" => "Workflow",
"ExtWikis" => "ExtWikis",
"Live support" => "Live support",
"Use ...page... to separate pages in a multi-page post" => "Use ...page... to separate pages in a multi-page post",
"Upload image for this post" => "Upload image for this post",
"Send trackback pings to:" => "Send trackback pings to:",
"(comma separated list of URIs)" => "(comma separated list of URIs)",
"save and exit" => "save and exit",
"rotate" => "rotate",
"popup" => "popup",
"first image" => "first image",
"last image" => "last image",
"Popup window" => "Popup window",
"popup window" => "popup window",
"Calendars Panel" => "Calendars Panel",
"Navigation Panel" => "Navigation Panel",
"Hide Panels" => "Hide Panels",
"Refresh" => "Refresh",
"Group Calendars" => "Group Calendars",
"check / uncheck all" => "check / uncheck all",
"Tools Calendars" => "Tools Calendars",
"hide from display" => "hide from display",
"Tiki Calendars" => "Tiki Calendars",
"today" => "today",
"+1d" => "+1d",
"+7d" => "+7d",
"+1m" => "+1m",
"browse by" => "browse by",
"month" => "month",
"+" => "+",
"Edit Calendar Item" => "Edit Calendar Item",
"Modified" => "Modified",
"If you change the calendar selection, please refresh to get the appropriated list in Category, Location and people (if applicable to the calendar you choose)." => "If you change the calendar selection, please refresh to get the appropriated list in Category, Location and people (if applicable to the calendar you choose).",
"or create a new category" => "or create a new category",
"Location" => "Location",
"or create a new location" => "or create a new location",
"Organized by" => "Organized by",
"comma separated usernames" => "comma separated usernames",
"from the list" => "from the list",
"choose" => "choose",
"Participants" => "Participants",
"comma separated username:role" => "comma separated username:role",
"Chair" => "Chair",
"Required" => "Required",
"Optional" => "Optional",
"with roles" => "with roles",
"End" => "End",
"Url" => "Url",
"Tentative" => "Tentative",
"Confirmed" => "Confirmed",
"Cancelled" => "Cancelled",
"duplicate" => "duplicate",
"You should first ask that a calendar is created, so you can create events attached to it." => "You should first ask that a calendar is created, so you can create events attached to it.",
"Create PDF" => "Create PDF",
"PDF Settings" => "PDF Settings",
"Font" => "Font",
"Textheight" => "Textheight",
"Height of top Heading" => "Height of top Heading",
"Height of mid Heading" => "Height of mid Heading",
"Height of inner Heading" => "Height of inner Heading",
"tbheight" => "tbheight",
"imagescale" => "imagescale",
"Select Wiki Pages" => "Select Wiki Pages",
"reset" => "reset",
"Add a related category" => "Add a related category",
"sort" => "sort",
"Float text around image" => "Float text around image",
"Use ...page... to separate pages in a multi-page article" => "Use ...page... to separate pages in a multi-page article",
"Edit or create banners" => "Edit or create banners",
"List banners" => "List banners",
"Show the banner only on" => "Show the banner only on",
"Current heading" => "Current heading",
"Use titles in blog posts" => "Use titles in blog posts",
"Allow search" => "Allow search",
"Allow comments" => "Allow comments",
"Blog heading" => "Blog heading",
"Edit Style Sheet" => "Edit Style Sheet",
"Style Sheet" => "Style Sheet",
"save a custom copy" => "save a custom copy",
"Cancel" => "Cancel",
"choose a stylesheet" => "choose a stylesheet",
"try" => "try",
"File with names appended by -{\$user} are modifiable, others are only duplicable and be used as model." => "File with names appended by -{\$user} are modifiable, others are only duplicable and be used as model.",
"Multi-page pages" => "Multi-page pages",
"use ...page... to separate pages" => "use ...page... to separate pages",
"italic" => "italic",
"heading" => "heading",
"horizontal ruler" => "horizontal ruler",
"special characters" => "special characters",
"Edit question options" => "Edit question options",
"Admin quizzes" => "Admin quizzes",
"quizzes" => "quizzes",
"Edit quiz questions" => "Edit quiz questions",
"Available templates" => "Available templates",
"Copyright" => "Copyright",
"License" => "License",
"Important" => "Important",
"Minor" => "Minor",
"Admin FAQ" => "Admin FAQ",
"No suggested questions" => "No suggested questions",
"Listing configuration" => "Listing configuration",
"icon" => "icon",
"id" => "id",
"downloads" => "downloads",
"Name-filename" => "Name-filename",
"Filename only" => "Filename only",
"Max description display size" => "Max description display size",
"create new gallery" => "create new gallery",
"Actions" => "Actions",
"configure listing" => "configure listing",
"Message queue for" => "Message queue for",
"back to forum" => "back to forum",
"Edit queued message" => "Edit queued message",
"make this a thread of" => "make this a thread of",
"None, this is a thread message" => "None, this is a thread message",
"summary" => "summary",
"no feeling" => "no feeling",
"frown" => "frown",
"exclaim" => "exclaim",
"idea" => "idea",
"mad" => "mad",
"neutral" => "neutral",
"sad" => "sad",
"happy" => "happy",
"wink" => "wink",
"save and approve" => "save and approve",
"convert to topic" => "convert to topic",
"List of messages" => "List of messages",
"new topic" => "new topic",
"no summary" => "no summary",
"attachment" => "attachment",
"No messages queued yet" => "No messages queued yet",
"reject" => "reject",
"adm" => "adm",
"Reported messages for" => "Reported messages for",
"Reported by" => "Reported by",
"Activity completed" => "Activity completed",
"Process" => "Process",
"Admin process activities" => "Admin process activities",
"Add or edit an activity" => "Add or edit an activity",
"end" => "end",
"switch" => "switch",
"split" => "split",
"join" => "join",
"standalone" => "standalone",
"interactive" => "interactive",
"auto routed" => "auto routed",
"Add transitions" => "Add transitions",
"Add transition from:" => "Add transition from:",
"Add transition to:" => "Add transition to:",
"roles" => "roles",
"No roles associated to this activity" => "No roles associated to this activity",
"Add role" => "Add role",
"add new" => "add new",
"add role" => "add role",
"Process activities" => "Process activities",
"Int" => "Int",
"Routing" => "Routing",
"Interactive" => "Interactive",
"Automatic" => "Automatic",
"Auto routed" => "Auto routed",
"Manual" => "Manual",
"#" => "#",
"inter" => "inter",
"route" => "route",
"(no roles)" => "(no roles)",
"code" => "code",
"No activities defined yet" => "No activities defined yet",
"Process Transitions" => "Process Transitions",
"List of transitions" => "List of transitions",
"From:" => "From:",
"Origin" => "Origin",
"No transitions defined yet" => "No transitions defined yet",
"Add a transition" => "Add a transition",
"Admin instance" => "Admin instance",
"Instance" => "Instance",
"Workitems" => "Workitems",
"exception" => "exception",
"aborted" => "aborted",
"Owner" => "Owner",
"Send all to" => "Send all to",
"Don't move" => "Don't move",
"Activities" => "Activities",
"Act status" => "Act status",
"run" => "run",
"Properties" => "Properties",
"Property" => "Property",
"Value" => "Value",
"Add property" => "Add property",
"value" => "value",
"Admin processes" => "Admin processes",
"Add or edit a process" => "Add or edit a process",
"This process is invalid" => "This process is invalid",
"Process Name" => "Process Name",
"ver:" => "ver:",
"is active?" => "is active?",
"Or upload a process using this form" => "Or upload a process using this form",
"List of processes" => "List of processes",
"Inactive" => "Inactive",
"act" => "act",
"val" => "val",
"active process" => "active process",
"invalid" => "invalid",
"invalid process" => "invalid process",
"valid process" => "valid process",
"new minor" => "new minor",
"new major" => "new major",
"activities" => "activities",
"No processes defined yet" => "No processes defined yet",
"Admin process roles" => "Admin process roles",
"Add or edit a role" => "Add or edit a role",
"Process roles" => "Process roles",
"No roles defined yet" => "No roles defined yet",
"Map users to roles" => "Map users to roles",
"Roles" => "Roles",
"Anonymous" => "Anonymous",
"map" => "map",
"Map groups to roles" => "Map groups to roles",
"Operation" => "Operation",
"Role" => "Role",
"Warning" => "Warning",
"No roles are defined yet so no roles can be mapped" => "No roles are defined yet so no roles can be mapped",
"List of mappings" => "List of mappings",
"No mappings defined yet" => "No mappings defined yet",
"Admin process sources" => "Admin process sources",
"select source" => "select source",
"Shared code" => "Shared code",
"Set next user" => "Set next user",
"Get property" => "Get property",
"Set property" => "Set property",
"Complete" => "Complete",
"Process form" => "Process form",
"Set Next act" => "Set Next act",
"If:SetNextact" => "If:SetNextact",
"Switch construct" => "Switch construct",
"Map process roles" => "Map process roles",
"admin processes" => "admin processes",
"admin activities" => "admin activities",
"admin roles" => "admin roles",
"edit this process" => "edit this process",
"Process:" => "Process:",
"Monitor activities" => "Monitor activities",
"List of activities" => "List of activities",
"proc" => "proc",
"auto" => "auto",
"int" => "int",
"routing" => "routing",
"Instances" => "Instances",
"run activity" => "run activity",
"monitor" => "monitor",
"monitor processes" => "monitor processes",
"monitor activities" => "monitor activities",
"monitor instances" => "monitor instances",
"monitor workitems" => "monitor workitems",
"Monitor instances" => "Monitor instances",
"List of instances" => "List of instances",
"act status" => "act status",
"running" => "running",
"No instances created yet" => "No instances created yet",
"Monitor processes" => "Monitor processes",
"Valid" => "Valid",
"Invalid" => "Invalid",
"Activs" => "Activs",
"processes" => "processes",
"being run" => "being run",
"exceptions" => "exceptions",
"Monitor workitems" => "Monitor workitems",
"List of workitems" => "List of workitems",
"instance" => "instance",
"Ins" => "Ins",
"stop" => "stop",
"activate" => "activate",
"graph" => "graph",
"User Activities" => "User Activities",
"process" => "process",
"user processes" => "user processes",
"user activities" => "user activities",
"user instances" => "user instances",
"User instances" => "User instances",
"Inst Status" => "Inst Status",
"exception instance" => "exception instance",
"exceptions instance" => "exceptions instance",
"send instance" => "send instance",
"run instance" => "run instance",
"abort instance" => "abort instance",
"grab instance" => "grab instance",
"release instance" => "release instance",
"No instances defined yet" => "No instances defined yet",
"User processes" => "User processes",
"Browsing Workitem" => "Browsing Workitem",
"Workitem information" => "Workitem information",
"First page" => "First page",
"Previous page" => "Previous page",
"Next page" => "Next page",
"Last page" => "Last page",
"create new blog" => "create new blog",
"Edit a file using this form" => "Edit a file using this form",
"Gallery Files" => "Gallery Files",
"move selected files" => "move selected files",
"delete selected files" => "delete selected files",
"Move to" => "Move to",
"Gallery Images" => "Gallery Images",
"unlocked" => "unlocked",
"with checked" => "with checked",
"Open operator console" => "Open operator console",
"Open client window" => "Open client window",
"Generate HTML" => "Generate HTML",
"Transcripts" => "Transcripts",
"Support tickets" => "Support tickets",
"Online operators" => "Online operators",
"Operator" => "Operator",
"Accepted requests" => "Accepted requests",
"since" => "since",
"transcripts" => "transcripts",
"Offline operators" => "Offline operators",
"Add an operator to the system" => "Add an operator to the system",
"Operators must be tiki users" => "Operators must be tiki users",
"set as operator" => "set as operator",
"Chat started" => "Chat started",
"User:" => "User:",
"Operator:" => "Operator:",
"Request live support" => "Request live support",
"Request support" => "Request support",
"Open a support ticket instead" => "Open a support ticket instead",
"Your request is being processed" => "Your request is being processed",
"cancel request and exit" => "cancel request and exit",
"cancel request and leave a message" => "cancel request and leave a message",
"Live support:Console" => "Live support:Console",
"be online" => "be online",
"be offline" => "be offline",
"Support requests" => "Support requests",
"Requested" => "Requested",
"Accept" => "Accept",
"Join" => "Join",
"Support chat transcripts" => "Support chat transcripts",
"back to admin" => "back to admin",
"op" => "op",
"started" => "started",
"reason" => "reason",
"msgs" => "msgs",
"Transcript" => "Transcript",
"My watches" => "My watches",
"No notes yet" => "No notes yet",
"merge selected notes into" => "merge selected notes into",
"wiki create" => "wiki create",
"wiki overwrite" => "wiki overwrite",
"discuss" => "discuss",
"attachments" => "attachments",
"Vote poll" => "Vote poll",
"posted by" => "posted by",
"Permalink" => "Permalink",
"referenced by" => "referenced by",
"references" => "references",
"email this post" => "email this post",
"Your registration code:" => "Your registration code:",
"Registration code" => "Registration code",
"Send blog post" => "Send blog post",
"A link to this post was sent to the following addresses:" => "A link to this post was sent to the following addresses:",
"Send post to this addresses" => "Send post to this addresses",
"List of email addresses separated by commas" => "List of email addresses separated by commas",
"The newsletter was sent to {\$sent} email addresses" => "The newsletter was sent to {\$sent} email addresses",
"This newsletter will be sent to {\$subscribers} email addresses." => "This newsletter will be sent to {\$subscribers} email addresses.",
"create pdf" => "create pdf",
"pdf" => "pdf",
"monitor this page" => "monitor this page",
"stop monitoring this page" => "stop monitoring this page",
"last modification" => "last modification",
"To edit the copyright notices" => "To edit the copyright notices",
"click here" => "click here",
"The content on this page is licensed under the terms of the" => "The content on this page is licensed under the terms of the",
"Theme is selected as follows" => "Theme is selected as follows",
"Errors detected" => "Errors detected",
"You have to create a gallery first!" => "You have to create a gallery first!",
"move to right column" => "move to right column",
"move to left column" => "move to left column",
"Folders" => "Folders",
"remove folder" => "remove folder",
"remove bookmark" => "remove bookmark",
"refresh cache" => "refresh cache",
"Admin folders and bookmarks" => "Admin folders and bookmarks",
"Is email public? (uses scrambling to prevent spam)" => "Is email public? (uses scrambling to prevent spam)",
"Edit CSS" => "Edit CSS",
"No tasks entered" => "No tasks entered",
"Watches" => "Watches",
"RSS feed" => "RSS feed",
"Edit blog" => "Edit blog",
"monitor this blog" => "monitor this blog",
"stop monitoring this blog" => "stop monitoring this blog",
"read more" => "read more",
"references" => "references",
"Trackback pings" => "Trackback pings",
"URI" => "URI",
"Blog name" => "Blog name",
"viewed" => "viewed",
"edit items" => "edit items",
"list charts" => "list charts",
"last chart" => "last chart",
"previous chart" => "previous chart",
"Chart created" => "Chart created",
"next chart" => "next chart",
"pos" => "pos",
"pre" => "pre",
"perm" => "perm",
"item" => "item",
"chg" => "chg",
"avg" => "avg",
"cool" => "cool",
"info/vote" => "info/vote",
"Next chart will be generated on" => "Next chart will be generated on",
"View or vote items not listed in the chart" => "View or vote items not listed in the chart",
"Select something to vote on" => "Select something to vote on",
"Item information" => "Item information",
"Chart" => "Chart",
"Item" => "Item",
"Permanency" => "Permanency",
"Previous" => "Previous",
"Dif" => "Dif",
"Best Position" => "Best Position",
"Vote this item" => "Vote this item",
"Highest" => "Highest",
"Q" => "Q",
"A" => "A",
"Tiki forums" => "Tiki forums",
"monitor this forum" => "monitor this forum",
"stop monitoring this forum" => "stop monitoring this forum",
" unread private messages" => " unread private messages",
"You have to enter a title and text" => "You have to enter a title and text",
"Summary" => "Summary",
"Attach file" => "Attach file",
"moderator actions" => "moderator actions",
"move selected topics" => "move selected topics",
"unlock selected topics" => "unlock selected topics",
"lock selected topics" => "lock selected topics",
"delete selected topics" => "delete selected topics",
"merge" => "merge",
"merge selected topics" => "merge selected topics",
"reported messages:" => "reported messages:",
"queued messages:" => "queued messages:",
"Merge into topic" => "Merge into topic",
"mot" => "mot",
"No topics yet" => "No topics yet",
"Show posts" => "Show posts",
"Last hour" => "Last hour",
"Last 24 hours" => "Last 24 hours",
"Last 48 hours" => "Last 48 hours",
"Jump to forum" => "Jump to forum",
"stars" => "stars",
"monitor this topic" => "monitor this topic",
"stop monitoring this topic" => "stop monitoring this topic",
"send email to user" => "send email to user",
"user online" => "user online",
"user offline" => "user offline",
"prev topic" => "prev topic",
"next topic" => "next topic",
"Moderator actions" => "Moderator actions",
"delete selected" => "delete selected",
"Move to topic:" => "Move to topic:",
"reported:" => "reported:",
"queued:" => "queued:",
"this post was reported" => "this post was reported",
"report this post" => "report this post",
"IRC log" => "IRC log",
"Select" => "Select",
"Tracker" => "Tracker",
"Syntax" => "Syntax",
"Example" => "Example",
"Somebody or you tried to subscribe this email address at our site:" => "Somebody or you tried to subscribe this email address at our site:",
"To the newsletter:" => "To the newsletter:",
"In order to confirm your subscription you must access the following URL:" => "In order to confirm your subscription you must access the following URL:",
"A new message was posted to forum" => "A new message was posted to forum",
"Message" => "Message",
"The user" => "The user",
"registered at your site" => "registered at your site",
"Bye bye!" => "Bye bye!",
"This email address has been removed to the list of subscriptors of:" => "This email address has been removed to the list of subscriptors of:",
"Newsletter:" => "Newsletter:",
"Welcome to our newsletter!" => "Welcome to our newsletter!",
"This email address has been added to the list of subscriptors of:" => "This email address has been added to the list of subscriptors of:",
"You can always cancel your subscription using:" => "You can always cancel your subscription using:",
"Hi" => "Hi",
"someone from" => "someone from",
"requested a reminder of the password for the" => "requested a reminder of the password for the",
"since this is your registered email address we inform that the" => "since this is your registered email address we inform that the",
"password for this account is" => "password for this account is",
"you or someone registered this email address at" => "you or someone registered this email address at",
"If you want to be a registered user in this site you will have to use" => "If you want to be a registered user in this site you will have to use",
"the following link to login for the first time" => "the following link to login for the first time",
"Enjoy the site!" => "Enjoy the site!",
"Banning" => "Banning",
"Syntax highlighting" => "Syntax highlighting",
"online user" => "online user",
"Send a message to" => "Send a message to",
"Send message" => "Send message",
"More info about" => "More info about",
"idle" => "idle",
"calendar" => "calendar",
"MyTiki (click!)" => "MyTiki (click!)",
"User activities" => "User activities",
"Submit a new link" => "Submit a new link",
"The copyright management feature is not enabled." => "The copyright management feature is not enabled.",
"You do not have permission to use this feature." => "You do not have permission to use this feature.",
"You must supply all the information, including title and year." => "You must supply all the information, including title and year.",
"Invalid user" => "Invalid user",
"Message will be sent to: " => "Message will be sent to: ",
"ERROR: Either the subject or body must be non-empty" => "ERROR: Either the subject or body must be non-empty",
"ERROR: No valid users to send the message" => "ERROR: No valid users to send the message",
"No more messages" => "No more messages",
"No chart indicated" => "No chart indicated",
"The file is not a CSV file or has not a correct syntax" => "The file is not a CSV file or has not a correct syntax",
"No records were found. Check the file please!" => "No records were found. Check the file please!",
"User login is required" => "User login is required",
"Password is required" => "Password is required",
"Email is required" => "Email is required",
"User is duplicated" => "User is duplicated",
"Top visited blogs" => "Top visited blogs",
"blog_ranking_top_blogs" => "blog_ranking_top_blogs",
"Last posts" => "Last posts",
"blog_ranking_last_posts" => "blog_ranking_last_posts",
"Top active blogs" => "Top active blogs",
"blog_ranking_top_active_blogs" => "blog_ranking_top_active_blogs",
"Permission denied you cannot view the calendar" => "Permission denied you cannot view the calendar",
"event without name" => "event without name",
"Top authors" => "Top authors",
"Message sent to" => "Message sent to",
"You dont have permission to write the style sheet" => "You dont have permission to write the style sheet",
"You have to create a topic first" => "You have to create a topic first",
"page imported" => "page imported",
"created from import" => "created from import",
"filegal_ranking_top_galleries" => "filegal_ranking_top_galleries",
"filegal_ranking_top_files" => "filegal_ranking_top_files",
"filegal_ranking_last_files" => "filegal_ranking_last_files",
"Forum posts" => "Forum posts",
"No process indicated" => "No process indicated",
"Activity name already exists" => "Activity name already exists",
"No instance indicated" => "No instance indicated",
"The process name already exists" => "The process name already exists",
"Process already exists" => "Process already exists",
"No activity indicated" => "No activity indicated",
"You cant execute this activity" => "You cant execute this activity",
"gal_ranking_top_galleries" => "gal_ranking_top_galleries",
"gal_ranking_top_images" => "gal_ranking_top_images",
"gal_ranking_last_images" => "gal_ranking_last_images",
"page not added (Exists)" => "page not added (Exists)",
"overwriting old page" => "overwriting old page",
"updated by the phpwiki import process" => "updated by the phpwiki import process",
"page created" => "page created",
"created from phpwiki import" => "created from phpwiki import",
"Cannot write to this file:" => "Cannot write to this file:",
"Wiki page" => "Wiki page",
"Permission denied you can't upload files so you can't edit them" => "Permission denied you can't upload files so you can't edit them",
"Permission denied you cannot edit this file" => "Permission denied you cannot edit this file",
"Permission denied you cannot remove pages" => "Permission denied you cannot remove pages",
"Tiki mail-in instructions" => "Tiki mail-in instructions",
"About" => "About",
"merged note:" => "merged note:",
"No name indicated for wiki page" => "No name indicated for wiki page",
"Page already exists" => "Page already exists",
"created from notepad" => "created from notepad",
"Wrong registration code" => "Wrong registration code",
"New user registration" => "New user registration",
"You will receive an email with information to login for the first time into this site" => "You will receive an email with information to login for the first time into this site",
"Your Tiki information registration" => "Your Tiki information registration",
"Your Tiki account information for" => "Your Tiki account information for",
"A password reminder email has been sent " => "A password reminder email has been sent ",
"A new password has been sent " => "A new password has been sent ",
"to the registered email address for" => "to the registered email address for",
"Invalid or unknown username" => "Invalid or unknown username",
"Cannot rename page maybe new page already exists" => "Cannot rename page maybe new page already exists",
"Post recommendation at" => "Post recommendation at",
" successfully sent" => " successfully sent",
" not sent" => " not sent",
"Please create a category first" => "Please create a category first",
"Permission denied you cannot upload files" => "Permission denied you cannot upload files",
"No permission to upload zipped file packages" => "No permission to upload zipped file packages",
"Cannot read file" => "Cannot read file",
"Upload was not successful" => "Upload was not successful",
"Invalid imagename (using filters for filenames)" => "Invalid imagename (using filters for filenames)",
"Error processing zipped image package" => "Error processing zipped image package",
"No permission to upload zipped image packages" => "No permission to upload zipped image packages",
"Cannot upload this file not enough quota" => "Cannot upload this file not enough quota",
"No item indicated" => "No item indicated",
"Wrong password. Cannot post comment" => "Wrong password. Cannot post comment",
"Cannot upload this file maximum upload size exceeded" => "Cannot upload this file maximum upload size exceeded",
" new topic:" => " new topic:",
"Tiki email notification" => "Tiki email notification",
"Re:" => "Re:",
"topic:" => "topic:",
"forum topic" => "forum topic",
"Your email address has been removed from the list of addresses monitoring this tracker" => "Your email address has been removed from the list of addresses monitoring this tracker",
"Your email address has been added to the list of addresses monitoring this tracker" => "Your email address has been added to the list of addresses monitoring this tracker",
"Cancel monitoring" => "Cancel monitoring",
"Monitor" => "Monitor",
"Your email address has been removed from the list of addresses monitoring this item" => "Your email address has been removed from the list of addresses monitoring this item",
"Your email address has been added to the list of addresses monitoring this item" => "Your email address has been added to the list of addresses monitoring this item",
"No subject" => "No subject",
"Your email was sent" => "Your email was sent",
"Top pages" => "Top pages",
"Last pages" => "Last pages",
"Most relevant pages" => "Most relevant pages",
"no such file" => "no such file",
"January" => "January",
"February" => "February",
"March" => "March",
"April" => "April",
"May" => "May",
"June" => "June",
"July" => "July",
"August" => "August",
"September" => "September",
"October" => "October",
"November" => "November",
"December" => "December",
"Sunday" => "Sunday",
"Monday" => "Monday",
"Tuesday" => "Tuesday",
"Wednesday" => "Wednesday",
"Thursday" => "Thursday",
"Friday" => "Friday",
"Saturday" => "Saturday",
"WikiDiff::apply: line count mismatch: %s != %s" => "WikiDiff::apply: line count mismatch: %s != %s",
"WikiDiff::_check: failed" => "WikiDiff::_check: failed",
"WikiDiff::_check: edit sequence is non-optimal" => "WikiDiff::_check: edit sequence is non-optimal",
"WikiDiff Okay: LCS = %s" => "WikiDiff Okay: LCS = %s",
"Current page:" => "Current page:",
"version %s" => "version %s",
"last modified on %s" => "last modified on %s",
"by %s" => "by %s",
"Archived page:" => "Archived page:",
"Versions are identical" => "Versions are identical",
"Diff of %s." => "Diff of %s.",
"FAQ" => "FAQ",
"No image yet, sorry." => "No image yet, sorry.",
"You are banned from" => "You are banned from",
"no description" => "no description",
"drawing not found" => "drawing not found",
"help" => "help",
" tags. Example: {tr}The newsletter was sent to {\$sent} email addresses" => " tags. Example: {tr}The newsletter was sent to {\$sent} email addresses",
"indicates if the process is active. Invalid processes cant be active" => "indicates if the process is active. Invalid processes cant be active",
"New article submitted at " => "New article submitted at ",
"Blog post" => "Blog post",
"continued" => "continued",
"click to edit" => "click to edit",
"new image uploaded by" => "new image uploaded by",
"uploaded by" => "uploaded by",
"new item in tracker" => "new item in tracker",
"new subscriptions" => "new subscriptions",
"not specified" => "not specified",
"Home" => "Home",
"NONE" => "NONE",
"Newsletter subscription information at " => "Newsletter subscription information at ",
"Welcome to " => "Welcome to ",
" at " => " at ",
"Bye bye from " => "Bye bye from ",
"You can unsubscribe from this newsletter following this link" => "You can unsubscribe from this newsletter following this link",
"Wiki top pages" => "Wiki top pages",
"Wiki last pages" => "Wiki last pages",
"Forums last topics" => "Forums last topics",
"Topic date" => "Topic date",
"Forums most read topics" => "Forums most read topics",
"Forums best topics" => "Forums best topics",
"Forums most visited forums" => "Forums most visited forums",
"Forums with most posts" => "Forums with most posts",
"Wiki top galleries" => "Wiki top galleries",
"Wiki top file galleries" => "Wiki top file galleries",
"Wiki top images" => "Wiki top images",
"Wiki top files" => "Wiki top files",
"Wiki last images" => "Wiki last images",
"Upload date" => "Upload date",
"Wiki last files" => "Wiki last files",
"Wiki top articles" => "Wiki top articles",
"Most active blogs" => "Most active blogs",
"Blogs last posts" => "Blogs last posts",
"Post date" => "Post date",
"Wiki top authors" => "Wiki top authors",
"Top article authors" => "Top article authors",
"Tracker was modified at " => "Tracker was modified at ",
"Displays a snippet of code.\nSet optional paramater -+ln+- to 1 if you need line numbering feature." => "Displays a snippet of code.\nSet optional paramater -+ln+- to 1 if you need line numbering feature.",
"Sorry no such module" => "Sorry no such module",
"Please choose a module" => "Please choose a module",
"to be used as argument" => "to be used as argument",
"Missing db param" => "Missing db param",
"There is an error in the plugin data" => "There is an error in the plugin data",
"Change your email" => "Change your email",
"Edit this assigned module:" => "Edit this assigned module:",
"##end###" => "###end###");
?>
|