1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
|
<?php // -*- coding:utf-8 -*-
// parameters:
// lang=xx : only tranlates language 'xx',
// if not given all languages are translated
// comments : generate all comments (equal to close&module)
// close : look for similar strings that are allready translated and
// generate a commet if a 'match' is made
// module : generate comments that describes in which .php and/or .tpl
// module(s) a certain string was found (useful for checking
// translations in context)
// patch : looks for the file 'language.patch' in the same directory
// as the corresponding language.php and overrides any strings
// in language.php - good if a user does not agree with
// some translations or if only changes are sent to the maintaner
// Examples:
// http://www.neonchart.com/get_strings.php?lang=sv
// Will translate langauage 'sv' and (almost) avoiding comment generation
// http://www.neonchart.com/get_strings.php?lang=sv&comments
// Will translate langauage 'sv' and generate all possible comments.
// This is the most usefull mode when working on a translation.
// http://www.neonchart.com/get_strings.php?lang=sv&nohelp&nosections
// These options will only provide the minimal amout of comments.
// Usefull mode when preparing a translation for distribution.
// http://www.neonchart.com/get_strings.php?nohelp&nosections
// Prepare all languages for release
$lang=Array(
// ### starting of words that have not been translated
// ### uncomment value pairs as you translate
"Child categories" => "Olketa Pikinini category",
"Your settings have been updated. <a href='tiki-admin.php?page=general'>Click here</a> or come back later to see the changes. That is a known bug that will be fixed in the next release.." => "Olketa niu settings blo iu hemi redi finis. <a href='tiki-admin.php?page=general'>Klik long hia</a> o iu save kam baek bihaen an lukim olketa seninis ia.Disfala bug mifala save abaotim an baebae mifala stretem long insaet niu release wea bae hemi kolsap kamaot.",
"The passwords don't match" =>"Olketa paswod ia olketa no semsem",
"Your admin password has been changed" => "Difala Admin paswod blo iu hemi senis finis.",
"All Fields must be non empty" => "Mas no livim eni Fields emti",
"You do not have permission to use this feature" => "Tambu fo iu iusim disfala samting",
"No blogId specified" => "Iu mas givim wanfala nem o namba fo blogId",
"No galleryId specified" => "Iu mas givim wanfala nem o namba fo galleryId",
"No forumId specified" => "Iu mas givim wanfala nem o namba fo forumId",
"You do not have permissions to view the maps" => "Tambu fo iu lukluk lo olketa maps",
"mapfile name incorrect" => "mapfile nem iu raetem hemi no stret",
"This mapfile already exists" => "Difala mapfile nem olketa iusim finis.Iu mas iusim diferenwan",
"You do not have permission to write the mapfile" => "Tambu fo iu raetem disfala mapfile",
"You do not have permission to delete the mapfile" => "Tambu fo iu tekaotem disfala mapfile",
"You do not have permission to read the mapfile" => "Tambu fo iu ridim disfala mapfile",
"You do not have permissions to view the layers" => "Tambu fo iu lukluk long olketa layers",
"Could not upload the file" => "Disfala file baebae hemi no save upload",
"You do not have permissions to delete a file" => "Tambu fo iu tekemaot disfala file",
"You do not have permissions to create a directory" => "Tambu fo iu wakem eni directory",
"The Directory is not empty" => "Disfala Directory hemi no emti",
"You do not have permissions to delete a directory" => "Tambu fo iu tekemaot eni directory",
"Welcome at Hawiki" => "Welkam lo Hawiki",
"This TikiWiki site is prepared for access from a lot of mobile devices, e.g. WAP phones, PDA's, i-mode devices and much more." => "Disfala TikiWiki site \\(ples\\) ia hemi redi fo eni wan wea hemi baebae trae fo toktok kam from eni kaen samting olsem olketa mobile devices, olsem WAP phones, PDA's, i-mode devices an staka moa.",
"You can browse this site on your mobile device by directing your device's browser towards the following URL here on this site:" => "Iu save iusim mobile device blo iu fo lukluk raon long disfala site \\(ples\\) sapos iu directem browser blong device blong iu go-go long olketa URL long disfala site:",
"tiki-mobile.php" => "tiki-mobile.php",
"pageviews" => "pejview",
"Invalid password. You current password is required to change your email address." => "paswod iu raetem hemi no stret wan. Iu baebae nidim nao disfala paswod blong iu fo senisim email adres blong iu.",
"You are not permitted to remove someone else\\'s post!" => "Tambu fo iu tekaotem post blong olketa narafala man!",
"Click to edit dynamic variable" => "Klik lo hia fo iu save mekem senis long dynamic variable",
"Update variables" => "Updatem olketa variable",
"Czech" => "Czech",
"Danish" => "Danish",
"German" => "German",
"English" => "English",
"Greek" => "Greek",
"French" => "French",
"Italian" => "Italian",
"Japanese" => "Japanese",
"Dutch" => "Dutch",
"Norwegian" => "Norwegian",
"Polish" => "Polish",
"Russian" => "Russian",
"Spanish" => "Spanish",
"Swedish" => "Swedish",
"Twi" => "Twi",
"Chinese" => "Chinese",
"Solomon Pidgin" => "Solomon Pidgin " ,
"Unknown language" => "Langgius ia no eniwan save",
"Fatal error: setting next activity to an unexisting activity" => "Barava nogud error: narafala activity hemi bin set go long wanfala activity wea hemi no stap long here",
"Fatal error: nextActivity does not match any candidate in autorouting switch activity" => "Barava nogud error: narafala Activity hemi no semsem olsem eni candidate insaet long autorouting switch activity",
"Fatal error: non-deterministic decision for autorouting activity" => "Barava nogud error: eno gud wei fo mekem decision fo eni autorouting activity",
"Fatal error: trying to send an instance to an activity but no transition found" => "Barava nogud error: iu trae fo sendem go wanfala instance go long wanfala activity bata no eni transition hemi save faendem",
"Cannot add transition only split activities can have more than one outbound transition" => "Baebae hemi no save adem go eni transition olketa split activities nomoa bae save garem staka winim wanfla outbound transition",
"Circular reference found some activity has a transition leading to itself" => "Circular reference hemi faendem dat samfala activity olketa garem wanfala transition wea hemi go baek long hemseleva",
"Process does not have a start activity" => "Process hemi no garem eni start activity",
"Process does not have exactly one end activity" => "Process ia hemi no garem wanfala end activity nomoa",
"End activity is not reachable from start activity" => "hemi lelebet hati nao fo kasem end activity ia from disfala start activity",
" is interactive but has no role assigned" => " hemi interactive ia bat hemi no garem eni role wea hemi assigned go long hem",
" is non-interactive and non-autorouted but has no role assigned" => " hemi non-interactive an non-autorouted bat hemi no garem eni role wea hemi assigned go long hem",
" is standalone but has transitions" => " hemi standalone bat hemi garem olketa transition",
" is not mapped" => " hemi no garem eni klia map wea hemi sosoaot\\( mapped\\)",
"Activity '.\$res['name'].' is standalone and is using the \$instance object" => "Activity '.\$res['name'].' hemi standalone an hemi iusim disfala \$instance object",
"Activity '.\$res['name'].' is interactive so it must use the \$instance->complete() method" => "Activity '.\$res['name'].' hemi interactive ia so hemi mas iusim disfala \$instance->complete() wei",
"Activity '.\$res['name'].' is non-interactive so it must not use the \$instance->complete() method" => "Activity '.\$res['name'].' hemi non-interactive ia so hemi mas no iusim disfala \$instance->complete() wei",
"Activity '.\$res['name'].' is switch so it must use \$instance->setNextActivity(\$actname) method" => "Activity '.\$res['name'].'emi switch ia so hemi mas iusim \$instance->setNextActivity(\$actname) wei",
"Process %d has been activated" => "Process %d hemi bin activated",
"Process %d has been deactivated" => "Process %d hemi bin deactivated",
"Process %s %s imported" => "Process %s %s imported",
"Process %s removed" => "Tekaotem process %s",
"Process %s has been updated" => "Process %s hem i bin updated",
"Process %s has been created" => "Process %s hem i bin mekem finis",
"Fatal error: cannot execute automatic activity \$activityId" => "Barava nogud error: baebae no save executem automatic activity \$activityId",
"%A %d of %B, %Y" => "%A %d of %B, %Y",
"%A %d of %B, %Y[%H:%M:%S %Z]" => "%A %d of %B, %Y[%H:%M:%S %Z]",
"%H:%M:%S %Z" => "%H:%M:%S %Z",
"%a %d of %b, %Y" => "%a %d of %b, %Y",
"%a %d of %b, %Y[%H:%M %Z]" => "%a %d of %b, %Y[%H:%M %Z]",
"%H:%M %Z" => "%H:%M %Z",
"Display Tiki objects that have not been categorized" => "Som olketa object blong Tiki wea hemi no bin categorized",
"Displays a snippet of code" => "Som aot wanfala smol pat blong code",
"note: those parameters are exclusive" => "note: olketa parameters ia olketa mas stap tugeda olsem wanfala grup",
"Creates a definition list" => "Mekem wanfala definition list",
"one definition per line" => "wanfala definition nomoa long wan line",
"cells" => "olketa cell",
"heads and cells separated by ~|~" => "olketa head an olketa cell oketa i stap seleva wetem ~|~ long midol blong olketa",
"one data per line" => "wanfala data nomoa long wan line",
"Split a page into columns" => "Splitim wanfala pej go long olketa column",
"column" => "column",
"Run a sql query" => "Run wanfala sql query",
"sql query" => "sql query",
"Automatically creates a link to the appropriate SourceForge object" => "Baebae mekem stretwe wanfala link go long olketa stretfala SourceForge object",
"Include a page" => "Putum go wanfala pej insaet",
"Insert theme styled aligned box on wiki page" => "Insaetim wanfala theme styled aligned box go long wiki pej",
"Include an article" => "Putum go wanfala article insaet",
"List all pages which link to specific pages" => "Listim kam evri pej wea hemi garem link go long olketa specific pej",
"Search the titles of all pages in this wiki" => "Lukaotem kam olketa title blong evri pej insaet long disfala wiki",
"No page found for title search" => "No eni pej hemi faendem kam wea hemi olsem title search iu givim kam ia",
"One page found for title search" => "Wanfala pej hemi faendem kam fo title search blong iu",
" pages found for title search" => " fala pej hemi faendem kam fo title search blong iu",
"No categories defined" => "No eni category hemi bin talem kam klia",
"Newest first" => "Niuwan fastaem",
"Oldest first" => "Olwan fastaem",
"Reply to parent comment" => "Raet go baek long parent toktok",
"Message Broadcast" => "Mesij Broadcast",
"View tpl" => "Lukluk tpl",
"edit article tpl" => "mekem senis long article tpl",
"edit template" => "mekem senis long template",
"Compose Message" => "Raetem Mesij",
"compose message tpl" => "reatem mesij tpl",
"message tpl" => "mesij tpl",
"Maps" => "Olketa Map",
"Fields to display:" => "Olketa Field fo som:",
"View articles" => "Lukluk long olketa article",
"Featured Help" => "Featured Help",
"SearchStats" => "SearchStats",
"Live Support" => "Live Support",
"HTML pages" => "HTML pej",
"Help System" => "Help System",
"Show Category Path" => "Som Category Path/Rod",
"Show Babelfish Translation URLs" => "Som olketa Babelfish Translation URL",
"Show Category Objects" => "Som olketa Object blong Category",
"Show Babelfish Translation Logo" => "Som Logo blong Babelfish Translation",
"Show Module Controls" => "Som olketa Module Control",
"Tiki Calendar" => "Tiki Kalenda",
"AutoLinks" => "Olketa AutoLink",
"Hotwords in New Windows" => "Olketa Hotwod insaet long olketa Niu Windo",
"Custom Home" => "Kastom Hom",
"Dynamic Content System" => "Dynamic Content System",
"Allow Smileys" => "Letem olketa Smiley",
"Banning System" => "Banning System",
"PHPOpenTracker" => "PHPOpenTracker",
"Contact Us" => "Kontaktem Mifala",
"User Preferences Screen" => "Olketa preference Screen blong User",
"Users can Configure Modules" => "Olketa user save Configurem olketa Module",
"User Watches" => "Watches blong User",
"User Notepad" => "Notepad blong User",
"Use group homepages" => "Iusim olketa grup homepej",
"Disallow access to the site (except for those with permission)" => "No letem pasis go long site (oketa wea garem permission nomoa save letem)",
"Message to display when site is closed" => "Mesij fo som taem site hem klos finis",
"Disallow access when load is above the threshold (except for thos with permission)" => "No letem pasis taem load hemi ovam threshold blong hem (oketa wea garem pamison nomoa save letem)",
"Max average server load threshold in the last minute" => "Max average server load threshold long las minit wea hemi go finis ia",
"Message to display when server is too busy" => "Mesij fo som taem server hemi bisi tumas",
"Store session data in database" => "Stoarem olketa session data insaet long database",
"Session lifetime in minutes" => "Session lifetime olketa som insaet long olketa minit",
"Use proxy" => "Iusim proxy",
"Proxy Host" => "Proxy Host",
"Proxy port" => "Proxy port",
"full path to mapfiles" => "ful path/rod fo go long olketa mapfile",
"default mapfile" => "default mapfile",
"Wiki page for Help" => "Wiki pej fo faendem Help",
"Wiki page for Comments" => "Wiki pej fo raetem olketa toktok",
"Feed for mapfiles" => "Feed fo olketa mapfile",
"Strict allows page names with only letters, numbers, underscore, dash, period and semicolon (dash, period and semicolon not allowed at the beginning and the end)." => "Strict hemi letem nomoa olketa pej nem wea garem nomoa olketa leta, namba, underscore, dash, period an semicolon (dash, period an semicolon hemi no letem long starting an long end).",
"Full adds accented characters." => "Full hemi save adem go olketa accented characters.",
"Complete allows <em>anything at all</em>. I (<a\n href=\"http:tikiwiki.org/tiki-index.php?page=Userpagerlpowell\">rlpowell</a>)\n cannot guarantee that it is bug-free or secure." => "Complete hemi alaom <em>eniting nomoa</em>. Mi (<a\n href=\"http:tikiwiki.org/tiki-index.php?page=Userpagerlpowell\">rlpowell</a>)\n baebae no save givim guarantee dat disfala hemi bug-free o hemi secure.",
"Note that this does not affect WikiWord recognition, only page names surrounded by (( and ))." => "Iu mas tek note dat disfala ia hemi no afektem WikiWord recognition, onli olketa pej nem wea olketa i garem diswan (( an diswan )) raonem.",
"complete" => "finis",
"Cache wiki pages (global)" => "Cache wiki pej (global)",
"Individual cache" => "Individual cache",
"Link plural WikiWords to their singular forms" => "Mekem link from olketa plural WikiWod go long olketa singol forms blong olketa",
"\\n for rows" => "\\n fo olketa row",
"Wiki Watch" => "Wiki Watch",
"Enable watch by default for author" => "Mekem watch olsem default blong author",
"Enable watches on comments" => "Mekem olketa watches long olketa toktok",
"Enable watches when I am the editor" => "Mekem olketa watches taem Mi nao editor",
"admin banning tpl" => "admin banning tpl",
"admin categories" => "olketa category blong admin",
"admin categories tpl" => "olketa category blong admin tpl",
"admin charts tpl" => "olketa admin chart tpl",
"ChatAdmin" => "StoriAdmin",
"ChatAdmin tpl" => "StoriAdmin tpl",
"admin content templates" => "olketa content template blong admin",
"admin content templates tpl" => "olketa content template blong adim tpl",
"admin FortuneCookie" => "FortuneCookie blong admin",
"admin FortuneCookie tpl" => "FortuneCookie blong admin tpl",
"admin Drawings" => "Olketa Drawing blong admin",
"admin Drawings tpl" => "Olketa Drawing blong admin tpl",
"AdminDSN" => "AdminDSN",
"tiki-admin_dsn tpl" => "tiki-admin_dsn tpl",
"admin ExternalWiki" => "admin WikiLongAotsaet",
"tiki admin external wikis tpl" => "olketa wikis blong tiki adim wea stap long aotsaet tpl",
"Create/Edit External Wiki" => "Wakem Wiki o mekem olketa senis long Wiki wea stap long aotsaet",
"External Wiki" => "Wiki wea stap long aotsaet",
"admin forums tpl" => "olketa forum blong olketa admin tpl",
"Display last post titles" => "Som olketa las post title",
"no display" => "no eni ting fo som",
"Forward messages to this forum to this e-mail address, in a format that can be used for sending back to the inbound forum e-mail address" => " Iu save forwardem kam eni mesij long disfala forum long disfala email adres, an iu mas iusim wanfala format wea hemi isi fo save sendem go baek long disfala email adres wea iu putim kam long forum",
"Originating e-mail address for mails from this forum" => "Olketa email adres blong olketa email from disfala forum",
"admin hotwords" => "olketa hotwod blong admin",
"admin hotwords tpl" => "olketa hotwod blong admin tpl",
"admin HTML page dynamic zones" => " olketa HTML pej dynamic zone blong admin",
"admin HtmlPages" => "olketa HtmlPej blong admin",
"admin HtmlPages tpl" => "olketa HtmlPej blong admin tpl",
"admin featured links" => "olketa featured link blong admin",
"admin featured links tpl" => "olketa featured link blong admin tpl",
"WebMail accounts" => "Olketa WebMel account",
"admin Webmail" => "Webmel blong admin",
"admin mailing tpl" => "meling blong admin tpl",
"admin menu builder" => "menu builder blong admin",
"Edit tpl" => "Mekem senis tpl",
"admin menus tpl" => "olketa menu blong admin tpl",
"dynamic collapsed" => "dynamic collapsed",
"admin modules" => "olketa module blong adim",
"admin modules tpl" => "olketa modules blong admin tpl",
"Visibility" => "Visibility",
"Displayed for the eligible users with no personal assigned modules" => "Diswan hemi soaot fo olketa user wea olketa nomoa baebae save iusim bata olketa no garem eni module fo olketa seleva",
"Displayed now for all eligible users even with personal assigned modules" => " Somaot nao fo evri user wea olketa nomoa baebae save iusim an olketa wea garem olketa module fo olketa seleva",
"Displayed now, can't be unassigned" => "Hem show out nao bat hemi mas garem asssignment",
"Not displayed until a user chooses it" => "Diswan baebae hemi no soaot sapos no eniwan hemi siusim",
"admin newsletters tpl" => "olketa newsletter blong admin tpl",
"Users can subscribe/unsubscribe to this list" => "Olketa user save subscribe o save les fo subscribe go long disfala list",
"Users can subscribe any email address" => "Olketa user save subscribe long eni email adres blong hem",
"Add unsubscribe instructions to each newsletter" => "Putim go eni instructions abaot how fo no subscribe long evri newsletter",
"Validate email addresses" => "Sekem olketa email adres",
"EMail notifications" => "Olketa Email notifications",
"admin Email Notifications" => "olketa Email Notification blong admin",
"admin notifications tpl" => "olketa notification blong admin tpl",
"Any wiki page is changed" => "Eni wiki pej hemi bin senis finis",
"admin polls" => "olketa polls blong admin",
"admin polls tpl" => "olketa polls blong admin tpl",
"admin RSS modules" => "olketa RSS module blong admin",
"admin RSSmodules tpl" => "olketa RSSmodules blong admin tpl",
"show publish date" => "som publish date",
"show feed title" => "som title blong feed",
"show pubdate" => "som disfala pubdate",
"admin structures tpl" => "olketa structures blong admin tpl",
"admin surveys tpl" => "olketa surveys blong admin tpl",
"admin topics tpl" => "olketa topiks blong admin tpl",
"admin Trackers tpl" => "olketa Trackers blong admin tpl",
"admin groups" => "olketa grups blong admin",
"admin groups tpl" => "olketa grups blong admin tpl",
"Add new group" => "Adem go niu grup",
"admin users" => "olketa admin user",
"admin users tpl" => "olketa admin users tpl",
"Never" => "Never",
"Edit Article" => "Mekem senis long Article",
"Default Group" => "Default Grup",
"admin backups" => "olketa backups blong admin",
"admin admin tpl" => "admin blong admin tpl",
"Trash" => "Rabis",
"Made with" => "Mekem wetem",
"powered by" => "pawarem wetem",
"Execution time" => "Taem wea hemi tekem fo doem waka ia",
"database queries used" => "olketa database queries wea hemi bin iusim",
"Server load" => "load blong Server",
"-1m" => "-1m",
"-7d" => "-7d",
"-1d" => "-1d",
"admin directory tpl" => "directory blong admin tpl",
"admin directory categories tpl" => "olketa directory categories blong admin tpl",
"admin Directory Related " => "Hemi relaet go long Admin Directory ",
"directory admin related tpl" => "samting wea hemi relaet go long directory admin tpl",
"Admin Directory Sites" => "Olketa Sites/ples blong Admin Directory",
"Admin Directory Sites tpl" => "Olketa Sites/ples blong Admin Directory tpl",
"Validate Sites" => "Sekem olketa Sites/ples",
"directory validate sites tpl" => "olketa valid directory sites/ples tpl",
"Article image" => "Olketa Article image",
"Publish/Event Date" => "Publish/Event Date",
"Remove Zones (you lose entered info for the banner)" => "Tekaotem olketa Zones (baebae iu lusim olketa info blong disfala banner)",
"edit blog tpl" => "mekem senis long blog tpl",
"For more information, please see <a\nhref=\"http:www.tikiwiki.org/tiki-index.php?page=WikiSyntax\">WikiSyntax</a>\non <a href=\"http:www.tikiwiki.org\">TikiWiki.org</a>." => "Fo findaot staka moa information, plis kam lukim <a\nhref=\"http:www.tikiwiki.org/tiki-index.php?page=WikiSyntax\">WikiSyntax</a>\non <a href=\"http:www.tikiwiki.org\">TikiWiki.org</a>.",
"dynamic variable" => "dynamic variable",
"admin quizzes tpl" => "olketa quizzes blong admin tpl",
"Edit Submissions" => "Mekem senis long olketa Submissions",
"edit submissions tpl" => "Mekem senis long olketa submissions tpl",
"EditTemplates" => "MekemSenisLongTemplates",
"EditTemplates tpl" => "MekemSenisLongTemplates tpl",
"admin Ephemerides tpl" => "admin Ephemerides tpl",
"file galleries tpl" => "olketa gallery blong olketa files tpl",
"The page {\$mail_page} was changed by {\$mail_user} at\n{\$mail_date|bit_short_datetime}" => "Disfala pej {\$mail_page} hemi bin senis finis an nem blong man wea senisim hemi {\$mail_user} long\n{\$mail_date|bit_short_datetime}",
"You can view the page by following this link:\n {\$mail_machine}/tiki-index.php?page={\$mail_page}" => "Iu save lukim disfala pej sapos iu falom disfala link:\n {\$mail_machine}/tiki-index.php?page={\$mail_page}",
"You can edit the page by following this link:\n {\$mail_machine}/tiki-editpage.php?page={\$mail_page}" => "Iu save mekem senis long disfala pej sapos iu falom disfala link:\n {\$mail_machine}/tiki-editpage.php?page={\$mail_page}",
"You can view a diff back to the previous version by following\nthis link:\n {\$mail_machine}/tiki-pagehistory.php?page={\$mail_page}&diff2={\$mail_last_version}" => "Iu save lukem wanfala diff an go-go baek long narafala version befo diswan sapos iu falom\ndisfala link:\n {\$mail_machine}/tiki-pagehistory.php?page={\$mail_page}&diff2={\$mail_last_version}",
"The new page content follows below." => "Disfala niu pej hem garem olketa samting long daon ia.",
"The map {\$mail_page} was changed by {\$mail_user} at {\$mail_date|bit_short_datetime}" => "Disfala map {\$mail_page} hemi bin senis finis an nem blong man senisim hemi {\$mail_user} long {\$mail_date|bit_short_datetime}",
"You can view the updated map following this link:" => "Iu save lukim olketa map wea garem olketa niu seninis long hem sapos iu falom disfala link:",
"You can edit the map following this link:" => "Iu save mekem senis long disfala map sapos iu falom disfala link:",
"Galaxia Admin Processes" => "Olketa Processes blong Galaxia Admin",
"Galaxia Admin Processes tpl" => "Olketa Processes blong Galaxia Admin tpl",
"Galaxia Monitor Activities" => " Olketa Galaxia Monitor Activities",
"Galaxia Monitor Activities tpl" => " Olketa Galaxia Monitor Activities tpl",
"Galaxia Monitor Instances" => "Olketa Instances blong Galaxia Monitor",
"Galaxia Monitor Instances tpl" => " Olketa Instances blong Galaxia Monitor tpl",
"Galaxia Monitor Processes" => " Olketa Galaxia Monitor Processes",
"Galaxia Monitor Processes tpl" => " Olketa Galaxia Monitor Processes tpl",
"Galaxia User Activities" => "Olketa Activities blong olketa Galaxia user",
"Galaxia User Activities tpl" => "Olketa Activities blong olketa Galaxia user tpl",
"Galaxia User Instances" => "Olketa Instances blong olketa Galaxia user",
"Galaxia User Instances tpl" => "Olketa Instances blong olketa Galaxia user tpl",
"Galaxia User Processes" => "Olketa Processes blong olketa Galaxia users",
"Galaxia User Processes tpl" => "Olketa Processes blong Galaxia user tpl",
"galleries tpl" => "olketa gallery tpl",
"ImportingPagesPhpWikiPageAdmin" => "ImportingPejPhpWikiPejAdmin",
"tiki-import_phpwiki tpl" => "tiki-import_phpwiki tpl",
"List Articles" => "List long olketa Articles",
"list articles tpl" => "list long olketa articles tpl",
"admin Banners" => "olketa Banners blong admin",
"admin Banners tpl" => "olketa Banners blong admin tpl",
"admin cache" => "cache blong admin",
"admin cache tpl" => "cache blong admin tpl",
"admin DynamicContent" => "DynamicContent blong admin",
"admin DynamicContent tpl" => "DynamicContent blong admin tpl",
"list faqs tpl" => "list long olketa faqs tpl",
"Create new FAQ" => "Mekem niu FAQ",
"list posts tpl" => "list long olketa posts tpl",
"admin live support tpl" => "live support fo olketa admin tpl",
"unknown" => "nosave",
"Live support:User window" => "Live support:windo blong olketa user",
"MyTikiDoc" => "TikiDocBlongMi",
"my bitweaver.tpl" => "tiki blong Mi tpl",
"List pages where I am a creator" => "Listem kam olketa pej wea me nao me wanfala man wea wakem pej ia",
"by creator" => "by creator",
"List pages where I am a modificator" => "Listem kam olketa pej wea me nao wanfala modificator blong hem",
"by modificator" => "by modificator",
"Configure Newsreader" => "Configure Newsreader",
"configure newsreader server tpl" => "configure newsreader server tpl",
"remove from this page" => " tekaotem from disfala pej",
"remove from this structure" => "tekaotem from disfala structure",
"Assign permissions" => "Givim pamisons",
"this page" => "disfala pej",
"this structure" => "disfala structure",
"Avatar Image" => "Avatar Image",
"View Results" => "Lukim olketa Results",
"Topic image" => "image blong topik",
"received articles tpl" => "olketa articles wea i bin received tpl",
"Received pages" => "Olketa pej wea i bin Received",
"received pages tpl" => "olketa pej wea i bin received tpl",
"admin Referer stats" => "stats blong adim Referer",
"admin Referer stats tpl" => "stats blong admin Referer tpl",
"Your email could not be validated; make sure you email is correct and click register below." => "Hemi had lelebet fo validatem email blong iu; so iu mas mek sua email ia hemi correct den iu klik long wod register wea hemi stap long doan.",
"Random Image" => "Random Image",
"Search Stats" => "Stats blong lukaotem",
"search stats tpl" => "stats blong lukaotem tpl",
"Simple search" => "Simpol lukaotem",
"Send Objects" => "Sendem olketa Objects",
"admin send objects tpl" => "olketa objects wea admin hemi sendem tpl",
"admin Tiki Shoutbox" => "Tiki Singaotbox blong admin",
"admin Tiki Shoutbox tpl" => "Tiki Singaotbox blong admin tpl",
"The cord" => "Disfala cord",
"Usage chart image" => "Chart image abaotem Usage",
"Average posts per weblog" => "Olketa average posts blong olketa weblog",
"ThemeControl" => "ThemeControl",
"ThemeControl tpl" => "ThemeControl tpl",
"ThemeControl Objects" => "Olketa ThemeControl Objects",
"theme control objects tpl" => "olketa theme control objects tpl",
"theme control sections tpl" => " olketa theme control sections tpl",
"Tiki community" => "Community blong Tiki",
"Image Gallery tpl" => "Gallery blong image tpl",
"Image ID" => "Namba blong image",
"Image ID thumb" => "thumb blong image Namba",
"User Assigned Modules" => "Olketa Modules wea blong olketa user",
"User Assigned Modules tpl" => "Olketa Modules wea blong olketa user tpl",
"User Bookmarks tpl" => "Bookmarks blong olketa user tpl",
"Folder in" => "Folder insaet long",
"Personal Wiki page" => "Wiki pej blong Meseleva",
"User Tasks tpl" => "Tasks blong olketa user tpl",
"no comments" => "no eni toktok",
"click on the map to zoom or pan, do not drag" => "click long map ia sapos iu laek fo hem zoom o move olobaot (pan), no pulum/drag",
"Scale" => "Skel",
"select zoom/pan/query and image size" => "siusim zoom/pan/query an image size",
"Redraw" => "Drom baek",
"Click on the map or click redraw" => "Click long map o click long Drom baek",
"Help" => "Help",
"Overview" => "Overview",
"Legend" => "Legend",
"Layer Manager" => "Layer Manager",
"On" => "On",
"Label" => "Label",
"Download" => "Download",
"Download Layer" => "Layer blong Download",
"you have requested to download the layer:" => "iu bin askem fo downloadem disfala layer:",
"from\nthe mapfile:" => "from\ndisfala mapfile:",
"Here are the files to download, do not forget to rename them:" => "Hemia nao olketa files fo downloadem, trae fo no foget fo givim niu men long olketa:",
"Mapfiles" => " Olketa Mapfiles",
"Available mapfiles" => "Olketa mapfiles wea hemi stap",
"Mapfile" => "Mapfile",
"stop monitoring this map" => "stop fo moniterim disfala map",
"monitor this map" => "moniterim disfala map",
"Create a new mapfile" => "Wakem wanfala niu mapfile",
"Mapfile listing" => "List blong olketa Mapfile",
"You can view this map in your browser using" => "Iu save lukluk long disfala map taem iu iusim browser",
"Directories" => " Olketa Directories",
"Upload From Disk:" => "Uploadem From Disk:",
"Upload Files" => "Uploadem Files",
"Bytes maximum" => "maximum long olketa Bytes",
"Create Directory:" => "Wakem Directory:",
"Create" => "Wakem",
"view faq" => "lukluk faq",
"view faq tpl" => "lukluk faq tpl",
"topics in this forum" => "olketa topiks long disfala forum",
"new reply" => "niu reply",
"IRC log" => "IRC log",
"Select" => "Selectem",
"Show All" => "Som Evriwan",
"Webmail Doc" => "Webmel Doc",
"Webmail Doc tpl" => "Webmel Doc tpl",
"flagged" => "flagged",
"replied" => "raet go baek finis",
"clip" => "clip",
"Debugger console" => "Debugger console",
"MyMenu" => "MenuBlongMi",
"WfMenu" => "WfMenu",
"WikiMenu" => "WikiMenu",
"Send pages" => "Sendem go pej",
"GalMenu" => "GalMenu",
"Create/Edit blog" => "Wakem o mekem senis long blog",
"ForMenu" => "ForMenu",
"DirMenu" => "DirMenu",
"Browse directory" => "Browse directory",
"FileGalMenu" => "FileGalMenu",
"Edit mapfiles" => "Mekem senis long olketa mapfiles",
"QuizMenu" => "QuizMenu",
"List quizzes" => "List long olketa quizzes",
"TrkMenu" => "TrkMenu",
"SrvMenu" => "SrvMenu",
"EphMenu" => "EphMenu",
"ChartMenu" => "ChartMenu",
"AdmMenu" => "AdmMenu",
"UsrMenu" => "UsrMenu",
"Older Messages" => "Olketa Olfala Mesij",
"Move module up" => "Movum module go ap",
"Move module down" => "Movum module go daon",
"Move module to opposite side" => "Movum module go long nara saet",
"Unassign module" => "Unassign module",
"Style" => "Style",
"Last articles" => "Olketa las articles",
"cached" => "cached",
"No attachments for this page" => "No eni attachments fo disfala pej",
"Layer management" => "Layer management",
"Wiki quick help" => "Quick help blong Wiki",
"attachments" => " olketa attachments",
"Favorites" => " Olketa Favorites",
"back to homepage" => "go baek long homepej",
"Please" => "Plis",
"log in" => "log insaet",
"to access full functionalities" => "fo go long evri functionalities",
"left/right" => "left/right",
"Skip to Content" => "Jam go long Content",
"Edit a topic" => "Mekem senis long wanfala topik",
"UserPreferences tpl" => "UserPreferences tpl",
"change email" => "senisim email",
"change password" => "senisim paswod",
"List Movies" => "Listim kam olketa Movie",
"Choose a movie" => "Siusim wanfala movie",
"Display " =>"Somaot ",
"Edit this Repository:" => "Mekem senis long disfala Repository:",
"Create New Repository:" => "Wakem Niu Repository:",
"list repositories" => "listim kam olketa repository",
"Start page" => "Statem pej",
"CSS file" => "CSS file",
"Available Repositories" => "Olketa Repository wea hemi stap",
"CSS File" => "CSS File",
"Edit rules" => "ruls long hao fo mekem olketa senis",
"Edit Rules for Repository:" => "Mekem Senis Ruls blong Repository:",
"configure repositories" => "configurim repositories",
"view repository" => "lukluk repository",
"view/hide copy rules dialog" => "lukluk/haedem olketa copy rules dialog",
"copy rules" => "olketa copy rules",
"Preview options" => "Lukluk fastaem long olketa options",
"Source repository" => "Repository blong Source",
"Copy" => "Copy",
"Replace" => "Replace",
"Use preg_replace or str_replace to filter text" => "Iusim preg_replace o str_replace fo filterem text",
"Case sensitive" => "Case sensitive",
"Use case sensitive str_replace" => "Iusim case sensitive str_replace",
"<span title=\"set of: imsxeADSXUu\">Regex modifiers" => "<span title=\"set long: imsxeADSXUu\">Regex modifiers",
"Aux modifiers for preg_replace" => "Aux modifiers fo preg_replace",
"Code preview" => "Lukluk fastaem long Code",
"HTLM preview" => "Lukluk fastaem long HTLM",
"Test file from repository (empty = configured start page)" => "Test file from repository (emti = configurem stating pej)",
"Preview Results" => "Lukluk fastaem long Results",
"Rules List" => "List long Rules",
"Regex" => "Regex",
"Case" => "Case",
"Create a group for each user <br />(with the same\nname as the user)" => "Wakem wanfala grup fo evri user <br />(an iusim semsem\nnem blong olketa user)",
"No repository given" => "No eni repository hemi bin givim",
"File not found" => "Nosave faendem file",
"No topic id specified" => "No eni topik namba iu bin talem kam",
"Invalid topic id specified" => "Topik namba iu talem kam hemi no stret",
"You are not permitted to edit someone else\\'s post!" => "Tambu fo iu mekem senis long post blong narafala man!",
"Only an admin can remove a thread." => "Onli wanfala admin nomoa save tekaotem wanfala thread.",
"Name, path and start page are mandatory fields" => "Olketa nem, path/rod an start pej iu mas no livim aot from olketa fields",
"Requested action is not supported on repository" => "Olketa requested action olkea i no garem sapot long repository",
"No repository" => "No eni repository",
"Search is mandatory field" => "Field ia hemi mas garem Lukaout insaet long hem",
"Missing title or body when trying to post a comment" => "Title o body hemi no stap taem hemi trae fo raetem go wanfala toktok",
"The copyright management feature is not enabled." => "Disfala copyright management feature/samting hemi no waka/enabled.",
"You do not have permission to use this feature." => "Tambu fo iusim disfala feature/samting.",
"You must supply all the information, including title and year." => "Iu mas givim evri information, wetem title an year tu.",
"ERROR: Either the subject or body must be non-empty" => "ERROR: Meke sua dat subject o body mas garem samting insaet, no livim hem emti",
"ERROR: No valid users to send the message" => "ERROR: No eni stret user fo sendem disfala mesij",
"You are not logged in" => "Iu nating log go-go insaet",
"This feature is disabled" => "Disfala feature/samting hemi no waka",
"Permission denied" => "Tambu",
"Invalid user" => "Iu no wanfala long olketa stret user",
"Message will be sent to: " => "Mesij ia baebae sendem go long: ",
"Re:" => "Re:",
"No more messages" => "No enimoa mesij",
"You do not have permission to use this feature" => "Tambu fo iu iusim disfala feature/samting",
"Objects in category" => "Olketa objects insaet long category",
"edit" => "mekem senis",
"remove" => "tekemaot",
"TOP" => "ONTOP",
"No chart indicated" => "No eni chart hemi bin talem aot kam",
"Upload failed" => "Upload hemi fail",
"Feature disabled" => "Feature/samting ia hemi no waka",
"No page indicated" => "No eni pej hemi bin talem aot kam",
"Password should be at least" => "paswod sud smol kasem nomoa ",
"characters long" => "characters lon",
"of" => "long",
"Tag already exists" => "Tag hemi stap finis",
"Tag not found" => "No save faendem Tag",
"Non-existent link" => "Link hemi no stap",
"No menu indicated" => "No eni menu hemi bin talem aot kam",
"No newsletter indicated" => "No eni newsletter hemi bin talem aot kam",
"No poll indicated" => "No eni poll hemi bin talem aot kam",
"No survey indicated" => "No eni survey hemi bin talem aot kam",
"No tracker indicated" => "No eni tracker hemi bin talem aot kam",
"Group already exists" => "Grup stap finis",
"The file is not a CSV file or has not a correct syntax" => "Disfala file hemi no wanfala CSV file o mitabe hemi no stret long syntax blong hem",
"No records were found. Check the file please!" => "No save findim eni records. Plis checkem kam disfala file!",
"User login is required" => "Baebae hemi nidim olketa user fo mas login/go-go insaet",
"Password is required" => "Baebae hemi nidim paswod",
"Email is required" => "Baebae hemi nidim email",
"User is duplicated" => "Narafala user hemi semsem olsem disfala man",
"The passwords dont match" => "Olketa paswod ia olketa no semsem",
"User already exists" => "Disfala user hemi stap finis",
"Permission denied you cannot view this section" => "Tambu fo lukluk long disfala section",
"Unknown group" => "Nosave what kaen grup nao diswan",
"Group doesnt exist" => "Grup hemi no stap",
"Unknown user" => "Nosave long disfala man",
"User doesnt exist" => "No garem eni man olsem",
"Permission denied you cannot view backlinks for this page" => "Tambu fo lukluk long olketa backlinks fo disfala pej",
"The page cannot be found" => "No save faendem disfala pej",
"Permission denied you cannot post" => "Tambu fo iu mekem eni post",
"Permission denied you cannot edit this post" => "Tambu fo iu mekem senis long disfala post",
"You can't post in any blog maybe you have to create a blog first" => "Baebae hemi hat fo iu duim eni post long insaet eni blog, iu mas wakem wanfala blog fastaem bifoa iu save iusim",
"Top visited blogs" => "Olketa top blogs wea i bin visited finis",
"Last posts" => "Olketa lasfala Post",
"Top active blogs" => "Olketa top active blogs",
"Permission denied you can not view this section" => "Tambu fo iu lukluk long disfala section",
"Permission denied you cannot access this gallery" => "Tambu fo iu go insaet long disfala gallery",
"No gallery indicated" => "No eni gallery hemi bin talem aot kam",
"Permission denied you cannot remove images from this gallery" => "Tambu fo iu tekaotem eni image from disfala gallery",
"Permission denied you cannot rebuild thumbnails in this gallery" => "Tambu fo mekem baek eni thumbnails insaet long disfala gallery",
"Permission denied you cannot rotate images in this gallery" => "Tambu fo tantanem raon olketa image insaet long disfala gallery",
"No image indicated" => "No eni image hemi bin talem aot kam",
"Permission denied you cannot move images from this gallery" => "Tambu fo iu muvumaot olketa image from disfala gallery",
"Permission denied you cannot view the calendar" => "Tambu fo iu lukluk long disfala calendar",
"Wiki" => "Wiki",
"Image Gallery" => "Gallery long image",
"Articles" => "Olketa Articles",
"Blogs" => " Olketa Blogs",
"Forums" => "Olketa Forums",
"Directory" => "Directory",
"File Gallery" => "Gallery long File",
"FAQs" => "FAQs",
"Quizzes" => "Quizzes",
"Trackers" => "Trackers",
"Survey" => "Survey",
"Newsletter" => "Niusleta",
"Ephemerides" => "Ephemerides",
"Charts" => "Charts",
"event without name" => "event wea no garem eni nem",
"Sunday" => "Sande",
"Monday" => "Mande",
"Tuesday" => "Tiusde",
"Wednesday" => "Wenesde",
"Thursday" => "Tosde",
"Friday" => "Fraede",
"Saturday" => "Satade",
"The passwords didn't match" => "Olketa paswod ia olketa no semsem",
"You can not use the same password again" => "Hemi had fo iu iusim sem paswod ia aegen",
"Invalid old password" => "Ol paswod ia hem no stret",
"Password must contain both letters and numbers" => "paswod mas garem olketa letters an numbers insaet long hem",
"Permission denied to use this feature" => "Tambu fo iusim disfala samting/feature",
"No channel indicated" => "No eni channel hemi bin talem aot kam",
"No nickname indicated" => "No eni nicknem hemi bin talem aot kam",
"Top articles" => "Olketa top articles",
"Top authors" => "Olketa top authors",
"Permission denied you cannot view this page" => "Tambu fo lukluk long disfala pej",
"Message sent to" => "Mesij hemi sendem go long",
"This feature has been disabled" => "Disfala feature/samting hemi disabled/no waka",
"Must enter a name to add a site" => "Mas givim kam wanfala nem fo save adem go wanfala site",
"Must enter a url to add a site" => "Mas givim kam wanfala url fo adem go wanfala site",
"URL already added to the directory. Duplicate site?" => "Disfala directory hem garem finis disfala URL. Hao, iu laek fo mekem nara site wea hemi barava semsem olsem diswan?",
"URL cannot be accessed wrong URL or site is offline and cannot be added to the directory" => "no save accessem URL bikos URL ya hemi no stret o ating disfala site ya hemi offline an baebae no save adem go long directory",
"Must select a category" => "Mas siusim wanfala category",
"Must enter a name to add a site" => "Mas givim wanfala nem fo adem go disfala site",
"No site indicated" => "No eni site hemi bin talem aot kam",
"You can not download files" => "Baebae iu no save downloadem olketa files",
"Permission denied you cannot edit this article" => "Tambu fo iu mekem senis long disfala article",
"You do not have permissions to edit banners" => "Tambu fo iu mekem senis long olketa banners",
"Banner not found" => "No save faendem Banner",
"You do not have permission to edit this banner" => "Tambu fo iu mekem senis long disfala banner",
"Permission denied you cannot create or edit blogs" => "Tambu fo wakem o mekem senis long olketa blogs",
"Permission denied you cannot edit this blog" => "Tambu fo mekem senis long disfala blog",
"You do not have permission to write the style sheet" => "Tambu fo iu raetem disfala style sheet",
"Invalid request to edit an image" => "Request ya hemi no stret fitim fo mekem senis long eni image",
"Permission denied you cannot edit images" => "Tambu fo iu mekem senis long olketa image",
"Permission denied you can edit images but not in this gallery" => "Tambu fo mekem senis long olketa image disfala gallery bata iu save mekem senis long olketa narafala image",
"Failed to edit the image" => "Fail fo mekem senis long disfala image",
"Shortname must be 2 Characters" => "Sotnem mas garem olsem 2 Characters nomoa",
"You must provide a longname" => "Iu mas givim kam wanfala longnem",
"Language created" => "Wakem language finis",
"No content id indicated" => "No eni content id hemi bin talem aot kam",
"No question indicated" => "No eni questen hemi bin talem aot kam",
"No quiz indicated" => "No eni quiz hemi bin talem aot kam",
"No structure indicated" => "No eni structure hemi bin talem aot kam",
"Permission denied you cannot send submissions" => "Tambu fo iu sendem olketa submissions",
"Permission denied you cannot edit submissions" => "Tambu fo mekem senis long olketa submissions",
"You have to create a topic first" => "Iu mas wakem wanfala topik fastaem",
"You do not have permission to do that" => "Tambu fo iu duim datwan",
"You do not have permission to write the template" => "Tambu fo iu raetem disfala template",
"You do not have permission to read the template" => "Tambu fo iu ridim disfala template",
"page imported" => "pej wea hemi bin importem",
"created from import" => "wakem finis from import",
"You cannot edit this page because it is a user personal page" => "Iu baebae no save mekem senis long disfala pej bikos hem blong user wea hemi nao ona blong pej",
"The SandBox is disabled" => "Disfala SandBox hemi no waka",
"Permission denied you cannot edit this page" => "Tambu fo mekem senis long disfala pej",
"Cannot edit page because it is locked" => "Had fo mekem senis long disfala pej bikos hemi lokem",
"Permission denied you cannot create galleries and so you cant edit them" => "Tambu fo mekem olketa gallery an so iu baebae had fo mekem senis long olketa ",
"Permission denied you cannot edit this gallery" => "Tambu fo mekem senis long disfala gallery",
"Permission denied you cannot remove this gallery" => "Tambu fo tekaotem disfala gallery",
"Top visited file galleries" => "Olketa top file gallery wea olketa i bin visitim hem",
"Most downloaded files" => "Olketa file wea olketa save download olowe nomoa",
"Last files" => "Olketa las file",
"No forum indicated" => "No eni forum hemi bin talem aot kam",
"Last forum topics" => "Olketa topik blong forum long las taem",
"Most read topics" => "Olketa topik wea olketa i bin ridim olowe nomoa",
"Top topics" => "Olketa top topik",
"Forum posts" => "Olketa post blong forum",
"Most visited forums" => "Olketa forum wea olketa visit kam long hem staka taem finis",
"No process indicated" => "No eni process hemi bin talem aot kam",
"Activity name already exists" => "Activity nem hemi bin stap finis",
"No instance indicated" => "No eni instance hemi bin talem aot kam",
"indicates if the process is active. Invalid processes cant be active" => "hemi som sapos disfala process hemi active. Olketa process wea i no stret baebae no save active",
"The process name already exists" => "Disfala process nem hemi bin stap finis",
"Process already exists" => "Process hemi bin stap finis",
"No activity indicated" => "No eni activity hemi bin talem aot kam",
"You cant execute this activity" => "Iu baebae had fo mekem waka disfala activity",
"No item indicated" => "No eni item hemi bin talem aot kam",
"Top galleries" => "Olketa top gallery",
"Top images" => "Olketa top image",
"Last images" => "Olketa las image",
"page not added (Exists)" => "pej hemi no adem go (Hemi garem stap finis)",
"overwriting old page" => "raet ovam olketa olfala pej",
"updated by the phpwiki import process" => "phpwiki import process hemi nao updatem",
"page created" => "wakem finis pej",
"created from phpwiki import" => "wakem finis wetem phpwiki import",
"Cannot write to this file:" => "Baebae no save raet go long disfala file:",
"Wiki page" => "Wiki pej",
"Page cannot be found" => "No save faendem pej",
"Permission denied you cannot view pages like this page" => " Tambu fo iu lukluk long olketa pej olsem disfala pej",
"Permission denied you cannot remove articles" => "Tambu fo iu tekaotem olketa article",
"Permission denied you cannot remove banners" => "Tambu fo iu tekaotem olketa banner",
"Permission denied you cannot remove this blog" => "Tambu fo iu tekaotem disfala blog",
"Non-existent gallery" => "gallery hemi no stap",
"Permission denied you cannot remove files from this gallery" => "Tambu fo iu tekaotem olketa file from disfala gallery",
"Permission denied you can't upload files so you can't edit them" => "Tambu fo iu uploadem olketa file an baebae hemi had tu fo iu mekem senis long olketa",
"Permission denied you cannot edit this file" => "Tambu fo iu mekem senis long disfala file",
"The thumbnail name must be" => "Nem blong disfala thumbnail hem mas",
"or" => "o",
"You cannot admin blogs" => "Iu no save lukaotem blogs",
"Permission denied you cannot remove submissions" => "Tambu fo iu tekaotem olketa submission",
"Permission denied you cannot approve submissions" => "Tambu fo iu mekem eni apruvol long olketa submission",
"Permission denied you cannot view pages" => "Tambu fo iu lukluk long olketa pej",
"Permission denied you cannot remove pages" => "Tambu fo iu tekaotem olketa pej",
"Invalid username or password" => "Usernem o disfala paswod hemi no stretwan",
"Tiki mail-in instructions" => "Olketa instruction fo mail-in blong Tiki",
"Map" => "Map",
"changed" => "senisim",
"Must be logged to use this feature" => "Mas logged go insaet fastaem fo iusim disfala samting/feature",
"About" => "Abaot",
"You must log in to use this feature" => "Iu mas log go insaet fo iusim disfala samting/feature",
"You do not have permission to view other users data" => "Tambu fo iu lukluk long data blong olketa narafala user",
"You must be logged in to subscribe to newsletters" => "Iu mas logged go insaet fastaem bifoa iu save subscribe go-go long olketa niusleta",
"No server indicated" => "No eni server hemi bin talem aot kam",
"Cannot connect to" => "Nosave connect go long",
"Missing information to read news (server,port,username,password,group) required" => "Information fo ridim nius (server,port,usernem,paswod,grup)mas givim kam ",
"Cannot get messages" => "Nosave tekem olketa mesij",
"No note indicated" => "No eni note hemi bin talem aot kam",
"merged note:" => "note wea hemi bin joen tugeda:",
"File is too big" => "File hemi big tumas",
"created from notepad" => "mekem wetem notepad",
"No name indicated for wiki page" => "No eni nem hemi bin talem aot kam fo wiki pej",
"page already exists" => "pej hemi bin stap finis",
"Permission denied you cannot assign permissions for this page" => "Tambu fo iu letem go disfala pej long olketa narafala man",
"Not enough information to display this page" => "Hemi no garem enaf information fo som disfala pej",
"Fatal error" => "Barava nogud error",
"Permission denied you cannot browse this page history" => "Tambu fo iu browse long disfala history long disfala pej",
"No article indicated" => "No eni article hemi bin talem aot kam",
"Article not found" => "Nosave faendem article",
"Article is not published yet" => "Article hemi no bin publish iet",
"No post indicated" => "No eni post hemi bin talem aot kam",
"Blog not found" => "Nosave faendem Blog",
"No pages indicated" => "No eni pej hemi bin talem aot kam",
"day" => "dei",
"No result indicated" => "No eni result hemi bin talem aot kam",
"Permision denied" => "Tambu",
"New user registration" => "Registration blong olketa niu user",
"You will receive an email with information to login for the first time into this site" => "Baebae iu tekem wanfala email wea hemi garem informatin abaot hao fo login go long disfala ples/site long festaem blong iu",
"Your Tiki information registration" => "Tiki information registration blong iu",
"Wrong registration code" => "Registration code hemi rong",
"Invalid username" => "Usernem hemi no stret",
"Username is too long" => "Usernem hemi long tumas",
"Username cannot contain whitespace" => "Usernem mas no garem eni waet spes insaet long hem",
"Wrong passcode you need to know the passcode to register in this site" => "Rong pascode iu mas save long pascode fo iu save register insaet long disfala site",
"Invalid email address. You must enter a valid email address" => "Email adres hemi no stret wan. Iu mas givim kam wanfala stret email adres",
"Thank you for your registration. You may log in now." => "Taggio long registration blong iu. Iu save log go insaet distaem",
"Your Tiki account information for" => "Tiki account information blong iu fo",
"A password reminder email has been sent " => "Wanfala email wea hemi garem paswod insaet long hem fo iu rimembarem hemi bin sendem ",
"A new password has been sent " => "Wanfala niu paswod hemi bin sendem ",
"to the registered email address for" => "go long disfala registered email adres fo",
"Invalid or unknown username" => "Usernem hemi no stret o no save long disfala usernem",
"Permission denied you cannot remove versions from this page" => "Tambu fo iu tekaotem olketa version from disfala pej",
"Cannot rename page maybe new page already exists" => "Baebae nosave givim narafala niu nem long pej, ating niu pej hemi bin garem stap finis",
"No version indicated" => "No eni version hemi bin talem aot kam",
"Non-existent version" => "Version hemi no garem stap",
"Permission denied you cannot rollback this page" => "Iu no garem permission fo mekem rollbaek long disfala pej",
"Post recommendation at" => "Postem go recommendation long",
"page" => "pej",
" successfully sent" => " hemi barava sendem go gud",
"article" => "article",
" not sent" => " nating sendem",
"You do not have permission to edit messages" => "Tambu fo iu mekem senis long olketa mesij",
"page must be defined inside a structure to use this feature" => "Iu mas define pej insaet long wanfala structure fo save iusim disfala samting/feature",
"You cannot take this quiz twice" => "Baebae iu nosave duim disfala quiz tu taem",
"Quiz time limit exceeded quiz cannot be computed" => "Hemi ovam finis quiz taem so baebae no save talem kam quiz",
"You cannot take this survey twice" => "Iu baebae nosave duim disfala survey tu taem",
"Please create a category first" => "Plis mekem fastaem wanfala category",
"Invalid filename (using filters for filenames)" => "Filenem hemi no stret (iu sud no iusim olketa filter fo olketa filenem)",
"No permission to upload zipped file packages" => "Tambu fo upload olketa file pasel wea olketa i bin zipim",
"Cannot read file" => "No save ridim disfala file",
"Upload was not successful" => "Upload hemi barava no go gud",
"Upload was not successful (maybe a duplicate file)" => "Upload hemi barava no go gud (ating hemi wanfla semsem kaen file)",
"Permission denied you cannot upload files" => "Tambu fo iu upload olketa file",
"Permission denied you can upload files but not to this file gallery" => "Iu save upload olketa file bat long disfala file gallery hemi tambu",
"Invalid imagename (using filters for filenames)" => "Imagenem hemi no stret (iu sud no iusim olketa filter fo olketa filenem)",
"Error processing zipped image package" => "Error hemi hapen taem hemi trae fo wakem olketa pasel image wea i bin zipim",
"No permission to upload zipped image packages" => "Tambu fo uploadem olketa pasel image wea i bin zipim",
"Permission denied you cannot upload images" => "Tambu fo uploadem olketa image",
"Permission denied you can upload images but not to this gallery" => "Tambu fo uploadem olketa image go long disfala gallery",
"Cannot get image from URL" => "No save tekem image from URL",
"cannot process upload" => "baebae no save wakem upload",
"You have to provide a name to the image" => "Iu mas givim wanfala nem go long disfala image",
"No url indicated" => "No eni url hemi bin talem aot kam",
"Cannot upload this file not enough quota" => "Baebae no save uploadem disfala file bikos no garem enav spes/quota",
"No user indicated" => "No eni user hemi bin talem aot kam",
"Non-existent user" => "Hemi no garem eni user olsem",
"No banner indicated" => "No eni banner hemi bin talem aot kam",
"blog" => "blog",
"No blog indicated" => "No eni blog hemi bin talem aot kam",
"Permission denied you cannot remove the post" => "Iu no garem permission fo aotem disfala post",
"No cache information available" => "No eni cache information hemi stap",
"No faq indicated" => "No eni faq hemi bin talem aot kam",
" new topic:" => " niu topik:",
"Tiki email notification" => "Notification fo Tiki email",
"Cannot upload this file maximum upload size exceeded" => "Baebae no save uploadm disfala file bikos hemi ovam siz finis",
"forum" => "forum",
"Wrong password. Cannot post comment" => "Rong paswod. Baebae nosave postem go eni toktok",
"Please wait 2 minutes between posts" => "Plis waet fastaem fo tu (2) minit olsem bifoa go-go moa long nara post",
"You are not logged in and no user indicated" => "Iu nating logged go insaet nomoa an no eni user hemi bin som/talem aot kam",
"The user has chosen to make his information private" => "User hemi siusim fo mekem oketa information blong hem tambu",
"(AT)" => "(AT)",
"(DOT)" => "(DOT)",
"Your email address has been removed from the list of addresses monitoring this item" => "Email adres blong iu hemi bin tekaotem finis from disfala list long olketa adres wea i bin lukaotem disfala samting/item ",
"Your email address has been added to the list of addresses monitoring this tracker" => "Email adres hemi bin adem go finis long list long olketa adres wea olketa i lukaotem disfala tracker",
"Cancel monitoring" => "Kanselem monitoring",
"Monitor" => "Monitor",
"Your email address has been removed from the list of addresses monitoring this item" => "Email adres hemi bin tekaotem from disfala list long olketa adres wea i monitorim disfala item",
"Your email address has been added to the list of addresses monitoring this item" => "Email adres hemi bin adem go finis long list long adres wea i monitorim disfala item",
"No subject" => "No eni subject",
"Your email was sent" => "Email blong iu hemi sendem go",
"Top pages" => "Olketa top pej",
"Last pages" => "Olketa las pej",
"Most relevant pages" => "Olketa pej wea i relevant",
"Anonymous" => "Anonymous",
"WikiDiff::apply: line count mismatch: %s != %s" => "WikiDiff::apply: namba blong olketa line ino semsem: %s != %s",
"WikiDiff::_check: failed" => "WikiDiff::_check: failed",
"WikiDiff::_check: edit sequence is non-optimal" => "WikiDiff::_check: sequence long mekem senis hemi non-optimal",
"WikiDiff Okay: LCS = %s" => "WikiDiff Okei: LCS = %s",
"Gallery" => "Gallery",
"FAQ" => "FAQ",
"Image" => "image",
"Forum" => "Forum",
"File" => "File",
"Blog" => "Blog",
"Article" => "Article",
"Post" => "Post",
"You are banned from" => " Iu tambu fo go long ",
"locked" => "lokem",
"unlocked" => "hemi no lok",
"no description" => "no eni description",
"picture not found" => "hemi no faendem piksa",
"drawing not found" => "hemi no faendem drawing",
"No image yet, sorry." => "Sore, no garem eni image long destaem.",
"Versions are identical" => "Olketa version ia olketa barava semsem nao ",
"Activity" => "Activity",
"Role" => "Role",
"New article submitted at " => "Niu article hemi submittim go long ",
"by" => "by",
"Blog post" => "Blog post",
"continued" => "go-gohed",
"click to edit" => "klik fo mekem senis",
"new image uploaded by" => "man wea hemi uploadem niu image hemi ",
"in" => "insaet",
"uploaded by" => "uploaded by",
"new item in tracker" => "niu item insaet long tracker",
"new subscriptions" => "olketa niu subscription",
"not specified" => "hemi no talem klia/specified",
"Wiki Home" => "Wiki Home",
"posted on" => "postem long",
"Return to blog" => "Gobaek long blog",
"Home" => "Hom",
"prev" => "prev",
"next" => "nekswan",
"New message arrived from " => "Niu mesij hemi kam from ",
"NONE" => "NO ENITING",
"Newsletter subscription information at " => "Niusleta subscription information long ",
"Welcome to " => "Welkam long ",
"Bye bye from " => "Bye bye from ",
" at " => "long ",
"You can unsubscribe from this newsletter following this link" => "Iu save unsubscribe from disfala niusleta sapos iu falom disfala link",
"Wiki top pages" => "Olketa pej long antap blong Wiki",
"Relevance" => "Relevance",
"Wiki last pages" => "Olketa las pej long Wiki",
"Modified" => "Modified",
"Forums last topics" => "Olketa las topik long olketa Forum",
"Topic date" => "Topik date",
"Forums most read topics" => "Olketa topik blong olketa forum wea olketa i bin ridim olowe",
"Forums best topics" => "Olketa bes topik long olketa forum",
"Score" => "Skoa",
"Forums most visited forums" => "Olketa forum blong olketa forum wea olketa i bin visitim olowe",
"Forums with most posts" => "Olketa forum wea garem staka post fogud",
"Posts" => "Olketa Post",
"Wiki top galleries" => "Olketa top gallery long Wiki",
"Wiki top file galleries" => "Olketa top file gallery long Wiki",
"Wiki top images" => "Olketa top image long Wiki",
"Hits" => "Hits",
"Wiki top files" => "Olketa top file long Wiki",
"Downloads" => "Downloadem",
"Wiki last images" => "Olketa las image blong Wiki",
"Upload date" => "Uploadem date",
"Wiki last files" => "Olketa las file blong Wiki",
"Wiki top articles" => "Olketa top article blong Wiki",
"Reads" => "Ridim",
"Most visited blogs" => "Olketa Blog wea olketa i bin visitim olowe",
"Visits" => "Visitim",
"Most active blogs" => "Olketa Blog wea hemi bin active tumas",
"Blogs last posts" => "Olketa las post blong olketa Blog",
"Post date" => "Post date",
"Wiki top authors" => "Olketa top author long Wiki",
"pages" => "olketa pej",
"Top article authors" => "Olkea top author blong article",
"help" => "help",
"view" => "lukluk",
"Tracker was modified at " => "Tracker hemi bin modified long ",
"child categories" => "pikinini category",
"objects in category" => "olketa object insaet long category",
"Displays the user Avatar" => "Hemi som Avatar blong olketa user",
"username" => "usernem",
"Insert theme styled box on wiki page" => "Insaetem go wanfala theme styled box go long wiki pej",
"text" => "text",
"Insert list of items for the current/given category into wiki page" => "Insaetem go wanfala list long olketa items fo disfala current/given category insaet go long wiki page",
"Categories are disabled" => "Olketa category ia olketa mekem fo no waka",
"Insert the full category path for each category that this wiki page belongs to" => "Fo olketa category wea onam disfala wiki pej, iu insaetem go nao ful category path/rod blong hem ",
"Centers the plugin content in the wiki page" => "Baebae putum go long medol long wiki pej olketa content blong plugin",
"code" => "code",
"Insert copyright notices" => "Insaetem go olketa copyright notice",
"term" => "term",
"definition" => "definition",
"Example" => "Example",
"Displays the data using the TikiWiki odd/even table style" => "Baebae iusim TikiWiki odd/even table style fo somaot olketa data",
"Displays a graphical GAUGE" => "Baebae som wanfala graphical GAUGE",
"description" => "description",
"Please choose a module" => "Plis siusim wanfala module",
"to be used as argument" => "fo iusim olsem wanfala argument",
"Displays a module inlined in page" => "Baebae som wanfala module wea stap stret insaet long pej",
"Sorry no such module" => "Sore no eni module hemi olsem",
"Displays the data using a monospace font" => "Baebae iusim wanfala monospace font fo som olketa data",
"Sorts the plugin content in the wiki page" => "Bae stretem go olketa content blong plugin insaet long wiki pej",
"data" => "data",
"Missing db param" => "db param hemi no stap",
"page" => "pej",
"There is an error in the plugin data" => "Hemi garem wanfala error insaet long plugin data",
"no such file" => "no eni file hemi olsem",
"Error" => "Error",
"Syntax" => "Syntax",
"page generation debugging log" => "pej generation debugging log",
"Features state" => "State blong olketa Feature",
"Total" => "Total",
"features matched" => "olketa feature hemi semsem/matched",
"Watchlist" => "Watchlist",
"List of attached files" => "List long olketa attached file",
"name" => "nem",
"uploaded" => "uploadem finis",
"size" => "size",
"dls" => "dls",
"desc" => "desc",
"Upload file" => "Uploadem file",
"comment" => "toktok",
"attach" => "attach",
"categorize" => "categorize",
"show categories" => "som olketa category",
"hide categories" => "haedem olketa category",
"categorize this object" => "categorizem disfala object",
"Admin categories" => "Olketa category blong Admin",
"Posted comments" => "Olketa toktok wea i bin postem finis",
"Comments" => "Olketa toktok",
"Sort" => "Sort",
"Threshold" => "Threshold",
"All" => "Evriwan",
"Search" => "Lukaotem",
"set" => "set",
"Top" => "Top",
"Vote" => "Vote",
"reply to this" => "raet go baek long diswan",
"parent" => "parent",
"on" => "on",
"Comments below your current threshold" => "Olketa toktok wea kasem andanit current threshold blong iu",
"Preview" => "Preview",
"Editing comment" => "Mekem senis long toktok",
"post new comment" => "postem go niu toktok",
"Post new comment" => "Postem go niu toktok",
"preview" => "preview",
"post" => "post",
"Smileys" => "Olketa Smiley",
"Title" => "Title",
"Comment" => "Toktok",
"Posting comments" => "Postem go olketa toktok",
"Use" => "Iusim",
"for links" => "fo olketa link",
"HTML tags are not allowed inside comments" => "Olketa HTML tag hemi no letem long insaet olketa toktok",
"Copyrights" => "Olketa Copyright",
"Year" => "Year",
"Authors" => "Olketa Author",
"add" => "ad",
"Go back" => "Go baek",
"Return to home page" => "Go-gobaek long hom pej",
"Broadcast message" => "Broadcastem mesij",
"Tikiwiki.org help" => "Tikiwiki.org help",
"Group" => "Grup",
"All users" => "Evri user",
"Priority" => "Priority",
"Lowest" => "Lou fogud",
"Low" => "Lou",
"Normal" => "Normal",
"High" => "Hae",
"Very High" => "Hae tumas",
"send" => "sendem",
"Subject" => "Subject",
"Compose message" => "Raetem mesij",
"To" => "go long",
"CC" => "CC",
"BCC" => "BCC",
"Messages" => "Olketa Mesij",
"Read" => "Ridim",
"Unread" => "Noridim",
"Flagged" => "Flagged",
"Unflagged" => "Noflagged",
"1" => "1",
"2" => "2",
"3" => "3",
"4" => "4",
"5" => "5",
"Containing" => "Garem",
"filter" => "filter",
"delete" => "kliarem",
"Mark as unread" => "Makem olsem hemi no bin ridim",
"Mark as read" => "Makem olsem hemi bin ridim finis",
"Mark as unflagged" => "Makem olsem hemi bin no flagged",
"Mark as flagged" => "Makem olsem hemi flagged",
"mark" => "mak",
"from" => "from",
"subject" => "subject",
"date" => "date",
"No messages to display" => "No eni mesij fo som",
"Mailbox" => "Mailbox",
"Compose" => "Raetem",
"Broadcast" => "Broadcast",
"Read message" => "Ridim mesij",
"Prev" => "Prev",
"Next" => "Nekes",
"Return to messages" => "Go-go baek long olketa mesij",
"reply" => "raet gobaek",
"replyall" => "raetgolongevriwan",
"Unflagg" => "Unflagg",
"Flag this message" => "Flagem disfala mesij",
"From" => "From",
"Cc" => "Cc",
"Date" => "Date",
"Features" => "Olketa Feature",
"General" => "General",
"Login" => "Login",
"Image Galleries" => "Image Gallery",
"File Galleries" => "File Gallery",
"Polls" => "Olketa Poll",
"RSS" => "RSS",
"Webmail" => "Webmail",
"User files" => "Olketa File blong User",
"Blog settings" => "Olketa setting blong Blog",
"Home Blog (main blog)" => "Hom Blog (main blog)",
"Set prefs" => "Set prefs",
"Blog features" => "Olketa feature blong Blog",
"Rankings" => "Olketa Ranking",
"Blog level comments" => "Blog level long olketa toktok",
"Post level comments" => "Post level long olketa toktok",
"Spellchecking" => "SekemSpeling",
"Default ordering for blog listing" => "Default oda long olketa blog listing",
"Creation date (desc)" => "Date taem hem wakem (desc)",
"Last modification date (desc)" => "Date long las taem modification hemi tek ples(desc)",
"Blog title (asc)" => "Blog title (asc)",
"Number of posts (desc)" => "Namba long olketa post (desc)",
"Visits (desc)" => "Olketa Visit (desc)",
"Activity (desc)" => "Activity (desc)",
"In blog listing show user as" => "Long insaet long list blong blog som olketa user olsem",
"Plain text" => "Plen text",
"Link to user information" => "Link go long olketa information blong user",
"User avatar" => "Avatar blong user",
"Set features" => "Olketa set feature",
"Blog listing configuration (when listing available blogs)" => "List long olketa blog configuration (taem hemi listim olketa blog wea hem stap) ",
"title" => "title",
"creation date" => "date taem hemi bin wakem",
"last modification time" => "modification taem long las taem",
"user" => "user",
"posts" => "olketa post",
"visits" => "olketa visit",
"activity" => "activity",
"Change preferences" => "Olketa preference blong senis",
"Blog comments settings" => "Olketa toktok setting blong blog",
"Default number of comments per page" => "Default namba long olketa toktok long wanfala pej",
"Comments default ordering" => "Default order long olketa toktok",
"Points" => "Olketa Point",
"CMS settings" => "Olketa setting blong CMS",
"CMS features" => "Olketa feature blong CMS",
"Use templates" => "Iusim olketa template",
"Maximum number of articles in home" => "Maximum namba long olketa article insaet long hom",
"Article comments settings" => "Olketa toktok setting blong article",
"List articles" => "Listim kam olketa article",
"Topic" => "Topik",
"Author" => "Author",
"Size" => "Size",
"Img" => "Img",
"Number of columns per page when listing categories" => "Namba long olketa colum long wanfala pej evritaem hemi listim olketa category",
"Links per page" => "Olketa links wea i stap long wanfala pej",
"Validate URLs" => "Validate URL",
"Method to open directory links" => "Wei fo openem olketa directory link",
"replace current window" => "senisimbaek disfala windo",
"new window" => "niu windo",
"inline frame" => "inline frame",
"FAQs settings" => "Olketa FAQ setting",
"FAQ comments" => "Olketa FAQ toktok",
"Tiki sections and features" => "Olketa tiki section an olketa feature",
"Submissions" => " Olketa Submission",
"Chat" => "Stori",
"Shoutbox" => "Singaotbox",
"Newsreader" => "Niusrider",
"Surveys" => "Olketa Survey",
"Featured links" => "Olketa link wea hemi Featured",
"Banners" => "Olketa Banner",
"Full Text Search" => "Full Text Search",
"Games" => "Olketa Game",
"Search stats" => "Search stats",
"Newsletters" => "Olketa Niusleta",
"Live support system" => "Live support system",
"HTML pages" => "Olketa HTML pej",
"Workflow" => "Workflow",
"Workflow engine" => "Workflow engine",
"Mini Calendar" => "Smol Kalenda",
"Categories" => "Olketa Category",
"Calendar" => "Kalenda",
"Content Features" => "Olketa Content Feature",
"Hotwords" => "Olketa Hotwod",
"Edit CSS" => "Mekem senis long CSS",
"Drawings" => "Olketa Drawing",
"Administration Features" => "Olketa Feature blong Administration",
"Banning system" => "Banning system",
"Debugger Console" => "Debugger Console",
"Stats" => "Stats",
"Communications (send/receive objects)" => "Olketa Communication (sendem/risivim olketa object)",
"XMLRPC API" => "XMLRPC API",
"User Features" => "Olketa Feature blong User",
"User Bookmarks" => "Olketa Bookmark blong user",
"User Menu" => "Menu blong user",
"User Messages" => "Olketa mesij blong user",
"User Tasks" => "Olketa Tasks blong user",
"User Files" => "Olketa Files blong user",
"General Layout options" => "Olketa General Layout option",
"Left column" => "Left column",
"Layout per section" => "Layout long wanfala section",
"Right column" => "Right column",
"Admin layout per section" => "Admin layout long wanfala section",
"Top bar" => "Bar long ontop",
"Bottom bar" => "Bar long botom",
"Update" => "Updatem",
"File galleries" => "File gallery",
"Home Gallery (main gallery)" => "Hom Gallery (main gallery)",
"Galleries features" => "Olketa gallery feature",
"Use database to store files" => "Iusim database fo storem olketa file",
"Use a directory to store files" => "Iusim wanfala directory fo storem olketa file",
"Directory path" => "Directory path/rod",
"Uploaded filenames must match regex" => "Olketa filenem wea i bin uploaded mas matchem regex",
"Uploaded filenames cannot match regex" => "Olketa filenem wea i bin uploaded hemi kanot matchem regex",
"please read" => "ridim plis",
"Gallery listing configuration" => "Listing configuration blong gallery",
"Name" => "Nem",
"Description" => "Description",
"Created" => "Wakem finis",
"Last modified" => "Las taem hemi bin modified",
"User" => "user",
"Files" => "Olketa File",
"File galleries comments settings" => "Olketa toktok setting long file gallery",
"Forums settings" => "Olketa forum setting",
"Home Forum (main forum)" => "Hom Forum (main forum)",
"Set home forum" => "Setem hom forum",
"Accept wiki syntax" => "Acceptem wiki syntax",
"Forum quick jumps" => "Olketa quick jam blong forum",
"Ordering for forums in the forum listing" => "Oda fo olketa forum falom insaet long forum list",
"Creation Date (desc)" => "Date taem olketa wakem(desc)",
"Topics (desc)" => "Olketa topik (desc)",
"Threads (desc)" => "Olketa thread (desc)",
"Last post (desc)" => "Last post (desc)",
"Name (desc)" => "Nem (go daon)",
"Name (asc)" => "Nem (go up)",
"Forum listing configuration" => "Listing configuration blong forum",
"Topics" => "Olketa topik",
"Posts per day" => "Olketa post long insaet wan dei",
"Last post" => "Lasfala post",
"Image galleries" => "Olketa image gallery",
"Use database to store images" => "Iusim database fo stoarem olketa image",
"Use a directory to store images" => "Iusim directory to stoarem olketa image",
"Library to use for processing images" => "Laebreri fo iusim taem processem olketa image",
"Uploaded image names must match regex" => "Olketa nem blong olketa image wea i bin uploadem mas matchem regex",
"Uploaded image names cannot match regex" => "Olketa nem blong olketa image wea i bin uploadem hemi no save matchem regex",
"Remove images in the system gallery not being used in Wiki pej, articles or blog posts" => "Tekaotem olketa image insaet long system gallery wea olketa i no bin iusim insaet long olketa Wiki pej, olketa article o olketa post blong blog",
"Images" => "Olketa image",
"Image galleries comments settings" => "Olketa toktok setting blong olketa image gallery",
"General preferences and settings" => "Olketa general preference an olketa setting",
"General Preferences" => "Olketa general Preference",
"Theme" => "Theme",
"Slideshows theme" => "Olketa Slideshow theme",
"Use URI as Home page" => "Iusim URI olsem Hom pej",
"Home page" => "Hom pej",
"Custom home" => "Kastom hom",
"Language" => "Langguis",
"Use database for translation" => "Iusim database fo olketa translation",
"Record untranslated" => "Record untranslated",
"OS" => "OS",
"Unix" => "Unix",
"Windows" => "Olketa windo",
"Unknown/Other" => "Nosave long hem/Narakaen",
"General Settings" => "Olketa General Setting",
"Open external links in new window" => "Openem olketa link blong aotsaet long insaet wanfala niu windo",
"Display modules to all groups always" => "Som olketa module go long evri grup evritaem",
"Use cache for external pages" => "Iusim cache fo olketa pej wea stap long aotsaet",
"Use cache for external images" => "Iusim cache fo olketa image wea stap long aotsaet",
"Use direct pagination links" => "Iusim olketa direct pagination link",
"Display menus as folders" => "Som olketa menu olsem olketa folder",
"Use gzipped output" => "Iusim gzipped output",
"Count admin pageviews" => "Kaondem olketa admin pejview",
"Server name (for absolute URIs)" => "Server nem (fo absolute URIs)",
"Browser title" => "Browser title",
"Wiki_Tiki_Title" => "Wiki_Tiki_Title",
"Temporary directory" => "Temporary directory",
"Sender Email" => "Email blong man hemi sendem",
"Contact user" => "Kontaktem user",
"contact feature disabled" => "kontak feature hemi no waka",
"Maximum number of records in listings" => "Maximum namba long olketa record inseat long olketa listing",
"Date and Time Formats" => "Olketa Date an Taem Format",
"Long date format" => "Long date format",
"Short date format" => "Sot date format",
"Long time format" => "Long taem format",
"Short time format" => "Sot team format",
"Date and Time Format Help" => "Date an Taem Format Help",
"Time Zone" => "Taem Zone",
"Server time zone" => "Server taem zone",
"Displayed time zone" => "Soaot taem zone",
"Time Zone Map" => "Taem Zone Map",
"Change admin password" => "Senisim paswod blong admin",
"New password" => "Niu paswod",
"Repeat password" => "Raetem baek paswod",
"Change password" => "Senisim paswod",
"Sections" => "Olketa Section",
"Poll settings" => "Olketa Poll setting",
"Poll comments settings" => "Olketa setting blong olketa Poll toktok",
"RSS feeds" => "Olketa RSS feed",
"<b>Feed</b>" => "<b>Feed</b>",
"<b>enable/disable</b>" => "<b>waka/nowaka</b>",
"<b>Max number of items</b>" => "<b>Max namba long olketa item</b>",
"Feed for Articles" => "Feed fo olketa Article",
"Feed for Weblogs" => "Feed fo olketa Weblog",
"Feed for Image Galleries" => "Feed fo olketa Gallery blong image",
"Feed for File Galleries" => "Feed fo olketa Gallery blong File",
"Feed for the Wiki" => "Feed fo disfala Wiki",
"Feed for individual Image Galleries" => "Feed fo evriwan long olketa image Gallery",
"Feed for individual File Galleries" => "Feed fo evriwan long olketa File Gallery",
"Feed for individual weblogs" => "Feed fo evriwan long olketa weblog",
"Feed for forums" => "Feed fo olketa forum",
"Feed for individual forums" => "Feed fo evriwan long olketa forum",
"Set feeds" => "Setem olketa feed",
"Path" => "Path/Rod",
"Quota (Mb)" => "Quota (Mb)",
"Use database to store userfiles" => "Iusim database fo stoarem olketa userfile",
"Use a directory to store userfiles" => "Iusim wanfala directory fo stoarem olketa userfile",
"Allow viewing HTML mails?" => "Hao, baebae letem fo lukluk long olketa HTML mel?",
"Maximum size for each attachment" => "Maximum size fo evriwan long olketa attachment",
"Wiki settings" => "Olketa Wiki setting",
"Dumps" => " Olketa Dump",
"Generate dump" => "Wakem dump",
"Download last dump" => "Downloadem las dump",
"Create a tag for the current wiki" => "Wakem wanfala tag fo disfala wiki",
"create" => "Mekem",
"Restore the wiki" => "Wakembaek disfala wiki",
"Tag Name" => "Tag Nem",
"restore" => "Wakembaek",
"Remove a tag" => "Tekaotem wanfala tag",
"Wiki comments settings" => "Olketa setting blong olketa Wiki toktok",
"Wiki attachments" => "Olketa Wiki attachment",
"Export Wiki pages" => "Expotem olketa Wiki pej",
"Export" => "Expotem",
"Remove unused pictures" => "Tekaotem olketa piksa wea hemi no bin iusim",
"Wiki Home page" => "Wiki Hom pej",
"Wiki Discussion" => "Wiki Discussion",
"Discuss pages on forums" => "Discuss olketa pej long olketa forum",
"Wiki page Names" => "Olketa pej Nem blong Wiki",
"full" => "ful",
"strict" => "strict",
"Wiki page list configuration" => "pej list configuration blong Wiki",
"Last modification date" => "Last modification date",
"Creator" => "Man mekem",
"Last version" => "Las version",
"Status" => "Status",
"Versions" => "Olketa Version",
"Links" => "Olketa Link",
"Wiki Features" => "Olketa Wiki Feature",
"Sandbox" => "Sandbox",
"Last changes" => "Olketa las senis",
"Dump" => "Dump",
"Ranking" => "Ranking",
"History" => "History",
"List pages" => "Listim olketa pej",
"Backlinks" => "Olketa backlink",
"Like pages" => "Olketa pej wea olsem",
"Undo" => "Undo",
"MultiPrint" => "MultiPrint",
"PDF generation" => "PDF generation",
"Warn on edit" => "Taem mekem senis mas wonem",
"mins" => "mins",
"Pictures" => "Olketa piksa",
"Use page description" => "Iusim pej description",
"Show page title" => "Som pej title",
"no cache" => "no eni cache",
"minutes" => "minutes",
"minute" => "minute",
"hour" => "hour",
"hours" => "hours",
"Footnotes" => "Olketa footnote",
"Users can lock pages (if perm)" => "Olketa user save lokam olketa pej (if perm)",
"Use WikiWords" => "Iusim olketa WikiWod",
"page creators are admin of their pages" => "Man wea hemi mekem pej hemi nao admin long olketa pej ia",
"Tables syntax" => "Syntax blong olketa table",
"|| for rows" => "|| fo olketa row",
"Automonospaced text" => "Automonospaced text",
"Wiki History" => "Wiki History",
"Maximum number of versions for history" => "Maximum namba long olketa version fo history",
"Never delete versions younger than days" => "Mas no klearemaot olketa version wea hemi no kasem namba blong olketa dei",
"Copyright Management" => "Copyright Management",
"Enable Feature" => "Mekem Feature hem waka",
"License page" => "License pej",
"Submit Notice" => "Submit Notice",
"Set" => "Set",
"Administration" => "Administration",
"Banning" => "Banning",
"Add or edit a rule" => "Adem go o mekem senis long wanfala rule",
"Rule title" => "Rule title",
"Username regex matching" => "Usernem regex matching",
"IP regex matching" => "IP regex matching",
"Banned from sections" => "Banned from olketa section",
"Rule activated by dates" => "Olketa date blong taem rule hemi bin activated",
"Rule active from" => "Rule hemi active from",
"Rule active until" => "Rule hemi active go-go kasem",
"Custom message to the user" => "Kastom mesij go long user",
"save" => "sevem",
"Find" => "Faendem",
"Rules" => "Olketa rule",
"x" => "x",
"User/IP" => "User/IP",
"Action" => "Action",
"No records found" => "No eni rekod hemi faendem",
"Admin Calendars" => "Olketa Kalenda blong Admin",
"Create/edit Calendars" => "Wakem/mekem senis long olketa Kalenda",
"Custom Locations" => "Olketa kastom Location",
"Custom Categories" => "Olketa kastom Category",
"Custom Languages" => "Olketa kastom Langguis",
"no" => "no",
"Custom Priorities" => "Olketa Kastom Priority",
"yes" => "yes",
"Save" => "Sevem",
"List of Calendars" => "List long olketa Kalenda",
"find" => "faendem",
"ID" => "ID",
"loc" => "loc",
"cat" => "cat",
"lang" => "lang",
"prio" => "prio",
"action" => "action",
"Current category" => "Disfala semem category",
"Edit this category:" => "Mekem senis long disfala category:",
"create new" => "mekem niu",
"Add new category" => "Adem go niu category",
"Parent" => "Parent",
"top" => "top",
"type" => "type",
"Add objects to category" => "Adem go olketa object go long category",
"directory" => "directory",
"image gal" => "image gal",
"file gal" => "file gal",
"poll" => "poll",
"faq" => "faq",
"quiz" => "quiz",
"Admin chart items" => "Olketa chart item blong admin",
"charts" => "olketa chart",
"edit chart" => "mekem senis long chart",
"Add or edit an item" => "Adem go o mekem senis long wanfala item",
"new" => "niu",
"update" => "update",
"Chart items" => "Olketa Chart item",
"URL" => "URL",
"No items defined yet" => "No eni item hemi bin defined iet",
"Admin charts" => "Olketa Admin chart",
"Add or edit a chart" => "Adem go o mekem senis long wanfala chart",
"Active" => "Active",
"Users can vote only one item from this chart per period" => "Olketa user save votem go wanfala item nomoa from disfala chart long wanfala taem nomoa",
"Prevent users from voting same item more than one time" => "Mekem olketa user fo no save votem go sem item staka taem",
"Users can suggest new items" => "Olketa user save talem kam olketa niu item",
"Auto validate user suggestions" => "Auto validatem olketa suggestion blong user",
"Ranking shows" => "Ranking hem som",
"All items" => "Evri item",
"Top 10 items" => "Olketa top 10 item",
"Top 20 items" => "Olketa top 20 item",
"Top 40 items" => "Olketa top 40 item",
"Top 50 items" => "Olketa top 50 item",
"Top 100 items" => "Olketa top 100 item",
"Top 250 items" => "Olketa top 250 item",
"Voting system" => "Voting system",
"Vote items" => "Olketa vote item",
"Rank 1..5" => "Rank 1..5",
"Rank 1..10" => "Rank 1..10",
"Ranking frequency" => "Ranking frequency",
"Realtime" => "Realtime",
"Each 5 minutes" => "Each 5 minutes",
"Daily" => "Daily",
"Weekly" => "Weekly",
"Monthly" => "Monthly",
"Show Average" => "Som Average",
"Show Votes" => "Som olketa Vote",
"Use Cookies for unregistered users" => "Iusim olketa Cookie fo olketa unregistered user",
"Users can vote again after" => "Olketa user save vote moa afta",
"Anytime" => "Enitaem",
"5 minutes" => "5 minutes",
"1 day" => "1 dei",
"1 week" => "1 wik",
"1 month" => "1 manis",
"Items" => "Olketa item",
"Ranks" => "Olketa rank",
"No charts defined yet" => "No eni chart hemi bin defined iet",
"Chat Administration" => "Stori Administration",
"Create/edit channel" => "Wakem/mekem senis channel",
"Refresh rate" => "Refresh rate",
"half a second" => "half wanfala second",
"second" => "second",
"seconds" => "seconds",
"Chat channels" => "Olketa stori channel",
"active" => "active",
"refresh" => "refresh",
"Admin templates" => "Olketa Admin template",
"Edit this template:" => "Mekem senis long disfala template:",
"Create new template" => "Wakem niu template",
"use in cms" => "iusim insaet long cms",
"use in wiki" => "iusim insaet long wiki",
"use in newsletters" => "iusim insaet long olketa niusleta",
"use in HTML pages" => "iusim insaet long olketa HTML pej",
"template" => "template",
"Templates" => "Olketa template",
"last modif" => "last modif",
"sections" => "olketa section",
"Admin cookies" => "Olketa Admin cookie",
"Create/edit cookies" => "Wakem/mekem senis long olketa cookies",
"Cookie" => "Cookie",
"Upload Cookies from textfile" => "Uploadem olketa Cookie from textfile",
"Upload from disk:" => "Uploadem from disk:",
"upload" => "upload",
"Cookies" => "Olketa Cookie",
"Remove all cookies" => "Tekaotem evri cookie",
"cookie" => "cookie",
"Admin drawings" => "Olketa Admin drawing",
"Available drawings" => "Olketa drawing wea hemi stap",
"Ver" => "Ver",
"Admin dsn" => "Admin dsn",
"Create/edit dsn" => "Wakem/mekem senis long dsn",
"dsn" => "dsn",
"Admin external wikis" => "Olketa Admin wikis wea stap long aotsaet",
"URL (use \$page to be replaced by the page name in the URL example: http:www.example.com/tiki-index.php?page=\$page)" => "URL (iusim \$page fo baebae putumbaek pej wea nem blong hemi insaet long URL example: http:www.example.com/tiki-index.php?page=\$page)",
"extwiki" => "extwiki",
"Admin Forums" => "Olketa Admin Forum",
"Edit this Forum:" => "Mekem senis long disfala Forum:",
"Create New Forum" => "Wakem niu Forum",
"There are individual permissions set for this forum" => "Disfala forum hemi garem olketa individual permission hemi set",
"Show description" => "Som description",
"Prevent flooding" => "No letem flooding",
"Minimum time between posts" => "Minimum taem bifoa narafala post",
"secs" => "secs",
"min" => "min",
"Topics per page" => "Olketa topik long wanfala pej",
"Section" => "Section",
"None" => "No eniwan",
"Create new" => "Wakem niu",
"Moderator user" => "Moderator user",
"Moderator group" => "Moderator grup",
"Password protected" => " Paswod hemi haedem gudfala/protected",
"No" => "No",
"Topics only" => "Olketa topic nomoa",
"All posts" => "Evri post",
"Forum password" => "Forum paswod",
"Default ordering for topics" => "Default oda fo olketa topik",
"Replies (desc)" => "Olketa Reply (desc)",
"Reads (desc)" => "Ridim (desc)",
"Default ordering for threads" => "Default oda fo olkta thread",
"Date (desc)" => "Date (desc)",
"Date (asc)" => "Date (asc)",
"Score (desc)" => "Skoa (desc)",
"Title (desc)" => "Title (desc)",
"Title (asc)" => "Title (asc)",
"Send this forums posts to this email" => "Sendem olketa post blong disfala forum go long disfala email",
"Prune unreplied messages after" => "Prune olketa mesij wea i no bin replied afta",
"Prune old messages after" => "Prune olketa ol mesij afta",
"days" => "olketa dei",
"Topic list configuration" => "Topik list configuration",
"Replies" => "Olketa Reply",
"author" => "author",
"Threads can be voted" => " Olketa thread wea save votem",
"Add messages from this email to the forum" => "Adem go olketa mesij from disfala email go long forum",
"POP3 server" => "POP3 server",
"Password" => "paswod",
"Use topic smileys" => "Iusim olketa topik smiley",
"Show topic summary" => "Som summary long topik",
"User information display" => "User information fo somaot",
"avatar" => "avatar",
"flag" => "flag",
"user level" => "user level",
"email" => "email",
"online" => "online",
"Approval type" => "Approval type",
"All posted" => "Evriwan hemi bin postem finis",
"Queue anonymous posts" => "Queue blong olketa anonymous post",
"Queue all posts" => "Queue blong evri post",
"Attachments" => "Olketa Attachment",
"No attachments" => "No eni attachment",
"Everybody can attach" => "Evriwan save attachem",
"Only users with attach permission" => "Olketa user wea garem pamison fo attach",
"Moderators and admin can attach" => "Olketa Moderator an admin save attachem",
"Store attachments in:" => "Stoarem olketa attachment insaet long:",
"Database" => "Database",
"Directory (include trailing slash)" => "Directory (include trailing slash)",
"Max attachment size (bytes)" => "Max attachment size (bytes)",
"topics" => "olketa topik",
"coms" => "coms",
"users" => "olketa user",
"age" => "age",
"ppd" => "ppd",
"last post" => "last post",
"hits" => "hits",
"permissions" => "olketa permission",
"Admin Hotwords" => "Olketa Admin Hotwod",
"Add Hotword" => "Adem go Hotwod",
"Add" => "Adem",
"Word" => "Wod",
"Admin HTML pages" => "Olketa Admin HTML pej",
"Edit this page" => "Mekem sinis long disfala pej",
"View page" => "Lukluk long pej",
"Edit zone" => "Mekem senis long zone",
"Zone" => "Zone",
"Content" => "Content",
"Dynamic zones" => "Olketa Dynamic zone",
"zone" => "zone",
"content" => "content",
"Mass update" => "Mass update",
"Edit this HTML page:" => "Mekem senis long disfala HTML pej:",
"Create new HTML page" => "Wakem niu HTML pej",
"page name" => "pej nem",
"Apply template" => "Apply template",
"none" => "no eniwan",
"Type" => "Type",
"Dynamic" => "Dynamic",
"Static" => "Static",
"Refresh rate (if dynamic) [secs]" => "Refresh rate (if dynamic) [secs]",
"Use {literal}{{/literal}ed id=name} or {literal}{{/literal}ted id=name} to insert dynamic zones" => "Iusim {literal}{{/literal}ed id=name} o {literal}{{/literal}ted id=name} fo insaetem go olketa dynamic zone",
"Admin layout" => "Admin layout",
"layout options" => "olketa layout option",
"Generate positions by hits" => "Wakem olketa position falom olketa hits",
"List of featured links" => "List long olketa featured link",
"url" => "url",
"position" => "position",
"Add Featured Link" => "Adem go Featured Link",
"Edit this Featured Link:" => "Mekem senis long disfala Featured Link:",
"Create new Featured Link" => "Mekem niu Featured Link",
"Position" => "Position",
"disables the link" => "mekem disfala link fo hemi no waka",
"Link type" => "Link type",
"replace current page" => "senisim disfala pej",
"framed" => "framed",
"open new window" => "openem niu windo",
"Add new mail account" => "Adem go niu mel account",
"Account name" => "Account nem",
"POP server" => "POP server",
"SMTP server" => "SMTP server",
"Port" => "Port",
"SMTP requires authentication" => "SMTP requires authentication",
"Yes" => "Yes",
"Username" => "Usernem",
"wiki-get" => "wiki-tekem",
"wiki-put" => "wiki-putum",
"wiki-append" => "wiki-append",
"wiki" => "wiki",
"User accounts" => "Olketa account blong user",
"account" => "account",
"Admin Menu" => "Admin Menu",
"List menus" => "List olketa menu",
"Edit this menu" => "Mekem senis long disfala menu",
"Preview menu" => "Preview menu",
"Edit menu options" => "Mekem senis long olketa menu option",
"section" => "section",
"option" => "option",
"Some useful URLs" => "Samfala olketa URLs fo helpem iu",
"Home page" => "Hom pej",
"Home Blog" => "Hom Blog",
"Home Image Gal" => "Hom Image Gal",
"Home Image Gallery" => "Hom Image Gallery",
"Home File Gal" => "Hom File Gal",
"Home File Gallery" => "Hom File Gallery",
"User preferences" => "Olketa preference blong user",
"User prefs" => "Olketa pref blong user",
"List galleries" => "Listim kam olketa gallery",
"List image galleries" => "Listim kam olketa image gallery",
"Upload image" => "Uploadem image",
"Upload" => "Uploadem",
"Gallery Rankings" => "Olketa Gallery Ranking",
"Browse a gallery" => "Browsem wanfala gallery",
"Articles home" => "Hom blong olketa Article",
"All articles" => " Evri article",
"Submit" => "Submit",
"List Blogs" => "Listim olketa Blog",
"Create blog" => "Mekem blog",
"View a forum" => "Lukluk long wanfala forum",
"View a thread" => "Lukluk long wanfala thread",
"View a FAQ" => "Lukluk long wanfala FAQ",
"Take a quiz" => "Tekem wanfala quiz",
"Quiz stats" => "Quiz stats",
"Stats for a Quiz" => "Stats fo wafala Quiz",
"Menu options" => "Olketa Menu option",
"Admin Menus" => "Olketa Admin Menu",
"Edit this Menu:" => "Mekem senis long disfala Menu:",
"Create new Menu" => "Mekem niu Menu",
"dynamic extended" => "dynamic extended",
"fixed" => "fixed",
"Menus" => "Olketa Menu",
"options" => "olketa option",
"Admin Modules" => "Olketa Admin Module",
"assign module" => "assign module",
"left modules" => "olketa module long left",
"right modules" => "olketa module long right module",
"edit/create" => "mekem senis/wakem",
"clear cache" => "kliarem cache",
"\n<b>Note 1</b>: if you allow your users to configure modules then assigned\nmodules won't be reflected in the screen until you configure them\nfrom MyTiki->modules.<br/>\n<b>Note 2</b>: If you assign modules to groups make sure that you\nhave turned off the option 'display modules to all groups always'\nfrom Admin->General\n" => "\n<b>Note 1</b>: if you allow your users to configure modules then assigned\nmodules won't be reflected in the screen until you configure them\nfrom MyTiki->modules.<br/>\n<b>Note 2</b>: If you assign modules to groups make sure that you\nhave turned off the option 'display modules to all groups always'\nfrom Admin->General\n",
"User Modules" => "Olketa Module blong User",
"Assign new module" => "Assignem new module",
"Edit this assigned module:" => "Mekem senis long disfala module:",
"Module Name" => "Nem blong Module",
"left" => "left",
"right" => "right",
"Order" => "Order",
"Cache Time" => "Cache Team",
"Rows" => "Olketa Row",
"Parameters" => "Olketa Parameter",
"Groups" => "Olketa Group",
"assign" => "assign",
"Assigned Modules" => "Olketa Assigned Module",
"Left Modules" => "Olketa Left Module",
"order" => "order",
"cache" => "cache",
"Right Modules" => "Olketa Right Module",
"rows" => "olketa row",
"groups" => "olketa group",
"up" => "ap",
"down" => "daon",
"Create new user module" => "Mekem niu user module",
"Edit this user module:" => "Mekem senis long disfala user module:",
"Use wysiwyg editor" => "Iusim wysiwyg editor",
"Use normal editor" => "Iusim normal editor",
"Data" => "Data",
"create/edit" => "wakem/mekem senis",
"Objects that can be included" => "Olketa Object wea save included",
"Available polls" => "Olketa poll wea hemi garem stap",
"use poll" => "iusim poll",
"Random image from" => "Random image from",
"All galleries" => "Evri gallery",
"use gallery" => "iusim gallery",
"Dynamic content blocks" => "Olketa block blong Dynamic content",
"use dynamic content" => "iusim dynamic content",
"RSS modules" => "Olketa RSS module",
"use rss module" => "iusim rss module",
"use menu" => "iusim menu",
"Banner zones" => "Olketa zone blong Banner",
"use banner zone" => "iusim banner zone",
"Admin newsletter subscriptions" => "Olketa Admin niusleta subscription",
"list newsletters" => "listim kam olketa niusleta",
"admin newsletters" => "olketa niusleta blong admin",
"send newsletters" => "sendem go olketa niusleta",
"Add a subscription newsletters" => "Adem go wanfala subscription niusleta",
"Email" => "Email",
"Add all your site users to this newsletter (broadcast)" => "Adem go olketa user blong site blong iu long disfala niusleta (broadcast)",
"Add users" => "Adem go olketa user",
"Subscriptions" => "Olketa Subscription",
"valid" => "valid",
"subscribed" => "subscribed",
"Admin newsletters" => "Olketa niusleta blong Admin",
"Create/edit newsletters" => "Wakem/mekem senis long olketa niusleta",
"There are individual permissions set for this newsletter" => "Hemi garem olketa individual permission wea hemi set fo disfala niusleta",
"editions" => "olketa edition",
"last sent" => "las taem hemi sendem go",
"subscriptions" => "olketa subscription",
"perms" => "perms",
"Add notification" => "Addem go notification",
"Event" => "Event",
"A user registers" => "Wanfala user hemi register",
"A user submits an article" => "Wanfala user hemi submitim wanfala article",
"use admin email" => "iusim admin email",
"event" => "event",
"object" => "object",
"Admin Polls" => "Olketa Poll blong Admin",
"List polls" => "Listim kam olketa poll",
"Edit this poll" => "Mekem senis long poll",
"Preview poll" => "Preview poll",
"Edit or add poll options" => "Mekem senis o adem go olketa option blong poll",
"Option" => "Option",
"Poll options" => "Olketa option blong Poll",
"votes" => "olketa vote",
"Set last poll as current" => "Setem go las poll fo hemi olsem current",
"Close all polls but last" => "Klosem evri poll bata no klosem laswan",
"Activate all polls" => "Activatem evri poll",
"Create/edit Polls" => "Wakem/mekem senis long olketa Poll",
"current" => "current",
"closed" => "closed",
"PublishDate" => "PublishDate",
"at" => "long",
"Publish" => "Publish",
"Admin RSS modules" => "Olketa RSS module blong Admin",
"Content for the feed" => "Content blong feed",
"Edit this RSS module:" => "Mekem senis long disfala RSS module:",
"Create new RSS module" => "Mekem niu RSS module",
"Rss channels" => "Olketa Rss channel",
"Last update" => "Las taem hemi bin update",
"Structures" => "Olketa Structure",
"Create new structure" => "Mekem niufala structure",
"create new empty structure" => "mekem niufala emti structure",
"Destroy the structure leaving the wiki pages" => "Tekaotem structure bat livim olketa wiki pej",
"Destroy the structure and remove the pages" => "Tekaotem structure an tekaotem olketa pej",
"Structure" => "Structure",
"export pages" => "export olketa pej",
"dump tree" => "dump tree",
"Create structure from tree" => "Mekem structure from tree",
"Use single spaces to indent structure levels" => "Iusim wan-wan space fo mekem indent long olketa structure level",
"tree" => "tree",
"Edit survey questions" => "Mekem senis long olketa kuestin blong survey",
"List surveys" => "Listim kam olketa survey",
"survey stats" => "survey stats",
"this survey stats" => "disfala survey stats",
"edit this survey" => "mekem senis long disfala survey",
"admin surveys" => "olketa survery blong admin",
"Create/edit questions for survey" => "Create/edit kuestin for survey",
"Question" => "Kuestin",
"One choice" => "Wan choice",
"Multiple choices" => "Multiple choices",
"Short text" => "Short text",
"Rate (1..5)" => "Rate (1..5)",
"Rate (1..10)" => "Rate (1..10)",
"Options (if apply)" => "Olketa Option (sapos hemi apply)",
"Questions" => "Olketa Kuestin",
"question" => "kuestin",
"Admin surveys" => "Olketa survery blong Admin",
"list surveys" => "listim kam olketa survey",
"Edit this Survey:" => "Mekem senis long disfala Survey:",
"Create New Survey:" => "Mekem Niu Survey:",
"There are individual permissions set for this survey" => "Disfala survery hemi garem olketa individual permission wea hemi bin set",
"open" => "open",
"stat" => "stat",
"questions" => "olketa kuestin",
"Admin Topics" => "Olketa Topik blong Admin",
"Create a new topic" => "Mekem wanfala niu topik",
"Topic Name" => "Nem blong Topik",
"Upload Image" => "Upload Image",
"List of topics" => "List long olketa topik",
"Active?" => "Active?",
"Articles (subs)" => "Olketa Article (subs)",
"Remove" => "Tekaotem",
"Activate" => "Activate",
"Deactivate" => "Deactivate",
"Edit" => "Mekem senis long",
"Admin tracker" => "Admin tracker",
"List trackers" => "Listim kam olketa tracker",
"Admin trackers" => "Olketa tracker blong Admin",
"Edit this tracker" => "Mekem senis long disfala tracker",
"View this tracker items" => "Lukluk long olketa item blong disfala tracker",
"Edit tracker fields" => "Mekem senis long olketa field blong tracker",
"checkbox" => "checkbox",
"text field" => "text field",
"textarea" => "textarea",
"drop down" => "drop daon",
"user selector" => "user selector",
"group selector" => "grup selector",
"date and time" => "date an taem",
"Options (separated by commas used in dropdowns only)" => "Olketa Option (separatem wetem olketa comma baebae save iusim long olketa dropdaon nomoa)",
"Is column visible when listing tracker items?" => "Hao, colum hemi soaot taem hemi listim kam olketa item blong tracker?",
"Column links to edit/view item?" => "Olketa link blong colum fo lukluk/mekem senis long item?",
"Tracker fields" => "Olketa field blong tracker",
"isMain" => "isMain",
"Tbl vis" => "Tbl vis",
"Create/edit trackers" => "Wakem/mekem senis long olketa tracker",
"There are individual permissions set for this tracker" => "Disfala tracker hemi garem olketa individual permission wea hemi bin set",
"Show status when listing tracker items?" => "Som status taem listim kam olketa item blong?",
"Show creation date when listing tracker items?" => "Hao, taem listim kam olketa item blong tracker baebae som date taem hemi mekem?",
"Show lastModif date when listing tracker items?" => "Hao, som lastModif date taem hemi listim kam olketa item blong tracker?",
"Tracker items allow comments?" => "Hao, olketa item blong tracker hemi letem olketa toktok?",
"Tracker items allow attachments?" => "Hao, olketa item blong tracker hemi letem olketa attachment?",
"trackers" => "olketa tracker",
"created" => "mekem finis",
"items" => "olketa item",
"fields" => "olketa field",
"Admin groups" => "Olketa Admin grup",
"Add New Group" => "Adem go Niu Grup",
"Edit this group:" => "Mekem senis long grup:",
"Desc" => "Desc",
"Include" => "Include",
"List of existing groups" => "List long olketa grup wea hemi stap",
"Includes" => "Includes ",
"Permissions" => "Olketa Permission",
"assign_perms" => "assign_perms",
"Admin users" => "Olketa user blong Admin",
"Add a new user" => "Adem go wanfala niu user",
"Pass" => "Pass",
"Again" => "Again",
"Batch upload (CSV file)" => "Batch upload (CSV file)",
"Overwrite" => "Raetovam",
"Generate a password" => "Wakem wanfala paswod",
"Batch Upload Results" => "Olketa Result blong Batch Upload",
"Added users" => "Adem go olketa user",
"Rejected users" => "Olketa user wea hemi bin rejected",
"Reason" => "Reason",
"Users" => "Olketa User",
"Number of displayed rows" => "Namba long olketa row wea hemi somaot",
"Last login" => "Las login",
"assign group" => "assign grup",
"view info" => "lukluk long info",
"Assign permissions to group" => "Assignem olketa permission go long grup",
"Group Information" => "Grup Information",
"Create level" => "Mekem level",
"all permissions in level" => "evri permission insaet level",
"File gals" => "File gals",
"Image gals" => "Image gals",
"Comm" => "Comm",
"Cms" => "Cms",
"Content Templates" => "Content Templates",
"DSN" => "DSN",
"ExtWikis" => "ExtWikis",
"Live support" => "Live support",
"level" => "level",
"assgn" => "assgn",
"Assign user" => "Assign user",
"to groups" => "go long olketa grup",
"User Information" => "User Information",
"backlinks to" => "olketa backlink go long",
"No backlinks to this page" => "No eni backlink hemi go long disfala pej",
"Backups" => "Olketa backup",
"List of available backups" => "List long olketa backup wea hemi garem stap",
"Filename" => "Filenem",
"Restoring a backup" => "Restoarem wanfala backup",
"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." => "Restoarem wanfala backup baebae kliarem aot olketa data insaet long Tiki database blong iu. Olketa information insaet long backup ia nao baebae tekem ples blong olketa table blong iu.",
"Click here to confirm restoring" => "klik long hea fo konfem nao disfala restoaring ia",
"Create new backup" => "Mekem niu 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" => "Baebae save tek long taem fo mekem olketa backup. Sapos iu lukim wanfala blank screen hemi minim process ia hemi no finis gud. Sapos diswan hemi hapen den iu mas apum moa maximum script execution taem long insaet php.ini file blong iu",
"Click here to create a new backup" => "Klik long hea fo mekem wanfala niu backup",
"Upload a backup" => "Upload wanfala backup",
"Upload backup" => "Upload backup",
"Edit Post" => "Mekem senis long Post",
"view blog" => "lukluk long blog",
"list blogs" => "listim olketa blog",
"Note: if you want to use images please save the post first and you\nwill be able to edit/post images. Use the <img> snippet to include uploaded images in the textarea editor\nor use the image URL to include images using the WYSIWYG editor. " => "Note: sapos iu laek fo iusim olketa image plis sevem fastaem nao post an \nbaebae iu save mekem senis o postem go olketa image. Iusim <img> snippet fo putum go tu olketa uploaded image insaet long textarea editor\no iusim image URL fo putum go tu olketa image taem iu iusim WYSIWYG editor. ",
"Quicklinks" => "Olketa Quicklink",
"Use ...page... to separate pages in a multi-page post" => "Iusim ...pej... fo separatem olketa pej insaet long olketa multi-pej post",
"Upload image for this post" => "Uploadem image fo disfala post",
"Send trackback pings to:" => "Sendem olketa trackback ping go long:",
"(comma separated list of URIs)" => "(List long olketa URI wea comma seperatem)",
"Spellcheck" => "SekemSpeling",
"save and exit" => "sevem an exit/go aot",
"Valid" => "Valid/Stretwan",
"search category" => "search category",
"deep" => "deep",
"Objects" => "Olketa Object",
"Browsing Gallery" => "Browsing Gallery",
"edit gallery" => "mekem senis long gallery",
"rebuild thumbnails" => "mekem baek olketa thumbnail",
"upload image" => "upload image",
"list gallery" => "listim gallery",
"Sort Images by" => "Stretem olketa Image falom",
"original size" => "original size",
"rotate right" => "tanem go long right",
"rotate" => "tantane",
"popup" => "popup",
"comments" => "olketa toktok",
"Browsing Image" => "Browsing Image",
"return to gallery" => "go baek long gallery",
"edit image" => "mekem senis long image",
"prev image" => "prev image",
"next image" => "next image",
"Klick to enlarge" => "Klik fo mekem bik",
"first image" => "first image",
"smaller" => "smol lelebet moa",
"bigger" => "biklelebet moa",
"Popup window" => "Popup windo",
"popup window" => "popup windo",
"last image" => "las image",
"Image Name" => "Nem blong image",
"Move image" => "Muvum image",
"move" => "muvum",
"You can view this image in your browser using" => "Iu save lukluk long image insaet long browser blong iu sapos iu iusim",
"You can include the image in an HTML or Tiki page using" => "Iu save putum image insaet long wanfala HTML o Tiki pej sapos iu iusim",
"admin" => "admin",
"Calendars Panel" => "Olketa Kalenda Panel",
"Navigation Panel" => "Navigation Panel",
"Refresh" => "Refresh",
"Tools Calendars" => "Olketa Tools Kalenda",
"check / uncheck all" => "sekem / nosekem evriwan",
"Hide Panels" => "Haedem olketa Panel",
"Group Calendars" => "Olketa Kalenda blong Grup",
"Tiki Calendars" => "Olketa Tiki Kalenda",
"hide from display" => "haedem from somaot",
"today" => "tude",
"+1d" => "+1d",
"+7d" => "+7d",
"+1m" => "+1m",
"browse by" => "browse by",
"week" => "week",
"month" => "month",
"+" => "+",
"Edit Calendar Item" => "Mekem senis long Item blong Kalenda",
"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)." => "Sapos iu senisim selection blong kalenda, plis mekem refresh fo garem appropriate list insaet long Category, Location an olketa pipol (duim nomoa sapos hemi applicable long kalenda wea iu siusim).",
"Category" => "Category",
"or create a new category" => "o mekem wanfala niu category",
"Location" => "Location",
"or create a new location" => "o mekem wanfala niu location",
"Organized by" => "Organized by",
"comma separated usernames" => "comma hemi separatem olketa usernem",
"from the list" => "from list",
"choose" => "siusim",
"Participants" => "Olketa pipol wea tekpat",
"comma separated username:role" => "usernem:role wea comma seperatem",
"with role" => "wetem role",
"Required" => "Required",
"with roles" => "wetem olketa role",
"Chair" => "Sea/Chair",
"Optional" => "Optional",
"Start" => "Start",
"End" => "End",
"Url" => "Url",
"Tentative" => "Tentative",
"Confirmed" => "Meksua finis",
"Cancelled" => "Kanselem",
"duplicate" => "mekem semsem",
"You should first ask that a calendar is created, so you can create events attached to it." => "Iu mas ask fastaem fo meksua dat kalenda hemi mekem finis, den baebae iu save mekem olketa event an attachem go long hem.",
"Change password enforced" => "Fosim fo mas Senisim paswod",
"Old password" => "Olfala paswod",
"Again please" => "Mekem baek plis",
"change" => "senis",
"Welcome to the Tiki Chat Rooms" => "Welkam long olketa Tiki Room fo Stori",
"Please select a chat channel" => "Plis siusim wanfala channel fo stori",
"Nickname" => "Nicknem",
"enter chat room" => "go insaet long room fo stori",
"Chatroom" => "RoomfoStori",
"Active Channels" => "Olketa Channel wea Active",
"Users in this channel" => "Olketa User wea stap insaet long disfala channel",
"Browser not supported" => "Hemi no supportem browser",
"Channel Information" => "Channel Information",
"Channel" => "Channel",
"Ratio" => "Ratio",
"Use :nickname:message for private messages" => "Iusim :nicknem:mesij fo olketa private mesij",
"Use [URL|description] or [URL] for links" => "Iusim [URL|description] o [URL] fo olketa link",
"Use (:name:) for smileys" => "Iusim (:nem:) fo olketa smiley",
"PDF Settings" => "Olketa Setting blong PDF",
"Font" => "Font",
"Textheight" => "Textheight",
"Height of top Heading" => "Height blong top Heading",
"Height of mid Heading" => "Height blong mid Heading",
"Height of inner Heading" => "Height blong inner Heading",
"tbheight" => "tbheight",
"imagescale" => "imagescale",
"Filter" => "Filter",
"Select Wiki pages" => "Siusim olketa Wiki pej",
"add page" => "adem go pej",
"remove page" => "tekaotem pej",
"reset" => "setem baek",
"Create PDF" => "Mekem PDF",
"Contact us" => "Kontaktem/kasem mifala",
"Send a message to us" => "Sendem wanfala mesij kam long mifala",
"Contact us by email" => "Iu save kasem mifala long email",
"Tiki Debugger Console" => "Tiki Debugger Console",
"Close" => "Klosem",
"Current URL" => "Current URL",
"Command" => "Command",
"exec" => "exec",
"Type <code>help</code> to get list of available commands" => "Type <code>help</code> fo tekem list long olketa command wea hemi garem stap",
"Add a new site" => "Adem go wanfala niu site/ples",
"Site added" => "Site hemi adem go finis",
"The following site was added and validation by admin may be needed before appearing on the lists" => "Disfala site wea hemi adem go baebae nidim admin fo mekem stret/validation bifoa hemi save soaot long olketa list",
"Country" => "Kandre",
"Add or edit a site" => "Adem go o mekem senis long wanfala site",
"Is valid" => "Hemi stret/valid",
"Directory Administration" => "Directory Administration",
"Statistics" => "Olketa Statistic",
"invalid sites" => "olketa site wea invalid",
"valid sites" => "olketa site wea valid",
"There are" => "Hemi garem",
"categories" => "olketa category",
"Users have visited" => "Olketa User bin visitim",
"sites from the directory" => "olketa site from directory",
"Users have searched" => "Olketa User bin mekem search",
"times from the directory" => "olketa taem from the directory",
"Menu" => "Menu",
"Admin sites" => "Olketa site blong Admin",
"Admin category relationships" => "Olketa relationship blong Admin category",
"Validate links" => "Validatem/stretem olketa link",
"Settings" => "Olketa Setting",
"browse" => "browse",
"related" => "related",
"sites" => "olketa site",
"validate" => "validate/stretem",
"Admin directory categories" => "Olketa directory category blong Admin",
"Parent category" => "Parent category",
"go" => "go",
"Edit this directory category" => "Mekem senis long category blong directory",
"Add a directory category" => "Adem go wanfala category long directory",
"Children type" => "Pikinini type",
"Most visited sub-categories" => "Olketa sub-category wea hemi bin visitim staka taem finis",
"Category description" => "Description blong Category",
"Random sub-categories" => "Olketa Random sub-category",
"Maximum number of children to show" => "Maximum namba blong olketa pikinini fo som",
"Allow sites in this category" => "Letem olketa site insaet long disfala category",
"Show number of sites in this category" => "Som namba blong olketa site insaet long disfala category",
"Editor group" => "Grup blong olketa man wea save mekem senis",
"Subcategories" => "Olketa Subcategory",
"cType" => "cType",
"allow" => "letem",
"count" => "kaondem/count",
"editor" => "editor",
"relate" => "relate",
"Admin related categories" => "Olketa category wea hemi relate go long Admin",
"Add a related category" => "Adem go wanfala category wea hemi relate",
"Mutual" => "Mutual",
"Related categories" => "Olketa category wea relate",
"category" => "category",
"all" => "evriwan",
"Sites" => "Olketa Site",
"country" => "kandre",
"new sites" => "olketa niu site",
"cool sites" => "olketa cool site",
"add a site" => "adem go wanfala site",
"any" => "eni",
"in entire directory" => "insaet long ful directory",
"in current category" => "insaet disfala category",
"search" => "lukaotem",
"Sort by" => "Stretem falom",
"name (desc)" => "nem (desc)",
"name (asc)" => "nem (asc)",
"hits (desc)" => "hits (desc)",
"hits (asc)" => "hits (asc)",
"creation date (desc)" => "date taem mekem(desc)",
"creation date (asc)" => "date taem mekem (asc)",
"last updated (desc)" => "las taem hemi bin updated (desc)",
"last updated (asc)" => "las taem hemi bin updated (asc)",
"sort" => "sort",
"Added" => "Adem go",
"Last updated" => "Las taem hemi bin updated",
"Total categories" => "Total long olketa category",
"Total links" => "Total long olketa link",
"Links to validate" => "Olketa Link fo stretem/validatem",
"Searches performed" => "Olketa Search wea hemi duim",
"Total links visited" => "Total blong olketa link wea i bin visitim",
"Directory ranking" => "Directory ranking",
"Search results" => "Olketa result blong Search",
"Validate sites" => "Stretem/Validatem olketa site",
"list articles" => "listim kam olketa article",
"view articles" => " Lukluk long olketa article",
"Author Name" => "Nem blong Author",
"Review" => "Review",
"Rating" => "Rating",
"Own Image" => "Image blong iu seleva",
"Use own image" => "Iusim image blong iu seleva",
"Float text around image" => "Putum text raonem image",
"Own image size x" => "Size x blong image blong iu seleva",
"Own image size y" => "Size y blong image blong iu seleva",
"Heading" => "Heading",
"Body" => "Body",
"Use ...page... to separate pages in a multi-page article" => "Iusim ...pej... fo separatem olketa pej insaet long wanfala multi-pej article",
"Allow HTML" => "Letem HTML",
"Edit or create banners" => "Mekem senis o wakem olkata banner",
"List banners" => "Listim kam olketa banner",
"URL to link the banner" => "URL fo linkim banner",
"Client" => "Client",
"Max impressions" => "Olketa Max impression",
"create zone" => "mekem zone",
"Show the banner only between these dates" => "Som banner long olketa date ia nomoa",
"From date" => "From date",
"To date" => "Go long date",
"Use dates" => "Iusim olketa date",
"Show the banner only in this hours" => "Som banner seleva nomoa insaet long olketa disfala hours",
"to" => "go long",
"Show the banner only on" => "Som banner seleva nomoa long",
"Mon" => "Mon",
"Tue" => "Tue",
"Wed" => "Wed",
"Thu" => "Thu",
"Fri" => "Fri",
"Sat" => "Sat",
"Sun" => "Sun",
"Select ONE method for the banner" => "Siusim WANFALA wei nomoa fo banner",
"Use HTML" => "Iusim HTML",
"HTML code" => "HTML code",
"Use image" => "Iusim image",
"Image:" => "Image:",
"Current Image" => "Current Image",
"Use image generated by URL (the image will be requested at the URL for each impression)" => "Iusim image wea URL hemi wakem (fo evri impression baebae mekem wanfala request long URL fo image ia)",
"Use text" => "Iusim text",
"Text" => "Text",
"save the banner" => "sevem banner",
"Edit Blog" => "Mekem senis long Blog",
"Current heading" => "Current heading",
"There are individual permissions set for this blog" => "Disfala blog hemi garem olketa individual permission wea hemi bin set finis",
"Number of posts to show" => "Namba long olketa post fo som",
"Allow other user to post in this blog" => "Letem olketa nara user fo save mekem post go insaet long disfala blog",
"Use titles in blog posts" => "Iusim olketa title insaet long olketa blog post",
"Allow search" => "Lekem fo save lukaotem",
"Allow comments" => "Letem olketa toktok",
"Blog heading" => "Blog heading",
"Edit Style Sheet" => "Mekem senis long Style Sheet",
"Style Sheet" => "Style Sheet",
"save a custom copy" => "sevem wanfala kastom copy",
"Cancel" => "Kanselem",
"choose a stylesheet" => "siusim wanfala stylesheet",
"try" => "trae",
"display" => "somaot",
"File with names appended by -{\$user} are modifiable, others are only duplicable and be used as model." => "File wea garem olketa nem wea -{\$user} hemi appendem baebae save modifaem, olketa narafala bae save mekem semsem kaen nomoa an bae save iusim olsem model.",
"Show Plugins Help" => "Som Help blong olketa Plugin",
"Emphasis" => "Emphasis",
"for" => "fo",
"italics" => "italics",
"bold" => "bold",
"both" => "tufala evriwan",
"Lists" => "OLketa List",
"for bullet lists" => "fo olketa list wea garem bullet",
"for numbered lists" => "fo olketa list wea hemi bin givim namba",
"for definiton lists" => "blong olketa definiton list",
"Wiki References" => "Olketa Reference blong Wiki",
"JoinCapitalizedWords or use" => "Olketa JoinCapitalizedWod o ius",
"page|desc" => "pej|desc",
"for wiki references" => "fo olketa wiki reference",
"SomeName" => "SamfalaNem",
"prevents referencing" => "no letem fo mekem referencing",
"creates the editable drawing foo" => "hemi mekem disfala drawing foo wea baebae save mekem olketa senis long hem",
"External links" => "Olketa link long aotsaet",
"use square brackets for an" => "iusim olketa square bracket fo wanfala",
"external link" => "link long aotsaet",
"link_description" => "link_description",
"Multi-page pages" => "Olketa Multi-page pej",
"use ...page... to separate pages" => "iusim ...pej... fo separatem olketa pej",
"Misc" => "Misc",
"make_headings" => "make_headings",
"makes a horizontal rule" => "mekem wanfala horizontal rule",
"underlines text" => "mekem line long andanit text",
"Title bar" => "Title bar",
"creates a title bar" => "hemi mekem wanfala title bar",
"Non cacheable images" => "olketa non cacheable image",
"displays an image" => "hemi som wan image",
"height width desc link and align are optional" => "height width desc link an align olketa optional",
"Tables" => "Olekta Table",
"creates a table" => "hemi mekem wanfala table",
"displays rss feed with id=n maximum=m items" => "hemi som rss feed wetem id=n maximum=m items",
"Simple box" => "Simpol box",
"Box content" => "Box content",
"Creates a box with the data" => "Hemi mekem wanfala box wetem data",
"Dynamic content" => "Dynamic content",
"Will be replaced by the actual value of the dynamic content block with id=n" => "Baebae senisim wetem barava value blong dynamic content block wetem id=n",
"Colored text" => "Colored text",
"some text" => "samfala text",
"Will display using the indicated HTML color" => "Baebae somaot wetem disfala HTML color wea hemi talem aot kam",
"Center" => "Midol/Center",
"Will display the text centered" => "Baebae som text ia long midol/centered",
"Non parsed sections" => "Olketa section wea hemi no save parsed",
"Prevents parsing data" => "No letem fo parsing data",
"Show Text Formatting Rules" => "Som Olketa Rule blong Formatem Text",
"No description available" => "No eni description hemi garem stap",
"italic" => "italic",
"underline" => "underline",
"table" => "table",
"wiki link" => "wiki link",
"heading1" => "heading1",
"heading" => "heading",
"title bar" => "title bar",
"box" => "box",
"rss feed" => "rss feed",
"dynamic content" => "dynamic content",
"tagline" => "tagline",
"hr" => "hr",
"horizontal ruler" => "horizontal ruler",
"center text" => "putum text long midol/center",
"center" => "midol/center",
"colored text" => "colored text",
"img nc" => "img nc",
"image" => "image",
"special chars" => "olketa spesol char",
"special characters" => "olketa spesol character",
"Edit Image" => "Mekem senis long Image",
"Edit successful!" => "Senis hemi go gud!",
"The following image was successfully edited" => "Disfala image hemi bin successfully mekem senis long hem",
"Image Description" => "Image Description",
"Edit or ex/import Languages" => "Mekem senis o ex/import Langguis",
"Edit and create Languages" => "mekem senis an wakem olketa Langguis",
"Im- Export Languages" => "Im- Export Olketa Langguis",
"Edit and create languages" => "Mekem senis an wakem olketa langguis",
"Create Language" => "Mekem Langguis",
"Shortname" => "Shortnem",
"like" => "olsem",
"Longname" => "Longnem",
"Select the language to edit" => "Siusim langguis fo mekem senis long hem",
"Add a translation" => "Adem go wanfala translation",
"Edit translations" => "Mekem senis long olketa translation",
"Translate recorded" => "Translate recorded",
"Original" => "Original",
"translate" => "translate",
"reset table" => "reset table",
"previous page" => "previous pej",
"next page" => "next pej",
"Translation" => "Translation",
"Program dynamic content for block" => "Program dynamic content blong block",
"Block description: " => "Block description: ",
"Create or edit content" => "Wakem o mekem senis long content",
"You are editing block:" => "Iu mekem senis long block:",
"create new block" => "mekem niu block",
"Return to block listing" => "Go baek long block listing",
"Publishing date" => "Publishing date",
"Available content blocks" => "Olketa content block wea hemi garem stap",
"Id" => "Id",
"Publishing Date" => "Publishing Date",
"Edit question options" => "Mekem senis long olketa option blong kuestin",
"list quizzes" => "listim olketa quiz",
"quiz stats" => "olketa stats blong quiz",
"this quiz stats" => "stats blong disfala quiz",
"edit this quiz" => "mekem senis long disfala quiz",
"admin quizzes" => "olketa quiz blong admin",
"Create/edit options for question" => "Wakem/mekem senis long olketa option blong kuestin",
"points" => "olketa point",
"Admin quizzes" => "Olketa quiz blong Admin",
"Create/edit quizzes" => "Wakem/mekem senis long olketa quiz",
"There are individual permissions set for this quiz" => "Disfala quiz hemi garem olketa individual permissions wea hemi bin set fo hem",
"Quiz can be repeated" => "Baebae save mekem baek Quiz staka taem",
"Store quiz results" => "Stoarem olketa result blong quiz",
"Questions per page" => "Olketa Kuestin long wan pej",
"Quiz is time limited" => "Quiz ia hemi garem taem limit long hem",
"Maximum time" => "Maximum taem",
"quizzes" => "quizzes",
"canRepeat" => "canRepeat",
"timeLimit" => "timeLimit",
"results" => "olketa result",
"Edit quiz questions" => "Mekem senis long olketa kuestin blong quiz",
"Create/edit questions for quiz" => "Wakem/mekem senis long olketa kuestin fo quiz",
"Reuse question" => "Iusim baek kuestin",
"use" => "ius",
"maxScore" => "maxSkoa",
"From Points" => "From Olketa Point",
"Answer" => "Answer",
"Results" => "Olketa Result",
"To Points" => "Go long olketa Point",
"answer" => "answer",
"Admin structures" => "Olketa structure blong Admin",
"In parent page" => "Insaet long parent pej",
"page alias" => "pej alias",
"After page" => "Afta pej",
"create page" => "wakem pej",
"Use pre-existing page" => "Iusim pre-existing pej",
"You will remove" => "Baebae iu tekaotem",
"and its subpages from the structure, now you have two options:" => "an olketa subpej blong hem from disfala structure, distaem iu garem tufala option:",
"Remove only from structure" => "Tekaotem from structure nomoa",
"Remove from structure and remove page too" => "Tekaotem from structure an tekaotem pej tu",
"list submissions" => "list long olketa submission",
"Edit templates" => "Mekem senis long olketa template",
"Available templates" => "Olketa template wea hemi garem stap",
"Template" => "Template",
"Template listing" => "Template listing",
"Admin" => "Admin",
"Admin ephemerides" => "Olketa Admin ephemeride",
"All ephemerides" => "Evri ephemeride",
"Browse" => "Browse",
"del" => "del",
"Admin FAQ" => "Admin FAQ",
"List FAQs" => "Listim olketa FAQ",
"View FAQ" => "Lukluk FAQ",
"Edit this FAQ" => "Mekem senis long disfala FAQ",
"new question" => "niu kuestin",
"Edit FAQ questions" => "Mekem senis long olketa FAQ kuestin",
"Use a question from another FAQ" => "Iusim wan kuestin from nara FAQ",
"FAQ questions" => "Olketa FAQ kuestin",
"Suggested questions" => "Olketa Suggested kuestin",
"approve" => "approve",
"No suggested questions" => "No eni suggested kuestin",
"Create a file gallery" => "Wakem wanfala file gallery",
"Edit this file gallery:" => "Mekem senis long file gallery:",
"create new gallery" => "mekem niu gallery",
"There are individual permissions set for this file gallery" => "Disfala file gallery hemi garem olketa individual permission wea hemi bin set fo hem",
"Gallery is visible to non-admin users?" => "Hao, olketa non-admin user save lukim nomoa Gallery?",
"Listing configuration" => "Listing configuration",
"icon" => "icon",
"id" => "id",
"downloads" => "olketa download",
"Name-filename" => "Nem-filenem",
"Filename only" => "Filenem seleva nomoa",
"Max description display size" => "Max description display size",
"Max Rows per page" => "Olketa Max Row long wan pej",
"Other users can upload files to this gallery" => "Olketa narafala user save upload olketa file go long disfala gallery",
"You can access the file gallery using the following URL" => "Iu save go-go long file gallery taem iu falom disfala URL",
"Available File Galleries" => "Olketa File Gallery wea hemi garem stap",
"Actions" => "Actions",
"configure listing" => "configure listing",
"Message queue for" => "Mesij queue fo",
"back to forum" => "go baek long forum",
"Edit queued message" => "Mekem senis long queued mesij",
"topic" => "topik",
"make this a thread of" => "mekem diswan fo hemi wanfala thread long",
"None, this is a thread message" => "No eniwan, diswan hemi wanfala thread mesij",
"summary" => "summary",
"normal" => "normal",
"announce" => "announce",
"hot" => "hot",
"sticky" => "sticky",
"no feeling" => "no eni feeling",
"frown" => "frown",
"exclaim" => "exclaim",
"idea" => "idea",
"mad" => "mad",
"neutral" => "neutral",
"sad" => "sad",
"happy" => "happy",
"wink" => "wink",
"save and approve" => "sevem an approve",
"convert to topic" => "convert go long topik",
"List of messages" => "List long olketa mesij",
"message" => "mesij",
"new topic" => "niu topik",
"no summary" => "no eni summary",
"attachment" => "attachment",
"No messages queued yet" => "No eni mesij hemi queued iet",
"reject" => "reject",
"Hi {\$mail_user} has sent you this link:" => "Hi {\$mail_user} nao sendem kam disfala link:",
"Blog post:" => "Blog post:",
"at:" => "long:",
"Somebody or you tried to subscribe this email address at our site:" => "Samfala o iu hemi trae fo subscribem disfala email adres long site blong mefala:",
"To the newsletter:" => "Go long niusleta:",
"Description:" => "Description:",
"In order to confirm your subscription you must access the following URL:" => "Iu mas go-go(access) falom disfala URL fo iu confirm subscription blong iu:",
"A new message was posted to forum" => "Wanfala niu mesij hemi bin postem go long forum",
"Message" => "Mesij",
"Hi," => "Hi,",
"A new message was posted to you at {\$mail_machine}" => "Wanfala niu mesij hemi bin posted go long iu long {\$mail_machine}",
"The user" => "Disfala user",
"registered at your site" => "registered long site blong iu",
"Bye bye!" => "Bye bye!",
"This email address has been removed to the list of subscriptors of:" => "Disfala email adres hemi bin tekaotem go long list long olketa subscriptor long :",
"Newsletter:" => "Niusleta:",
"Welcome to our newsletter!" => "Welkam long niusleta blong iumi!",
"This email address has been added to the list of subscriptors of:" => "Disfala email adres hemi bin adem go long list long olketa subscriptor long:",
"You can always cancel your subscription using:" => "Iu save kanselem subscription blong iu enitaem sapos iu iusim :",
"Hi" => "Hi",
"someone from" => "wanfala from",
"requested a reminder of the password for the" => "hemi bin mekem wanfala request fo reminder long",
"since this is your registered email address we inform that the" => "bikos diswan hemi nao registered email adres blong iu, mifala laek fo talem iu dat olketa",
"password for this account is" => "paswod blong disfala account hemi",
"A new article was submitted by {\$mail_user} to {\$mail_site} at {\$mail_date|bit_short_datetime}" => "Wanfala niu article {\$mail_user} nao hemi submittim go long {\$mail_site} long {\$mail_date|bit_short_datetime}",
"You can edit the submission following this link:" => "Iu save mekem senis long submission taem iu falom disfala link:",
"Title:" => "Title:",
"Heading:" => "Heading:",
"Body:" => "Body:",
"Information:" => "Information:",
"you or someone registered this email address at" => "iu o samfala hemi registerem disfala email adres long",
"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:" => "Sapos iu laek fo iu wanfala registered user insaet long disfala site baebae iu mas falom nao disfala link fo login long first taem blong iu:",
"Enjoy the site!" => "Enjoy long site ia!",
"New blog post: {\$mail_title} by {\$mail_user} at {\$mail_date|bit_short_datetime}" => "Niu blog post: {\$mail_title} wea {\$mail_user} hemi nao putum long {\$mail_date|bit_short_datetime}",
"View the blog at:" => "Lukluk long blog wea hemi long:",
"If you don't want to receive these notifications follow this link:" => "Sapos iu no laek fo risivim olketa disfala notification ia den iu mas falom disfala link:",
"The page {\$mail_page} was changed by {\$mail_user} at {\$mail_date|bit_short_datetime}" => "Disfala pej {\$mail_page} ia {\$mail_user} nao hemi senisim long {\$mail_date|bit_short_datetime}",
"You can edit the page following this link:" => "Iu save mekem senis long disfala pej sapos iu falom go disfala link:",
"Comment:" => "Toktok:",
"Diff:" => "Diff:",
"The new page content is:" => "Niufala pej content hemi:",
"Reported messages for" => "Olketa mesij wea hemi bin ripotem",
"Reported by" => "Man wea repotem",
"Activity completed" => "Activity hemi finisim",
"Process" => "Process",
"Admin process activities" => "Olketa process activity blong Admin",
"Add or edit an activity" => "Adem go o mekem senis long activity",
"end" => "end",
"split" => "split",
"interactive" => "interactive",
"auto routed" => "auto routed",
"Add transitions" => "Adem go olketa transition",
"Add transition from:" => "Adem transition from:",
"Add transition to:" => "Adem go transition long:",
"roles" => "olketa role",
"No roles associated to this activity" => "No eni role hemi associated wetem disfala activity",
"Add role" => "Adem go role",
"add new" => "adem go niu",
"add role" => "adem go role",
"Process activities" => "Olketa Process activity",
"Int" => "Int",
"Routing" => "Routing",
"start" => "start",
"switch" => "switch",
"join" => "join",
"standalone" => "stapseleva/standalone",
"Interactive" => "Interactive",
"Automatic" => "Automatic",
"Auto routed" => "Auto routed",
"Manual" => "Manual",
"#" => "#",
"inter" => "inter",
"route" => "route",
"(no roles)" => "(no eni role)",
"No activities defined yet" => "No eni activity hemi bin defined iet",
"Process Transitions" => "Olketa Process Transition",
"List of transitions" => "List long olketa transition",
"From:" => "From:",
"Origin" => "Origin",
"No transitions defined yet" => "No eni transition hemi bin defined iet",
"Add a transition" => "Adem go wanfala transition",
"Admin instance" => "Admin instance",
"Instance" => "Instance",
"Workitems" => "Olketa Workitem",
"exception" => "exception",
"completed" => "hemi finis",
"aborted" => "aborted",
"Owner" => "Ona",
"Send all to" => "Sendem go evriwan long",
"Don't move" => "No muvum",
"Activities" => "Olketa Activity",
"Act status" => "Act status",
"run" => "run",
"Properties" => "Olketa Property",
"Property" => "Property",
"Value" => "Value",
"Add property" => "Adem go property",
"value" => "value",
"Admin processes" => "Olketa process blong Admin",
"Add or edit a process" => "Adem go o mekem sensi long process",
"This process is invalid" => "Disfala process hemi invalid/no stret",
"Process Name" => "Process Nem",
"ver:" => "ver:",
"is active?" => "hao, hemi active?",
"Or upload a process using this form" => "O iusim disfala form fo upload wanfala process",
"List of processes" => "List long olketa process",
"Inactive" => "Inactive",
"version" => "version",
"act" => "act",
"val" => "val",
"active process" => "active process",
"invalid" => "invalid",
"invalid process" => "invalid process",
"valid process" => "valid process",
"new minor" => "niu minor",
"new major" => "niu major",
"activities" => "olketa activity",
"No processes defined yet" => "No eni process hemi bin defined iet",
"Admin process roles" => "Olketa process role blong Admin",
"Add or edit a role" => "Adem go o mekem senis long role",
"Process roles" => "Olketa role blong Process",
"No roles defined yet" => "No eni role hemi bin defined iet",
"Map users to roles" => "Mapem olketa user go long olketa role",
"Roles" => "Olketa Role",
"map" => "map",
"Map groups to roles" => "Mapem go olketa grup go long olketa role",
"Operation" => "Operation",
"Warning" => "Warning",
"No roles are defined yet so no roles can be mapped" => "No eni role hemi bin defined iet so no eni role baebae save mappem",
"List of mappings" => "List long olketa mapping",
"No mappings defined yet" => "No eni mapping hemi bin defined iet",
"Admin process sources" => "Olketa process source blong Admin",
"select source" => "siusim source",
"Shared code" => "Shared code",
"cancel" => "kanselem",
"Set next user" => "Set next user",
"Get property" => "Tekem property",
"Set property" => "Set property",
"Complete" => "Finis",
"Process form" => "Process form",
"Set Next act" => "Set Next act",
"If:SetNextact" => "If:SetNextact",
"Switch construct" => "Switch construct",
"Map process roles" => "Olketa role blong Map process",
"admin processes" => "olketa process blong admin",
"admin activities" => "olketa activity blong admin",
"admin roles" => "olketa role blong admin",
"edit this process" => "mekem senis long disfala process",
"Process:" => "Process:",
"Monitor activities" => "Monitorem olketa activity",
"List of activities" => "List long olketa activity",
"proc" => "proc",
"auto" => "auto",
"int" => "int",
"routing" => "routing",
"Instances" => "Olketa Instance",
"run activity" => "run activity",
"monitor" => "monitor",
"monitor processes" => "monitorem olketa process",
"monitor activities" => "monitorem olketa activity",
"monitor instances" => "monitorem olketa instance",
"monitor workitems" => "monitorem olketa workitem",
"Monitor instances" => "Monitorem olketa instance",
"List of instances" => "List long olketa instance",
"status" => "status",
"act status" => "act status",
"running" => "running",
"No instances created yet" => "No eni instance hemi mekem iet",
"Monitor processes" => "Monitorem olketa processes",
"Invalid" => "Invalid",
"Activs" => "Activs",
"processes" => "olketa process",
"being run" => "hemi run nao ia",
"exceptions" => "olketa exception",
"Monitor workitems" => "Monitorem olketa workitem",
"List of workitems" => "List long olketa workitem",
"instance" => "instance",
"Ins" => "Ins",
"time" => "taem",
"stop" => "stop",
"activate" => "activate",
"graph" => "graph",
"export" => "export",
"User Activities" => "Olketa Activity blong User",
"process" => "process",
"user processes" => "olketa process blong user",
"user activities" => "olketa activity blong user",
"user instances" => "olketa instance blong user",
"User instances" => "Olketa instance blong User",
"Inst Status" => "Inst Status",
"exception instance" => "exception instance",
"exceptions instance" => "olketa exception instance",
"send instance" => "sendem instance",
"run instance" => "run instance",
"abort instance" => "abort instance",
"grab instance" => "grab instance",
"release instance" => "release instance",
"No instances defined yet" => "No eni instance hemi bin defined iet",
"User processes" => "User processes",
"Browsing Workitem" => "Browsing Workitem",
"Workitem information" => "Workitem information",
"Galleries" => "Olketa Gallery",
"Create a gallery" => "Mekem gallery",
"Edit this gallery:" => "Mekem senis long disfala gallery:",
"There are individual permissions set for this gallery" => "Disfala gallery hemi garem olketa seleva permissions wea hemi bin set finis",
"Images per row" => "Olketa Image long wan row",
"Thumbnails size X" => "Olketa Thumbnail wea hemi size X",
"Thumbnails size Y" => "Olketa Thumbnail wea hemi size Y",
"Available scales" => "Olketa skel wea hemi garem stap",
"No scales available" => "No eni skel hemi garem stap",
"Add scaled images size X x Y" => "Adem go olketa image wea hemi bin skelem falom size X x Y",
"Other users can upload images to this gallery" => "Olketa narafala user save upload olketa image go long disfala gallery",
"You can access the gallery using the following URL" => "Iu save go/access long gallery taem iu falom disfala URL",
"Available Galleries" => "Olketa Gallery wea hemi nomoa stap",
"Imgs" => "Imgs",
"List" => "List",
"Im- Export languages" => "Im- Olketa Export langguis",
"Select the language to Import" => "Siusim langguis fo Importem",
"import" => "import",
"Select the language to Export" => "Siusim langguis fo Exportem",
"Import pages from a PHPWiki Dump" => "Import olketa pej from wanfala PHPWiki Dump",
"Path to where the dumped files are (relative to tiki basedir with trailing slash ex: dump/)" => "Path/Rod go long ples olketa dumped file stap(hemi mas wanfala reletif blong tiki basedir an mas garem trailing slash ex: dump/)",
"Overwrite existing pages if the name is the same" => "Raetovam olketa pej wea hemi stap sapos nem blong olketa hemi semsem",
"Previously remove existing page versions" => "Hemi bin tekaotem finis olketa pej version blong wea hemi garem stap",
"ver" => "ver",
"excerpt" => "excerpt",
"result" => "result",
"locked by" => "man wea lokem",
"Save to notepad" => "Sevem go long notepad",
"First page" => "First pej",
"Previous page" => "Previous pej",
"Next page" => "Next pej",
"Last page" => "Las pej",
"pass" => "pasim",
"login" => "login",
"Last Changes" => "Olketa Lasfala Senis",
"Today" => "Tude",
"Last" => "Las",
"Weeks" => "Olketa Week",
"Search by Date" => "Lukaotem falom Date",
"Found" => "Faendem",
"LastChanges" => "LasSenis",
"Ip" => "Ip",
"hist" => "hist",
"rollback" => "rollback",
"compare" => "compare",
"diff" => "diff",
"source" => "source",
"Pages like" => "Olketa pej olsem",
"No pages found" => "No eni pej hemi faendem",
"edit new article" => "mekem senis long niu article",
"AuthorName" => "AuthorNem",
"Create banner" => "Wakem banner",
"Method" => "Wei",
"Use Dates?" => "Wat nao olketa Date taem hemi iusim?",
"Max Impressions" => "Olketa Max Impression",
"Impressions" => "Olketa Impression",
"Clicks" => "Klikim",
"create new blog" => "wakem niu blog",
"Last Modified" => "Las taem hemi bin Modified",
"Cache" => "Cache",
"Dynamic content system" => "Dynamic content system",
"Create or edit content block" => "Wakem o mekem senis long content block",
"Current ver" => "Current ver",
"Next ver" => "Next ver",
"Old vers" => "Olfala vers",
"Program" => "Program",
"Edit this FAQ:" => "Mekem senis long disfala FAQ:",
"Create New FAQ:" => "Wakem niu FAQ:",
"Users can suggest questions" => "Olketa User save talem kam olketa kuestin",
"Available FAQs" => "Olketa FAQ wea hemi garem stap",
"Listing Gallery" => "Listing Gallery",
"upload file" => "upload file",
"Edit a file using this form" => "Iusim difala form fo mekem senis long file",
"Gallery Files" => "Gallery long olketa File",
"move selected files" => "muvum olketa file wea i bin siusim",
"delete selected files" => "tekaotem olketa file wea i bin siusim",
"Move to" => "Muv go long",
"Filesize" => "Filesize",
"Dls" => "Dls",
"browse gallery" => "browse gallery",
"Gallery Images" => "Gallery long olketa Image",
"All games are from" => "Evri gem olketa kam from",
"visit the site for more games and fun" => "visitim site fo samfala moa gem an fun",
"Upload a game" => "Upload wanfala game",
"Upload a new game" => "Upload wanfala niu game",
"Flash binary (.sqf or .dcr)" => "Flash binary (.sqf or .dcr)",
"Thumbnail (if the game is foo.swf the thumbnail must be named foo.swf.gif or foo.swf.png or foo.swf.jpg)" => "Thumbnail (sapos gem ia hemi foo.swf disfala thumbnail hemi mas garem nem olsem foo.swf.gif o foo.swf.png o foo.swf.jpg)",
"Edit game" => "Mekem senis long game",
"Played" => "Played",
"times" => "olketa taem",
"If you can't see the game then you need a flash plugin for your browser" => "Sapos iu no save lukim gem baebae iu nidim wanfala flash plugin fo disfala browser blong iu",
"edit blog" => "mekem senis long blog",
"Blog Title" => "Blog Title",
"edit new submission" => "mekem senis long niu submission",
"Approve" => "Approve",
"Survey stats" => "Survey stats",
"adm" => "adm",
"Open operator console" => "Openem console blong operator",
"Open client window" => "Openem windo blong client",
"Generate HTML" => "Mekem HTML",
"Transcripts" => "Olketa Transcript",
"Support tickets" => "Olketa Support ticket",
"Online operators" => "Olketa operator wea stap Online",
"Operator" => "Operator",
"stats" => "stats",
"since" => "since",
"transcripts" => "transcripts",
"Offline operators" => "Olketa operator wea stap Offline",
"Accepted requests" => "Olketa request wea i bin accepted",
"Add an operator to the system" => "Adem wanfala operator go long system",
"Operators must be tiki users" => "Olketa Operator mas olketa tiki user nomoa",
"set as operator" => "set olsem operator",
"Chat started" => "Stori hemi stat finis",
"User:" => "User:",
"Operator:" => "Operator:",
"Request live support" => "Request live support",
"Request support" => "Request support",
"Open a support ticket instead" => "Openem wanfala support ticket instead",
"Your request is being processed" => "Request blong iu hemi processem",
"cancel request and exit" => "kanselem request an exit",
"cancel request and leave a message" => "kanselem request an livim wanfala mesij",
"Live support:Console" => "Live support:Console",
"be online" => "stap online",
"be offline" => "stap offline",
"Support requests" => "Olketa Support request",
"Requested" => "Requested",
"Accept" => "Accept",
"Join" => "Join",
"Support chat transcripts" => "Olketa transcript blong Support Stori",
"back to admin" => "go baek long admin",
"op" => "op",
"started" => "started",
"reason" => "reason",
"msgs" => "msgs",
"Transcript" => "Transcript",
"Prefs" => "Prefs",
"Import" => "Import",
"Upcoming events" => "Olketa event wea baebae kam",
"topic image" => "topik image",
"Remove old events" => "Tekaotem olketa olfala event",
"duration" => "duration",
"h" => "h",
"Add or edit event" => "Adem go o mekem senis long event",
"Duration" => "Duration",
"Mini Calendar: Preferences" => "Smol Kalenda: Olketa Preference",
"Preferences" => "Olketa Preference",
"Calendar Interval in daily view" => "Kalenda Interval insaet daily lukluk",
"Start hour for days" => "Start hour fo olketa dei",
"End hour for days" => "End hour fo olketa dei",
"Reminders" => "Olketa Reminder",
"no reminders" => "no eni reminder",
"Import CSV file" => "Import CSV file",
"Admin topics" => "Olketa topik blong Admin",
"Or enter path or URL" => "O enter path/rod o URL",
"add topic" => "adem topik",
"My Tiki" => "Tiki blong me",
"My pages" => "Olketa pej blong me",
"My galleries" => "Olkea gallery blong me",
"My items" => "Olketa item blong me",
"My messages" => "Olketa mesij blong me",
"My tasks" => "Olketa task blong me",
"My blogs" => "Olketa blog blong me",
"User pages" => "Olketa pej blong User",
"User Galleries" => "Olketa Gallery blong User",
"Assigned items" => "Olketa item wea i bin assigned",
"at tracker" => "long tracker",
"Unread Messages" => "Mesijs wea no ridim iet",
"Tasks" => "Olketa Task",
"User Blogs" => "Olketa Blog blong User",
"MyTiki" => "TikiBlongMi",
"Bookmarks" => "Olketa Bookmark",
"Modules" => "Olketa Module",
"Notepad" => "Notepad",
"MyFiles" => "FileBlongMi",
"My watches" => "Watches blong mi",
"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." => "Taggio long iu fo subscription. Baebae iu kolsap risivim wanfala email fo confirm subscription blong iu. Baebae mas confirm subscription fastaem bifoa eni niusleta hemi save sendem kam long iu.",
"Your email address was removed from the list of subscriptors." => "Email adres blong iu hemi bin tekaotem from disfala list long olketa subscriptor.",
"Subscription confirmed!" => "Subscription confirmed!",
"Subscribe to newsletter" => "Subscribe go long niusleta",
"Email:" => "Email:",
"Subscribe" => "Subscribe",
"Select news group" => " nius grup",
"Back to servers" => "Go baek long olketa server",
"Msgs" => "Msgs",
"Newss from" => "Newss from",
"Back to groups" => "Go baek long olketa grup",
"Save position" => "Sevem position",
"Reading article from" => "Ridim article from",
"Back to list of articles" => "Go baek long list long olketa article",
"First" => "First",
"Newsgroup" => "Niusgrup",
"Configure news servers" => "Configure olketa nius server",
"Select a news server to browse" => "Siusim wanfala nius server fo browse",
"server" => "server",
"Add or edit a news server" => "Adem go o mekem senis long wanfala nius server",
"News server" => "Nius server",
"port" => "port",
"Notes" => "Olketa Note",
"quota" => "quota",
"Write a note" => "Raetem wanfala note",
"No notes yet" => "No eni note iet",
"merge selected notes into" => "olketa note wea i bin siusim, merge go insaet long",
"Reading note:" => "Ridim note:",
"List notes" => "Listim olketa note",
"Write note" => "Raetem note",
"wiki create" => "wiki mekem",
"wiki overwrite" => "wiki overwrite",
"Assign permissions to " => "Assign olketa permission go long ",
"back" => "baek",
"Current permissions for this object" => "Olketa current permission fo disfala object",
"group" => "grup",
"permission" => "permission",
"No individual permissions global permissions apply" => "No individual permissions global permissions apply",
"Assign permissions to this object" => "Assign olketa permission go long disfala object",
"to group" => "go long grup",
"Published" => "Published",
"Votes" => "Votes",
"Orphan pages" => "Olketa Orphan pej",
"Last mod" => "Las mod",
"Last author" => "Las author",
"Last ver" => "Las ver",
"Com" => "Com",
"Vers" => "Vers",
"rename" => "rename",
"unlock" => "no loka",
"lock" => "loka",
"history" => "history",
"similar" => "semsem",
"undo" => "undo",
"slides" => "slides",
"discuss" => "discuss",
"wiki help" => "wiki help",
"add comment" => "adem go toktok",
"1 comment" => "1 toktok",
"attach file" => "attach file",
"1 file attached" => "1 file hemi attached",
"{\$atts_cnt} files attached" => "{\$atts_cnt} files hemi attached",
"Comparing versions" => "Comparing olketa version",
"Actual_version" => "Actual_version",
"Version" => "Version",
"Diff to version" => "Diff to version",
"Assign permissions to page" => "Assign olketa pamison go long pej",
"Current permissions for this page" => "Olketa disfala pamison fo disfala pej",
"Send email notifications when this page changes to" => "Sendem olketa email notification taem disfala pej hemi senis go long",
"add email" => "adem go email",
"Notifications" => "Olketa Notification",
"Pick your avatar" => "Pick wanfala avatar fo iu",
"Your current avatar" => "Disfala avatar blong iu",
"Pick avatar from the library" => "Pick wanfala avatar from disfala laebreri",
"Hide all" => "Haedem evriwan",
"Show all" => "Som evriwan",
"random" => "random",
"Upload your own avatar" => "Upload avatar blong iu seleva",
"vote" => "vote",
"Vote poll" => "Vote poll",
"Other Polls" => "Olketa nara Poll",
"By:" => "By:",
"on:" => "on:",
"reads" => "ridim",
"posted by" => "man wea postem",
"Viewing blog post" => "Lukluk long blog post",
"Permalink" => "Permalink",
"referenced by" => "referenced by",
"references" => "olketa reference",
"view comments" => "lukim olketa toktok",
"print" => "print",
"email this post" => "email go disfala post",
"Print multiple pages" => "Print staka pej",
"Print Wiki pages" => "Print Olketa Wiki pej",
"clear" => "kliar",
"Quiz result stats" => "Quiz result stats",
"Quiz" => "Quiz",
"Time" => "Taem",
"User answers" => "Olketa answer blong User",
"Stats for quizzes" => "Stats fo olketa quiz",
"taken" => "tekem",
"Av score" => "Av skoa",
"Av time" => "Av taem",
"Stats for quiz" => "Stats fo quiz",
"clear stats" => "kliarem stats",
"score" => "skoa",
"details" => "olketa detail",
"Stats for this quiz Questions " => "Stats fo disfala quiz Kuestin ",
"Average" => "Average",
"Top 10" => "Top 10",
"Top 20" => "Top 20",
"Top 50" => "Top 50",
"Top 100" => "Top 100",
"Print" => "Print",
"Received articles" => "Olketa article wea i bin risivim",
"Edit received article" => "Mekem senis long article wea i bin risivim",
"Use Image" => "Iusim Image",
"Image x size" => "Image x size",
"Image y size" => "Image y size",
"Image name" => "Nem blong Image",
"Image size" => "Size blong Image",
"Accept Article" => "Accept Article",
"Received Articles" => "Olketa Article wea i bin risivim",
"Site" => "Site",
"accept" => "accept",
"Received pages" => "Olketa pej wea i bin risivim",
"Edit received page" => "Mekem senis long pej wea i bin risivim",
"Referer stats" => "Referer stats",
"last" => "las",
"Register as a new user" => "Register olsem wanfala niu user",
"register" => "register",
"Your registration code:" => "Registration code blong iu:",
"Passcode to register (not your user password)" => "Passcode fo register (hemi no user paswod blong iu)",
"Registration code" => "Registration code",
"I forgot my password" => "Mi fogetem paswod blong mi",
"send me my password" => "sendem kam paswod blong mi",
"Return to Homepage" => "Gobaek long Hompej",
"Remove page" => "Tekaotem pej",
"You are about to remove the page" => "Iu baebae kolsap tekaotem disfala pej",
"permanently" => "permanently",
"Remove all versions of this page" => "Tekaotem olketa evri version long disfala pej",
"Rename page" => "Givim nara nem long pej",
"New name" => "Niu nem",
"Rollback page" => "Rollback pej",
"to_version" => "to_version",
"searched" => "searched",
"Search in" => "Lukaotem long insaet",
"galleries" => "olketa gallery",
"images" => "olketa image",
"files" => "olketa file",
"forums" => "olketa forum",
"faqs" => "olketa faq",
"blogs" => "olketa blog",
"blog posts" => "olketa post blong blog",
"articles" => "olketa article",
"No pages matched the search criteria" => "No eni pej hemi semsem olsem disfalasearch criteria",
"Send blog post" => "Sendem go blog post",
"A link to this post was sent to the following addresses:" => "Wanfala link go long disfala post hemi bin sendem finis go long olketa adres ia:",
"Send post to this addresses" => "Sendem go post long olketa adres",
"List of email addresses separated by commas" => "List long olketa email adres hemi stap separate wetem olketa comma",
"Send newsletters" => "Sendem olketa niusleta",
"The newsletter was sent to {\$sent} email addresses" => "Niusleta hemi bin sendem go long {\$sent} olketa email adres ia",
"This newsletter will be sent to {\$subscribers} email addresses." => "Disfala niusleta baebae sendem go long {\$subscribers} olketa email adres ia.",
"Prepare a newsletter to be sent" => "Preparem wanfala niusleta fo baebae sendem go",
"Send Newsletters" => "Sendem olketa Niusleta",
"Sent editions" => "Olketa edition wea i bin sendem",
"sent" => "sendem finis",
"Send objects" => "Sendem olketa object",
"Transmission results" => "Olketa result blong Transmission",
"Send objects to this site" => "Sendem olketa object go long disfala site",
"site" => "site",
"path" => "path/rod",
"password" => "paswod",
"Send Wiki pages" => "Sendem olketa Wiki pej",
"Send Articles" => "Sendem olketa Article",
"add article" => "adem go article",
"Tiki Shoutbox" => "Tiki Singaotbox",
"Post or edit a message" => "Postem o mekem senis long wanfala mesij",
"with checked" => "wetem checked",
"ok" => "okei",
"Usage chart" => "Chart wea som ius",
"CMS" => "CMS",
"Site Stats" => "Site Stats",
"Started" => "Started",
"Days online" => "Olketa Dei taem online",
"Total pageviews" => "Total blong olketa pejview",
"Average pageviews per day" => "Average long olketa pejview long wan day",
"Best day" => "Bes dei",
"pvs" => "pvs",
"Worst day" => "Wos dei",
"Show chart for the last " => "Som chart long las ",
"days (0=all)" => "days (0=all)",
"Wiki Stats" => "Wiki Stats",
"Wiki pages" => "Olketa Wiki pej",
"Size of Wiki pages" => "Size blong olketa Wiki pej",
"Average page length" => "Average lenght blong pej",
"Average versions per page" => "Average blong olketa version long wan pej",
"Visits to wiki pages" => "Olketa Visit go long olketa wiki pej",
"Orphan pages" => "Olketa Orphan pej",
"Average links per page" => "Average blong olketa link long wan pej",
"Image galleries Stats" => "Image gallery Stats",
"Average images per gallery" => "Average blong olketa image long wan gallery",
"Total size of images" => "Total size blong olketa image",
"Average image size" => "Average blong image size",
"bytes" => "bytes",
"Visits to image galleries" => "Olketa Visit go long olketa image gallery",
"File galleries Stats" => "File gallery Stats",
"Average files per gallery" => "Average blong olketa file long wan gallery",
"Total size of files" => "Total size blong olketa file",
"Average file size" => "Average blong file size",
"Mb" => "Mb",
"Visits to file galleries" => "Olketa visit go long file olketa gallery",
"CMS Stats" => "CMS Stats",
"Total reads" => "Total reads",
"Average reads per article" => "Average reads long wan article",
"Total articles size" => "Total long olketa article size",
"Average article size" => "Average article size",
"Forum Stats" => "Forum Stats",
"Total topics" => "Total topik",
"Average topics per forums" => "Average blong olketa topik long olketa forum",
"Total threads" => "Total long olketa thread",
"Average threads per topic" => "Average blong olketa thread long wan topik",
"Visits to forums" => "Olketa Visit go long olketa forum",
"Blog Stats" => "Blog Stats",
"Weblogs" => "Olketa Weblog",
"Total posts" => "Total long olketa post",
"Total size of blog posts" => "Total size long olketa blog post",
"Average posts size" => "Average blong olketa post size",
"Visits to weblogs" => "Olketa Visit go long olketa weblog",
"Poll Stats" => "Poll Stats",
"Total votes" => "Total long olketa vote",
"Average votes per poll" => " Average blong olketa vote long wan poll",
"Faq Stats" => "Faq Stats",
"Total questions" => "Total long olketa kuestin",
"Average questions per FAQ" => "Average blong olketa kuestin long wan FAQ",
"User Stats" => "User Stats",
"User bookmarks" => "Olketa bookmark blong User",
"Average bookmarks per user" => "Average blong olketa bookmark long wan user",
"Quiz Stats" => "Quiz Stats",
"Average questions per quiz" => "Average blong olketa kuestin long wan quiz",
"Quizzes taken" => "Olketa Quizze wea i bin tekem",
"Average quiz score" => "Average quiz skoa",
"Average time per quiz" => "Average taem long wan quiz",
"Stats for surveys" => "Stats fo olketa surveys",
"Last taken" => "Taem hemi las tekem",
"Stats for survey" => "Stats fo survey",
"Stats for this survey Questions " => "Stats fo disfala survey Kuestin ",
"Time Left" => "Taem wea hemi stap iet",
"send answers" => "sendem olketa answer",
"Result" => "Result",
"Theme Control Center: categories" => "Theme Control Center: olketa category",
"Theme is selected as follows" => "Theme hemi siusim nao hem ia",
"If a theme is assigned to the individual object that theme is used." => "Sapos wanfala theme hemi bin assignem go long wanfala object seleva bae datfala theme nao bae hemi iusim.",
"If not then if a theme is assigned to the object's category that theme is used" => "Sapos nomoa den disfala theme wea i bin assignem go long category blong disfala object ia nao bae hemi iusim",
"If not then a theme for the section is used" => "Sapos nomoa den baebae wanfala theme fo disfala section nao bae hemi iusim",
"If none of the above was selected the user theme is used" => "Sapos no siusim eniwan from olketa long ontop ia baebae user theme nao bae hemi iusim",
"Finally if the user didn't select a theme the default theme is used" => "Okei sapos disfala user hemi no bin siusim wanfala theme baebae default theme ia nao bae hemi iusim",
"Control by Object" => "Controlem wetem Object",
"Control by Sections" => "Controlem wetem olketa Section",
"Assign themes to categories" => "Assignem go olketa theme go long olketa category",
"Assigned categories" => "Olketa Assigned category",
"theme" => "theme",
"Theme Control Center: Objects" => "Theme Control Center: Olketa Object",
"Control by category" => "Controlem wetem category",
"Assign themes to objects" => "Assignem go olketa theme go long olketa object",
"Object" => "Object",
"Assigned objects" => "Olketa Assigned object",
"Theme Control Center: sections" => "Theme Control Center: olketa section",
"Control by Categories" => "Controlem wetem olketa Category",
"Assign themes to sections" => "Assignem go olketa theme go long olkea section",
"Assigned sections" => "Olketa Assigned section",
"This is" => "Diswan hemi",
"by the" => "by the",
"debug" => "debug",
"Upload File" => "Upload File",
"Browse gallery" => "Browse gallery",
"File Title" => "File Title",
"File Description" => "File Description",
"Now enter the file URL" => "Distaem enterem go disfala file URL",
" or upload a local file from your disk" => " o uploadem wanfala lokol file from disk blong iu",
"Batch upload" => "Batch upload",
"Errors detected" => "Olketa Error hemi bin detectem",
"The following file was successfully uploaded" => "file hemi successfully uploaded",
"You can download this file using" => "You can download this file using",
"You can include the file in an HTML/Tiki page using" => "Iu save putum go disfala file insaet long wanfala HTML/Tiki pej sapos iu iusim ",
"You have to create a gallery first!" => "Iu mas wakem wanfala gallery fastaem!",
"use filename" => "iusim filenem",
"Now enter the image URL" => "Distaem givim go nao image URL",
" or upload a local image from your disk" => " o uploadem wanfalaa lokol image from disk blong iu",
"Upload from disk" => "Uploadem from disk",
"Thumbnail (optional, overrides automatic thumbnail generation)" => "Thumbnail (optional, overrides automatic thumbnail generation)",
"Upload successful!" => "Upload hemi successful!",
"The following image was successfully uploaded" => "Upload hemi successful fo datfala image",
"Thumbnail" => "Thumbnail",
"You can include the image in an HTML/Tiki page using" => "Iu save putum go image insaet wanfala HTML/Tiki pej sapos iu iusim",
"Restore defaults" => "Olketa default wea i bin restore",
"User assigned modules" => "Olketa module wea i bin assign go long User",
"move to right column" => "muvum go long right column",
"unassign" => "unassign",
"move to left column" => "muvum go long left column",
"Assign module" => "Assign module",
"Module" => "Module",
"Column" => "Column",
"Current folder" => "Disfala folder",
"Folders" => "Olketa Folder",
"remove folder" => "tekaotem folder",
"remove bookmark" => "tekaotem bookmark",
"refresh cache" => "refresh cache",
"Admin folders and bookmarks" => "Olketa Admin folder an bookmark",
"Add or edit folder" => "Adem go o mekem senis long folder",
"Add or edit a URL" => "Adem go o mekem senis long wanfala URL",
"Real Name" => "Barava Nem",
"Avatar" => "Avatar",
"Homepage" => "Hompej",
"Send me a message" => "Sendem kam long mi wanfala mesij",
"All tasks" => "Evri task",
"mark as done" => "makem olsem hemi finis",
"open tasks" => "Olketa open task",
"priority" => "priority",
"No tasks entered" => "No eni task hemi bin enterem",
"Add or edit a task" => "Adem go o mekem senis long wanfala task",
"Start date" => "Start date",
"Completed" => "Finis",
"Percentage completed" => "Percentage wea finis",
"Watches" => "Olketa Watches",
"May need to refresh twice to see changes" => "Baebae nid fo refresh tutaem fo lukim olketa senis",
"Add top level bookmarks to menu" => "Adem go olketa top level bookmark go long menu",
"delete selected" => "delete selected",
"Pos" => "Pos",
"Mode" => "Mode",
"replace window" => "senisim baek windo",
"User_versions_for" => "User_versions_for",
"Read More" => "Ridim go-go Moa",
"Banner stats" => "Banner stats",
"Create new banner" => "Mekem niu banner",
"Banner Information" => "Banner Information",
"Click ratio" => "Klik ratio",
"Hours" => "Hours",
"Weekdays" => "Olketa Wikdei",
"mon" => "mon",
"tue" => "tue",
"wed" => "wed",
"thu" => "thu",
"fri" => "fri",
"sat" => "sat",
"sun" => "sun",
"Banner raw data" => "Banner raw data",
"Created by" => "Created by",
" on " => " on ",
"Activity=" => "Activity=",
"RSS feed" => "RSS feed",
"Edit blog" => "Mekem senis long blog",
"monitor this blog" => "monitorim disfala blog",
"stop monitoring this blog" => "stop fo monitoriim disfala blog",
"Find:" => "Faendem:",
"Sort posts by:" => "Sortem kam olkeat post falom:",
"read more" => "ridim go-go moa",
"pages" => "olketa pej",
"Trackback pings" => "Olketa Trackback ping",
"URI" => "URI",
"Blog name" => "Blog nem",
"Cached" => "Cached",
"This is a cached version of the page." => "Disfala hemi wanfala cached version long disfala pej.",
"Click here to view the Google cache of the page instead." => "Klik long hea fo lukluk long Google cache long disfala pej.",
"viewed" => "viewed",
"edit items" => "mekem senis long olketa item",
"list charts" => "listim olketa chart",
"last chart" => "las chart",
"previous chart" => "previous chart",
"Chart created" => "Chart hemi bin mekem finis",
"next chart" => "nexes 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" => "Nexes chart baebae hemi wakem long",
"View or vote items not listed in the chart" => "Lukim o votem go olketa item wea i no stap long list insaet long chart",
"Select something to vote on" => "Susim samting fo vote long hem",
"Item information" => "Item information",
"Chart" => "Chart",
"Item" => "Item",
"Permanency" => "Permanency",
"Previous" => "Previous",
"Dif" => "Dif",
"Best Position" => "Bes Position",
"Vote this item" => "Votem disfala item",
"Highest" => "Highest",
"FAQ Questions" => "Olketa FAQ Kuestin",
"FAQ Answers" => "Olketa FAQ Answer",
"Q" => "Q",
"A" => "A",
"Show suggested questions/suggest a question" => "Som olketa suggested kuestin/suggestem wanfala kuestin",
"Hide suggested questions" => "Haedem olketa suggested kuestin",
"Tiki forums" => "Olketa Tiki forum",
"Forum List" => "Forum List",
"Edit Forum" => "Mekem senis long Forum",
"monitor this forum" => "monitorim disfala forum",
"stop monitoring this forum" => "stop fo monitorim disfala forum",
"You have" => "Iu garem",
" unread private messages" => " no ridim olketa private mesij",
"Your message has been queued for approval, the message will be posted after\na moderator approves it." => "Mesij blong iu hemi putim lon queue fo weitem approval, baebe mesij ia hemi postem afta\na moderator hemi approvem.",
"You have to enter a title and text" => "Iu mas givim go title an text",
"Summary" => "Summary",
"Attach file" => "Attachem file",
"moderator actions" => "olketa moderator action",
"move selected topics" => "muvum olketa selected topik",
"unlock selected topics" => "no lokam olketa selected topik",
"lock selected topics" => "lokam olketa selected topik",
"delete selected topics" => "tekaotem olketa selected topik",
"merge" => "merge",
"merge selected topics" => "joenem go olketa selected topik",
"reported messages:" => "olketa mesij wea hemi bin ripotem:",
"queued messages:" => "olketa queued mesij:",
"Merge into topic" => "Joenem go insaet long topik",
"mot" => "mot",
"replies" => "olkea reply",
"pts" => "pts",
"No topics yet" => "No eni topik iet",
"Show posts" => "Som olketa post",
"Last hour" => "Las hour",
"Last 24 hours" => "Las 24 hours",
"Last 48 hours" => "Las 48 hours",
"Jump to forum" => "Jam go long forum",
"prev topic" => "prev topik",
"next topic" => "nex topik",
"stars" => "olketa staa",
"monitor this topic" => "monitoriim disfala topik",
"stop monitoring this topic" => "stop fo monitorim disfala topik",
"private message" => "private mesij",
"send email to user" => "sendem email go long user",
"Moderator actions" => "Olketa Moderator action",
"Move to topic:" => "Muv go long topik:",
"reported:" => "ripotem:",
"queued:" => "queued:",
"this post was reported" => "disfala post hemi bin ripotem",
"report this post" => "ripotem disfala post",
"user online" => "user hemi online",
"user offline" => "user hemi offline",
"Tracker" => "Tracker",
"Insert new item" => "Insaetem go niu item",
"Tracker Items" => "Olketa Tracker Item",
"Filters" => "Olketa Filter",
"checked" => "sekem",
"unchecked" => "nosekem",
"lastModif" => "lastModif",
"Editing tracker item" => "Mekem senis long tracker item",
"Edit item" => "Mekem senis long item",
"View item" => "Lukluk long item",
"Add a comment" => "Adem go wanfala toktok",
"Attach a file to this item" => "Attachem wanfala file go long disfala item",
"No attachments for this item" => "No eni attachment fo disfala item",
"settings" => "olketa setting",
"mailbox" => "mailbox",
"compose" => "compose",
"Contact" => "Kontak",
"contacts" => "olketa kontak",
"Messages per page" => "Olketa mesij long wan pej",
"pop" => "pop",
"View All" => "Lukluk long evriwan",
"Msg" => "Msg",
"Mark as Flagged" => "Makem olsem Flagged",
"sender" => "man wea sendem",
"back to mailbox" => "gobaek long mailbox",
"full headers" => "ful header",
"normal headers" => "olketa normal header",
"reply all" => "raetbaek long evriwan",
"forward" => "forward",
"Create/edit contacts" => "Wakem/mekem senis long olketa kontak",
"First Name" => "First Nem",
"Contacts" => "Olketa Kontak",
"select from address book" => "siusim from adres buka",
"cc" => "cc",
"bcc" => "bcc",
"Use HTML mail" => "Iusim HTML mail",
"The following addresses are not in your address book" => "Olketa adres ia hemi no stap insaet long adres buka blong iu",
"Last Name" => "Las Nem",
"add contacts" => "adem go olketa kontak",
"Attachment 1" => "Attachment 1",
"Attachment 2" => "Attachment 2",
"Attachment 3" => "Attachment 3",
"done" => "finis",
"Address book" => "Adres buka",
"Mail notifications" => "Olketa Mail notification",
"Mail-in" => "Mail-in",
"Content templates" => "Olketa Content template",
"Wiki Import dump" => "Wiki Import dump",
"phpinfo" => "phpinfo",
"External wikis" => "Olketa wiki long aotsaet",
"Syntax highlighting" => "Syntax highlighting",
"MyTiki (click!)" => "TikiBlongMI (klik!)",
"My files" => "Olketa file blong mi",
"User menu" => "User menu",
"Mini calendar" => "Smol kalenda",
"User activities" => "Olketa User activity",
"System gallery" => "System gallery",
"Submit article" => "Givim go article",
"View submissions" => "Lukluk long olketa submission",
"Edit article" => "Mekem senis long article",
"Send articles" => "Sendem olketa article",
"List blogs" => "Listim olketa blog",
"Admin posts" => "Olketa Admin post",
"List forums" => "Listim olketa forum",
"Admin forums" => "Olketa Admin forum",
"Submit a new link" => "Givim go wanfala niu link",
"Admin directory" => "Admin directory",
"Admin FAQs" => "Admin FAQs",
"Admin quiz" => "Admin quiz",
"Admin (click!)" => "Admin (klik!)",
"Theme control" => "Theme control",
"Edit languages" => "Mekem senis long langguis",
"Click here to manage your personal menu" => "Klik long hea fo manage olketa menu blong iu seleva",
"Recently visited pages" => "Olketa pej wea i bin visitim distaem nomoa",
"Received objects" => "Olketa object wea i bin risiivim",
"pages:" => "Olketa pej:",
"Last Sites" => "Olketa Las Site",
"Directory Stats" => "Directory Stats",
"Sites to validate" => "Olketa Site fo validatem/sekem",
"Searches" => "Searches",
"Visited links" => "Olketa link wea i bin visitim finis",
"Top Sites" => "Olketa Top Site",
"Most commented forums" => "Olketa forum wea i garem staka toktok fogud",
"Google Search" => "Google Search",
"Last blog posts" => "Olketa las blog post",
"Last Created blogs" => "Olketa lasfala blog wea i bin mekem",
"Last Created FAQs" => "Olketa lasfala FAQs wea i bin mekem",
"Last Created Quizzes" => "Olketa lasfala Quiz wea i bin mekem",
"Last modified file galleries" => "Olketa lasfala file gallery wea i bin modified",
"Last Files" => "Olketa Las File",
"Last galleries" => "Olketa Las gallery",
"Last Modified Items" => "Olketa Las Modified Item",
"Last Modified blogs" => "Olketa Las Modified blog",
"Last submissions" => "Olketa Las submission",
"Last Items" => "Olketa Las Item",
"Online users" => "Olketa user wea stap Online",
"We have" => "Iumi garem",
"online users" => "olketa user wea stap online",
"logged as" => "logged olsem",
"Logout" => "Logout",
"Remember me" => "Rimembarem mi",
"I forgot my pass" => "Mi fogetem pass blong mi",
"standard" => "standard",
"secure" => "secure",
"stay in ssl mode" => "stap insaet long ssl mode",
"Tiki Logo" => "Tiki Logo",
"new messages" => "olketa niu mesij",
"new message" => "niu mesij",
"You have 0 new messages" => "Iu garem 0 niu mesij",
"Waiting Submissions" => "Olketa Submission wea hemi weit",
"submissions waiting to be examined" => "olketa submission wea hemi weit fo baebae examinem",
"Old articles" => "Olketa olfala article",
"Quick edit a Wiki page" => "Kuik mekem senis long wanfala Wiki pej",
"Random pages" => "Olketa Random pej",
"in:" => "insaet:",
"Entire Site" => "Ful Site ia nao",
"Image Gals" => "Olketa Image Gals",
"Blog Posts" => "Olketa Blog Post",
"Search Wiki pageName" => "Search Wiki pejNem",
"Since your last visit" => "Long las taem iu bin visit kam",
"Since your last visit on" => "Long las taem iu bin visit kam long",
"new images" => "olketa niu image",
"wiki pages changed" => "olketa wiki pej wea i bin senis finis ",
"new files" => "niu file",
"new comments" => "niu toktok",
"new users" => "olketa niu user",
"Most Active blogs" => "Olketa blog wea Active tumas",
"Top File Galleries" => "Olketa Top File Gallery",
"Top Files" => "Olketa Top File",
"Top games" => "Olketa Top game",
"Top Images" => "Olketa Top Image",
"Top pages" => "Olketa Top pej",
"Top Quizzes" => "Olketa Top Quiz",
"Top Visited FAQs" => "Olketa Top FAO wea i bi Visitim",
"User tasks" => "Olketa task blong User",
"Whats related" => "Wat nao hemi relate",
"online user" => "user wea stap online",
"Send a message to" => "Sendem wafala mesij go long",
"Send message" => "Sendem mesij",
"More info about" => "Moa info abaot",
"idle" => "idle",
"page generated in" => "pej ia hemi wakem insaet",
"backlinks" => "olketa backlink",
"create pdf" => "mekem pdf",
"pdf" => "pdf",
"monitor this page" => "monitorem disfala pej",
"stop monitoring this page" => "stop fo monitorem disfala pej",
"last modification" => "las modification",
"To edit the copyright notices" => "Fo mekem senis long olketa copyright notice",
"click here" => "klik long hea",
"The content on this page is licensed under the terms of the" => "Olketa content long disfala pej hemi bin licenses andanit long olketa term blong",
"The original document is available at" => "Original document ia hemi stap long",
"This page is being edited by" => "pej ia disfala nao hemi mekem senis long hem",
"Proceed at your own peril" => "Gohed long peril blong iu seleva",
"The SandBox is a page where you can practice your editing skills, use the preview feature to preview the appearance of the page, no versions are stored for this page." => "Disfala SandBox hemi wanfala pej wea iu save practicem olketa skill blong iu long hao fo mekem senis,iusim disfala preview feature fo lukim fastaem lukluk blong disfala pej, no eni version hemi bin stoarem fo disfala pej.",
"Copyright" => "Copyright",
"Year:" => "Year:",
"Authors:" => "Olketa Author:",
"Import page" => "Importem pej",
"export all versions" => "exportem evri version",
"Upload picture" => "Uploadem image",
"License" => "License",
"Important" => "Important",
"Minor" => "Minor",
"cancel edit" => "kanselem nao disfala senis ",
"home" => "hom",
"chat" => "stori",
"contact us" => "kontaktem kam mifala",
"games" => "olketa game",
"calendar" => "kalenda",
"last changes" => "olketa lasfala senis",
"dump" => "dump",
"rankings" => "olketa ranking",
"list pages" => "listim olketa pej",
"orphan pages" => "olketa orphan pej",
"sandbox" => "sandbox",
"received pages" => "olketa pej wea i bin recivim",
"structures" => "olketa structure",
"Articles Home" => "Hom blong Olketa Article",
"Create/Edit Blog" => "Wakem/Mekem senis long Blog",
"Browse Directory" => "Browse Directory",
"List Quizzes" => "Listim olketa Quiz",
"List Trackers" => "Listim olketa Tracker",
"List Surveys" => "Listim olketa Survey",
"debugger console" => "debugger console",
"User Preferences" => "Olketa User Preference",
"Is email public? (uses scrambling to prevent spam)" => "Hao, email ia hemi public? (sapos olsem iusim scrambling fo preventem spam)",
"Pick user Avatar" => "Pikim wanfala user Avatar",
"Number of visited pages to remember" => "Namba fo remembam long olketa pej wea i bin visitem finis",
"Your personal Wiki page" => "Wiki pej blong iuseleva",
"UTC" => "UTC",
"Local" => "Lokol",
"User information" => "User information",
"private" => "private",
"public" => "public",
"Use dbl click to edit pages" => "Iusim dbl click fo mekem senis long olketa pej",
"Change your email" => "Senisim email blong iu",
"Change your password" => "Senisim passwod blong iu",
"Configure this page" => "Configurem disfala pej",
"Allow messages from other users" => "Letem olketa mesij from olketa nara user",
"Send me an email for messages with priority equal or greater than" => "Sendem kam wanfala email fo olketa mesij wea priority blong olketa hemi equal long o hemi bik winin",
"Tasks per page" => "Olketa task long wan pej",
"My pages" => "Olketa pej blong mi",
"User registration and login" => "User registration an login",
"Authentication method" => "Authentication wei",
"Just Tiki" => "Tiki seleva",
"Web Server" => "Web Server",
"Tiki and PEAR::Auth" => "Tiki an PEAR::Auth",
"Tiki and HTTP Auth" => "Tiki an HTTP Auth",
"Use WebServer authentication for Tiki" => "Iusim WebServer authentication fo Tiki",
"Users can register" => "Olketa user save register",
"Request passcode to register" => "Requestem passcode fo register",
"Prevent automatic/robot registration" => "No letem automatic/robot registration",
"Validate users by email" => "Iusim email fo validatem olketa user",
"Remind passwords by email" => "Fo remembarem paswod iusim email",
"Reg users can change theme" => "Olketa reg user save senisim theme",
"Reg users can change language" => "Olketa reg user save senisim langguis",
"Store plaintext passwords" => "Stoarem olkta plaintext paswod",
"Use challenge/response authentication" => "Iusim challenge/response authentication",
"Force to use chars and nums in passwords" => "Fosim fo iusim olketa char an nums insaet long olketa paswod",
"Minimum password length" => "Minimum paswod length",
"Password invalid after days" => "Paswod baebae hemi useless afta samfala dei",
"Require HTTP Basic authentication" => "Require HTTP Basic authentication",
"Allow secure (https) login" => "Letem hem secure (https) login",
"Require secure (https) login" => "Require secure (https) login",
"HTTP server name" => "HTTP server nem",
"HTTP port" => "HTTP port",
"HTTP URL prefix" => "HTTP URL prefix",
"HTTPS server name" => "HTTPS server nem",
"HTTPS port" => "HTTPS port",
"HTTPS URL prefix" => "HTTPS URL prefix",
"Remember me feature" => "feature blong remembarem mi",
"Disabled" => "Nowaka",
"Only for users" => "Fo olketa user nomoa",
"Users and admins" => "Olketa User an olketa admin",
"Duration:" => "Duration:",
"PEAR::Auth" => "PEAR::Auth",
"Create user if not in Tiki?" => "Mekem wanfala user if hemi no stap insaet Tiki?",
"Create user if not in Auth?" => "Mekem wanfala user if hemi no stap insaet Auth?",
"Just use Tiki auth for admin?" => "Hao, bae iusim nomoa Tiki auth fo admin?",
"LDAP Host" => "LDAP Host",
"LDAP Port" => "LDAP Pot",
"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 Grup DN",
"LDAP Group Attribute" => "LDAP Grup Attribute",
"LDAP Group OC" => "LDAP Grup OC",
"LDAP Member Attribute" => "LDAP Member Attribute",
"LDAP Member Is DN" => "LDAP Member Hemi DN",
"LDAP Admin User" => "LDAP Admin User",
"LDAP Admin Pwd" => "LDAP Admin Pwd",
"topic:" => "topik:",
"forum topic" => "forum topik",
"No thread indicated" => "No eni thread hemi bin talem aot kam",
"Edit Templates" => "Mekem senis long olketa template",
"Referer Stats" => "Referer stats",
"Theme Control" => "Theme control",
"###end###"=>"###end###"
);
?>
|