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
|
<?php // -*- coding:utf-8 -*-
$lang=[
"User_versions_for" => "גרס�ות משתמש עבור",
"Version" => "גרסה",
"Date" => "ת�ריך",
"Page" => "עמוד",
"Ip" => "IP",
"Comment" => "הערה",
"Action" => "פעולה",
"view" => "הצגה",
"No records found" => "ל� × ×ž×¦ï¿½×• רשומות",
"Administration" => "× ×™×”×•×œ",
"Links/Commands" => "קישורי�/פקודות",//perhaps not used
"Preferences" => "העדפות",
"Wiki Features" => "×ª×›×•× ×•×ª ויקי",
"Admin users" => "× ×™×”×•×œ משתמשי�",
"Generate dump" => "יצירת חבילת תכולה",
"Download last dump" => "הורדת חבילת תכולה ï¿½×—×¨×•× ×”",
"Create a tag for the current wiki" => "יצירת תגית לויקי ×”× ×•×›×—×™",
"create tag" => "יצירת תגית",//perhaps not used
"Restore the wiki" => "שחזור ויקי",
"restore" => "שחזור",
"Tag Name" => "ש� תגית",
"remove" => "מחיקה",
"Anonymous users can edit pages" => "משתמשי� ï¿½× ×•× ×™×ž×™×™ï¿½ יכולי� לערוך עמודי�",//perhaps not used
"Users can register" => "משתמשי� חדשי� יכולי� להרש�",
"Open external links in new window" => "פתיחת קישורי� ×—×™×¦×•× ×™×™ï¿½ בחלון חדש",
"Maximum number of versions for history" => "מספר גרס�ות מרבי בהסטוריה",
"Maximum number of records in listings" => "מספר רשומות מרבי ברשימות",
"Wiki_Tiki_Title" => "כותרת תיקי",
"Change preferences" => "עדכון העדפות",
"Last changes" => "×©×™× ×•×™×™ï¿½ ï¿½×—×¨×•× ×™ï¿½",
"Dump" => "חבילת תכולה (Dump)",
"Ranking" => "דירוג",
"History" => "היסטוריה",
"List pages" => "רשימת העמודי�",
"Backlinks" => "קישורי� �חורה",
"Like pages" => "עמודי� דומי�",
"Search" => "חיפוש",
"Image Galleries" => "ספרית ×ª×ž×•× ×•×ª",
"All galleries" => "כל הספריות",
"User versions" => "גרס�ות משתמש",//perhaps not used
"Set features" => "עדכון ×ª×›×•× ×•×ª",
"Change admin password" => "×©×™× ×•×™ סיסמת ×ž× ×”×œ",
"Again" => "חזרה על הסיסמה",
"Repeat password" => "חזרה על הסיסמה",
"change" => "עדכון",
"name" => "ש�",
"desc" => "תי�ור",
"action" => "פעולה",
"assign" => "הקצ�ה",
"prev" => "הקוד�",
"next" => "הב�",
"backlinks to" => "קישורי� �חורה לעמוד",
"No backlinks to this page" => "�ין קישורי� �חורה עבור עמוד זה.",
"Edit" => "עריכה",
"Allow HTML" => "שימוש ב-HTML",
"preview" => "תצוגה מקדימה",
"save" => "שמירה",
"TextFormattingRules" => "<H3>תקציר כללי עריכה</H3>",
"Emphasis" => "הדגשות",
"italics" => "× ×˜×•×™",
"for" => "עבור",
"bold" => "עבה",
"both" => "×©× ×™×”ï¿½.",
"Lists" => "רשימות",
"for bullet lists" => "לרשימת תבליטי�",
"for numbered lists" => "לרשימת מספרי�",
"term" => "×ž×•× ×—",
"definition" => "הגדרה",
"for definiton lists" => "לרשימת הגדרות.",
"References" => "קישורי",//perhaps not used
"JoinCapitalizedWords" => "EnglishJoinCapitalizedWords",//perhaps not used
"or use square brackets for an" => "�ו שימוש בסוגריי� מרובעי� עבור",//perhaps not used
"external link" => "קישור ×—×™×¦×•× ×™",
"link_description" => "תי�ור הקישור",
"Misc" => "×©×•× ×•×ª",
"make_headings" => "יוצרי� כותרות",
"makes a horizontal rule" => "יוצר קו מפריד �ופקי,",
"Title_bar" => "כותרת",//perhaps not used
"title" => "כותרת",
"creates a title bar" => "יוצר כותרת מודגשת",
"Images" => "×ª×ž×•× ×•×ª",
"img" => "×ª×ž×•× ×”",//perhaps not used
"displays an image" => "מציג �ת ×”×ª×ž×•× ×” בתוך העמוד.",
"height width desc link and align are optional" => "הגדרות הרוחב, הגובה, היישור והקישור ï¿½×™× ×Ÿ הכרחיות.",
"Tables" => "טבל�ות",
"creates a table" => "יוצר טבלה.",
"Last Changes" => "×©×™× ×•×™×™ï¿½ ï¿½×—×¨×•× ×™ï¿½",
"Today" => "היו�",
"days" => "ימי�",
"Days" => "ימי�",
"Last" => "×œ×¤× ×™",
"Week" => "שבוע",
"Weeks" => "שבועות",
"Month" => "חודש",
"All" => "הכל",
"User" => "משתמש",
"Pages like" => "עמודי� דומי� לעמוד",
"No pages found" => "ל� × ×ž×¦ï¿½×• עמודי� דומי�.",
"Pages" => "עמודי�",
"Hits" => "×›× ×™×¡×•×ª",
"Last modified" => "ת�ריך ×©×™× ×•×™ �חרון",
"Last author" => "עורך �חרון",
"Last version" => "גרסה ï¿½×—×¨×•× ×”",
"Status" => "סטטוס",
"Versions" => "גרס�ות",
"Links" => "קישורי�",
"Size" => "גודל",
"printable" => "הדפסה",//perhaps not used
"edit" => "עריכה",
"remove page" => "מחיקת העמוד",
"unlock" => "שחרור",
"lock" => "× ×¢×™×œ×”",
"permissions" => "הרש�ות",
"history" => "היסטוריה",
"backlinks" => "קישורי� �חורה",
"like pages" => "עמודי� דומי�",//perhaps not used
"History of" => "הסטוריה של",//perhaps not used
"Actual_version" => "גרסה × ×•×›×—×™×ª",
"current_version" => "גרסה × ×•×›×—×™×ª",
"rollback" => "גלגול ל�חור",
"diff" => "×©×™× ×•×™×™ï¿½",
"Preview" => "תצוגה מקדימה",
"all" => "הכל",
"pages" => "מקומות",
"Top" => "לתחילת העמוד",
"All pages" => "כל העמודי�",//perhaps not used
"Remove page" => "מחיקת עמוד",
"version" => "גרסה",
"You are about to remove the page" => "עמוד",
"permanently" => "עומד להמחק לצמיתות",
"Remove all versions of this page" => "מחיקת כל הגרס�ות של עמוד זה",
"Rollback_page" => "גלגול עמוד ל�חור",//perhaps not used
"to_version" => "לגרסה",
"Search results" => "תוצ�ות החיפוש",
"Last modification date" => "ת�ריך ×©×™× ×•×™ �חרון",
"No pages matched the search criteria" => "ל� × ×ž×¦ï¿½×• תשובות לקריטריון החיפוש המבוקש",
"Register as a new user" => "רישו� כמשתמש חדש",
"Name" => "ש�",
"Password" => "סיסמה",
"Email" => "דו�ר ï¿½×œ×§×˜×¨×•× ×™",
"register" => "רישו�",
"email" => "דו�ר ï¿½×œ×§×˜×¨×•× ×™",
"last_login" => "×›× ×™×¡×” ï¿½×—×¨×•× ×”",
"Groups" => "קבוצות",
"delete" => "ביטול",
"assign group" => "הוספת קבוצה",
"Add a new user" => "הוספת משתמש חדש",
"Pass" => "סיסמה",
"Add" => "הוספה",
"Admin groups" => "× ×™×”×•×œ קבוצות",
"Permissions" => "הרש�ות",
"Add a new group" => "הוספת קבוצה חדשה",
"Group" => "ש� קבוצה",
"Desc" => "תי�ור",
"Galleries" => "ספריות",
"Create or edit a gallery using this form" => "יצירת/עריכת ספרית ×ª×ž×•× ×•×ª",
"Max Rows per page" => "מספר שורות מרבי בעמוד",
"Images per row" => "מספר ×ª×ž×•× ×•×ª בשורה",
"Thumbnails size X" => "רוחב (x) ×ª×ž×•× ×•×ª ×ž×•×§×˜× ×•×ª",
"Thumbnails size Y" => "גובה (y) ×ª×ž×•× ×•×ª ×ž×•×§×˜× ×•×ª",
"Other users can upload images to this gallery" => "משתמשי� �חרי� יכולי� לטעון ×ª×ž×•× ×•×ª לספריה ז�ת",
"edit/create" => "יצירה/עריכה",
"You can access the gallery using the following URL" => "× ×™×ª×Ÿ לגשת לספריה ב�מצעות הכתובת (URL) הב�ה",
"Available Galleries" => "ספריות ×ª×ž×•× ×•×ª ×–×ž×™× ×•×ª",
"Find" => "חיפוש",
"Description" => "ת�ור",
"Created" => "× ×•×¦×¨ בת�ריך",
"Theme" => "ערכת תצוגה",
"Remove" => "מחיקה",
"Browse" => "דיפדוף",
"changed" => "×”×©×ª× ×”",
"versions" => "גרס�ות",//perhaps not used
"Current permissions for this page" => "הרש�ות × ×•×›×—×™×•×ª לעמוד ×–×”",
"Perm" => "הרש�ה",//perhaps not used
"No individual permissions global permissions to all pages apply" => "�ין הרש�ה ספציפית - הרש�ות כלליות ישימות לכל העמודי�",//perhaps not used
"Assign permissions to thispage" => "הקצ�ת הרש�ות לעמוד זה",//perhaps not used
"Cache" => "מטמון",
"URL" => "כתובת URL",
"Last updated" => "עידכון �חרון",
"home" => "עמוד הבית",
"last changes" => "×©×™× ×•×™×™ï¿½ ï¿½×—×¨×•× ×™ï¿½",
"dump" => "הורדת תכולה - Dump",
"ranking" => "דירוגי�",//perhaps not used
"list_pages" => "רשימת_עמודי�",//perhaps not used
"my galleries" => "הספריות שלי",//perhaps not used
"upload image" => "×˜×¢×™× ×ª ×ª×ž×•× ×”",
"admin" => "× ×™×”×•×œ",
"users" => "משתמשי�",
"groups" => "קבוצות",
"cache" => "מטמון",
"Upload Image" => "×˜×¢×™× ×ª ×ª×ž×•× ×”",
"Image Name" => "ש� ×ª×ž×•× ×”",
"Image Description" => "ת�ור ×ª×ž×•× ×”",
"Gallery" => "ספריה",
"Now enter the image URL" => "יש להזין כתובת URL של ×”×ª×ž×•× ×”",
" or upload a local image from your disk" => " �ו לטעון �ותה מהדיסק המקומי",
"Upload from disk:" => "×˜×¢×™× ×” מהדיסק:",
"upload" => "×˜×¢×™× ×”",
"Upload successful!" => "×˜×¢×™× ×” הצליחה",
"The following image was successfully uploaded" => "×”×ª×ž×•× ×” × ×˜×¢× ×” בהצלחה",
"Thumbnail" => "×ª×ž×•× ×” ×ž×•×§×˜× ×ª",
"You can view this image in your browser using" => "× ×™×ª×Ÿ לצפות ×‘×ª×ž×•× ×•×ª ב�מצעות הקישור",
"You can include the image in an HTML/Tiki page using" => "× ×™×ª×Ÿ לכלול �ת ×”×ª×ž×•× ×” בעמוד תיקי �ו HTML ב�מצעות הקוד",
"Browsing Gallery" => "משוטט בספריה",
"edit gallery" => "עריכת ספריה",
"rebuild thumbnails" => "×‘× ×™×ª ×ª×ž×•× ×•×ª ×ž×•×§×˜× ×•×ª מחדש",
"list gallery" => "רשימת ספריות",
"Sort Images by" => "מיון ×ª×ž×•× ×•×ª לפי",
"hits" => "×›× ×™×¡×•×ª",
"Browsing Image" => "צפיה ×‘×ª×ž×•× ×”",
"return to gallery" => "בחזרה לספריה",
"Move image" => "הזזת ×ª×ž×•× ×”",
"move" => "×”×–×–×”",
"You can include the image in an HTML or Tiki page using" => "× ×™×ª×Ÿ לכלול �ת ×”×ª×ž×•× ×” בעמודי תיקי �ו HTML על ידי",
"Cached" => "Cached",
"This is a cached version of the page." => "This is a cached version of the page.",
"Admin Modules" => "× ×™×”×•×œ מודולי�",
"assign module" => "הקצ�ת מודול",
"left modules" => "מודולי� שמ�ליי�",
"Left Modules" => "מודולי� שמ�ליי�",
"right modules" => "מודולי� ×™×ž× ×™×™ï¿½",
"Right Modules" => "מודולי� ×™×ž× ×™×™ï¿½",
"Edit/Create user module" => "יצירת/עריכת מודול משתמש",
"clear cache" => "× ×™×§×•×™ המטמון",
"User Modules" => "מודולי� מקומיי�",
"order" => "מספר",
"x" => "ביטול",
"rows" => "שורות",
"down" => "למטה",
"up" => "למעלה",
"create/edit" => "יצירה/עריכה",
"url" => "כתובת URL",
"browse gallery" => "שיטוט בספריה",
"ID" => "זיהוי",
"Filesize" => "גודל קובץ",
"Menu" => "תפריט",
"Top Images" => "×ª×ž×•× ×•×ª מובילות",
"Top Pages" => "עמודי� מובילי�",
"search" => "חיפוש",
"Login" => "התחברות",
"logged as" => "מחובר כמשתמש",
"Logout" => "יצי�ה",
"user" => "משתמש",
"pass" => "סיסמה",
"login" => "×›× ×™×¡×”",
"Admin" => "× ×™×”×•×œ",
"modules" => "מודולי�",//perhaps not used
"links" => "קישורי�",//perhaps not used
"system gallery" => "ספרית מערכת",//perhaps not used
"Top galleries" => "ספריות ×ª×ž×•× ×•×ª מובילות",
"online users" => "משתמשי� מחוברי�",
"Online users" => "משתמשי� מחוברי�",
"Last galleries" => "×ª×ž×•× ×•×ª ï¿½×—×¨×•× ×•×ª",
"My Pages" => "העמודי� שלי",
"My galleries" => "הספריות שלי",
"Featured links" => "קישורי� × ×‘×—×¨×™ï¿½",
"You dont have permission to use this feature" => "�ין הרש�ה להשתמש ×‘×ª×›×•× ×” ז�ת.",
"Tag already exists" => "התגית כבר קיימת",
"Tag not found" => "התגית ל� × ×ž×¦ï¿½×”",
"The passwords dont match" => "הסיסמ�ות ï¿½×™× ×Ÿ תו�מות.",
"User already exists" => "ש� המשתמש ×©× ×‘×—×¨ כבר קיי�.",
"This feature is disabled" => "×ª×›×•× ×” ז�ת ï¿½×™× ×” מופעלת.",
"No page indicated" => "ל� × ×‘×—×¨ עמוד",
"Permission denied you cannot view backlinks for this page" => "�ין הרש�ות לצפות בקישורי� �חורה לעמוד זה.",
"The page cannot be found" => "העמוד המבוקש ל� × ×ž×¦ï¿½.",
"Page cannot be found" => "העמוד המבוקש ל� × ×ž×¦ï¿½.",
"Cannot edit page because it is locked" => "�ין �פשרות לערוך עמוד ×–×” מכוון שהו� × ×¢×•×œ.",
"Permission denied you cannot edit this page" => "�ין הרש�ה לערוך עמוד זה.",
"Anonymous users cannot edit pages" => "משתמשי� ï¿½× ×•× ×™×ž×™×™ï¿½ ï¿½×™× ï¿½ יכולי� לערוך עמודי�.",
"Permission denied you cannot view this page" => "�ין הרש�ות לצפיה בעמוד זה.",
"Permission denied you cannot view pages like this page" => "�ין הרש�ות לצפיה בעמודי� דומי� לעמוד זה.",
"Permission denied you cannot view pages" => "�ין הרש�ות לצפיה בעמודי�",
"Permission denied you cannot browse this page history" => "�ין הרש�ות לצפיה בהסטוריה של עמוד זה.",
"Permission denied you cannot remove versions from this page" => "�ין הרש�ות למחיקת גרס�ות מעמוד זה",
"No version indicated" => "ל� × ×‘×—×¨×” גרסה",
"Unexistant version" => "גרסה ל� קיימת",
"Permission denied you cannot rollback this page" => "�ין הרש�ות לגלגול ל�חור של עמוד זה",
"No user indicated" => "ל� × ×‘×—×¨ משתמש",
"Unexistant user" => "משתמש ל� קיי�",
"Group already exists" => "הקבוצה כבר קיימת",
"Invalid username or password" => "ש� משתמש �ו סיסמה ל� חוקיי�.",
"Unknown group" => "קבוצה ל� ידועה",
"Group doesnt exist" => "קבוצה ל� קיימת",
"Unknown user" => "משתמש ל� ידוע",
"User doesnt exist" => "משתמש ל� קיי�",
"Permission denied you cannot assign permissions for this page" => "�ין הרש�ות להקצ�ת הרש�ות לעמוד זה",
"No image indicated" => "ל� × ×‘×—×¨×” ×ª×ž×•× ×”",
"Permission denied you cannot browse this gallery" => "�ין הרש�ות לשוטט בספריה ז�ת.",
"Permission denied you cannot move images from this gallery" => "�ין הרש�ות להזזת ×ª×ž×•× ×•×ª מספריה ז�ת",
"Permission denied you cannot access this gallery" => "�ין הרש�ות לגשת לספריה ז�ת.",
"Permission denied you cannot upload images" => "�ין הרש�ות ×œ×˜×¢×™× ×ª ×ª×ž×•× ×•×ª.",
"No gallery indicated" => "ל� × ×‘×—×¨×” ספריה",
"Permission denied you cannot remove images from this gallery" => "�ין הרש�ות להסרת ×ª×ž×•× ×•×ª מספריה ז�ת.",
"Permission denied you can upload images but not to this gallery" => "�ין הר�שות ×œ×˜×¢×™× ×ª ×ª×ž×•× ×•×ª לספרית ×ª×ž×•× ×•×ª ז�ת.",
"No cache information available" => "�ין מידע זמין במטמון",
"view info" => "העדפות משתמש",
"Admin Topics" => "× ×™×”×•×œ × ×•×©ï¿½×™ï¿½",
"Image" => "×ª×ž×•× ×”",
"Active?" => "פעיל",
"Activate" => "פתיחה",
"Deactivate" => "סגירה",
"Title" => "כותרת",
"Author Name" => "ש� כותב",
"Topic" => "× ×•×©ï¿½",
"Own Image" => "שיוך ×ª×ž×•× ×”",
"Use own image" => "השתמש ×‘×ª×ž×•× ×” משויכת",
"Own image size x" => "רוחב (x) ×ª×ž×•× ×” משויכת",
"Own image size y" => "גובה (y) ×ª×ž×•× ×” משויכת",
"Heading" => "כותרת",
"Body" => "תוכן",
"Publish Date" => "ת�ריך פרסו�",
"By:" => "מ�ת:",
"on:" => "מת�ריך:",
"reads" => "×›× ×™×¡×•×ª",
"Articles" => "מ�מרי�",
"PublishDate" => "ת�ריך פרסו�",
"AuthorName" => "ש� כותב",
"Reads" => "×›× ×™×¡×•×ª",
"HasImg" => "מכיל ×ª×ž×•× ×”",//perhaps not used
"UseImg" => "משתמש ×‘×ª×ž×•× ×”",//perhaps not used
"Read" => "קרי�ה",
"Read More" => "המ�מר המל�",
"Submissions" => "הצעת מ�מרי�",
"Approve" => "�ישור",
"edit blog" => "עריכת בלוג",
"Edit Blog" => "עריכת בלוג",
"Number of posts to show" => "מספר הודעות להצגה",
"Allow other user to post in this blog" => "משתמשי� �חרי� יכולי� לשלוח הודעות לבלוג זה",
"Blogs" => "בלוגי�",
"Last Modified" => "×©×•× ×” ×œï¿½×—×¨×•× ×”",
"Public" => "ציבורי",//perhaps not used
"Posts" => "הודעות",
"Visits" => "×›× ×™×¡×•×ª",
"Activity" => "פעילות",
"post" => "הוספה",
"Post" => "הודעה",
"Edit Post" => "עריכת הודעה",
"Blog" => "בלוג",
"Data" => "× ×ª×•× ×™ï¿½",
"Created by" => "× ×•×¦×¨ על ידי",
" on " => " בת�ריך ",
"posts" => "הודעות",
"visits" => "×›× ×™×¡×•×ª",
"Activity=" => "פעילות=",
"Description:" => "ת�ור:",
"Find:" => "חיפוש:",
"find" => "חיפוש",
"Sort posts by:" => "מיון ההודעות לפי:",
"Id" => "זיהוי",
"Blog Title" => "כותרת בלוג",
"Hotwords" => "מילות קישור",
"User preferences screen" => "מסך העדפות משתמש",
"Display modules to all groups always" => "הצג מודולי� תמיד לכל הקבוצות",
"Use cache for external pages" => "השתמש במטמון לעמודי� ×—×™×¦×•× ×™×™ï¿½",
"Use cache for external images" => "השתמש במטמון ×œ×ª×ž×•× ×•×ª ×—×™×¦×•× ×™×•×ª",
"Language" => "שפה",
"Dumps" => "חבילות תכולה (Dumps)",
"create" => "יצירה",
"Sandbox" => "�רגז החול",
"Maximum number of articles in home" => "מספר מ�מרי� מירבי בעמוד הר�שי",
"Admin Hotwords" => "× ×™×”×•×œ מילות קישור",
"Word" => "מילה",
"Module Name" => "ש� מודול",
"Position" => "מיקו�",
"Order" => "מספר",
"Cache Time" => "זמן שהיה במטמון ×‘×©× ×™×•×ª",
"Rows" => "שורות",
"The SandBox is a page where you can practice your editing skills, use the preview feature to preview the appeareance of the page, no versions are stored for this page." => "�רגז החול הו� עמוד בו תוכלו להת�מן בעריכה טקסט לפי כללי ויקי ולבחון �ת התוצ�ה ב�מצעות התצוגה המקדימה. לעמוד ×–×” ל� × ×©×ž×¨×•×ª גרס�ות.",
"User Preferences" => "העדפות משתמש",
"User Information" => "מידע על המשתמש",
"Last login" => "×›× ×™×¡×” ï¿½×—×¨×•× ×”",
"Real Name" => "ש� �מיתי",
"HomePage" => "עמוד הבית ה�ישי",
"Your personal Wiki Page" => "עמוד ויקי �ישי",
"set" => "קביעה",
"Change your password" => "×©×™× ×•×™ סיסמה",
"Old password" => "סיסמה ×™×©× ×”",
"New password" => "סיסמה חדשה",
"Again please" => "חזרה על סיסמה חדשה",
"Configure this page" => "@Configure this page",
"User Pages" => "עמודי�",
"User Blogs" => "בלוגי�",
"hotwords" => "מילי� חמות",//perhaps not used
"list pages" => "רשימת עמודי�",
"sandbox" => "�רגז החול",
"user preferences" => "העדפות �ישיות",//perhaps not used
"You cannot edit this page because it is a user personal page" => "�ין �פשרות לערוך דף זה מכוון שזהו דף משתמש �ישי.",
"The SandBox is disabled" => "�רגז החול ï¿½×™× ×• פעיל",
"Cannot get image from URL" => "×˜×¢×™× ×ª ×ª×ž×•× ×” מכתובת URL ל� הצליחה",
"cannot process upload" => "ל� × ×™×ª×Ÿ לבצע �ת ×”×˜×¢×™× ×”",
"You have to provide a name to the image" => "יש לבחור ש� ×œ×ª×ž×•× ×”",
"No blog indicated" => "ל� × ×‘×—×¨ בלוג",
"Blog not found" => "הבלוג ל� × ×ž×¦ï¿½",
"Permission denied you cannot remove the post" => "�ין הרש�ות למחיקת הודעה ז�ת.",
"You cannot admin blogs" => "�ין הרש�ות ×œ× ×”×œ בלוגי�.",
"No image uploaded" => "ל� × ×˜×¢× ×” ×ª×ž×•× ×”",
"You are not logged in" => "יש להתחבר ×œ×¤× ×™ השימוש ב�פשרות ז�ת.",
"You dont have permission to view other users data" => "�ין הרש�ה לצפות ×‘× ×ª×•× ×™ משתמשי� �חרי�",
"The passwords didn't match" => "הסיס�ות החדשות ï¿½×™× ×Ÿ תו�מות.",
"Invalid old password" => "סיסמה ×™×©× ×” ל� ×ª×§×™× ×”.",
"Permission denied you cannot edit this article" => "�ין הרש�ה לעריכת מ�מר זה.",
"Permission denied you cannot remove articles" => "�ין הרש�ות למחיקת מ�מרי�.",
"No article indicated" => "ל� × ×‘×—×¨ מ�מר",
"Article not found" => "המ�מר ל� × ×ž×¦ï¿½",
"Article is not published yet" => "המ�מר עדיין ל� פורס�",
"Permission denied you cannot send submissions" => "�ין הרש�ות לשליחת הצעות.",
"Permission denied you cannot edit submissions" => "�ין הרש�ות לעריכת הצעות.",
"Permission denied you cannot remove submissions" => "�ין הרש�ות למחיקת הצעות",
"Permission denied you cannot approve submissions" => "�ין הרש�ות ל�ישור הצעות",
"Permission denied you cannot create or edit blogs" => "�ין הרש�ות ליצירת �ו עריכת בלוגי�.",
"Permission denied you cannot edit this blog" => "�ין הרש�ות לעריכת בלוג זה",
"Permission denied you cannot remove this blog" => "�ין הרש�ות למחיקת בלוג זה",
"Permission denied you cannot post" => "�ין הרש�ות לשליחת הודעה.",
"Permission denied you cannot edit this post" => "�ין הרש�ות לעריכת הודעה ז�ת.",
"You can't post in any blog maybe you have to create a blog first" => "�ין �פשרות לשלוח הודעות לבלוגי�. יתכן שתחילה עליך ליצור בלוג.",
"Rankings" => "דירוגי�",
"Top 10" => "10 ×”×¨ï¿½×©×•× ×™ï¿½",
"Top 20" => "20 ×”×¨ï¿½×©×•× ×™ï¿½",
"Top 50" => "50 ×”×¨ï¿½×©×•× ×™ï¿½",
"Top 100" => "100 ×”×¨ï¿½×©×•× ×™ï¿½",
"Banners" => "×‘ï¿½× ×¨×™ï¿½",
"Client" => "לקוח",
"Zone" => "�יזור",
"Method" => "שיטה",
"Use Dates?" => "ת�ריכי� מוגבלי�",
"Max Impressions" => "מספר חשיפות מרבי",
"Impressions" => "חשיפות",
"Clicks" => "קליקי�",
"Stats" => "סטטיסטיקות",
"Create new banner" => "יצירת ×‘ï¿½× ×¨ חדש",
"Click ratio" => "יחס הקלקה",
"Use dates" => "הגבלת ת�ריכי�",
"Hours" => "שעות",
"From" => "מ�ת",
"to" => "עד",
"Weekdays" => "ימי השבוע",
"mon" => "×©× ×™",
"tue" => "שלישי",
"wed" => "רביעי",
"thu" => "חמישי",
"fri" => "שישי",
"sat" => "שבת",
"sun" => "ר�שון",
"Banner raw data" => "× ×ª×•× ×™ ×‘ï¿½× ×¨ גולמיי�",
"Search in" => "חיפוש בתוך",
"galleries" => "ספריות",
"images" => "×ª×ž×•× ×•×ª",
"blogs" => "בלוגי�",
"blog posts" => "הודעות בלוג",
"articles" => "מ�מרי�",
"Found" => "החיפוש מצ�",
"in" => "ב",
"Template" => "×ª×‘× ×™×•×ª",
"Dynamic content system" => "× ×™×”×•×œ תוכן ×“×™× ×ž×™",
"create new block" => "יצירת בלוק חדש",
"Available content blocks" => "בלוקי תוכן ×–×ž×™× ×™ï¿½",
"Current version" => "גרסה × ×•×›×—×™×ª",//perhaps not used
"Next version" => "גרסה הב�ה",//perhaps not used
"Programmed versions" => "גרס�ות ×ž×ª×•×›× ×ª×•×ª",//perhaps not used
"Old versions" => "גרס�ות ×™×©× ×•×ª",//perhaps not used
"Edit desc" => "עריכת ת�ור",//perhaps not used
"Program" => "קביעת תוכן",
"Wiki" => "ויקי",
"XMLRPC API" => "XMLRPC API",
"Edit templates" => "עריכת ×ª×‘× ×™×•×ª",
"Edit Templates" => "עריכת ×ª×‘× ×™×•×ª",
"Index page" => "עמוד פותח",//perhaps not used
"Home Gallery (main gallery)" => "ספריה ר�שית",
"Galleries features" => "×ª×›×•× ×•×ª ספריה",
"Remove images in the system gallery not being used in Wiki pages, articles or blog posts" => "הסרת ×ª×ž×•× ×•×ª ×©ï¿½×™× ×Ÿ בשימוש בויקי, מ�מרי� �ו בלוגי� מספרית ×”×ª×ž×•× ×•×ª",
"CMS features" => "×ª×›×•× ×•×ª מ�מרי�",
"Home Blog (main blog)" => "בלוג ר�שי",
"Set prefs" => "קביעת העדפות",
"Blog features" => "×ª×›×•× ×•×ª בלוגי�",
"URL to link the banner" => "הכתובת �ילה ×™×¤× ×” ×”×‘ï¿½× ×¨",
"Max impressions" => "מספר חשיפות מירבי",
"create zone" => "יצירת �יזור",
"Show the banner only between these dates" => "הצגת ×”×‘ï¿½× ×¨ רק בין הת�ריכי� הללו",
"From date" => "מת�ריך",
"To date" => "עד ת�ריך",
"Show the banner only in this hours" => "הצגת ×”×‘ï¿½× ×¨ רק בשעות �לו",
"from" => "החל מ",
"Mon" => "×©× ×™",
"Tue" => "שלישי",
"Wed" => "רביעי",
"Thu" => "חמישי",
"Fri" => "שישי",
"Sat" => "שבת",
"Sun" => "ר�שון",
"Select ONE method for the banner" => "שיטת הפעולה של ×”×‘ï¿½× ×¨ (יש לבחור רק �חת)",
"Use HTML" => "שימוש ב HTML",
"HTML code" => "קוד HTML",
"Use image" => "שימוש ×‘×ª×ž×•× ×”",
"Image:" => "×ª×ž×•× ×”:",
"Current Image" => "×ª×ž×•× ×” × ×•×›×—×™×ª",
"Use image generated by URL (the image will be requested at the URL for each impression)" => "שימוש ×‘×ª×ž×•× ×” המיוצרת על ידי כתובת URL (המערכת תבקש �ת ×”×ª×ž×•× ×” ע� כל חשיפה)",
"Use text" => "שימוש בטקסט",
"Text" => "טקסט",
"save the banner" => "שמירת ×”×‘ï¿½× ×¨",
">Remove Zones (you lose entered info for the banner)" => ">הסרת �יזורי� (המידע שהוזן על ×”×‘ï¿½× ×¨ י�בד)",
"Program dynamic content for block" => "×ª×›× ×•×ª תוכן ×“×™× ×ž×™ עבור בלוק",
">Block description: " => ">ת�ור בלוק: ",//perhaps not used
"You are editing block:" => "עריכת בלוק:",
"Return to block listing" => "חזרה לרשימת הבלוקי�",
"Publishing date" => "ת�ריך פירסו�",
"Publishing Date" => "ת�ריך פרסו�",
"Users" => "משתמשי�",
"Modules" => "מודולי�",
"System gallery" => "ספרית ×ª×ž×•× ×•×ª מערכת",
"Topics" => "× ×•×©ï¿½×™ï¿½",
"Edit article" => "עריכת מ�מר",
"Admin content" => "× ×™×”×•×œ תוכן",//perhaps not used
"Last submissions" => "הצעות ï¿½×—×¨×•× ×•×ª",
"Top articles" => "מ�מרי� × ×§×¨ï¿½×™ï¿½ ביותר",
"Old articles" => "מ�מרי� ×™×©× ×™ï¿½",
"Waiting Submissions" => "הצעות ×ž×ž×ª×™× ×•×ª",
"We have" => "יש",
"submissions waiting to be examined" => "הצעות ×”×ž×ž×ª×™× ×•×ª לבדיקה",
"Most visited blogs" => "בלוגי� × ×¦×¤×™ï¿½ ביותר",
"Most Active blogs" => "בלוגי� פעילי� ביותר",
"Last Modified blogs" => "בלוגי� ×©×©×•× ×• ×œï¿½×—×¨×•× ×”",
"Last Created blogs" => "בלוגי� ×©× ×•×¦×¨×• ×œï¿½×—×¨×•× ×”",
"My blogs" => "הבלוגי� שלי",
"in:" => "בתוך",
"go" => "ביצוע",
"rankings" => "דירוגי�",
"Upload image" => "×˜×¢×™× ×ª ×ª×ž×•× ×”",
"CMS" => "מ�מרי�",
"Articles Home" => "מ�מרי� ר�שיי�",
"List articles" => "רשימת המ�מרי�",
"Submit article" => "הצעת מ�מר",
"View submissions" => "×‘×—×™× ×ª הצעות",
"list blogs" => "רשימת בלוגי�",
"List blogs" => "רשימת בלוגי�",
"view blog" => "צפיה בבלוג",
"Create/Edit Blog" => "יצירת/עריכת בלוג",
"You dont have permissions to edit banners" => "�ין הרש�ות לעריכת ×‘ï¿½× ×¨×™ï¿½.",
"Banner not found" => "×”×‘ï¿½× ×¨ ל� × ×ž×¦ï¿½",
"You dont have permission to edit this banner" => "�ין הרש�ות לעריכת ×”×‘ï¿½× ×¨",
"Permission denied you cannot remove banners" => "�ין הרש�ות למחיקת ×‘ï¿½× ×¨×™ï¿½.",
"No banner indicated" => "ל� × ×‘×—×¨ ×‘ï¿½× ×¨",
"Feature disabled" => "×”×ª×›×•× ×” ï¿½×™× ×” פעילה",
"You dont have permission to write the template" => "�ין הרש�ות לכתובת ×”×ª×‘× ×™×ª.",
"You dont have permission to read the template" => "�ין הרש�ות לקרי�ת ×”×ª×‘× ×™×ª.",
"No content id indicated" => "ל� × ×‘×—×¨ זיהוי תוכן",
"List" => "רשימה",
"Last mod" => "ת�ריך ×©×™× ×•×™ �חרון",
"Last ver" => "גרסה ï¿½×—×¨×•× ×”",
"Com" => "הערה",
"Vers" => "גרס�ות",
"Create or edit content" => "יצירת/עריכת תוכן",
"position" => "מיקו�",
"disables the link" => "כיבוי הקישור",
"files" => "קבצי�",
"General" => "כללי",
"File galleries" => "ספריות קבצי�",
"Comments" => "הערות",
"Image galleries" => "ספריות ×ª×ž×•× ×•×ª",
"type" => "סוג",
"Page generated in" => "עמוד ×–×” × ×•×¦×¨ ב",
"seconds" => "×©× ×™×•×ª",
"Wiki comments settings" => "העדפות הערות ויקי",
"Default number of comments per page" => "ברירת המחדל למספר הערות בעמוד",
"Comments default ordering" => "ברירת המחדל לסדר ההערות",
"Points" => "× ×™×§×•×“",
"Warn on edit" => "�זהרה ×‘×›× ×™×¡×” לעריכה",
"comments" => "הערות",
"Show comments" => "הצגת הערות",//perhaps not used
"Hide comments" => "הסתרת הערות",//perhaps not used
"Post new comment" => "הוספת הערת חדשה",
"Posting comments" => "הוספת הערות",
"Use" => "יש להשתמש ב-",
"or" => "�ו",
"for links" => "כדי להוסיף קישורי�",
"HTML tags are not allowed inside comments" => "תגי HTML ï¿½×™× ï¿½ מותרי� בהערות",
"Sort by" => "מיון על פי",
"Threshold" => "סף × ×•×›×—×™",
"Containing" => "מכיל",
"Vote" => "ציון",
"reply to this" => "תגובה",
"by" => "מ�ת",
"Score" => "ציון",
"on" => "בת�ריך",
"Comments below your current threshold" => "הערות מתחת לסף ×”× ×•×›×—×™",
"File Galleries" => "ספריות קבצי�",
"Create or edit a file gallery using this form" => "יצירת/עריכת ספרית קבצי�",
"Other users can upload files to this gallery" => "משתמשי� �חרי� יכולי� לטעון קבצי� לספריה",
"You can access the file gallery using the following URL" => "× ×™×ª×Ÿ לגשת לספרית הקבצי� על ידי הכתובת (URL) הב�ה",
"Available File Galleries" => "ספריות קבצי� ×–×ž×™× ×•×ª",
"Files" => "קבצי�",
"Upload File" => "×˜×¢×™× ×ª קובץ",
"File Title" => "כותרת קובץ",
"File Description" => "תי�ור קובץ",
"File Gallery" => "ספרית קבצי�",
"Now enter the file URL" => "יש להזין כתובת URL של הקובץ",
" or upload a local file from your disk" => " �ו לטעון �ותו מהדיסק המקומי",
"The following file was successfully uploaded" => "הקובץ × ×˜×¢×Ÿ בהצלחה",
"You can download this file using" => "× ×™×ª×Ÿ להוריד קובץ ×–×” ב�מצעות הקישור",
"You can include the file in an HTML/Tiki page using" => "× ×™×ª×Ÿ לכלול �ת הקובץ בעמוד תיקי �ו HTML ב�מצעות הקוד",
"Listing Gallery" => "רשימת ספריות",
"upload file" => "×˜×¢×™× ×ª קובץ",
"Dls" => "הורדות",
"Top Files" => "קבצי� מובילי�",
"Last Files" => "קבצי� ï¿½×—×¨×•× ×™ï¿½",
"Top File Galleries" => "ספריות קבצי� מובילות",
"Last modified file galleries" => "ספריות קבצי� ×©×©×•× ×• ×œï¿½×—×¨×•× ×”",
"Image Gals" => "ספרית ×ª×ž×•× ×•×ª",
"List galleries" => "רשימת ספריות",
"Upload file" => "×˜×¢×™× ×ª קובץ",
"Unexistant link" => "קישור ל� קיי�",
"Permission denied you cannot create galleries and so you cant edit them" => "�ין הרש�ות ליצירת ספריות.",
"Permission denied you cannot edit this gallery" => "�ין הרש�ות לעריכת ספריה ז�ת.",
"Permission denied you cannot remove this gallery" => "�ין הרש�ות למחיקת ספריה ז�ת.",
"Permission denied you can upload files but not to this file gallery" => "�ין הרש�ות ×œ×˜×¢×™× ×ª קבצי� לספרית קבצי� ז�ת.",
"Cannot get file from URL" => "×˜×¢×™× ×ª קובץ מכתובת URL ל� הצליחה",//perhaps not used
"Unexistant gallery" => "ספריה ל� קיימת",
"Permission denied you cannot remove files from this gallery" => "�ין הרש�ות למחיקת קבצי� מספריה ז�ת.",
"You cant download files" => "�ין �פשרות להורדת קבצי�",//perhaps not used
"No file" => "�ין קובץ",//perhaps not used
"Generate positions by hits" => "סידור מיקומי� לפי מספר ×”×›× ×™×¡×•×ª",
"Add Featured Link" => "הוספת קישור × ×‘×—×¨",
"Rollback page" => "גלגול ל�חור של עמוד",
"List of existing groups" => "רשימת קבוצות",
"Create/edit Forums" => "יצירת/עריכת פורומי�",
"There are individual permissions set for this forum" => "הרש�ות ספציפיות בתוקף עבור פורו� זה",
"Prevent flooding" => "×ž× ×™×¢×ª הצפה",
"Minimum time between posts" => "זמן ×ž×™× ×™×ž×œ×™ בין הודעות",
"Topics per page" => "מספר הודעות בעמוד",
"Moderator" => "×ž× ×”×œ הפורו�",//perhaps not used
"Default ordering for topics" => "מיון ברירת מחדל עבור הודעות",
"Replies (desc)" => "מספר תגובות (יורד)",
"Reads (desc)" => "מספר ×›× ×™×¡×•×ª (יורד)",
"Last post (desc)" => "ת�ריך תגובה ï¿½×—×¨×•× ×” (יורד)",
"Title (desc)" => "כותרת (יורד)",
"Title (asc)" => "כותרת (עולה)",
"Default ordering for threads" => "מיון ברירת מחדל עבור תגובות",
"Date (desc)" => "ת�ריך (יורד)",
"Score (desc)" => "× ×™×§×•×“ (יורד)",
"Send this forums posts to this email" => "שליחת הודעות בפורו� ×–×” לדו�ר ï¿½×œ×§×˜×¨×•× ×™",
"Prune unreplied messages after" => "מחיקת הודעות לל� ×ž×¢× ×” ל�חר",
"Prune old messages after" => "מחיקת הודעות ×™×©× ×•×ª ל�חר",
"Save" => "שמירה",
"topics" => "× ×•×©ï¿½×™ï¿½",
"coms" => "הודעות",
"age" => "ימי�",
"ppd" => "הודעות ליו�",
"last post" => "הודעה ï¿½×—×¨×•× ×”",
"perms" => "הרש�ות",
"forums" => "פורומי�",
"Assign permissions to group" => "הקצ�ת הרש�ות לקבוצה",
"Group Information" => "מידע על הקבוצה",
"Forums" => "פורומי�",
"Comm" => "הערות",
"Cms" => "מ�מרי�",
"Chat" => "צ'�ט",
"Assign user" => "הוספת קבוצות למשתמש",
"to groups" => " ",
"prev image" => "×ª×ž×•× ×” קודמת",
"next image" => "×ª×ž×•× ×” הב�ה",
"Template listing" => "רשימת ×ª×‘× ×™×•×ª",
"Upload from disk" => "×˜×¢×™× ×” מהדיסק",
"Thumbnail (optional, overrides automatic thumbnail generation)" => "×ª×ž×•× ×” ×ž×•×§×˜× ×ª (ï¿½×•×¤×¦×™×•× ×œ×™, במקו� יצירה �וטומטית על ידי המערכת)",
"There are inddividual permissions set for this gallery" => "יש הרש�ות ספציפיות לספריה ז�ת",//perhaps not used
"Gallery is visible to non-admin users?" => "הספריה × ×™×ª× ×ª לצפיה על ידי משתמשי� לל� הרש�ת ×ž× ×”×œ",
" modified" => " ×©×•× ×ª×”",
"Imgs" => "×ª×ž×•× ×•×ª",
"Current ver" => "גרסה × ×•×›×—×™×ª",
"Next ver" => "הגרסה הב�ה",
"Old vers" => "גרס�ות ×™×©× ×•×ª",
"group" => "קבוצה",
"permission" => "הרש�ה",
"No individual permissions global permissions apply" => "�ין הרש�ות ספציפיות. ההרש�ות הקבוצתיות בתוקף.",
"Assign permissions to this page" => "הקצ�ת הרש�ות לעמוד זה",
"Show Post Form" => "הצגת טופס הודעה",
"Hide Post Form" => "הסתרת טופס הודעה",
"Forum List" => "רשימת הפורומי�",
"Edit Forum" => "× ×™×”×•×œ הפורו�",
"Editing comment" => "עריכת הודעה",
"post new comment" => "הודעה חדשה",
"smileys" => "×—×™×™×›× ×™ï¿½",
"Type" => "סוג",
"normal" => "רגילה",
"announce" => "הכרזה",
"hot" => "חמה",
"sticky" => "דביקה",
"locked" => "× ×¢×•×œ×”",
"Sort" => "מיון",
"message" => "הודעה",
"score" => "× ×™×§×•×“",
"author" => "מ�ת",
"Non cacheable images" => "×ª×ž×•× ×•×ª ×©ï¿½×™× ×Ÿ × ×©×ž×¨×•×ª במטמון",
"RSS feeds" => "×”×–× ×” ×—×™×¦×•× ×™×ª",
"displays rss feed with id=n maximum=m items" => "מציג ×”×–× ×ª RSS ע� זיהוי n ולכל היותר m פריטי�.",
"Simple box" => "תיבה פשוטה",
"Box content" => "תוכן התיבה",
"Creates a box with the data" => "יוצר תיבה ע� ×”× ×ª×•× ×™ï¿½.",
"Dynamic content" => "תוכן ×“×™× ×ž×™",
"Will be replaced by the actual value of the dynamic content block with id=n" => "יוחלף בערך של תוכן ×“×™× ×ž×™ ע� זיהוי n.",
"Send objects" => "שליחת עצמי�",
"Transmission results" => "תוצ�ות משלוח",
"Send objects to this site" => "שליחת עצמי� ל�תר",
"site" => "�תר",
"path" => "× ×ª×™×‘",
"username" => "ש� משתמש",
"password" => "סיסמה",
"send" => "שליחה",
"Send Wiki Pages" => "שליחת עמודי ויקי",
"add page" => "הוספת עמוד",
"clear" => "× ×™×§×•×™",
"Edit received page" => "עריכת עמוד שהתקבל",
"comment" => "הערה",
"Site" => "�תר",
"accept" => "�ישור",
"Current category" => "קטגוריה × ×•×›×—×™×ª",
"Child categories" => "קטגוריות ×ž×©× ×”",
"Edit or add category" => "הוספת �ו עריכת קטגוריה",
"Objects in category" => "עצמי� בקטגוריה",
"Add objects to category" => "הוספת עצמי� לקטגוריה",
"filter" => "×¡×™× ×•×Ÿ",
"add" => "הוספה",
"sub categories" => "קטגוריות ×ž×©× ×”",
"There are inddividual permissions set for this blog" => "יש הרש�ות ספציפיות לבלוג זה",//perhaps not used
"Features" => "×ª×›×•× ×•×ª",
"Tiki sections and features" => "×ª×›×•× ×•×ª ומודולי� בתיקי",
"Polls" => "מש�לי�",
"Communications (send/receive objects)" => "תקשורת (קבלה ומשלוח של �וביקטי�)",
"Categories" => "קטגוריות",
"Layout options" => "�פשרויות סידור",//perhaps not used
"Left column" => "טור שמ�לי (×™×ž× ×™ בתצוגה מימין לשמ�ל)",
"Right column" => "טור ×™×ž× ×™ (שמ�לי בתצוגה מימין לשמ�ל)",
"Top bar" => "רצועה ×¢×œ×™×•× ×”",
"Bottom bar" => "רצועה ×ª×—×ª×•× ×”",
"General preferences and settings" => "העדפות כלליות",
"Image Gallery" => "ספרית ×ª×ž×•× ×•×ª",
"Forum" => "פורו�",
"Custom home" => "עמוד בית מות�� �ישית",
"Wiki settings" => "העדפות ויקי",
"Never delete versions younger than days" => "מספר ימי� ×ž×™× ×™×ž×œ×™ לשמירת גרס�ות",
"Set" => "שמירה",
"wiki" => "ויקי",
"polls" => "מש�לי�",//perhaps not used
"Image galleries comments settings" => "העדפות הערות ספרית ×ª×ž×•× ×•×ª",
"features" => "×ª×›×•× ×•×ª",//perhaps not used
"File galleries comments settings" => "העדפות הערות ספרית קבצי�",
"cms" => "מ�מרי�",//perhaps not used
"CMS settings" => "העדפות מ�מרי�",
"Article comments settings" => "העדפות הערות מ�מרי�",
"Poll settings" => "העדפות מש�לי�",
"Poll comments settings" => "העדפות הערות מש�לי�",
"image galleries" => "ספרית ×ª×ž×•× ×•×ª",//perhaps not used
"Blog settings" => "העדפות בלוגי�",
"Blog comments settings" => "העדפות הערות בלוגי�",
"general" => "כללי",//perhaps not used
"Forums settings" => "העדפות פורומי�",
"Home Forum (main forum)" => "פורו� ר�שי",
"Set home forum" => "קביעת פורו� ר�שי",
"Ordering for forums in the forum listing" => "סדר הפורומי� ברשימת הפורומי�",
"Creation Date (desc)" => "ת�ריך יצירה (יורד)",
"Topics (desc)" => "מספר הודעות (יורד)",
"Threads (desc)" => "מספר תגובות (יורד)",
"Visits (desc)" => "מספר קור�י� (יורד)",
"Name (desc)" => "ש� (יורד)",
"Name (asc)" => "ש� (עולה)",
"file galleries" => "ספרית קבצי�",//perhaps not used
"rss" => "×”×–× ×” ×—×™×¦×•× ×™×ª",//perhaps not used
"<b>Feed</b>" => "<b>×”×–× ×” עבור:</b>",
"<b>enable/disable</b>" => "<b>הפעלה/כיבוי</b>",
"<b>Max number of items</b>" => "<b>מספר פריטי� מירבי</b>",
"Feed for Articles" => "×”×–× ×” למ�מרי�",
"Feed for Weblogs" => "×”×–× ×” לבלוגי�",
"Feed for Image Galleries" => "×”×–× ×” לספרית ×ª×ž×•× ×•×ª",
"Feed for File Galleries" => "×”×–× ×” לספרית קבצי�",
"Feed for the Wiki" => "×”×–× ×” לויקי",
"Feed for individual Image Galleries" => "×”×–× ×” לספריות ×ª×ž×•× ×•×ª מסוימות",
"Feed for individual File Galleries" => "×”×–× ×” לספריות קבצי� מסוימות",
"Feed for individual weblogs" => "×”×–× ×” לבלוגי� מסוימי�",
"Set feeds" => "קביעת ×”×–× ×•×ª",
"Objects that can be included" => "עצמי� ×©× ×™×ª×Ÿ לכלול",
"Available polls" => "מש�לי� ×–×ž×™× ×™ï¿½",
"use poll" => "שימוש במש�ל",
"Dynamic content blocks" => "בלוק תוכן ×“×™× ×ž×™",
"use dynamic content" => "שימוש בתוכן ×“×™× ×ž×™",
"RSS modules" => "מודולי ×”×–× ×” ×—×™×¦×•× ×™×ª",
"use rss module" => "שימוש ×‘×”×–× ×” ×—×™×¦×•× ×™×ª",
"Banner zones" => "�יזורי ×‘ï¿½× ×¨×™ï¿½",
"use banner zone" => "שימוש ב�יזור ×‘ï¿½× ×¨",
"Error" => "שגי�ה",
"Return to home page" => "חזרה לעמוד הבית",
"Block description: " => "ת�ור בלוק: ",
"Smileys" => "×—×™×™×›× ×™ï¿½",
"There are inddividual permissions set for this file gallery" => "יש הרש�ות ספציפיות עבור ספרית קבצי� ז�ת",//perhaps not used
"Create/edit channel" => "יצירת/עריכת ערוץ",
"Active" => "פעיל",
"Refresh rate" => "קצב ×¨×™×¢× ×•×Ÿ",
"half a second" => "חצי ×©× ×™×”",
"second" => "×©× ×™×”",
"description" => "תי�ור",
"active" => "פעיל",
"refresh" => "×¨×™×¢× ×•×Ÿ",
"enter chat room" => "×›× ×™×¡×” לצ'�ט",
"Chatroom" => "צ'�ט",
"Active Channels" => "ערוצי� פעילי�",
"Channel Information" => "× ×ª×•× ×™ הערוץ",
"Content for the feed" => "תוכן עבור ×”×”×–× ×”",
"Create/edit RSS module" => "יצירה/עריכה של מודולי ×”×–× ×” ×—×™×¦×•× ×™×ª",
"minute" => "דקה",
"minutes" => "דקות",
"hour" => "שעה",
"hours" => "שעות",
"day" => "יו�",
"Last update" => "עדכון �חרון",
"Create/edit Menus" => "יצירת/עריכת תפריטי�",
"dynamic collapsed" => "×“×™× ×ž×™ סגור",
"dynamic extended" => "×“×™× ×ž×™ פתוח",
"fixed" => "קבוע",
"options" => "�פשרויות",
"List menus" => "רשימת תפריטי�",
"Edit this menu" => "עריכת תפריט זה",
"Preview menu" => "צפיה מוקדמת בתפריט",
"Edit menu options" => "עריכת �פשרויות תפריט",
"section" => "× ×•×©ï¿½",
"option" => "�פשרות",
"Some useful URLs" => "מספר כתובות URL שימושיות",
"Home Page" => "עמוד הבית",
"Home Blog" => "עמוד הבית של בלוגי�",
"Home Image Gal" => "ספרית ×ª×ž×•× ×•×ª ר�שית",
"Home Image Gallery" => "ספרית ×ª×ž×•× ×•×ª ר�שית",
"Home File Gal" => "ספרית קבצי� ר�שית",
"Home File Gallery" => "ספרית קבצי� ר�שית",
"User preferences" => "העדפות משתמש",
"User prefs" => "העדפות משתמש",
"Wiki Home" => "עמוד ויקי ר�שי",
"List image galleries" => "רשימת ספריות ×ª×ž×•× ×”",
"Gallery Rankings" => "דירוג ספריה",
"Browse a gallery" => "שיטוט בספריה",
"Articles home" => "מ�מרי� ר�שיי�",
"All articles" => "כל המ�מרי�",
"Submit" => "שליחה",
"List Blogs" => "רשימת בלוגי�",
"Create blog" => "יצירת בלוג",
"View a forum" => "צפיה בפורו�",
"View a thread" => "צפיה בהודעה",
"Create/edit Polls" => "יצירת/עריכת מש�לי�",
"current" => "× ×•×›×—×™",
"closed" => "סגור",
"votes" => "קולות",
"Publish" => "ת�ריך פרסו�",
"List polls" => "רשימת מש�לי�",
"Edit this poll" => "עריכת מש�ל",
"Preview poll" => "צפיה מוקדמת במש�ל",
"Edit or add poll options" => "הוספת/עריכה �פשרויות מש�ל",
"Option" => "�פשרות",
"vote" => "הצבעה",
"Results" => "תוצ�ות",
"Total" => "סך הכל",
"Other Polls" => "סקרי� �חרי�",
"Published" => "פורס� בת�ריך",
"Votes" => "קולות",
"back" => "�חורה",
"Current permissions for this object" => "הרש�ות × ×•×›×—×™×•×ª",
"Assign permissions to this object" => "הקצ�ת הרש�ות",
"Wiki Pages" => "ויקי",
"Blog Posts" => "הודעות בלוג",
"chat" => "צ'�ט",
"categories" => "קטגוריות",
"received pages" => "קבלת עמודי�",
"Menus" => "תפריטי�",
"Admin chat" => "× ×™×”×•×œ צ'�ט",//perhaps not used
"Admin forums" => "× ×™×”×•×œ פורומי�",
"Templates" => "×ª×‘× ×™×•×ª",
"Random Pages" => "עמודי� �קר�יי�",
"Last blog posts" => "הודעות בלוג ï¿½×—×¨×•× ×•×ª",
"Last forum topics" => "הודעות ï¿½×—×¨×•× ×•×ª בפורומי�",
"Most read topics" => "הודעות × ×¦×¤×•×ª ביותר",
"Top topics" => "הודעות מדורגות ביותר",
"Most visited forums" => "פורומי� × ×¦×¤×™ï¿½ ביותר",
"Most commented forums" => "פורומי� ע� הרבה הערות",
"Received objects" => "פריטי� שהתקבלו",
"Pages:" => "עמודי�:",
"Username is too long" => "ש� המשתמש �רוך מדי",
"Invalid username" => "ש� משתמש ל� חוקי",
"Permission denied you cannot view this section" => "�ין הרש�ות לצפות בחלק זה.",
"Permission denied you cant view this section" => "�ין הרש�ות לצפות בחלק זה.",//perhaps not used
"No menu indicated" => "ל� × ×‘×—×¨ תפריט",
"No poll indicated" => "ל� × ×‘×—×¨ סקר",
"Not enough information to display this page" => "�ין מידע מספיק על ×ž× ×ª להציג עמוד ×–×”.",
"Fatal error" => "תקלה קריטית",
"This feature has been disabled" => "×ª×›×•× ×” ז�ת ï¿½×™× ×” פעילה",
"No forum indicated" => "ל� × ×‘×—×¨ פורו�",
"Please wait 2 minutes between posts" => "× ï¿½ להמתין 2 דקות בין שליחת הודעות",
"No thread indicated" => "ל� × ×‘×—×¨×” הודעה",
"Permission denied to use this feature" => "�ין הרש�ה להשתמש ×‘×ª×›×•× ×” ז�ת",
"No channel indicated" => "ל� × ×‘×—×¨ ערוץ",
"No nickname indicated" => "ל� × ×‘×—×¨ ×›×™× ×•×™",
"Search by Date" => "חיפוש לפי ת�ריך",
"LastChanges" => "×©×™× ×•×™×™ï¿½ ï¿½×—×¨×•× ×™ï¿½",
"Generate a password" => "בחר לי סיסמה",
"faqs" => "ש�לות × ×¤×•×¦×•×ª",
"File gals" => "ספריות קבצי�",
"Image gals" => "ספריות ×ª×ž×•× ×•×ª",
"FAQs" => "ש�לות × ×¤×•×¦×•×ª",
"of" => "של",
"Comparing versions" => "השוו�ת גרס�ות",
"compare" => "השוו�ה",
"RSS" => "×”×–× ×” ×—×™×¦×•× ×™×ª",
"Article" => "מ�מר",
"Review" => "סקירה",
"Rating" => "דירוג",
"Quicklinks" => "עריכה מהירה",
"Spellcheck" => "בדיקת �יות (ï¿½× ×’×œ×™×ª)",
"Wiki References" => "קישורי ויקי",
"JoinCapitalizedWords or use" => "×‘ï¿½× ×’×œ×™×ª �פשר EnglishLikeThis �ו ",
"for wiki references" => "לקישור ויקי כלשהו, כ�שר ",
"prevents referencing" => "×ž×•× ×¢ קישור ויקי ×‘ï¿½× ×’×œ×™×ª.",
"External links" => "קישורי� ×—×™×¦×•× ×™×™ï¿½",
"use square brackets for an" => "סוגריי� מרובעי� משמשי� עבור",
"Title bar" => "כותרת מודגשת",
"Colored text" => "טקסט ×¦×‘×¢×•× ×™",
"Will display using the indicated HTML color" => "יציג �ת הטקסט בצבע HTML המבוקש.",
"Center" => "מירכוז",
"Will display the text centered" => "ממרכז �ת הטקסט.",
"Filter" => "×¡×™× ×•×Ÿ",
"Send Articles" => "שליחת מ�מרי�",
"add article" => "הוספת מ�מר",
"Img" => "×ª×ž×•× ×”",
"deep" => "עמוק",
"Allowed HTML:" => "הרשה HTML:",//perhaps not used
"undo" => "ביטול ×©×™× ×•×™ �חרון",
"Users can configure modules" => "משתמשי� יכולי� לקבוע תצורת מודולי�",
"User bookmarks" => "×¡×™×ž× ×™×•×ª משתמש",
"Games" => "משחקי�",
"Validate users by email" => "�ישרור משתמשי� חדשי� על ידי דו�ר ï¿½×œ×§×˜×¨×•× ×™",
"Remind passwords by email" => "שחזור סיסמה על ידי דו�ר ï¿½×œ×§×˜×¨×•× ×™",
"Undo" => "ביטול ×©×™× ×•×™ �חרון",
"MultiPrint" => "הדפסת מספר דפי�",
"Spellchecking" => "בדיקת �יות (ï¿½× ×’×œ×™×ª)",
"FAQs settings" => "העדפות ש�לות × ×¤×•×¦×•×ª (FAQ)",
"FAQ comments" => "העדפות הערות ש�לות × ×¤×•×¦×•×ª",
"Feed for forums" => "×”×–× ×” לפורומי�",
"Feed for individual forums" => "×”×–× ×” לפורומי� מסוימי�",
"User Bookmarks" => "×¡×™×ž× ×™×•×ª",
"Configure modules" => "תצורת מודולי�",//perhaps not used
"Number of visited pages to remember" => "מספר העמודי� ×”ï¿½×—×¨×•× ×™ï¿½ שיזכרו",
"to insert a random tagline" => "להוספת �ימרה �קר�ית",//perhaps not used
"Users in this channel" => "משתמשי� בערוץ זה",
"Use :nickname:message for private messages" => "הודעה פרטית: :×›×™× ×•×™:הודעה",
"Use [URL|description] or [URL] for links" => "קישור ×—×™×¦×•× ×™: [URL] �ו [URL|ת�ור].",
"Use (:name:) for smileys" => "×—×™×™×›× ×™ï¿½: (:ש� חייכן:)",
"Admin cookies" => "× ×™×”×•×œ �ימרות",
"Create/edit cookies" => "יצירת/עריכת �ימרות",
"Cookie" => "�מירה",
"Upload Cookies from textfile" => "×˜×¢×™× ×ª �ימרות מקובץ טקסט",
"Cookies" => "�ימרות",
"cookie" => "�מירה",
"Orphan Pages" => "עמודי� יתומי�",
"Edit received article" => "עריכת מ�מר שהתקבל",
"Use Image" => "שימוש ×‘×ª×ž×•× ×”",
"yes" => "כן",
"no" => "ל�",
"Image x size" => "רוחב (x) ×ª×ž×•× ×”",
"Image y size" => "גובה (y) ×ª×ž×•× ×”",
"Image name" => "ש� ×ª×ž×•× ×”",
"Image size" => "גודל ×ª×ž×•× ×”",
"Accept Article" => "�ישור מ�מר",
"Filename" => "ש� קובץ",
"Restoring a backup" => "שחזור מגיבוי",
"Warning!" => "�זהרה!",
"Restoring a backup destoys all the data in your Tiki database. All your tables will be replaced with the information in the backup." => "שחזור מגיבוי מוחק �ת כל ×”× ×ª×•× ×™ï¿½ הקיימי� בבסיס ×”× ×ª×•× ×™ï¿½. כל הטבל�ות ×™×©×ª× ×• על פי המידע שבגיבוי",
"Click here to confirm restoring" => "�ישור ביצוע שחזור",
"Create new 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" => "יצירת גיבויי� עשויה ל�רוך זמן רב. �� התהליך ל� יסתיי�, יוצג מסך ריק. במקרה זה יש לה�ריך �ת הזמן הביצוע המירבי המוגדר בקובץ php.ini",
"Click here to create a new backup" => "�ישור ביצוע גיבוי",
"Upload a backup" => "×˜×¢×™× ×ª גיבוי",
"Upload backup" => "×˜×¢×™× ×ª גיבוי",
"All games are from" => "המשחקי� המצורפי� לתיקי ה� מ�תר",
"visit the site for more games and fun" => "בקרו ב�תר כדי לשחק במשחקי� × ×•×¡×¤×™ï¿½.",
"Upload a game" => "×˜×¢×™× ×ª משחק",
"Upload a new game" => "×˜×¢×™× ×ª משחק חדש",
"Flash binary (.sqf or .dcr)" => "קובץ פל�ש (.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)" => "×ª×ž×•× ×” ×ž×•×§×˜× ×ª (�� ש� קובץ המשחק הו� foo.swf, ש� קובץ ×”×ª×ž×•× ×” חייב להיות foo.swf.gif �ו foo.swf.png �ו foo.swf.jpg)",
"Edit game" => "עריכת משחק",
"Played" => "שוחק",
"times" => "פעמי�",
"If you can't see the game then you need a flash plugin for your browser" => "�� המשחק ï¿½×™× ×• מוצג יש להתקין תוסף פל�ש בדפדפן",
"Create/edit Faq" => "יצירת/עריכת ש�לות × ×¤×•×¦×•×ª",
"created" => "× ×•×¦×¨",
"questions" => "ש�לות",
"List FAQs" => "רשימת ש�לות × ×¤×•×¦×•×ª",
"View FAQ" => "צפיה בש�לות × ×¤×•×¦×•×ª",
"Edit this FAQ" => "עריכת ש�לות × ×¤×•×¦×•×ª",
"new question" => "ש�לה חדשה",
"Edit FAQ questions" => "עריכת ש�לות",
"Answer" => "תשובה",
"Use a question from another FAQ" => "שימוש בש�לה מ�וסף ש�לות × ×¤×•×¦×•×ª �חר",
"Question" => "ש�לה",
"use" => "בחירה",
"FAQ questions" => "ש�לות",
"question" => "ש�לה",
"FAQ Questions" => "ש�לות",
"FAQ Answers" => "תשובות",
"Print multiple pages" => "הדפסת מספר עמודי�",
"Print Wiki Pages" => "הדפסת עמודי ויקי",
"print" => "הדפסה",
">I forgot my password" => ">שכחתי �ת הסיסמה שלי",//perhaps not used
"send me my password" => "שליחת הסיסמה",
"I forgot my password" => "שכחתי �ת הסיסמה שלי",
"Return to HomePage" => "חזרה לעמוד הבית",
"Add or edit folder" => "הוספת �ו עריכת ספריה",
"Add or edit a URL" => "הוספת �ו עריכת כתובת URL",
"User assigned modules" => "תצורת מודולי� למשתמש",
"Assigned Modules" => "מודולי� בשימוש",
"Restore defaults" => "שיחזור ברירת המחדל",
"column" => "טור",//perhaps not used
"Assign module" => "הקצ�ת מודול",
"Module" => "מודול",
"Column" => "טור",
"Site Stats" => "סטטיסטיקה על ה�תר",
"Started" => "התחיל לפעול בת�ריך",
"Days online" => "מספר הימי� בה� היה זמין",
"Total pageviews" => "מספר הדפי� ×”× ×¦×¤×™ï¿½",
"Average pageviews per day" => "ממוצע ימי� × ×¦×¤×™ï¿½ ליו�",
"Best day" => "היו� הטוב ביותר",
"Worst day" => "היו� הגרוע ביותר",
"Show chart for the last " => "הצגת תרשי� עבור ",
"days (0=all)" => "הימי� ×”ï¿½×—×¨×•× ×™ï¿½ (0=הכול)",
"dispay" => "הצגה",//perhaps not used
"Wiki Stats" => "סטטיסטיקה על ויקי",
"Size of Wiki Pages" => "גודל כל עמודי הויקי",
"Average page length" => "ממוצע גודל עמוד",
"Average versions per page" => "ממוצע גרס�ות לעמוד",
"Visits to wiki pages" => "מספר ×›× ×™×¡×•×ª לעמודי הויקי",
"Orphan pages" => "מספר עמודי� יתומי�",
"Average links per page" => "ממוצע קישורי� לעמוד",
"Image galleries Stats" => "סטטיסטיקה על ספריות ×”×ª×ž×•× ×•×ª",
"Average images per gallery" => "ממוצע ×ª×ž×•× ×•×ª בספריה",
"Total size of images" => "גודל כל ×”×ª×ž×•× ×•×ª",
"Average image size" => "ממוצע גודל ×ª×ž×•× ×”",
"Visits to image galleries" => "מספר ×›× ×™×¡×•×ª לספריות ×”×ª×ž×•× ×•×ª",
"File galleries Stats" => "סטטיסטיקה על ספריות קבצי�",
"Average files per gallery" => "ממוצע קבצי� בספריה",
"Total size of files" => "גודל כל הקבצי�",
"Average file size" => "ממוצע גודל קובץ",
"Visits to file galleries" => "מספר ×›× ×™×¡×•×ª לספריות הקבצי�",
"Downloads" => "מספר הורדות",
"CMS Stats" => "סטטיסטיקה על מ�מרי�",
"Total reads" => "מספר ×›× ×™×¡×•×ª למ�מרי�",
"Average reads per article" => "ממוצע ×›× ×™×¡×•×ª למ�מר",
"Total articles size" => "גודל כל המ�מרי�",
"Average article size" => "ממוצע גודל מ�מר",
"Forum Stats" => "סטטיסטיקה על פורומי�",
"Total topics" => "מספר × ×•×©ï¿½×™ï¿½",
"Average topics per forums" => "ממוצע × ×•×©ï¿½×™ï¿½ בפורו�",
"Total threads" => "מספר שיחות",
"Average threads per topic" => "ממוצע שיחות ×œ× ×•×©ï¿½",
"Visits to forums" => "מספר ×›× ×™×¡×•×ª לפורומי�",
"Blog Stats" => "סטטיסטיקה על בלוגי�",
"Weblogs" => "בלוגי�",
"Total posts" => "מספר הודעות",
"Average posts pero weblog" => "ממוצע הודעות בבלוג",
"Total size of blog posts" => "גודל כל ההודעות בבלוגי�",
"Average posts size" => "ממוצע גודל הודעה",
"Visits to weblogs" => "מספר ×›× ×™×¡×•×ª לבלוגי�",
"Poll Stats" => "סטטיסטיקה על מש�לי�",
"Total votes" => "מספר הצבעות",
"Average votes per poll" => "ממוצע הצבעות במש�ל",
"Faq Stats" => "סטטיסטיקה על ש�לות × ×¤×•×¦×•×ª",
"Total questions" => "מספר ש�לות",
"Average questions per FAQ" => "ממוצע ש�לות בכל �וסף",
"User Stats" => "סטטיסטיקה על משתמשי�",
"Average bookmarks per user" => "ממוצע ×¡×™×ž× ×™×•×ª למשתמש",
"user bookmarks" => "×¡×™×ž× ×™×•×ª משתמש",//perhaps not used
"stats" => "סטטיסטיקות",
"games" => "משחקי�",
"orphan pages" => "עמודי� יתומי�",
"Backups" => "גיבויי�",
"Admin FAQs" => "× ×™×”×•×œ ש�לות × ×¤×•×¦×•×ª",
"Admin Cookies" => "× ×™×”×•×œ עוגיות",//perhaps not used
"I forgot my pass" => "שכחתי �ת הסיסמה שלי",
"Recently visited pages" => "עמודי� ×©× ×¦×¤×• ×œï¿½×—×¨×•× ×”",
"Last Created FAQs" => "ש�לות × ×¤×•×¦×•×ª ×©× ×•×¦×¨×• ×œï¿½×—×¨×•× ×”",
"Top Visited FAQs" => "ש�לות ×•×ª×©×•× ×•×ª × ×¦×¤×•×ª ביותר",
"Quick edit a Wiki page" => "עריכה מהירה של עמוד ויקי",
"Bookmarks" => "×¡×™×ž× ×™×•×ª",
"mark" => "סימון",
"new" => "חדש",
"Permision denied" => "�ין הרש�ות",
"Upload failed" => "×”×˜×¢×™× ×” × ×›×©×œ×”",
"No faq indicated" => "ל� × ×‘×—×¨×• ש�לות × ×¤×•×¦×•×ª",
"No pages indicated" => "ל� × ×‘×—×¨×• עמודי�",
"You must log in to use this feature" => "יש להתחבר על ×ž× ×ª להשתמש ×‘×ª×›×•× ×” ז�ת.",
"No url indicated" => "ל� × ×‘×—×¨×” כתובת URL",
"The thumbnail name must be" => "ש� ×”×ª×ž×•× ×” ×”×ž×•×§×˜× ×ª חייב להיות",
"Passcode to register (not your user password)" => "קוד רישו� (ל� הסיסמה שלך)",
"Link type" => "סוג קישור",
"replace current page" => "החלפת העמוד ×”× ×•×›×—×™",
"framed" => "בתוך מסגרת",
"open new window" => "פתיחת חלון חדש",
"Include" => "כוללת �ת",
"Includes" => "כוללת",
"uploaded" => "× ×˜×¢×Ÿ",
"size" => "גודל",
"dls" => "הורדות",
"No attachments for this page" => "�ין קבצי� מצורפי� לעמוד זה.",//perhaps not used
"attach" => "מצורף",
"Entire site" => "כל ה�תר",//perhaps not used
"Quizzes" => "×—×™×“×•× ×™ï¿½",
"content templates" => "×ª×‘× ×™×•×ª תוכן",//perhaps not used
"shoutbox" => "הגיגי�",//perhaps not used
"drawings" => "תרשימי�",//perhaps not used
"HTML pages" => "עמודי HTML",
"assigned" => "מוקצת",//perhaps not used
"edit image" => "עריכת ×ª×ž×•× ×”",
"Browse gallery" => "שיטוט בספריה",
"Articles (subs)" => "מ�מרי� (הצעות)",
"Apply template" => "הפעלת ×ª×‘× ×™×ª",
"none" => "לל� ×ª×‘× ×™×ª",
"Search stats" => "סטטיסטיקות חיפוש",
"Hotwords in new window" => "פתיחת מילות קישור בחלון חדש",
"Allow smileys" => "שימוש ×‘×—×™×™×›× ×™ï¿½",
"Shoutbox" => "הגיגי�",
"Drawings" => "תרשימי�",
"Referer stats" => "סטטיסטיקות ×”×¤× ×™×”",
"Referer Stats" => "סטטיסטיקות ×”×¤× ×™×”",
"General Layout options" => "�פשרויות סידור כלליות",
"Layout per section" => "סידור לכל סוג מידע",
"Admin layout per section" => "× ×™×”×•×œ סידור לכל סוג מידע",
"Home page" => "עמוד הבית",
"Use URI as Home Page" => "שימוש ב URI כעמוד בית",
"Request passcode to register" => "×”×ª× ×™×ª רישו� במילת מעבר",
"Count admin pageviews" => "ספירת ×›× ×™×¡×•×ª ×ž× ×”×œ",
"Browser title" => "כותרת הדפדפן",
"Reg users can change theme" => "משתמשי� רגילי� יכולי� ×œ×©× ×•×ª ערכת תצוגה",
"Reg users can change language" => "משתמשי� רגילי� יכולי� ×œ×©× ×•×ª שפה",
"Wiki attachments" => "קבצי� מצורפי� לויקי",
"Use a directory to store files" => "שמירת קבצי� במערכת הקבצי�",
"Path" => "ש� מחיצה",
"Use templates" => "×ª×‘× ×™×•×ª",
"Show page title" => "הצגת כותרת עמוד",
"Use database to store images" => "שמירת ×ª×ž×•× ×•×ª בבסיס ×”× ×ª×•× ×™ï¿½",
"Use a directory to store images" => "שמירת ×ª×ž×•× ×•×ª במערכת הקבצי�",
"Directory path" => "ש� מחיצה",
"Uploaded image names must match regex" => "שמות ×ª×ž×•× ×•×ª ×©× ×˜×¢× ×•×ª חייבי� להת�י� לביטוי regex",
"Uploaded image names cannot match regex" => "שמות ×ª×ž×•× ×•×ª ×©× ×˜×¢× ×•×ª חייבי� ל� להת�י� לביטוי regex",
"Use database to store files" => "שמירת קבצי� בבסיס ×”× ×ª×•× ×™ï¿½",
"Uploaded filenames must match regex" => "שמות קבצי� ×©× ×˜×¢× ×™ï¿½ חייבי� להת�י� לביטוי regex",
"Uploaded filenames cannot match regex" => "שמות קבצי� ×©× ×˜×¢× ×™ï¿½ חייבי� ל� להת�י� לביטוי regex",
"Default ordering for blog listing" => "סדר ברירת מחדל ברשימת בלוגי�",
"Creation date (desc)" => "ת�ריך יצירה (יורד)",
"Last modification date (desc)" => "ת�ריך ×©×™× ×•×™ �חרון (יורד)",
"Blog title (asc)" => "כותרת בלוג (עולה)",
"Number of posts (desc)" => "מספר ההודעות (יורד)",
"Activity (desc)" => "פעילות (יורד)",
"Parameters" => "פרמטרי�",
"Random image from" => "×ª×ž×•× ×” �קר�ית מתוך ",
"use gallery" => "שימוש בספריה",
"use menu" => "שימוש בתפריט",
"cancel edit" => "ביטול עריכה",
"Upload" => "×˜×¢×™× ×”",
"View a FAQ" => "עיון בש�לות × ×¤×•×¦×•×ª",
"Take a quiz" => "× ×¡×” חידון",
"Quiz stats" => "סטטיסטיקות ×—×™×“×•× ×™ï¿½",
"Stats for a Quiz" => "סטטיסטיקות לחידון",
"list quizzes" => "רשימת ×—×™×“×•× ×™ï¿½",
"quiz stats" => "סטטיסטיקות חידון",
"admin quizzes" => "× ×™×”×•×œ ×—×™×“×•× ×™ï¿½",
"Create/edit quizzes" => "יצירת/עריכת ×—×™×“×•× ×™ï¿½",
"There are individual permissions set for this quiz" => "יש הרש�ות ספציפיות לחידון זה",
"Quiz can be repeated" => "× ×™×ª×Ÿ לחזור על החידון",
"Store quiz results" => "שמירת תוצ�ות החידון",
"Questions per page" => "מספר ש�לות בעמוד",
"Quiz is time limited" => "החידון מוגבל בזמן",
"Maximum time" => "זמן מרבי",
"can_repeat" => "חזרה מותרת",
"time_limit" => "הגבלת זמן",
"results" => "תוצ�ות",
"this quiz stats" => "סטטיסטיקות חידון זה",
"edit this quiz" => "עריכת חידון זה",
"Reuse question" => "מיחזור ש�לות",
"Questions" => "ש�לות",
"maxScore" => "ציון מרבי",
"text" => "טקסט",
"points" => "× ×§×•×“×•×ª",
"Time Left" => "זמן × ×•×ª×¨",
"send answers" => "שליחת התשובות",
"Result" => "תוצ�ות",
"To Points" => "עד × ×™×§×•×“",
"From Points" => "×ž× ×™×§×•×“",
"answer" => "תשובה",
"Stats for quizzes" => "סטטיסטיקות על ×—×™×“×•× ×™ï¿½",
"Quiz" => "חידון",
"taken" => "מול� בת�ריך",
"Av score" => "ציון ממוצע",
"Av time" => "זמן ממוצע",
"Stats for quiz" => "סטטיסטיקות על חידון",
"clear stats" => "× ×™×§×•×™ סטטיסטיקות",
"date" => "ת�ריך",
"time" => "זמן",
"result" => "תוצ�ה",
"details" => "פרטי�",
"del" => "ביטול",
"Stats for this quiz Questions " => "סטטיסטיקות על ש�לות חידון זה ",
"Average" => "ממוצע",
"Quiz result stats" => "סטטיסטיקות תוצ�ות חידון",
"Time" => "זמן",
"User answers" => "תשובות משתמש",
"Users can suggest questions" => "משתמשי� יכולי� להציע ש�לות",
"suggested" => "ש�לות מוצעות",//perhaps not used
"underline" => "קו תחתון",
"table" => "טבלה",
"wiki link" => "קישור ויקי",
"heading1" => "כותרת 1",
"heading2" => "כותרת 2",//perhaps not used
"heading3" => "כותרת 3",//perhaps not used
"title bar" => "כותרת מודגשת",
"box" => "תיבה",
"rss feed" => "×”×–× ×” ×—×™×¦×•× ×™×ª",
"dynamic content" => "תוכן ×“×™× ×ž×™",
"tagline" => "�ימרה",
"hr" => "מפריד",
"center text" => "מירכוז טקסט",
"colored text" => "טקסט ×¦×‘×¢×•× ×™",
"image" => "×ª×ž×•× ×”",
"special chars" => "תווי� מיוחדי�",
"Suggested questions" => "ש�לות מוצעות",
"approve" => "�ישור",
"Show suggested questions/suggest a question" => "הצגת ש�לות מוצעות",
"Hide suggested questions" => "הסתרת ש�לות מוצעות",
"Admin templates" => "× ×™×”×•×œ ×ª×‘× ×™×•×ª",
"Create/edit templates" => "יצירת/עריכת ×ª×‘× ×™×•×ª",
"use in cms" => "זמין במ�מרי�",
"use in wiki" => "זמין בויקי",
"use in HTML pages" => "שימוש בעמודי HTML",
"template" => "×ª×‘× ×™×ª",
"last modif" => "×©×™× ×•×™ �חרון",
"sections" => "× ×•×©ï¿½×™ï¿½",
"Usage chart" => "גרף שימוש",
"Quiz Stats" => "סטטיסטיקות על ×—×™×“×•× ×™ï¿½",
"Average questions per quiz" => "ממוצע ש�לות לחידון",
"Quizzes taken" => "מספר ×—×™×“×•× ×™ï¿½ ששוחקו",
"Average quiz score" => "ממוצע ×¦×™×•× ×™ï¿½",
"Average time per quiz" => "זמן ממוצע לחידון",
"Mail notifications" => "תזכורות דו�ר",
"Add notification" => "הוספת תזכורת",
"Event" => "�רוע",
"A user registers" => "משתמש חדש × ×¨×©ï¿½",
"A user submits an article" => "משתמש מגיש הצעה",
"use admin email" => "שימוש בדו�ר ï¿½×œ×§×˜×¨×•× ×™ של ×”×ž× ×”×œ",
"event" => "�רוע",
"object" => "פריט",
"categorize" => "קטגוריות:",
"show categories" => "הצגת קטגוריות",
"hide categories" => "הסתרת קטגוריות",
"categorize this object" => "קישור עצ� זה לקטגוריות",
"Admin categories" => "× ×™×”×•×œ קטגוריות",
"Tiki Shoutbox" => "הגיגי�",
"Post or edit a message" => "שליחת/עריכת הודעה",
"Messages" => "הודעות",
"Edit Image" => "עריכת ×ª×ž×•× ×”",
"Edit successful!" => "עריכה הצליחה",
"The following image was successfully edited" => "×”×ª×ž×•× ×” × ×¢×¨×›×” בהצלחה",
"creates the editable drawing foo" => "יוצר תרשי� × ×™×ª×Ÿ לעריכה בש� foo.",
"underlines text" => "יוצר קו תחתון",
"Admin HTML pages" => "× ×™×”×•×œ עמודי HTML",
"Create/edit HTML pages" => "יצירת/עריכת עמודי HTML",
"Page name" => "ש� עמוד",
"Dynamic" => "×“×™× ×ž×™",
"Static" => "סטטי",
"Refresh rate (if dynamic) [secs]" => "קצב ×¨×™×¢× ×•×Ÿ (�� ×“×™× ×ž×™) [×‘×©× ×™×•×ª]",
"Content" => "תוכן",
"content" => "תוכן",
"Admin HTML page dynamic zones" => "× ×™×”×•×œ �יזורי� ×“×™× ×ž×™×™ï¿½",
"Edit this HTML page" => "עריכת עמוד HTML זה",//perhaps not used
"View page" => "צפיה בעמוד",
"Edit zone" => "עריכת �יזור",
"Dynamic zones" => "�יזורי� ×“×™× ×ž×™×™ï¿½",
"zone" => "�יזור",
"Mass update" => "עדכון כולל",
"layout options" => "�פשרויות סידור",
"searched" => "מספר חיפושי�",
"Available drawings" => "תרשימי� ×–×ž×™× ×™ï¿½",
"last" => "ת�ריך ×”×¤× ×™×” ï¿½×—×¨×•× ×”",
"Admin Menu" => "תפריט ×ž× ×”×œ",
"Admin drawings" => "× ×™×”×•×œ תרשימי�",
"Content templates" => "×ª×‘× ×™×•×ª תוכן",
"Entire Site" => "כל ה�תר",
"Send articles" => "שליחת מ�מרי�",
"Received articles" => "קבלת מ�מרי�",
"Admin topics" => "× ×™×”×•×œ × ×•×©ï¿½×™ï¿½",
"Admin posts" => "× ×™×”×•×œ הודעות",
"List Quizzes" => "רשימת ×—×™×“×•× ×™ï¿½",
"Last Created Quizzes" => "×—×™×“×•× ×™ï¿½ ×©× ×•×¦×¨×• ×œï¿½×—×¨×•× ×”",
"Top Quizzes" => "×—×™×“×•× ×™ï¿½ מובילי�",
"Top games" => "משחקי� מובילי�",
"Since your last visit" => "מ�ז ביקורך ה�חרון",
"Since your last visit on" => "מ�ז ביקורך ה�חרון בת�ריך",
"new images" => "×ª×ž×•× ×•×ª חדשות",
"wiki pages changed" => "עמודי ויקי ×”×©×ª× ×•",
"new files" => "קבצי� חדשי�",
"new comments" => "הערות חדשות",
"new users" => "משתמשי� חדשי�",
"Google Search" => "חיפוש בגוגל",
"Username cannot contain whitespace" => "ש� המשתמש ï¿½×™× ×• יכול להכיל רווחי�",
"Wrong passcode you need to know the passcode to register in this site" => "קוד הרישו� שגוי ולפיכך ההרשמה ל�תר ל� התבצעה.",
"No quiz indicated" => "ל� × ×‘×—×¨ חידון",
"You cannot take this quiz twice" => "�ין �פשרות להבחן בחידון זה פעמיי�.",
"Quiz time limit excedeed quiz cannot be computed" => "הזמן המוקצה לחידון עבר ולכן ל� × ×™×ª×Ÿ לחשב �ת התוצ�ה",
"No result indicated" => "ל� × ×‘×—×¨×” תוצ�ה",
"You dont have permission to edit messages" => "�ין הרש�ות לעריכת הגיגי�.",
"Invalid request to edit an image" => "× ×¡×™×•×Ÿ ל� תקין לעריכת ×ª×ž×•× ×”.",
"Permission denied you cannot edit images" => "�ין הרש�ות לעריכת ×ª×ž×•× ×•×ª.",
"Permission denied you can edit images but not in this gallery" => "�ין הרש�ות לעריכת ×ª×ž×•× ×•×ª בספריה ז�ת.",
"Failed to edit the image" => "כשלון ×‘× ×¡×™×•×Ÿ לערוך �ת ×”×ª×ž×•× ×”.",
"No question indicated" => "ל� × ×‘×—×¨×” ש�לה",
"FAQ" => "ש�לות × ×¤×•×¦×•×ª",
"File" => "ש� קובץ",
"Server time zone" => "�זור הזמן של השרת",
"Displayed time zone" => "�יזור זמן להצגה",
"Long date format" => "×ž×‘× ×” ת�ריך �רוך",
"Short date format" => "×ž×‘× ×” ת�ריך קצר",
"Long time format" => "×ž×‘× ×” זמן �רוך",
"Short time format" => "×ž×‘× ×” זמן קצר",
"Full Text Search" => "חיפוש טקסט מל�",
"Surveys" => "סקרי�",
"Webmail" => "דו�ר רשת",
"Newsletters" => "×—×“×©×•× ×™ï¿½",
"newsletters" => "×—×“×©×•× ×™ï¿½",//perhaps not used
"trckrs" => "עוקבי�",//perhaps not used
"Use gzipped output" => "השתמש בפלט דחוס",
"Use direct pagination links" => "הצגת קישורי� ישירי� למספרי העמודי� הב�י�",
"Slideshows theme" => "ערכת תצוגה לשיקופיות",
"Server name (for absolute URIs)" => "ש� השרת (עבור URI מוחלטי�)",
"User registration and login" => "רישו� והתחברות של משתמשי�",
"Store plaintext passwords" => "שמירת סיסמ�ות בגלוי (ל� מומלץ)",
"Use challenge/response authentication" => "שימוש ב�ימות זיהוי מ�ובטח",
"Force to use chars and nums in passwords" => "חיוב משתמש לכלול בסיסמה תווי� וספרות",
"Minimum password length" => "�ורך ×ž×™× ×™×ž×œ×™ לסיסמה",
"Password invalid after days" => "מספר הימי� המרבי עד לפקיעת הסיסמה",
"Export Wiki Pages" => "יצו� עמודי ויקי",
"Export" => "יצו�",
"feat" => "×ª×›×•× ×•×ª",//perhaps not used
"file gls" => "קבצי�",//perhaps not used
"gral" => "כללי",//perhaps not used
"Blog level comments" => "הערות ברמת הבלוג",
"Post level comments" => "הערות ברמת הודעה בודדת",
"img gls" => "×ª×ž×•× ×•×ª",//perhaps not used
"frms" => "פורומי�",//perhaps not used
"Trackers" => "עוקבי�",
"use in newsletters" => "זמין ×‘×—×“×©×•× ×™ï¿½",
"Section" => "תחו�",
"None" => "�ין",
"Create new" => "יצירת חדש",
"list newsletters" => "רשימת ×—×“×©×•× ×™ï¿½",
"admin newsletters" => "× ×™×”×•×œ ×—×“×©×•× ×™ï¿½",
"send newsletters" => "שליחת ×—×“×©×•× ×™ï¿½",
"Newsletter" => "חדשון",
"Add a subscription newsletters" => "הוספת ×ž× ×•×™×™ï¿½ לחדשון",
"Add all your site users to this newsletter (broadcast)" => "הוספת כל משתמשי ה�תר לחדשון",
"Add users" => "הוספת משתמשי�",
"valid" => "תקין",
"subscribed" => "ת�ריך רישו�",
"Create/edit newsletters" => "יצירת/עריכת ×—×“×©×•× ×™ï¿½",
"There are individual permissions set for this newsletter" => "יש הרש�ות ספציפיות לחדשון זה",
"Users can subscribe any email addresss" => "משתמשי� יכולי� לרשו� כל כתובת דו�ר ï¿½×œ×§×˜×¨×•× ×™",
"Frequency" => "תדירות",
"editions" => "מהדורות",
"last sent" => "× ×©×œ×— ×œï¿½×—×¨×•× ×” בת�ריך",
"subscriptions" => "×ž× ×•×™×™ï¿½",
"List surveys" => "רשימת סקרי�",
"survey stats" => "סטטיסטיקות סקרי�",
"this survey stats" => "סטטיסטיקות לסקר זה",
"edit this survey" => "עריכת סקר זה",
"admin surveys" => "× ×™×”×•×œ סקרי�",
"One choice" => "�פשרות �חת",
"Multiple choices" => "מספר �פשרויות",
"Short text" => "טקסט קצר",
"Rate (1..5)" => "דירוג (1-5)",
"Rate (1..10)" => "דירוג (1-10)",
"Options (if apply)" => "�פשרויות (�� ×¨×œ×•×•× ×˜×™)",
"list surveys" => "רשימת סקרי�",
"Create/edit surveys" => "יצירת/עריכת סקרי�",
"There are individual permissions set for this survey" => "יש הרש�ות ספציפיות לסקר זה",
"open" => "פתוח",
"status" => "סטטוס",
"List trackers" => "רשימת עוקבי�",
"Admin trackers" => "× ×™×”×•×œ עוקבי�",
"Edit this tracker" => "עריכת עוקב",
"View this tracker items" => "צפיה בפריטי� בעוקב זה",
"Edit tracker fields" => "עריכת שדות עוקב",
"checkbox" => "מתג",
"text field" => "שורת טקסט",
"textarea" => "טקסט",
"drop down" => "רשימת �פשרויות",
"user selector" => "בחירת משתמש",
"group selector" => "בחירת קבוצה",
"date and time" => "ת�ריך ושעה",
"Options (separated by commas used in dropdowns only)" => "�פשרויות (מופרדות בפסיק - עבור רשימת �פשרויות בלבד)",
"Is column visible when listing tracker items?" => "השדה מוצג ברשימת הפריטי� בעוקב",
"Column links to edit/view item?" => "שדה ר�שי המקושר לפעולת צפיה/עריכה",
"Tracker fields" => "שדות עוקב",
"is_main" => "שדה ר�שי",
"Tbl vis" => "מוצג ברשימה",
"Create/edit trackers" => "יצירת/ערכית עוקבי�",
"There are inddividual permissions set for this tracker" => "יש הרש�ות ספציפיות לעוקב זה",//perhaps not used
"Show status when listing tracker items?" => "הצגת סטטוס ברשימת הפריטי�",
"Show creation date when listing tracker items?" => "הצגת ת�ריך יצירה ברשימת הפריטי�",
"Show last_modified date when listing tracker items?" => "הצגת ת�ריך ×©×™× ×•×™ �חרון ברשימת הפריטי�",
"Tracker items allow comments?" => "× ×™×ª×Ÿ להעיר הערות לפריט",
"Tracker items allow attachments?" => "× ×™×ª×Ÿ לצרף קבצי� לפריט",
"items" => "פריטי�",
"fields" => "שדות",
"search category" => "חיפוש קטגוריה",
"Change password enforced" => "×©×™× ×•×™ סיסמה",
"Import page" => "יבו� עמוד",
"export all versions" => "יצו� כל הגרס�ות",
"Import pages from a PHPWiki Dump" => "יבו� עמודי� מחבילת PHPWiki",
"Path to where the dumped files are" => "המדריך בו × ×ž×¦ï¿½×™ï¿½ הקבצי�",//perhaps not used
"Overwrite existing pages if the name is the same" => "החלפת עמודי� קיימי� �� ש� העמוד זהה",
"Previously remove existing page versions" => "@Previously remove existing page versions@",
"import" => "יבו�",
"ver" => "גרסה",
"excerpt" => "@excerpt@",
"Survey stats" => "סטטיסטיקות סקר",
"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." => "תודה על ×©× ×¨×©×ž×ª. בקרוב ישלח לך דו�ר ï¿½×œ×§×˜×¨×•× ×™ ל�ישור ההרשמה. ×—×“×©×•× ×™ï¿½ ל� ישלחו �ליך ×œ×¤× ×™ שההרשמה ת�ושר על ידך.",
"Your email address was removed from the list of subscriptors." => "כתובת הדו�ר ×”ï¿½×œ×§×˜×¨×•× ×™ שלך הוסרה מרשימת ×”×ž× ×•×™×™ï¿½.",
"Subscription confirmed!" => "ההרשמה �ושרה!",
"Subscribe to newsletter" => "הרשמה לחדשון",
"Email:" => "דו�ר ï¿½×œ×§×˜×¨×•× ×™:",
"Subscribe" => "הרשמה",
"similar" => "עמודי� דומי�",
"slides" => "שיקופיות",
"export" => "יצו�",
"Pick your avatar" => "בחירת דמות מייצגת",
"Pick user Avatar" => "בחירת דמות מייצגת",
"Your current avatar" => "הדמות המייצגת ×”× ×•×›×—×™×ª",
"Upload your own avatar" => "×˜×¢×™× ×ª דמות מייצגת �ישית",
"Send newsletters" => "שליחת ×—×“×©×•× ×™ï¿½",
"cancel" => "ביטול",
"Prepare a newsletter to be sent" => "×”×›× ×ª חדשון למשלוח",
"Subject" => "× ×•×©ï¿½",
"Send Newsletters" => "שליחת ×—×“×©×•× ×™ï¿½",
"Sent editions" => "מהדורות ×©× ×©×œ×—×•",
"subject" => "× ×•×©ï¿½",
"sent" => "× ×©×œ×— בת�ריך",
"Stats for surveys" => "סטטיסטיקות עבור סקרי�",
"Survey" => "סקרי�",
"Last taken" => "מול� ×œï¿½×—×¨×•× ×”",
"Stats for survey" => "סטטיסטיקות עבור סקר",
"Stats for this survey Questions " => "סטטיסטיקות עבור ש�לות סקר זה ",
"Avatar" => "דמות מייצגת",
"at tracker" => "בעוקב",
"view comments" => "הצגת הערות",
"Insert new item" => "הוספת פריט חדש",
"Tracker Items" => "פריטי עוקב",
"Filters" => "×ž×¡× × ×™ï¿½",
"any" => "הכל",
"checked" => "לחוץ",
"unchecked" => "ל� לחוץ",
"last_modified" => "×©×•× ×” ×œï¿½×—×¨×•× ×”",
"Editing tracker item" => "עריכת פריט",
"Edit item" => "עריכת פריט",
"View item" => "צפיה בפריט",
"Add a comment" => "הוספת הערה",
"posted on" => "× ×©×œ×— בת�ריך",
"Attach a file to this item" => "צירוף קובץ לפריט זה",
"Attachments" => "קבצי� מצורפי�",
"No attachments for this item" => "�ין קבצי� מצורפי� לפריט",
"settings" => "העדפות",
"mailbox" => "תיבת הדו�ר",
"compose" => "חיבור הודעה",
"contacts" => "ï¿½× ×©×™ קשר",
"Add new mail account" => "הוספת חשבון דו�ר חדש",
"Account name" => "ש� חשבון",
"POP server" => "ש� שרת POP",
"SMTP server" => "ש� שרת SMTP",
"Port" => "פורט",
"SMTP requires authentication" => "עבור SMTP × ×“×¨×© �ימות זיהוי",
"Yes" => "כן",
"No" => "ל�",
"Username" => "ש� משתמש",
"Messages per page" => "מספר הודעות בעמוד",
"User accounts" => "×—×©×‘×•× ×•×ª משתמש",
"pop" => "שרת POP",
"View All" => "צפיה בהכל",
"Unread" => "ל� × ×§×¨ï¿½",
"Flagged" => "מיוחד",
"Msg" => "הודעה",
"First" => "ר�שון",
"Prev" => "הקוד�",
"Mark as Flagged" => "סימון כמיוחד",
"Mark as unflagged" => "סימון כל� מיוחד",
"Mark as read" => "סימון ×›× ×§×¨ï¿½",
"Mark as unread" => "סימון כל� × ×§×¨ï¿½",
"ok" => "�ישור",
"sender" => "שולח",
"Next" => "הב�",
"back to mailbox" => "בחזרה ךתיבת הדו�ר",
"full headers" => "כותרות מל�ות",
"normal headers" => "כותרות רגילות",
"reply" => "×ž×¢× ×”",
"reply all" => "×ž×¢× ×” לכל",
"forward" => "העברה",
"To" => "עבור",
"Cc" => "העתק",
"Create/edit contacts" => "יצירת/עריכת ï¿½× ×©×™ קשר",
"Nickname" => "×›×™× ×•×™",
"Contacts" => "ï¿½× ×©×™ קשר",
"First Name" => "ש� פרטי",
"select from address book" => "בחירה מספר הכתובות",
"cc" => "העתק",
"bcc" => "העתק × ×¡×ª×¨",
"Use HTML mail" => "שימוש בדו�ר HTML",
"The following addresses are not in your address book" => "כתובות �לו ï¿½×™× ×Ÿ בספר הכתובות",
"Last Name" => "ש� משפחה",
"add contacts" => "הוספת ï¿½× ×©×™ קשר",
"Attachment 1" => "קובץ מצורף 1",
"Attachment 2" => "קובץ מצורף 2",
"Attachment 3" => "קובץ מצורף 3",
"done" => "סיו�",
"Address book" => "ספר כתובות",
"Viewing blog post" => "צפיה בהודעת בלוג",
"Return to blog" => "חזרה לבלוג",
"Wiki Import dump" => "יבו� תכולת ויקי - Dump",
"phpinfo" => "מידע על phpinfo - PHP",
"webmail" => "דו�ר רשת",//perhaps not used
"List Trackers" => "רשימת עוקבי�",
"List Surveys" => "רשימת סקרי�",
"Last Modified Items" => "פריטי� ×©×©×•× ×• ×œï¿½×—×¨×•× ×”",
"Last Items" => "פריטי� ï¿½×—×¨×•× ×™ï¿½",
"Missing title or body when trying to post a comment" => "כותרת �ו תוכן ריקי� - יש להזין תוכן ×œ×©× ×™×”ï¿½.",
"No newsletter indicated" => "ל� × ×‘×—×¨ חדשון",
"No survey indicated" => "ל� × ×‘×—×¨ סקר",
"No tracker indicated" => "ל� × ×‘×—×¨ עוקב",
"You cant use the same password again" => "ל� × ×™×ª×Ÿ להשתמש ב�ותה סיסמה שוב",//perhaps not used
"Password should be at least" => "הסיסמה צריכה להיות ב�ורך של לפחות",
"characters long" => "תווי�",
"Password must contain both letters and numbers" => "הסיסמה צריכה להכיל ג� תווי� וג� ספרות",
"You must be logged in to subscribe to newsletters" => "עליך להיות מחובר כדי להרש� ×œ×—×“×©×•× ×™ï¿½",
"You cannot take this survey twice" => "�ין �פשרות להשתתף בסקר זה פעמיי�.",
"You have to provide a name to the file" => "יש לבחור ש� לקובץ",//perhaps not used
"No item indicated" => "ל� × ×‘×—×¨ פריט",
"No post indicated" => "ל� × ×‘×—×¨×” הודעה",
"Allow secure (https) login" => "�פשר התחברות מ�ובטחת https",
"Require secure (https) login" => "חייב התחברות מ�ובטחת https",
"HTTP server name" => "ש� שרת HTTP",
"HTTP port" => "פורט HTTP",
"HTTPS server name" => "ש� שרת HTTPS",
"HTTPS port" => "פורט HTTPS",
"HTTPS URL prefix" => "קידומת HTTPS",
"standard" => "×¡×˜× ×“×¨×˜×™",
"secure" => "מ�ובטח",
"stay in ssl mode" => "המשך במצב מ�ובטח",
"Require HTTP Basic authentication" => "חייב �ימות זיהוי בסיסי ב HTTP",
"HTTP URL prefix" => "קידומת HTTP",
"Remove unused pictures" => "הסרת ×ª×ž×•× ×•×ª ×©ï¿½×™× ×Ÿ בשימוש",
"Wiki Home Page" => "עמוד הבית של ויקי",
"Wiki Page Names" => "שמות עמודי ויקי",
"full" => "מל�י� (×—×™×•× ×™ לעברית)",
"strict" => "מצומצמי�",
"Pictures" => "×ª×ž×•× ×•×ª",
"Use page description" => "תי�ור עמוד",
"Allow viwing HTML mails?" => "�פשר לצפות בהודעות דו�ר HTML",//perhaps not used
"Maximum size for each attachment" => "גודל מרבי לכל קובץ מצורף",
"Page alias" => "Page alias",
"page" => "ש� עמוד",
"page|desc" => "ש� עמוד|תי�ור",
"SomeName" => "SomeEnglishName",
"some text" => "טקסט כלשהו",
"Non parsed sections" => "תוכן לל� ×©×™× ×•×™×™ï¿½",
"Prevents parsing data" => "×ž×•× ×¢ ביצוע ×©×™× ×•×™×™ï¿½ לפי כללי ויקי בתוכן.",
"left" => "שמ�לי (×™×ž× ×™ בתצוגה מימין לשמ�ל)",
"right" => "×™×ž× ×™ (שמ�לי בתצוגה מימין לשמ�ל)",
"assign_perms" => "הקצ�ת הרש�ות",
"Available FAQs" => "ש�לות × ×¤×•×¦×•×ª ×–×ž×™× ×•×ª",
"Admin Polls" => "× ×™×”×•×œ מש�לי�",
"Set last poll as current" => "בחירת המש�ל ה�חרון ×›× ×•×›×—×™",
"Close all polls but last" => "סגירת כל המש�לי� למעט ה�חרון",
"Activate all polls" => "הפעלת כל המש�לי�",
"Admin Menus" => "× ×™×”×•×œ תפריטי�",
"b" => "×¢",//perhaps not used
"i" => "× ",//perhaps not used
"ul" => "קת",//perhaps not used
"tbl" => "טבלה",//perhaps not used
"a" => "×§",//perhaps not used
"h1" => "×›1",//perhaps not used
"h2" => "×›2",//perhaps not used
"h3" => "×›3",//perhaps not used
"dcs" => "תד",//perhaps not used
"center" => "מירכוז",
"col" => "צבע",//perhaps not used
"img nc" => "×ª×ž×•× ×” לל� מטמון",
"chars" => "תווי�",//perhaps not used
"Upload picture" => "×˜×¢×™× ×ª ×ª×ž×•× ×”",
"Batch upload" => "×˜×¢×™× ×” ב�צווה",
"You dont have permission to do that" => "�ין הר�שות לביצוע פעולה ז�ת.",
"parent" => "למעלה",
"directory" => "מדריך",
"userfiles" => "קבצי משתמש",//perhaps not used
"Directory" => "מדריך",
"User Messages" => "הודעות משתמש",
"User Tasks" => "משימות משתמש",
"Newsreader" => "קור� קבוצות דיון",
"Contact" => "�יש קשר",
"User Notepad" => "×¤× ×§×¡ משתמש",
"User files" => "קבצי משתמש",
"User menu" => "תפריט משתמש",
"Mini calendar" => "לוח ×©× ×” קטן",
"Ephemerides" => "יומן",
"Theme control" => "לוח בקרת ערכות",
"Theme Control" => "לוח בקרת ערכות",
"OS" => "מערכת הפעלה",
"Unix" => "×™×•× ×™×§×¡",
"Windows" => "×—×œ×•× ×•×ª",
"Unknown/Other" => "ל� ידוע/�חר",
"Use database for translation" => "שימוש בבסיס ×”× ×ª×•× ×™ï¿½ לצורך תרגו�",
"Record untranslated" => "רשומה ל� מתורגמת",
"Temporary directory" => "מדריך ×–×ž× ×™",
"Map" => "@Map@",
"Help" => "עזרה",
"Contact user" => "יצירת קשר למשתמש",
"contact feature disabled" => "×ª×›×•× ×ª יצירת קשר ï¿½×™× ×” פעילה",
"Remember me feature" => "×ª×›×•× ×ª זכור �ותי",
"Disabled" => "ל� פעיל",
"Only for users" => "רק למשתמשי�",
"Users and admins" => "משתמשי� ×•×ž× ×”×œ×™ï¿½",
"Duration:" => "משך:",
"week" => "שבוע",
"Remove a tag" => "מחיקת תגית",
"mins" => "דקות",
"Cache wiki pages" => "שמירת עמודי ויקי במטמון",
"no cache" => "�ין מטמון",
"Footnotes" => "הערות שוליי�",
"Users can save pages to notepad" => "משתמשי� יכולי� לשמור עמודי� ×œ×¤× ×§×¡",//perhaps not used
"Users can lock pages (if perm)" => "משתמשי� יכולי� ×œ× ×¢×•×œ עמודי� (�� יש לה� הרש�ה)",
"Tables syntax" => "שיטת טבל�ות",
"|| for rows" => "|| להפרדת שורות",
"\n for rows" => "\n להפרדת שורות",//perhaps not used
"Wiki History" => "הסטורית ויקי",
"Forum settings" => "העדפות פורו�",//perhaps not used
"Allow wiki markup" => "הרש�ת שימוש ×‘×¡×™×ž×•× ×™ ויקי",//perhaps not used
"Describe topics in listing" => "תי�ור ×”× ×•×©ï¿½×™ï¿½ ברשימה",//perhaps not used
"Allow viewing HTML mails" => "הרש�ת צפיה בדו�ר HTML",//perhaps not used
"Unlimited" => "לל� הגבלה",//perhaps not used
"Number of columns per page when listing categories" => "מספר טורי� בעמוד ברשימת הקטגוריות",
"Links per page" => "מספר קישורי� בעמוד",
"Validate URLs" => "�ישור כתובות URL",
"Method to open directory links" => "שיטת הפתיחה של קישורי� במדריך",
"replace current window" => "החלפת חלון × ×•×›×—×™",
"new window" => "חלון חדש",
"inline frame" => "מסגרת ×¤× ×™×ž×™×ª",
"Quota (Mb)" => "מכסה (MB)",
"Use database to store userfiles" => "שמירת קבצי משתמש בבסיס ×”× ×ª×•× ×™ï¿½",
"Use a directory to store userfiles" => "שמירת קבצי משתמש במערכת הקבצי�",
"top" => "התחלה",
"subs" => "קטגוריות ×ž×©× ×”",
"objs" => "עצמי�",
"article" => "מ�מר",
"blog" => "בלוג",
"image gal" => "ספרית ×ª×ž×•× ×•×ª",
"file gal" => "ספרית קבצי�",
"forum" => "פורו�",
"poll" => "מש�ל",
"faq" => "ש�לות × ×¤×•×¦×•×ª",
"quiz" => "חידון",
"Chat Administration" => "× ×™×”×•×œ צ'�ט",
"Chat channels" => "ערוצי צ'�ט",
"Admin content templates" => "× ×™×”×•×œ ×ª×‘× ×™×•×ª תוכן",
"Remove all cookies" => "הסרת כל העוגיות",
"Edit drawings & pictures" => "עריכת �יורי� ×•×ª×ž×•× ×•×ª",//perhaps not used
"Admin Forums" => "× ×™×”×•×œ פורומי�",
"secs" => "×©× ×™×•×ª",
"min" => "דקה",
"Add Hotword" => "הוספת מילת קישור",
"Edit this page" => "עריכת עמוד זה",
"Admin layout" => "× ×™×”×•×œ סידור",
"List of featured links" => "רשימת קישורי� × ×‘×—×¨×™ï¿½",
"<b>Note 1</b>: if you allow your users to configure modules then assigned modules won't be reflected in the screen until you configure them from MyTiki->modules.<br /> <b>Note 2</b>: If you assign modules to groups make sure that you have turned off the option 'display modules to all groups always' from Admin->General" => "<b>הערה 1</b>: �� משתמשי� יכולי� ×œ× ×”×œ מודולי� בעצמ�, מודולי� חדשי� בשימוש ל� יוצגו �ל� �� כן ה� יכללו ג� בעמוד תיקי שלי->מודולי�.<br/> <b>הערה 2</b>: �� מודולי� הוקצו לקבוצות, יש לווד� ×›×™ ה�פשרות 'הצגת מודולי� לכל הקבוצות' בתפריט × ×™×”×•×œ->כללי מכובה",//perhaps not used
"Admin newsletter subscriptions" => "× ×™×”×•×œ ×ž× ×•×™×™ ×—×“×©×•× ×™ï¿½",
"Admin newsletters" => "× ×™×”×•×œ ×—×“×©×•× ×™ï¿½",
"Poll options" => "�פשרויות מש�לי�",
"at" => "בשעה",
"Admin RSS modules" => "× ×™×”×•×œ מודולי RSS",
"Rss channels" => "ערוצי RSS",
"Structures" => "×ž×‘× ×™ï¿½",
"Create new structure" => "יצירת ×ž×‘× ×” חדש",
"Structure" => "×ž×‘× ×”",
"Edit survey questions" => "עריכת ש�לות סקר",
"Create/edit questions for survey" => "יצירת/עריכה ש�לות לסקר",
"Admin surveys" => "× ×™×”×•×œ סקרי�",
"Create a new topic" => "יצירת × ×•×©ï¿½ חדש",
"Topic Name" => "ש� × ×•×©ï¿½",
"List of topics" => "רשימת × ×•×©ï¿½×™ï¿½",
"Admin tracker" => "× ×™×”×•×œ עוקבי�",
"There are individual permissions set for this tracker" => "�ין הרש�ות ספציפיות לעוקב זה.",
"trackers" => "עוקבי�",
"Create level" => "יצירת רמה",
"all permissions in level" => "כל ההרש�ות ברמה",
"update" => "עדכון",
"Content Templates" => "×ª×‘× ×™×•×ª תוכן",
"DSN" => "חיבור בסיס × ×ª×•× ×™ï¿½",
"level" => "רמה",
"assgn" => "השמה",
"List of available backups" => "רשימת גיבויי�",
"Objects" => "עצמי�",
"original size" => "גודל מקורי",
"rotate right" => "סיבוב ×™×ž×™× ×”",
"rotate left" => "סיבוב שמ�לה",//perhaps not used
"Klick to enlarge" => "הקלקה להגדיל",
"smaller" => "קטן יותר",
"bigger" => "גדול יותר",
"Welcome to the Tiki Chat Rooms" => "ברוכי� הב�י� לצ'�ט של תיקי",
"Please select a chat channel" => "× ï¿½ לבחור ערוץ צ'�ט",
"Browser not supported" => "הדפדפן ï¿½×™× ×• × ×ª×ž×š",
"Channel" => "ערוץ",
"Ratio" => "יחס",
"Directory Administration" => "× ×™×”×•×œ מדריך",
"Statistics" => "סטטיסטיקות",
"There are" => "יש",
"invalid sites" => "�תרי� ל� ×ª×§×™× ×™ï¿½",
"valid sites" => "�תרי� ×ª×§×™× ×™ï¿½",
"Users have visited" => "משתמשי� ביקרו",
"sites from the directory" => "�תרי� מהמדריך",
"Users have searched" => "משתמשי� חיפשו",
"times from the directory" => "פעמי� מהמדריך",
"Admin sites" => "× ×™×”×•×œ �תרי�",
"Admin category relationships" => "× ×™×”×•×œ קשרי� בין קטגוריות",
"Validate links" => "בדיקת ×ª×§×™× ×•×ª קישורי�",
"Settings" => "העדפות",
"browse" => "דיפדוף",
"related" => "קשורי�",
"sites" => "�תרי�",
"validate" => "בדיקה",
"Admin directory categories" => "× ×™×”×•×œ קטגוריות מדריך",
"Parent category" => "קטגורית הורה",
"Add or edit a category" => "הוספת/עריכת קטגוריה",
"Children type" => "סוג ילדי�",
"Most visited sub-categories" => "קטגוריות ×ž×©× ×” × ×¦×¤×•×ª ביותר",
"Category description" => "ת�ור קטגוריה",
"Random sub-categories" => "קטגוריות ×ž×©× ×” �קר�יות",
"Maximum number of children to show" => "מספר ילדי� מרבי להצגה",
"Allow sites in this category" => "@Allow sites in this category@",
"Show number of sites in this category" => "הצגת מספר ה�תרי� בקטגוריה ז�ת",
"Editor group" => "עריכת קבוצה",
"Subcategories" => "קטגוריות ×ž×©× ×”",
"cType" => "@cType@",
"allow" => "@allow@",
"count" => "@count@",
"editor" => "עורך",
"relate" => "@relate@",
"Admin related categories" => "× ×™×”×•×œ קטגוריות קשורות",
"Category" => "קטגוריה",
"Mutual" => "@Mutual@",
"Related categories" => "קטגוריות קשורות",
"category" => "קטגוריה",
"Add or edit a site" => "הוספת/עריכת �תר",
"Country" => "×ž×“×™× ×”",
"Is valid" => "@Is valid@",
"Sites" => "�תרי�",
"country" => "×ž×“×™× ×”",
"Validate sites" => "בדיקת �תרי�",
"list articles" => "רשימת המ�מרי�",
"view articles" => "מ�מרי� ר�שיי�",
"There are individual permissions set for this blog" => "יש הרש�ות ספציפיות לבלוג זה",
"data" => "תוכן",
"Create/edit options for question" => "יצירת/עריכת �פשרויות לש�לה",
"Create/edit questions for quiz" => "יצירת/עריכת ש�לות לחידון",
"In parent page" => "בעמוד ההורה",
"After page" => "�חרי עמוד",
"create page" => "יצירת עמוד",
"You will remove" => "עמוד",
"and its subpages from the structure, now you have two options:" => "ועמודי ×”×ž×©× ×” שלו יבוטלו ×ž×”×ž×‘× ×”. יש לבחורב�ופצית הביטול הרצויה:",
"Remove only from structure" => "ביטול ×ž×”×ž×‘× ×” בלבד",
"Remove from structure and remove page too" => "ביטול ×ž×”×ž×‘× ×” ומחיקת העמוד",
"list submissions" => "×‘×—×™× ×ª הצעות",
"There are individual permissions set for this file gallery" => "יש הרש�ות ספציפיות לספרית קבצי� ז�ת.",
"There are individual permissions set for this gallery" => "יש הרש�ות ספציפיות לספריה ז�ת.",
"Available scales" => "@Available scales@",
"No scales available" => "@No scales available@",
"Add scaled images size X x Y" => "@Add scaled images size X x Y@",
"Path to where the dumped files are (relative to tiki basedir with trailing slash ex: dump/)" => "@Path to where the dumped files are (relative to tiki basedir with trailing slash ex: dump/)@",
"hist" => "@hist@",
"edit new article" => "עריכת מ�מר חדש",
"Create banner" => "יצירת ×‘ï¿½× ×¨",
"Create or edit content block" => "יצירת/עריכת בלוק תוכן",
"edit new submission" => "הצעת מ�מר",
"Assign permissions to " => "הקצ�ת הרש�ות עבור ",
"to group" => "לקבוצה",
"rename" => "×©×™× ×•×™ ש�",
"Diff to version" => "הצגת ×©×™× ×•×™×™ï¿½ ביחס לגרסה",
"source" => "מקור",
"Assign permissions to page" => "הקצ�ת הרש�ות לעמוד",
"Send email notifications when this page changes to" => "שליחת תזכורת לדו�ר ï¿½×œ×§×˜×¨×•× ×™ כ�שר עמוד ×–×” ×ž×©×ª× ×”",
"add email" => "כתובת דו�ר ï¿½×œ×§×˜×¨×•× ×™",
"Notifications" => "רשומי� לקבלת תזכורת",
"Pick avatar from the library" => "בחירת דמות מייצגת מספרית הדמויות",
"Received Articles" => "קבלת מ�מרי�",
"Received pages" => "קבלת עמודי�",
"wiki pages" => "ויקי",//perhaps not used
"Relevance" => "× ×™×§×•×“",
"locked by" => "× × ×¢×œ על ידי",
"Save to notepad" => "שמירה ×œ×¤× ×§×¡",
"pvs" => "×›× ×™×¡×•×ª",
"display" => "@display@",
"Mb" => "מגה-בתי� (MB)",
"bytes" => "בתי�",
"This is" => "×–×”",
"by the" => "על ידי",
"use filename" => "שימוש בש� קובץ",
"unassign" => "ביטול הקצ�ה",
"Current folder" => "תיקיה × ×•×›×—×™×ª",
"User information" => "פרטי משתמש",
"private" => "פרטי",
"public" => "ציבורי",
"Use dbl click to edit pages" => "שימוש בהקלקה כפולה לעריכת עמודי�",
"Allow messages from other users" => "@Allow messages from other users@",
"Send me an email for messages with priority equal or greater than" => "שליחת דו�ר ï¿½×œ×§×˜×¨×•× ×™ עבור הודעות ע� עדיפות שווה �ו גדולה מ�שר",
"Tasks per page" => "משימות בעמוד",
"My Tiki" => "תיקי שלי",
"My pages" => "העמודי� שלי",
"My messages" => "ההודעות שלי",
"My tasks" => "המשימות שלי",
"My items" => "הפריטי� שלי",
"Print" => "הדפסה",
"replies" => "תגובות",
"pts" => "× ×™×§×•×“",
"quote" => "ציטוט",//perhaps not used
"private message" => "הודעה פרטית",
"Tasks" => "משימות",
"All tasks" => "כל המשימות",
"mark as done" => "סימון כסגורות",
"open tasks" => "משימות פתוחות",
"start" => "התחלה",
"priority" => "עדיפות",
"completed" => "סיו�",
"Add or edit a task" => "הוספת/עריכת משימה",
"Start date" => "ת�ריך התחלה",
"Completed" => "סיו�",
"Priority" => "עדיפות",
"Percentage completed" => "�חוז התקדמות",
"in entire directory" => "בכל המדריך",
"in current category" => "בקטגוריה ×”× ×•×›×—×™×ª",
"name (desc)" => "ש� (יורד)",
"name (asc)" => "ש� (עולה)",
"hits (desc)" => "×›× ×™×¡×•×ª (יורד)",
"hits (asc)" => "×›× ×™×¡×•×ª (עולה)",
"creation date (desc)" => "ת�ריך יצירה (יורד)",
"creation date (asc)" => "ת�ריך יצירה (עולה)",
"last updated (desc)" => "עדכון �חרון (יורד)",
"last updated (asc)" => "עדכון �חרון (עולה)",
"Added" => "התווסף",
"new sites" => "�תרי� חדשי�",
"cool sites" => "�תרי� ×ž×’× ×™×‘×™ï¿½",
"add a site" => "הוספת �תר",
"Total categories" => "סך הכל קטגוריות",
"Total links" => "סך הכל קישורי�",
"Links to validate" => "קישורי� ל�ישור",
"Searches performed" => "חיפושי� שבוצעו",
"Total links visited" => "סך כל הקישורי� ×©× ×™×¦×¤×•",
"Add a new site" => "הוספת �תר חדש",
"Site added" => "�תר התווסף",
"The following site was added and validation by admin may be needed before appearing on the lists" => "ה�תר שלהלן הוסף �ך עשוי לדרוש �ישור ×ž× ×”×œ ה�תר ×œ×¤× ×™ שיופיע ברשימות",
"Directory ranking" => "דירוגי מדריך",
"Mailin accounts" => "@Mailin accounts@",
"wiki-get" => "@wiki-get@",
"wiki-put" => "@wiki-put@",
"wiki-append" => "@wiki-append@",
"Send me a message" => "@Send me a message@",
"Lowest" => "× ×ž×•×š מ�ד",
"Low" => "× ×ž×•×š",
"Normal" => "רגיל",
"High" => "גבוה",
"Very High" => "גבוה מ�ד",
"Read message" => "קרי�ת הודעה",
"Return to messages" => "חזרה להודעות",
"replyall" => "השבה לכל",
"Unflagg" => "הסרת סימון",
"Flag this message" => "סימון הודעה ז�ת",
"Compose message" => "חיבור הודעה",
"CC" => "העתק",
"BCC" => "העתק × ×¡×ª×¨",
"Unflagged" => "ל� מסומן",
"1" => "1",
"2" => "2",
"3" => "3",
"4" => "4",
"5" => "5",
"Mark as flagged" => "סימון",
"No messages to display" => "�ין הודעות להצגה",
"Mailbox" => "תיבת דו�ר",
"Compose" => "חיבור הודעה",
"Broadcast" => "@Broadcast@",
"Broadcast message" => "@Broadcast message@",
"All users" => "כל המשתמשי�",
"Contact us" => "יצירת קשר",
"Send a message to us" => "שליחת הודעה ï¿½×œ×™× ×•",
"Contact us by email" => "יצירת קשר ב�מצעות דו�ר ï¿½×œ×§×˜×¨×•× ×™",
"User Galleries" => "ספריות",
"Assigned items" => "פריטי� משוייכי�",
"Unread Messages" => "הודעות של� × ×§×¨ï¿½×•",
"Edit or ex/import Languages" => "יבו�/יצו� �ו עריכת שפות",
"Edit and create Languages" => "יצירת/עריכת שפות",
"Im- Export Languages" => "יבו�/יצו� שפות",
"Edit and create languages" => "יצירת/עריכת שפות",
"Create Language" => "יצירת שפה",
"Shortname" => "ש� קצר",
"like" => "כמו",
"Longname" => "ש� �רוך",
"Select the language to edit" => "בחירת שפה לעריכה",
"Add a translation" => "הוספת תרגו�",
"Edit translations" => "עריכת תרגו�",
"Translate recorded" => "תרגו� × ×¨×©ï¿½",
"Original" => "מקור",
"Translation" => "תרגו�",
"translate" => "תרג�",
"reset table" => "@reset table@",
"previous page" => "עמוד קוד�",
"next page" => "עמוד הב�",
"Im- Export languages" => "יבו�/יצו� שפות",
"Select the language to Import" => "בחירת שפה ליבו�",
"Select the language to Export" => "בחירת שפה ליצו�",
"MyTiki" => "תיקי שלי",
"Prefs" => "העדפות",
"Notepad" => "×¤× ×§×¡",
"MyFiles" => "הקבצי� שלי",
"Calendar" => "לוח ×©× ×”",
"Configure news servers" => "קביעת תצורה לשרתי קבוצות דיון",
"Select a news server to browse" => "בחירת שרת קבוצות דיון לדפדוף",
"server" => "שרת",
"Add or edit a news server" => "הוספת/עריכת שרת קבוצות דיון",
"News server" => "שרת קבוצות דיון",
"port" => "פורט",
"Select news group" => "בחירת קבוצת דיון",
"Back to servers" => "חזרה לשרתי�",
"Msgs" => "הודעות",
"Newss from" => "חדשות מתוך",
"Back to groups" => "חזרה לקבוצות",
"Save position" => "שמירת מיקו�",
"Reading article from" => "קרי�ת מ�מר מתוך ",
"Back to list of articles" => "חזרה לרשימת מ�מרי�",
"Newsgroup" => "קבוצות דיון",
"Notes" => "פתקי�",
"quota" => "מכסה",
"Write a note" => "כתיבת פתק",
"Reading note:" => "קרי�ת פתק:",
"List notes" => "רשימת פתקי�",
"Write note" => "כתיבת פתק",
"User Files" => "קבצי משתמש",
"Theme Control Center: categories" => "לוח בקרת ערכות: קטגוריות",
"If a theme is assigned to the individual object that theme is used." => "�� יש ערכה ל�ובייקט המבוקש, הי� תשמש לצורך הצגתו.",
"If not then if a theme is assigned to the object's category that theme is used" => "�חרת, �� יש ערכה לקטגורית ה�ובייקט, הי� תשמש לצורך הצגתו.",
"If not then a theme for the section is used" => "�חרת, הערכה של ה�זור תשמש להצגה.",
"If none of the above was selected the user theme is used" => "�� �ף �חת מה�פשרויות שלעיל ל� × ×‘×—×¨×”, ערכת המשתמש תשמש לצורך תצוגה.",
"Finally if the user didn't select a theme the default theme is used" => "לבסוף, �� המשתמש ל� בחר בערכה, התצוגה תבוצע לפי ערכת ה�תר.",
"Control by Object" => "שליטה לפי �ובייקט",
"Control by Sections" => "שליטה לפי �זור",
"Assign themes to categories" => "השמת ערכות לקטגוריות",
"Assigned categories" => "קטגוריות מושמות",
"theme" => "ערכה",
"Admin ephemerides" => "× ×™×”×•×œ יומן",
"All ephemerides" => "כל הרישומי� ביומן",
"Theme Control Center: Objects" => "לוח בקרת ערכות: �פבייקטי�",
"Control by category" => "שליטה לפי קטגוריה",
"Assign themes to objects" => "השמת ערכות ל�ובייקטי�",
"Object" => "�ובייקט",
"Assigned objects" => "�ובייקטי� מושמי�",
"Theme Control Center: sections" => "לוח בקרת ערכות: �זורי�",
"Control by Categories" => "שליטה לפי קטגוריות",
"Assign themes to sections" => "השמת ערכות ל�זורי�",
"Assigned sections" => "�זורי� מושמי�",
"Mini Calendar: Preferences" => "לוח ×©× ×” קטן: העדפות",
"Daily" => "יומית",
"Weekly" => "שבועית",
"Calendar Interval in daily view" => "מרווחי זמן בתצוגה יומית",
"Start hour for days" => "שעת התחלה לימי�",
"End hour for days" => "שעת סיו� לימי�",
"Upcoming events" => "�רועי� קרובי�",
"Reminders" => "תזכורות",
"no reminders" => "�ין תזכורות",
"Import CSV file" => "יבו� קובץ CVS",
"Or enter path or URL" => "�ו ×”×–× ×ª מחיצה �ו כתובת URL",
"add topic" => "הוספת × ×•×©ï¿½",
"topic image" => "×ª×ž×•× ×ª × ×•×©ï¿½",
"User Menu" => "תפריט משתמש",
"May need to refresh twice to see changes" => "יתכן שיהיה צורך ×œ×¨×¢× ×Ÿ פעמיי� כדי לר�ות �ת ×”×©×™× ×•×™×™ï¿½",
"Add top level bookmarks to menu" => "הוספת ×¡×™×ž× ×™×•×ª ר�שיות לתפריט",
"Pos" => "מיקו�",
"Mode" => "מצב",
"Add or edit an item" => "הוספת/עריכת פריט",
"replace window" => "החלפת חלון",
"Mini Calendar" => "לוח ×©× ×” קטן",
"Import" => "יבו�",
"Remove old events" => "הסרת �רועי� ×™×©× ×™ï¿½",
"duration" => "משך",
"topic" => "× ×•×©ï¿½",
"h" => "@h@",
"Add or edit event" => "הוספת/עריכת �רוע",
"Start" => "התחלה",
"Duration" => "משך",
"Admin external wikis" => "× ×™×”×•×œ ויקי ×—×™×¦×•× ×™×™ï¿½",
"Create/edit extwiki" => "יצירת/עריכת ויקי ×—×™×¦×•× ×™×™ï¿½",
"URL (use \$page to be replaced by the page name in the URL example: http://www.example.com/wiki/index.php?page=\$page)" => "כתובת URL (יש להשתמש בסימון page\$ שיוחלף בש� העמוד בכתובת, למשל: http://www.example.com/wiki/index.php?page=\$page)",
"extwiki" => "ויקי ×—×™×¦×•× ×™",
"Admin dsn" => "× ×™×”×•×œ חיבור בסיס × ×ª×•× ×™ï¿½ (DSN)",
"Create/edit dsn" => "יצירת/עריכת חיבור בסיס × ×ª×•× ×™ï¿½",
"dsn" => "חיבור בסיס × ×ª×•× ×™ï¿½ (dsn)",
"Rename page" => "×©×™× ×•×™ ש� עמוד",
"New name" => "ש� חדש",
"Mail-in" => "@Mail-in@",
"External wikis" => "ויקי ×ª×™×¦×•× ×™×™ï¿½",
"contact us" => "יצירת קשר",
"My files" => "הקבצי� שלי",
"structures" => "×ž×‘× ×™ï¿½",
"List forums" => "רשימת פורומי�",
"Browse Directory" => "דיפדוף במדריך",
"Admin directory" => "× ×™×”×•×œ מדריך",
"Admin quiz" => "× ×™×”×•×œ ×—×™×“×•× ×™ï¿½",
"Admin (click!)" => "× ×™×”×•×œ",
"Edit languages" => "עריכת שפות",
"Remember me" => "זכור �ותי",
"Tiki Logo" => "לוגו",
"User tasks" => "משימות משתמש",
"You have" => "יש לך",
"new message" => "הודעה חדשה",
"Last Sites" => "�תרי� ï¿½×—×¨×•× ×™ï¿½",
"Top Sites" => "�תרי� מובילי�",
"Directory Stats" => "סטטיסטיקות מדריך",
"Sites to validate" => "�תרי� ל�ישור",
"Searches" => "חיפושי�",
"Visited links" => "קישורי� שבוקרו",
"TOP" => "התחלה",
"Permission denied you can not view this section" => "�ין הרש�ות לצפיה ב�יזור זה",
"Permission denied you cannot rebuild thumbnails in this gallery" => "�ין הרש�ות ×œ×‘× ×™×ª ×ª×ž×•× ×•×ª ×ž×•×§×˜× ×•×ª בספריה ז�ת",
"Permission denied you cannot rotate images in this gallery" => "�ין הרש�ות לסיבוב ×ª×ž×•× ×•×ª בספריה ז�ת",
"You can not use the same password again" => "�ין �פשרות להשתמש ב�ותה סיסמה שוב",
"Permission denied" => "�ין הרש�ה",
"Mus enter a name to add a site" => "יש להזין ש� כדי להוסיף �תר",
"Must enter a url to add a site" => "יש להזין כתובת URL כדי להוסיף �תר",
"Must select a category" => "יש לבחור קטגוריה",
"You can not download files" => "�ין �פשרות להוריד קבצי�",
"No structure indicated" => "ל� × ×‘×—×¨ ×ž×‘× ×”",
"Invalid email address. You must enter a valid email address" => "הדו�ר ×”ï¿½×œ×§×˜×¨×•× ×™ שהוזן ï¿½×™× ×• חוקי �ו ï¿½×™× ×• קיי�.",
"No site indicated" => "ל� × ×‘×—×¨ �תר",
"Must enter a name to add a site" => "יש להזין ש� כדי להוסף �תר",
"URL already added to the directory. Duplicate site?" => "כתובת ה-URL כבר הוספה למדריך. ה�� לשכפל �ת ה�תר?",
"URL cannot be accessed wrong URL or site is offline and cannot be added to the directory" => "כתובת ×”-URL ï¿½×™× ×” × ×’×™×©×”. הכתובת שגוייה �ו ה�תר ï¿½×™× ×• זמין ×•ï¿½×™× ×• יכול להיות מוסף למדריך",
"You are not logged in and no user indicated" => "�יך מחובר ול� × ×‘×—×¨ משתמש",
"The user has choosen to make his information private" => "המשתמש בחר לסמן מידע זה כפרטי",
"Shortname must be 2 Characters" => "ש� קצר חייב להיות בעל 2 תווי�",
"You must provide a longname" => "יש לספק ש� �רוך",
"Language created" => "השפה × ×•×¦×¨×”",
"Page must be defined inside a structure to use this feature" => "העמוד חייב להיות מודגר התוך ×ž×‘× ×” כדי להשתמש ×‘×ª×›×•× ×” ז�ת",
"Must be logged to use this feature" => "יש להיות מחוברי� כדי להשתמש ×‘×ª×›×•× ×” ז�ת",
"No server indicated" => "ל� × ×‘×—×¨ שרת",
"Cannot connect to" => "התחבות × ×›×©×œ×” עבור",
"Missing information to read news (server,port,username,password,group) required" => "חסר מידע לקרי�ת קבוצת דיון (× ×“×¨×©×™ï¿½ שרת, פורט, ש� משתמש, סיסמה וקבוצה)",
"Cannot get messages" => "�ין �פשרות לקבל הודעות",
"File is too big" => "הקודץ גדול מדי",
"No note indicated" => "ל� × ×‘×—×¨ פתק",
"Anonymous" => "ï¿½× ×•× ×™×ž×™",
"Message" => "הודעה",
"A new message was posted to forum" => "הודעה חדשה התווספה לפורו�",
"The user" => "המשתמש",
"registered at your site" => "× ×¨×©ï¿½ ב�תר",
"Welcome to " => "@Welcome to ",
"Bye bye from " => "@Bye bye from ",
"Newsletter subscription information at " => "פרטי רישו� לחדשון ב�תר ",
"You can unsubscribe from this newsletter following this link" => "× ×™×ª×Ÿ לבטל �ת ×”×ž× ×•×™ לחדשון ×–×” על ידי הקישור",
" at " => " ב�תר ",
"requested a reminder of the password for the" => "התקבלה בקשה לשחזור סיסמה עבור משתמש",
"password for this account is" => "שהסיסמה למשתמש זה הי�:",
"since this is your registered email address we inform that the" => "מכוון שזהו הדו�ר ×”ï¿½×œ×§×˜×¨×•× ×™ הרשו� ï¿½×¦×œ× ×• למשתמש, ×‘×¨×¦×•× × ×• להודיע",
"someone from" => "This is a Unicode UTF-8 message. If you cannot see it change View->Encoding to UTF-8.
ב�תר ",
"blog_ranking_top_blogs" => "בלוגי� מובילי�",
"blog_ranking_last_posts" => "הודעות ï¿½×—×¨×•× ×•×ª בבלוגי�",
"blog_ranking_top_active_blogs" => "בלוגי� פעילי� ביותר",
"Top authors" => "כותבי� מובילי�",
"Remove Zones (you lose entered info for the banner)" => "הסרת �יזורי� (× ×ª×•× ×™ ×”×‘ï¿½× ×¨ ×©×”×•×–× ×• י�בדו)",//perhaps not used
"created from import" => "יוב�",
"page imported" => "העמוד יוב�",
"filegal_ranking_top_galleries" => "ספריות מובילות בספריות הקבצי�",
"filegal_ranking_top_files" => "קבצי� מובילי� בספריות הקבצי�",
"filegal_ranking_last_files" => "קבצי� ï¿½×—×¨×•× ×™ï¿½ בספריות הקבצי�",
"Forum posts" => "פורומי� ע� מירב ההודעות",
"gal_ranking_last_images" => "×ª×ž×•× ×•×ª ï¿½×—×¨×•× ×•×ª בספריות ×”×ª×ž×•× ×•×ª",
"gal_ranking_top_images" => "×ª×ž×•× ×•×ª מובילות בספריות ×”×ª×ž×•× ×•×ª",
"gal_ranking_top_galleries" => "ספריות מובילות בספריות ×”×ª×ž×•× ×•×ª",
"page created" => "העמוד × ×•×¦×¨",
"updated by the phpwiki import process" => "@updated by the phpwiki import process@",
"page not added (Exists)" => "@page not added (Exists)@",
"created from phpwiki import" => "@created from phpwiki import@",
"overwriting old page" => "@overwriting old page@",
"You must be logged in to subscribe to newsletters" => "יש להתחבר על ×ž× ×ª להרש� ×œ×—×“×©×•× ×™ï¿½",//perhaps not used
"You will receive an email with information to login for the first time into this site" => "מידע לגבי התחברות ×¨ï¿½×©×•× ×™×ª ל�תר × ×©×œ×— �ליך בדו�ר ï¿½×œ×§×˜×¨×•× ×™",
"New user registration" => "רישו� משתמש חדש",
"Your Tiki information registration" => "× ×ª×•× ×™ הרישו� שלך בתיקי",
"Your tikiaccount information for " => "@Your tikiaccount information for @",//perhaps not used
" by email to our registered email address" => " לתיבת הדו�ר ×”ï¿½×œ×§×˜×¨×•× ×™ הרשומה ב�תר
",//perhaps not used
" requested to send the password for " => " התקבלה בקשה לשלוח �ת הסיסמה של משתמש ",//perhaps not used
" and the requested password is " => "הסיסמה המבוקשת הי� (your password is): ",//perhaps not used
"Someone from " => "This is a Unicode UTF-8 message. If you cannot see it change View->Encoding to UTF-8.
ב�תר ",//perhaps not used
"You will receive an email with your password soon" => "הסיסמה × ×©×œ×—×” לכתובת הדו�ר ×”ï¿½×œ×§×˜×¨×•× ×™ הרשומה ï¿½×¦×œ× ×•.",//perhaps not used
" not sent" => " ל� × ×©×œ×—",
" successfully sent" => " × ×©×œ×— בהצלחה",
"Upload was not successful" => "×”×˜×¢×™× ×” ל� הצליחה",
"Invalid filename (using filters for filenames)" => "ש� קובץ ל� תקין (המערכת ×ž×¡× × ×ª שמות ×ž×¡×•×›× ×™ï¿½)",//perhaps not used
"Invalid imagename (using filters for filenames)" => "ש� ×ª×ž×•× ×” ל� תקין (המערכת ×ž×¡× × ×ª שמות ×ž×¡×•×›× ×™ï¿½)",
"No permission to upload zipped image packages" => "�ין הרש�ות ×œ×˜×¢×™× ×ª �וסף ×ª×ž×•× ×•×ª דחוסות.",
"Tiki email notification" => "תזכורת דו�ר מתיקי - Tiki email notification",
"Your email address has been added to the list of addresses monitoring this tracker" => "הדו�ר ×”ï¿½×œ×§×˜×¨×•× ×™ שלך הוסף לרשימת הכתובות ×”×ž× ×˜×¨×•×ª עוקב ×–×”",
"Your email address has been removed from the list of addresses monitoring this tracker" => "הדו�ר ×”ï¿½×œ×§×˜×¨×•× ×™ שלך הוסר מרשימת הכתובות ×”×ž× ×˜×¨×•×ª עוקב ×–×”",
"Your email address has been removed from the list of addresses monitoring this item" => "הדו�ר ×”ï¿½×œ×§×˜×¨×•× ×™ שלך הוסר מרשימת הכתובות ×”×ž× ×˜×¨×•×ª פריט ×–×”",
"Your email address has been added to the list of addresses monitoring this item" => "הדו�ר ×”ï¿½×œ×§×˜×¨×•× ×™ שלך הוסף לרשימת הכתובות ×”×ž× ×˜×¨×•×ª פריט ×–×”",
"Cancel monitoring" => "ביטול × ×™×˜×•×¨",
"Monitor" => "× ×™×˜×•×¨",
"Your email was sent" => "הדו�ר ×”ï¿½×œ×§×˜×¨×•× ×™ × ×©×œ×—",
"Last pages" => "עמודי� ×©×©×•× ×• ×œï¿½×—×¨×•× ×”",
"Top pages" => "עמודי� × ×¦×¤×™ï¿½ ביותר",
"Forums last topics" => "הודעות ï¿½×—×¨×•× ×•×ª",
"Topic date" => "ת�ריך",
"Forums most read topics" => "הודעות × ×¦×¤×•×ª ביותר",
"Modified" => "ת�ריך ×©×™× ×•×™",
"Forums best topics" => "הודעות מדורגות ביותר",
"New article submitted at " => "הצעה חדשה הוגשה בת�ריך ",
"Forums most visited forums" => "פורומי� × ×¦×¤×™ï¿½ ביותר",
"Versions are identical" => "הגרס�ות זהות",
"Wiki top pages" => "עמודי ויקי מובילי�",
"Wiki last pages" => "עמודי ויקי ï¿½×—×¨×•× ×™ï¿½",
"Most active blogs" => "בלוגי� פעילי� ביותר",
"no description" => "לל� תי�ור",
"picture not found" => "×”×ª×ž×•× ×” ל� × ×ž×¦ï¿½×”",
"drawing not found" => "התרשי� ל� × ×ž×¦ï¿½",
"Wiki top articles" => "מ�מרי� מובילי�",
"Blogs last posts" => "הודעות בלוג ï¿½×—×¨×•× ×•×ª",
"Top article authors" => "כותבי� מובילי�",
"Wiki top authors" => "כותבי� מובילי�",
"Post date" => "ת�ריך ×©×™× ×•×™",
"Wiki last files" => "קבצי� ×©× ×˜×¢× ×• ×œï¿½×—×¨×•× ×”",
"Wiki page" => "עמוד ויקי",
"Wiki top file galleries" => "ספריות קבצי� מובילות",
"Wiki top galleries" => "ספריות ×ª×ž×•× ×•×ª מובילות",
"Forums with most posts" => "פורומי� ע� מירב ההודעות",
"Wiki top images" => "×ª×ž×•× ×•×ª × ×¦×¤×•×ª ביותר",
"Wiki last images" => "×ª×ž×•× ×•×ª ×©× ×˜×¢× ×• ×œï¿½×—×¨×•× ×”",
"Wiki top files" => "קבצי� מורדי� ביותר",
"Cannot write to this file:" => "�ין �פשרות לכתוב לקובץ:",
"Most relevant pages" => "עמודי� בדירוג גבוה",
"unlocked" => "זמין",
"Upload date" => "ת�ריך ×˜×¢×™× ×”",
"Author" => "מ�ת",
"Tracker was modified at " => "עוקב ×”×©×ª× ×” בת�ריך ",
"the following link to login for the first time" => "בקישור שלהלן על ×ž× ×ª להתחבר בפע� ×”×¨ï¿½×©×•× ×”",
"you or someone registered this email address at" => "@you or someone registered this email address at@",
"If you want to be a registered user in this site you will have to use" => "�� ×‘×¨×¦×•× ×š להיות משתמש רשו� ב�תר, עליך להשתמש",
"Enjoy the site!" => "ï¿½× ×• מ�חלי� לך ×”× ï¿½×” מהשימוש ב�תר.",
"Hi" => "שלו�",
"your account information for " => "[Unicode UTF-8 Message] פרטי החשבון שלך ב�תר ",//perhaps not used
"wikis" => "עמודי ויקי",//perhaps not used
"received articles" => "קבלת מ�מרי�",//perhaps not used
"Menu options" => "Menu options",
"Charts" => "Charts",
"No charts defined yet" => "No charts defined yet",
"Admin charts" => "Admin charts",
"Add or edit a chart" => "Add or edit a chart",
"Users can vote only one item from this chart per period" => "Users can vote only one item from this chart per period",
"Prevent users from voting same item more than one time" => "Prevent users from voting same item more than one time",
"Users can suggest new items" => "Users can suggest new items",
"Auto validate user suggestions" => "Auto validate user suggestions",
"Ranking shows" => "Ranking shows",
"Voting system" => "Voting system",
"Ranking frequency" => "Ranking frequency",
"Show Average" => "Show Average",
"Show Votes" => "Show Votes",
"Use Cookies for unregistered users" => "Use Cookies for unregistered users",
"Users can vote again after" => "Users can vote again after",
"Items" => "Items",
"Ranks" => "Ranks",
"All items" => "All items",
"Top 10 items" => "Top 10 items",
"Top 20 items" => "Top 20 items",
"Top 40 items" => "Top 40 items",
"Top 50 items" => "Top 50 items",
"Top 100 items" => "Top 100 items",
"Top 250 items" => "Top 250 items",
"Vote items" => "Vote items",
"Rank 1..5" => "Rank 1..5",
"Rank 1..10" => "Rank 1..10",
"Realtime" => "Realtime",
"Each 5 minutes" => "Each 5 minutes",
"Monthly" => "Monthly",
"Anytime" => "Anytime",
"5 minutes" => "5 minutes",
"1 day" => "1 day",
"1 week" => "1 week",
"1 month" => "1 month",
"Thank you for you registration. You may log in now." => "Thank you for you registration. You may log in now.",
"Batch upload (CSV file)" => "Batch upload (CSV file)",
"Overwrite" => "Overwrite",
"Displays the user Avatar" => "Displays the user Avatar",
"Centers the plugin content in the wiki page" => "Centers the plugin content in the wiki page",
"Displays a snippet of code.
Set optional paramater -+ln+- to 1 if you need line numbering feature." => "Displays a snippet of code.
Set optional paramater -+ln+- to 1 if you need line numbering feature.",//perhaps not used
"No description available" => "No description available",
"Displays a graphical GAUGE" => "Displays a graphical GAUGE",
"Renders a graph" => "Renders a graph",
"Insert copyright notices" => "Insert copyright notices",
"Displays a module inlined in page" => "Displays a module inlined in page",
"Insert theme styled box on wiki page" => "Insert theme styled box on wiki page",
"PluginsHelp" => "PluginsHelp",
"Wiki quick help" => "Wiki quick help",
"create new empty structure" => "create new empty structure",
"Create structure from tree" => "Create structure from tree",
"Use single spaces to indent structure levels" => "Use single spaces to indent structure levels",
"tree" => "tree",
"Admin structures" => "Admin structures",
"Click twice if once is not enough !" => "Click twice if once is not enough !",
"Toggle display of comment zone" => "Toggle display of comment zone",
"Copyrights" => "Copyrights",
"Go back" => "Go back",
"In blog listing show user as" => "In blog listing show user as",
"Plain text" => "Plain text",
"Link to user information" => "Link to user information",
"User avatar" => "User avatar",
"Blog listing configuration (when listing available blogs)" => "Blog listing configuration (when listing available blogs)",
"creation date" => "creation date",
"last modification time" => "last modification time",
"activity" => "activity",
"Articles listing configuration" => "Articles listing configuration",
"Edit css" => "Edit css",
"Workflow engine" => "Workflow engine",
"Use PHPOpenTracker" => "Use PHPOpenTracker",
"User watches" => "User watches",
"Live support system" => "Live support system",
"Banning system" => "Banning system",
"please read" => "please read",
"Gallery listing configuration" => "Gallery listing configuration",
"Accept wiki syntax" => "Accept wiki syntax",
"Forum quick jumps" => "Forum quick jumps",
"Forum listing configuration" => "Forum listing configuration",
"Posts per day" => "Posts per day",
"Last post" => "Last post",
"Library to use for processing images" => "Library to use for processing images",
"Display menus as folders" => "Display menus as folders",
"Sender Email" => "Sender Email",
"Sections" => "Sections",
"Authentication method" => "Authentication method",
"Just Tiki" => "Just Tiki",
"Web Server" => "Web Server",
"Tiki and PEAR::Auth" => "Tiki and PEAR::Auth",
"Tiki and HTTP Auth" => "Tiki and HTTP Auth",
"Use WebServer authentication for Tiki" => "Use WebServer authentication for Tiki",
"Prevent automatic/robot registration" => "Prevent automatic/robot registration",
"PEAR::Auth" => "PEAR::Auth",
"Create user if not in Tiki?" => "Create user if not in Tiki?",
"Create user if not in Auth?" => "Create user if not in Auth?",
"Just use Tiki auth for admin?" => "Just use Tiki auth for admin?",
"LDAP Host" => "LDAP Host",
"LDAP Port" => "LDAP Port",
"LDAP Scope" => "LDAP Scope",
"LDAP Base DN" => "LDAP Base DN",
"LDAP User DN" => "LDAP User DN",
"LDAP User Attribute" => "LDAP User Attribute",
"LDAP User OC" => "LDAP User OC",
"LDAP Group DN" => "LDAP Group DN",
"LDAP Group Atribute" => "LDAP Group Atribute",
"LDAP Group OC" => "LDAP Group OC",
"LDAP Member Attribute" => "LDAP Member Attribute",
"LDAP Member Is DN" => "LDAP Member Is DN",
"LDAP Admin User" => "LDAP Admin User",
"LDAP Admin Pwd" => "LDAP Admin Pwd",
"Allow viewing HTML mails?" => "Allow viewing HTML mails?",
"PDF Export" => "PDF Export",
"Wiki Discussion" => "Wiki Discussion",
"Discuss pages on forums" => "Discuss pages on forums",
"Wiki page list configuration" => "Wiki page list configuration",
"Creator" => "Creator",
"PDF generation" => "PDF generation",
"Page creators are admin of their pages" => "Page creators are admin of their pages",
"Automonospaced text" => "Automonospaced text",
"Copyright Management" => "Copyright Management",
"Enable Feature" => "Enable Feature",
"License Page" => "License Page",
"Submit Notice" => "Submit Notice",
"Add or edit a rule" => "Add or edit a rule",
"Rule title" => "Rule title",
"Username regex matching" => "Username regex matching",
"IP regex matching" => "IP regex matching",
"Banned from sections" => "Banned from sections",
"Rule activated by dates" => "Rule activated by dates",
"Rule active from" => "Rule active from",
"Rule active until" => "Rule active until",
"Custom message to the user" => "Custom message to the user",
"Rules" => "Rules",
"User/IP" => "User/IP",
"Admin Calendars" => "Admin Calendars",
"Create/edit Calendars" => "Create/edit Calendars",
"Custom Locations" => "Custom Locations",
"Custom Categories" => "Custom Categories",
"Custom Languages" => "Custom Languages",
"Custom Priorities" => "Custom Priorities",
"List of Calendars" => "List of Calendars",
"loc" => "loc",
"cat" => "cat",
"lang" => "lang",
"prio" => "prio",
"Admin chart items" => "Admin chart items",
"charts" => "charts",
"edit chart" => "edit chart",
"Chart items" => "Chart items",
"No items defined yet" => "No items defined yet",
"Edit drawings" => "Edit drawings",
"Ver" => "Ver",
"Show description" => "Show description",
"Moderator user" => "Moderator user",
"Moderator group" => "Moderator group",
"Password protected" => "Password protected",
"Topics only" => "Topics only",
"All posts" => "All posts",
"Forum password" => "Forum password",
"Date (asc)" => "Date (asc)",
"Topic list configuration" => "Topic list configuration",
"Replies" => "Replies",
"Threads can be voted" => "Threads can be voted",
"Forward messages to this forum to this email" => "Forward messages to this forum to this email",
"Add messages from this email to the forum" => "Add messages from this email to the forum",
"POP3 server" => "POP3 server",
"Use topic smileys" => "Use topic smileys",
"Show topic summary" => "Show topic summary",
"User information display" => "User information display",
"avatar" => "avatar",
"flag" => "flag",
"user level" => "user level",
"online" => "online",
"Approval type" => "Approval type",
"All posted" => "All posted",
"Queue anonymous posts" => "Queue anonymous posts",
"Queue all posts" => "Queue all posts",
"No attachments" => "No attachments",
"Everybody can attach" => "Everybody can attach",
"Only users with attach permission" => "Only users with attach permission",
"Moderators and admin can attach" => "Moderators and admin can attach",
"Store attachments in:" => "Store attachments in:",
"Database" => "Database",
"Directory (include trailing slash)" => "Directory (include trailing slash)",
"Max attachment size (bytes)" => "Max attachment size (bytes)",
"Use {literal}{{/literal}ed id=name} or {literal}{{/literal}ted id=name} to insert dynamic zones" => "Use {literal}{{/literal}ed id=name} or {literal}{{/literal}ted id=name} to insert dynamic zones",
"Use wysiwyg editor" => "Use wysiwyg editor",
"Use normal editor" => "Use normal editor",
"Subscriptions" => "Subscriptions",
"Destroy the structure leaving the wiki pages" => "Destroy the structure leaving the wiki pages",
"Destroy the structure and remove the pages" => "Destroy the structure and remove the pages",
"export pages" => "export pages",
"dump tree" => "dump tree",
"stat" => "stat",
"Batch Upload Results" => "Batch Upload Results",
"Added users" => "Added users",
"Rejected users" => "Rejected users",
"Reason" => "Reason",
"Number of displayed rows" => "Number of displayed rows",
"Workflow" => "Workflow",
"ExtWikis" => "ExtWikis",
"Live support" => "Live support",
"Use ...page... to separate pages in a multi-page post" => "Use ...page... to separate pages in a multi-page post",
"Upload image for this post" => "Upload image for this post",
"Send trackback pings to:" => "Send trackback pings to:",
"(comma separated list of URIs)" => "(comma separated list of URIs)",
"save and exit" => "save and exit",
"rotate" => "rotate",
"popup" => "popup",
"first image" => "first image",
"last image" => "last image",
"Popup window" => "Popup window",
"popup window" => "popup window",
"Calendars Panel" => "Calendars Panel",
"Navigation Panel" => "Navigation Panel",
"Hide Panels" => "Hide Panels",
"Refresh" => "Refresh",
"Group Calendars" => "Group Calendars",
"check / uncheck all" => "check / uncheck all",
"Tools Calendars" => "Tools Calendars",
"hide from display" => "hide from display",
"Tiki Calendars" => "Tiki Calendars",
"today" => "today",
"+1d" => "+1d",
"+7d" => "+7d",
"+1m" => "+1m",
"browse by" => "browse by",
"month" => "month",
"+" => "+",
"Edit Calendar Item" => "Edit Calendar Item",
"If you change the calendar selection, please refresh to get the appropriated list in Category, Location and people (if applicable to the calendar you choose)." => "If you change the calendar selection, please refresh to get the appropriated list in Category, Location and people (if applicable to the calendar you choose).",
"or create a new category" => "or create a new category",
"Location" => "Location",
"or create a new location" => "or create a new location",
"Organized by" => "Organized by",
"comma separated usernames" => "comma separated usernames",
"from the list" => "from the list",
"choose" => "choose",
"Participants" => "Participants",
"comma separated username:role" => "comma separated username:role",
"Chair" => "Chair",
"Required" => "Required",
"Optional" => "Optional",
"with roles" => "with roles",
"End" => "End",
"Url" => "Url",
"Tentative" => "Tentative",
"Confirmed" => "Confirmed",
"Cancelled" => "Cancelled",
"duplicate" => "duplicate",
"You should first ask that a calendar is created, so you can create events attached to it." => "You should first ask that a calendar is created, so you can create events attached to it.",
"Create PDF" => "Create PDF",
"PDF Settings" => "PDF Settings",
"Font" => "Font",
"Textheight" => "Textheight",
"Height of top Heading" => "Height of top Heading",
"Height of mid Heading" => "Height of mid Heading",
"Height of inner Heading" => "Height of inner Heading",
"tbheight" => "tbheight",
"imagescale" => "imagescale",
"Select Wiki Pages" => "Select Wiki Pages",
"reset" => "reset",
"Add a related category" => "Add a related category",
"sort" => "sort",
"Float text around image" => "Float text around image",
"Use ...page... to separate pages in a multi-page article" => "Use ...page... to separate pages in a multi-page article",
"Edit or create banners" => "Edit or create banners",
"List banners" => "List banners",
"Show the banner only on" => "Show the banner only on",
"Current heading" => "Current heading",
"Use titles in blog posts" => "Use titles in blog posts",
"Allow search" => "Allow search",
"Allow comments" => "Allow comments",
"Blog heading" => "Blog heading",
"Edit Style Sheet" => "Edit Style Sheet",
"Style Sheet" => "Style Sheet",
"save a custom copy" => "save a custom copy",
"Cancel" => "Cancel",
"choose a stylesheet" => "choose a stylesheet",
"try" => "try",
"File with names appended by -{\$user} are modifiable, others are only duplicable and be used as model." => "File with names appended by -{\$user} are modifiable, others are only duplicable and be used as model.",
"Multi-page pages" => "Multi-page pages",
"use ...page... to separate pages" => "use ...page... to separate pages",
"italic" => "italic",
"heading" => "heading",
"horizontal ruler" => "horizontal ruler",
"special characters" => "special characters",
"Edit question options" => "Edit question options",
"Admin quizzes" => "Admin quizzes",
"quizzes" => "quizzes",
"Edit quiz questions" => "Edit quiz questions",
"Available templates" => "Available templates",
"Copyright" => "Copyright",
"License" => "License",
"Important" => "Important",
"Minor" => "Minor",
"Admin FAQ" => "Admin FAQ",
"No suggested questions" => "No suggested questions",
"Listing configuration" => "Listing configuration",
"icon" => "icon",
"id" => "id",
"downloads" => "downloads",
"Name-filename" => "Name-filename",
"Filename only" => "Filename only",
"Max description display size" => "Max description display size",
"create new gallery" => "create new gallery",
"Actions" => "Actions",
"configure listing" => "configure listing",
"Message queue for" => "Message queue for",
"back to forum" => "back to forum",
"Edit queued message" => "Edit queued message",
"make this a thread of" => "make this a thread of",
"None, this is a thread message" => "None, this is a thread message",
"summary" => "summary",
"no feeling" => "no feeling",
"frown" => "frown",
"exclaim" => "exclaim",
"idea" => "idea",
"mad" => "mad",
"neutral" => "neutral",
"sad" => "sad",
"happy" => "happy",
"wink" => "wink",
"save and approve" => "save and approve",
"convert to topic" => "convert to topic",
"List of messages" => "List of messages",
"new topic" => "new topic",
"no summary" => "no summary",
"attachment" => "attachment",
"No messages queued yet" => "No messages queued yet",
"reject" => "reject",
"adm" => "adm",
"Reported messages for" => "Reported messages for",
"Reported by" => "Reported by",
"Activity completed" => "Activity completed",
"Process" => "Process",
"Admin process activities" => "Admin process activities",
"Add or edit an activity" => "Add or edit an activity",
"end" => "end",
"switch" => "switch",
"split" => "split",
"join" => "join",
"standalone" => "standalone",
"interactive" => "interactive",
"auto routed" => "auto routed",
"Add transitions" => "Add transitions",
"Add transition from:" => "Add transition from:",
"Add transition to:" => "Add transition to:",
"roles" => "roles",
"No roles associated to this activity" => "No roles associated to this activity",
"Add role" => "Add role",
"add new" => "add new",
"add role" => "add role",
"Process activities" => "Process activities",
"Int" => "Int",
"Routing" => "Routing",
"Interactive" => "Interactive",
"Automatic" => "Automatic",
"Auto routed" => "Auto routed",
"Manual" => "Manual",
"#" => "#",
"inter" => "inter",
"route" => "route",
"(no roles)" => "(no roles)",
"code" => "code",
"No activities defined yet" => "No activities defined yet",
"Process Transitions" => "Process Transitions",
"List of transitions" => "List of transitions",
"From:" => "From:",
"Origin" => "Origin",
"No transitions defined yet" => "No transitions defined yet",
"Add a transition" => "Add a transition",
"Admin instance" => "Admin instance",
"Instance" => "Instance",
"Workitems" => "Workitems",
"exception" => "exception",
"aborted" => "aborted",
"Owner" => "Owner",
"Send all to" => "Send all to",
"Don't move" => "Don't move",
"Activities" => "Activities",
"Act status" => "Act status",
"run" => "run",
"Properties" => "Properties",
"Property" => "Property",
"Value" => "Value",
"Add property" => "Add property",
"value" => "value",
"Admin processes" => "Admin processes",
"Add or edit a process" => "Add or edit a process",
"This process is invalid" => "This process is invalid",
"Process Name" => "Process Name",
"ver:" => "ver:",
"is active?" => "is active?",
"Or upload a process using this form" => "Or upload a process using this form",
"List of processes" => "List of processes",
"Inactive" => "Inactive",
"act" => "act",
"val" => "val",
"active process" => "active process",
"invalid" => "invalid",
"invalid process" => "invalid process",
"valid process" => "valid process",
"new minor" => "new minor",
"new major" => "new major",
"activities" => "activities",
"No processes defined yet" => "No processes defined yet",
"Admin process roles" => "Admin process roles",
"Add or edit a role" => "Add or edit a role",
"Process roles" => "Process roles",
"No roles defined yet" => "No roles defined yet",
"Map users to roles" => "Map users to roles",
"Roles" => "Roles",
"map" => "map",
"Map groups to roles" => "Map groups to roles",
"Operation" => "Operation",
"Role" => "Role",
"Warning" => "Warning",
"No roles are defined yet so no roles can be mapped" => "No roles are defined yet so no roles can be mapped",
"List of mappings" => "List of mappings",
"No mappings defined yet" => "No mappings defined yet",
"Admin process sources" => "Admin process sources",
"select source" => "select source",
"Shared code" => "Shared code",
"Set next user" => "Set next user",
"Get property" => "Get property",
"Set property" => "Set property",
"Complete" => "Complete",
"Process form" => "Process form",
"Set Next act" => "Set Next act",
"If:SetNextact" => "If:SetNextact",
"Switch construct" => "Switch construct",
"Map process roles" => "Map process roles",
"admin processes" => "admin processes",
"admin activities" => "admin activities",
"admin roles" => "admin roles",
"edit this process" => "edit this process",
"Process:" => "Process:",
"Monitor activities" => "Monitor activities",
"List of activities" => "List of activities",
"proc" => "proc",
"auto" => "auto",
"int" => "int",
"routing" => "routing",
"Instances" => "Instances",
"run activity" => "run activity",
"monitor" => "monitor",
"monitor processes" => "monitor processes",
"monitor activities" => "monitor activities",
"monitor instances" => "monitor instances",
"monitor workitems" => "monitor workitems",
"Monitor instances" => "Monitor instances",
"List of instances" => "List of instances",
"act status" => "act status",
"running" => "running",
"No instances created yet" => "No instances created yet",
"Monitor processes" => "Monitor processes",
"Valid" => "Valid",
"Invalid" => "Invalid",
"Activs" => "Activs",
"processes" => "processes",
"being run" => "being run",
"exceptions" => "exceptions",
"Monitor workitems" => "Monitor workitems",
"List of workitems" => "List of workitems",
"instance" => "instance",
"Ins" => "Ins",
"stop" => "stop",
"activate" => "activate",
"graph" => "graph",
"User Activities" => "User Activities",
"process" => "process",
"user processes" => "user processes",
"user activities" => "user activities",
"user instances" => "user instances",
"User instances" => "User instances",
"Inst Status" => "Inst Status",
"exception instance" => "exception instance",
"exceptions instance" => "exceptions instance",
"send instance" => "send instance",
"run instance" => "run instance",
"abort instance" => "abort instance",
"grab instance" => "grab instance",
"release instance" => "release instance",
"No instances defined yet" => "No instances defined yet",
"User processes" => "User processes",
"Browsing Workitem" => "Browsing Workitem",
"Workitem information" => "Workitem information",
"First page" => "First page",
"Previous page" => "Previous page",
"Next page" => "Next page",
"Last page" => "Last page",
"create new blog" => "create new blog",
"Edit a file using this form" => "Edit a file using this form",
"Gallery Files" => "Gallery Files",
"move selected files" => "move selected files",
"delete selected files" => "delete selected files",
"Move to" => "Move to",
"Gallery Images" => "Gallery Images",
"with checked" => "with checked",
"Open operator console" => "Open operator console",
"Open client window" => "Open client window",
"Generate HTML" => "Generate HTML",
"Transcripts" => "Transcripts",
"Support tickets" => "Support tickets",
"Online operators" => "Online operators",
"Operator" => "Operator",
"Accepted requests" => "Accepted requests",
"since" => "since",
"transcripts" => "transcripts",
"Offline operators" => "Offline operators",
"Add an operator to the system" => "Add an operator to the system",
"Operators must be tiki users" => "Operators must be tiki users",
"set as operator" => "set as operator",
"Chat started" => "Chat started",
"User:" => "User:",
"Operator:" => "Operator:",
"Request live support" => "Request live support",
"Request support" => "Request support",
"Open a support ticket instead" => "Open a support ticket instead",
"Your request is being processed" => "Your request is being processed",
"cancel request and exit" => "cancel request and exit",
"cancel request and leave a message" => "cancel request and leave a message",
"Live support:Console" => "Live support:Console",
"be online" => "be online",
"be offline" => "be offline",
"Support requests" => "Support requests",
"Requested" => "Requested",
"Accept" => "Accept",
"Join" => "Join",
"Support chat transcripts" => "Support chat transcripts",
"back to admin" => "back to admin",
"op" => "op",
"started" => "started",
"reason" => "reason",
"msgs" => "msgs",
"Transcript" => "Transcript",
"My watches" => "My watches",
"No notes yet" => "No notes yet",
"merge selected notes into" => "merge selected notes into",
"wiki create" => "wiki create",
"wiki overwrite" => "wiki overwrite",
"discuss" => "discuss",
"attachments" => "attachments",
"Vote poll" => "Vote poll",
"posted by" => "posted by",
"Permalink" => "Permalink",
"referenced by" => "referenced by",
"references" => "references",
"email this post" => "email this post",
"Your registration code:" => "Your registration code:",
"Registration code" => "Registration code",
"Send blog post" => "Send blog post",
"A link to this post was sent to the following addresses:" => "A link to this post was sent to the following addresses:",
"Send post to this addresses" => "Send post to this addresses",
"List of email addresses separated by commas" => "List of email addresses separated by commas",
"The newsletter was sent to {\$sent} email addresses" => "The newsletter was sent to {\$sent} email addresses",
"This newsletter will be sent to {\$subscribers} email addresses." => "This newsletter will be sent to {\$subscribers} email addresses.",
"create pdf" => "create pdf",
"pdf" => "pdf",
"monitor this page" => "monitor this page",
"stop monitoring this page" => "stop monitoring this page",
"last modification" => "last modification",
"To edit the copyright notices" => "To edit the copyright notices",
"click here" => "click here",
"The content on this page is licensed under the terms of the" => "The content on this page is licensed under the terms of the",
"Theme is selected as follows" => "Theme is selected as follows",
"Errors detected" => "Errors detected",
"You have to create a gallery first!" => "You have to create a gallery first!",
"move to right column" => "move to right column",
"move to left column" => "move to left column",
"Folders" => "Folders",
"remove folder" => "remove folder",
"remove bookmark" => "remove bookmark",
"refresh cache" => "refresh cache",
"Admin folders and bookmarks" => "Admin folders and bookmarks",
"Is email public? (uses scrambling to prevent spam)" => "Is email public? (uses scrambling to prevent spam)",
"Edit CSS" => "Edit CSS",
"No tasks entered" => "No tasks entered",
"Watches" => "Watches",
"RSS feed" => "RSS feed",
"Edit blog" => "Edit blog",
"monitor this blog" => "monitor this blog",
"stop monitoring this blog" => "stop monitoring this blog",
"read more" => "read more",
"references" => "references",
"Trackback pings" => "Trackback pings",
"URI" => "URI",
"Blog name" => "Blog name",
"viewed" => "viewed",
"edit items" => "edit items",
"list charts" => "list charts",
"last chart" => "last chart",
"previous chart" => "previous chart",
"Chart created" => "Chart created",
"next chart" => "next chart",
"pos" => "pos",
"pre" => "pre",
"perm" => "perm",
"item" => "item",
"chg" => "chg",
"avg" => "avg",
"cool" => "cool",
"info/vote" => "info/vote",
"Next chart will be generated on" => "Next chart will be generated on",
"View or vote items not listed in the chart" => "View or vote items not listed in the chart",
"Select something to vote on" => "Select something to vote on",
"Item information" => "Item information",
"Chart" => "Chart",
"Item" => "Item",
"Permanency" => "Permanency",
"Previous" => "Previous",
"Dif" => "Dif",
"Best Position" => "Best Position",
"Vote this item" => "Vote this item",
"Highest" => "Highest",
"Q" => "Q",
"A" => "A",
"Tiki forums" => "Tiki forums",
"monitor this forum" => "monitor this forum",
"stop monitoring this forum" => "stop monitoring this forum",
" unread private messages" => " unread private messages",
"You have to enter a title and text" => "You have to enter a title and text",
"Summary" => "Summary",
"Attach file" => "Attach file",
"moderator actions" => "moderator actions",
"move selected topics" => "move selected topics",
"unlock selected topics" => "unlock selected topics",
"lock selected topics" => "lock selected topics",
"delete selected topics" => "delete selected topics",
"merge" => "merge",
"merge selected topics" => "merge selected topics",
"reported messages:" => "reported messages:",
"queued messages:" => "queued messages:",
"Merge into topic" => "Merge into topic",
"mot" => "mot",
"No topics yet" => "No topics yet",
"Show posts" => "Show posts",
"Last hour" => "Last hour",
"Last 24 hours" => "Last 24 hours",
"Last 48 hours" => "Last 48 hours",
"Jump to forum" => "Jump to forum",
"stars" => "stars",
"monitor this topic" => "monitor this topic",
"stop monitoring this topic" => "stop monitoring this topic",
"send email to user" => "send email to user",
"user online" => "user online",
"user offline" => "user offline",
"prev topic" => "prev topic",
"next topic" => "next topic",
"Moderator actions" => "Moderator actions",
"delete selected" => "delete selected",
"Move to topic:" => "Move to topic:",
"reported:" => "reported:",
"queued:" => "queued:",
"this post was reported" => "this post was reported",
"report this post" => "report this post",
"IRC log" => "IRC log",
"Select" => "Select",
"Tracker" => "Tracker",
"Syntax" => "Syntax",
"Example" => "Example",
"Somebody or you tried to subscribe this email address at our site:" => "Somebody or you tried to subscribe this email address at our site:",
"To the newsletter:" => "To the newsletter:",
"In order to confirm your subscription you must access the following URL:" => "In order to confirm your subscription you must access the following URL:",
"Bye bye!" => "Bye bye!",
"This email address has been removed to the list of subscriptors of:" => "This email address has been removed to the list of subscriptors of:",
"Newsletter:" => "Newsletter:",
"Welcome to our newsletter!" => "Welcome to our newsletter!",
"This email address has been added to the list of subscriptors of:" => "This email address has been added to the list of subscriptors of:",
"You can always cancel your subscription using:" => "You can always cancel your subscription using:",
"Banning" => "Banning",
"Syntax highlighting" => "Syntax highlighting",
"new messages" => "new messages",
"online user" => "online user",
"Send a message to" => "Send a message to",
"Send message" => "Send message",
"More info about" => "More info about",
"idle" => "idle",
"calendar" => "calendar",
"MyTiki (click!)" => "MyTiki (click!)",
"User activities" => "User activities",
"Submit a new link" => "Submit a new link",
"The copyright management feature is not enabled." => "The copyright management feature is not enabled.",
"You do not have permission to use this feature." => "You do not have permission to use this feature.",
"You must supply all the information, including title and year." => "You must supply all the information, including title and year.",
"Invalid user" => "Invalid user",
"Message will be sent to: " => "Message will be sent to: ",
"ERROR: Either the subject or body must be non-empty" => "ERROR: Either the subject or body must be non-empty",
"ERROR: No valid users to send the message" => "ERROR: No valid users to send the message",
"No more messages" => "No more messages",
"No chart indicated" => "No chart indicated",
"The file is not a CSV file or has not a correct syntax" => "The file is not a CSV file or has not a correct syntax",
"No records were found. Check the file please!" => "No records were found. Check the file please!",
"User login is required" => "User login is required",
"Password is required" => "Password is required",
"Email is required" => "Email is required",
"User is duplicated" => "User is duplicated",
"Top visited blogs" => "Top visited blogs",
"Last posts" => "Last posts",
"Top active blogs" => "Top active blogs",
"Permission denied you cannot view the calendar" => "Permission denied you cannot view the calendar",
"event without name" => "event without name",
"Message sent to" => "Message sent to",
"You dont have permission to write the style sheet" => "You dont have permission to write the style sheet",
"You have to create a topic first" => "You have to create a topic first",
"No process indicated" => "No process indicated",
"Activity name already exists" => "Activity name already exists",
"No instance indicated" => "No instance indicated",
"The process name already exists" => "The process name already exists",
"Process already exists" => "Process already exists",
"No activity indicated" => "No activity indicated",
"You cant execute this activity" => "You cant execute this activity",
"Permission denied you can't upload files so you can't edit them" => "Permission denied you can't upload files so you can't edit them",
"Permission denied you cannot edit this file" => "Permission denied you cannot edit this file",
"Permission denied you cannot remove pages" => "Permission denied you cannot remove pages",
"Tiki mail-in instructions" => "Tiki mail-in instructions",
"About" => "About",
"merged note:" => "merged note:",
"No name indicated for wiki page" => "No name indicated for wiki page",
"Page already exists" => "Page already exists",
"created from notepad" => "created from notepad",
"Wrong registration code" => "Wrong registration code",
"Your Tiki account information for" => "Your Tiki account information for",
"A password reminder email has been sent " => "A password reminder email has been sent ",
"A new password has been sent " => "A new password has been sent ",
"to the registered email address for" => "to the registered email address for",
"Invalid or unknown username" => "Invalid or unknown username",
"Cannot rename page maybe new page already exists" => "Cannot rename page maybe new page already exists",
"Post recommendation at" => "Post recommendation at",
"Please create a category first" => "Please create a category first",
"Permission denied you cannot upload files" => "Permission denied you cannot upload files",
"No permission to upload zipped file packages" => "No permission to upload zipped file packages",
"Cannot read file" => "Cannot read file",
"Error processing zipped image package" => "Error processing zipped image package",
"Cannot upload this file not enough quota" => "Cannot upload this file not enough quota",
"No item indicated" => "No item indicated",
"Wrong password. Cannot post comment" => "Wrong password. Cannot post comment",
"Cannot upload this file maximum upload size exceeded" => "Cannot upload this file maximum upload size exceeded",
" new topic:" => " new topic:",
"Re:" => "Re:",
"topic:" => "topic:",
"forum topic" => "forum topic",
"No subject" => "No subject",
"no such file" => "no such file",
"January" => "January",
"February" => "February",
"March" => "March",
"April" => "April",
"May" => "May",
"June" => "June",
"July" => "July",
"August" => "August",
"September" => "September",
"October" => "October",
"November" => "November",
"December" => "December",
"Sunday" => "Sunday",
"Monday" => "Monday",
"Tuesday" => "Tuesday",
"Wednesday" => "Wednesday",
"Thursday" => "Thursday",
"Friday" => "Friday",
"Saturday" => "Saturday",
"WikiDiff::apply: line count mismatch: %s != %s" => "WikiDiff::apply: line count mismatch: %s != %s",
"WikiDiff::_check: failed" => "WikiDiff::_check: failed",
"WikiDiff::_check: edit sequence is non-optimal" => "WikiDiff::_check: edit sequence is non-optimal",
"WikiDiff Okay: LCS = %s" => "WikiDiff Okay: LCS = %s",
"Current page:" => "Current page:",
"version %s" => "version %s",
"last modified on %s" => "last modified on %s",
"by %s" => "by %s",
"Archived page:" => "Archived page:",
"Diff of %s." => "Diff of %s.",
"No image yet, sorry." => "No image yet, sorry.",
"You are banned from" => "You are banned from",
"help" => "help",
" tags. Example: {tr}The newsletter was sent to {\$sent} email addresses" => " tags. Example: {tr}The newsletter was sent to {\$sent} email addresses",
"indicates if the process is active. Invalid processes cant be active" => "indicates if the process is active. Invalid processes cant be active",
"Blog post" => "Blog post",
"continued" => "continued",
"click to edit" => "click to edit",
"new image uploaded by" => "new image uploaded by",
"uploaded by" => "uploaded by",
"new item in tracker" => "new item in tracker",
"new subscriptions" => "new subscriptions",
"not specified" => "not specified",
"Home" => "Home",
"NONE" => "NONE",
"Displays a snippet of code.\nSet optional paramater -+ln+- to 1 if you need line numbering feature." => "Displays a snippet of code.\nSet optional paramater -+ln+- to 1 if you need line numbering feature.",
"Sorry no such module" => "Sorry no such module",
"Please choose a module" => "Please choose a module",
"to be used as argument" => "to be used as argument",
"Missing db param" => "Missing db param",
"There is an error in the plugin data" => "There is an error in the plugin data",
"Change your email" => "Change your email",
"Edit this assigned module:" => "Edit this assigned module:",
"##end###" => "###end###", ];
?>
|