1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
|
<?php
$lang=Array(
"User_versions_for" => "User_versions_for",
"Version" => "Версия",
"Date" => "Дата",
"Page" => "Страница",
"Ip" => "IP",
"Comment" => "Комментарий",
"Action" => "Действие",
"view" => "просмотр",
"No records found" => "Нет записей",
"Administration" => "Администрирование",
"Links/Commands" => "Ссылки/Команды",//perhaps not used
"Preferences" => "Настройки",
"Wiki Features" => "Wiki Features",
"Admin users" => "Управлять пользователями",
"Generate dump" => "Создать дамп",
"Download last dump" => "Скачать последний дамп",
"Create a tag for the current wiki" => "Дать метку текущему wiki",
"create tag" => "создать метку",//perhaps not used
"Restore the wiki" => "Воссстановить 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" => "Wiki_Tiki_Title",
"Change preferences" => "Изменить настройки",
"Last changes" => "Последние изменения",
"Dump" => "Дамп",
"Ranking" => "Рейтинг",
"History" => "История",
"List pages" => "Список страниц",
"Backlinks" => "Ссылки на данную страницу",
"Like pages" => "Подобные страницы",
"Search" => "Поиск",
"Image 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" => "TextFormattingRules",
"Emphasis" => "Ударение",
"italics" => "курсив",
"for" => "для",
"bold" => "жирный",
"both" => "оба",
"Lists" => "Списки",
"for bullet lists" => "для ненумерованных списков",
"for numbered lists" => "для нумерованных списков",
"term" => "термин",
"definition" => "определение",
"for definiton lists" => "для списков определений",
"References" => "Ссылки",//perhaps not used
"JoinCapitalizedWords" => "СлепитьСловаСЗаглавнойБуквы",//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" => "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" => "Email",
"register" => "регистрация",
"email" => "email",
"last_login" => "последний_вход",
"Groups" => "Группы",
"delete" => "удалить",
"assign group" => "назначить группу",
"Add a new user" => "Добавить пользователя",
"Pass" => "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" => "Вы можете получить доступ к галерее по следующему адресу",
"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 this page" => "Назначить права доступа к этой странице",
"Cache" => "Кеш",
"URL" => "URL",
"Last updated" => "Последняя правка",
"home" => "В начало",
"last changes" => "Последние правки",
"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/Tiki страницу с помощью",
"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 или Tiki страницу с помощью",
"Cached" => "Кешируется",
"This is a cached version of the page." => "Это кешированная версия страницы.",
"Admin Modules" => "Модули Администрирования",
"assign module" => "назначить модуль",
"left modules" => "модули слева",
"right modules" => "модули справа",
"clear cache" => "очистить кеш",
"User Modules" => "Пользовательские модули",
"order" => "порядок",
"x" => "x",
"rows" => "строки",
"down" => "ниже",
"up" => "выше",
"create/edit" => "создание/правка",
"url" => "url",
"browse gallery" => "просмотр галереи",
"ID" => "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" => "Пользователи онлайн",
"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" => "HasImg",//perhaps not used
"UseImg" => "UseImg",//perhaps not used
"Read" => "Читать",
"Read More" => "Читать ещё",
"Submissions" => "Поступления",
"Approve" => "Подтвердить",
"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" => "Сказать",
"Edit Post" => "Правка Сказанного",
"Blog" => "Блог",
"Data" => "Данные",
"Created by" => "Создано",
" on " => " в ",
"posts" => "сообщений",
"visits" => "посещений",
"Activity=" => "Активность=",
"Description:" => "Описание:",
"Find:" => "Поиск:",
"find" => "найти",
"Sort posts by:" => "Сортировать сообщения по:",
"Id" => "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" => "Дампы",
"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." => "Песочница - это страница,
где Вы можете попрактиковаться в создании достойных страниц. Для Песочницы не сохраняются версии и не
контролируются права доступа.",//perhaps not used
"User Preferences" => "Личные Настройки",
"User Information" => "Личная Информация",
"Last login" => "Последний Вход",
"Real Name" => "Настоящее Имя",
"HomePage" => "Домашняя Страница",
"Your personal Wiki Page" => "Ваша Личная Wiki Страница",
"set" => "запомнить",
"Change your password" => "Сменить Ваш пароль",
"Old password" => "Старый пароль",
"New password" => "Новый пароль",
"Again please" => "Ещё раз пжлст",
"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" => "Wiki",
"XMLRPC API" => "Доступ к системе через XMLRPC",
"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" => "Удалить изображения в директории системы, которые не использованы в страницах Wiki, статьях или сообщениях блогов",
"CMS features" => "Возможности CMS",
"Home Blog (main blog)" => "Начальный блог (основной)",
"Set prefs" => "Установка параметров",
"Blog features" => "Возможности блога",
"URL to link the banner" => "URL для ссылки от баннера",
"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 (изображение будет перечитано с URL при каждом показе)",
"Use text" => "UseИспользовать текст",
"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" => "CMS",
"Articles Home" => "Главная статья",
"List articles" => "Список статей",
"Submit article" => "Разместить статью",
"View submissions" => "Просмотр поступлений",
"List blogs" => "Список блогов",
"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" => "Не указан id содержимого",
"List" => "Список",
"Last mod" => "Последний модуль",
"Last ver" => "Последняя версия",
"Com" => "Com",
"Vers" => "Vers",
"Create or edit content" => "Создать или изменить содержимое",
"position" => "позиция",
"disables the link" => "запрещает ссылку",
"files" => "файлы",
"General" => "Общие",
"File galleries" => "Файловые галереи",
"Comments" => "Комментарии",
"Image galleries" => "Фотогалереи",
"type" => "вид",
"Page generated in" => "Страница создана за",
"seconds" => "с.",
"Wiki comments settings" => "Настройки комментирования Wiki",
"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" => "Прокомментировать",
"post" => "Новое сообщение",
"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/Tiki страницу, используя",
"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" => "Копировать сообщения форума на email",
"Prune unreplied messages after" => "Удалять неотвеченные после",
"Prune old messages after" => "Удалять старые сообщения после",
"Save" => "Сохранить",
"topics" => "темы",
"coms" => "коммнт",
"age" => "возр",
"ppd" => "ppd",
"last post" => "посл. сообщ.",
"perms" => "права",
"forums" => "форумы",
"Assign permissions to group" => "Назначить права для группы",
"Group Information" => "Информация о группе",
"Forums" => "Форумы",
"Comm" => "Коментарии",
"Cms" => "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" => "Никаких индивидуальных прав доступа, здесь только глобальные",
"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" => "RSS раздачи",
"displays rss feed with id=n maximum=m items" => "выводит rss раздачу от другого сервера с id=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" => "Будет заменено настоящим значением блока динамического содержимого с id=n",
"Send objects" => "Отправить объекты",
"Transmission results" => "Результаты пересылки",
"Send objects to this site" => "Переслать объект на этот сайт",
"site" => "сайт",
"path" => "путь",
"username" => "логин",
"password" => "пароль",
"send" => "Новое сообщение",
"Send Wiki Pages" => "Отправить Wiki-страницы",
"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" => "Разделы и возможности Tiki",
"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" => "Настройки Wiki",
"Never delete versions younger than days" => "Никогда не удалять версии моложе дней",
"Set" => "Записать",
"wiki" => "wiki",
"polls" => "опросы",//perhaps not used
"Image galleries comments settings" => "Комментарии в фотогалереях",
"features" => "возможности",//perhaps not used
"File galleries comments settings" => "Комментарии в файловых галереях",
"cms" => "управление контентом",//perhaps not used
"CMS settings" => "Настройки CMS",
"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" => "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" => "Поток для 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" => "Модули RSS",
"use rss module" => "использовать модуль rss",
"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" => "Создать/редактировать RSS модуль",
"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" => "Начальная страница Wiki",
"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" => "Страницы Wiki",
"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" => "LastChanges",
"Generate a password" => "Создать пароль",
"faqs" => "чаво",
"File gals" => "Файл.галереи",
"Image gals" => "Фотогалереи",
"FAQs" => "ЧаВо",
"of" => "/",
"Comparing versions" => "Сравнение версий",
"compare" => "сравнить",
"RSS" => "RSS",
"Article" => "Статья",
"Review" => "Обзор",
"Rating" => "Рейтинг",
"Quicklinks" => "Быстрые ссылки",
"Spellcheck" => "Правописание",
"Wiki References" => "Ссылки Wiki",
"JoinCapitalizedWords or use" => "СоединяйтеСловаСБольшойБуквы или используйте",
"for wiki references" => "для ссылок внутри Wiki",
"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" => "Проверять пользователей через email",
"Remind passwords by email" => "Напоминать пароли по email",
"Undo" => "Откат",
"MultiPrint" => "MultiPrint",
"Spellchecking" => "Правописание",
"FAQs settings" => "Настройки ЧаВо",
"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." => "Restoring a backup destoys all the data in your Tiki database.
All your tables will be replaced with the information in the backup.",//perhaps not used
"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" => "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",//perhaps not used
"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)" => "Shockwave Flash двоичный (.swf или .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" => "Если Вы не видите игры, Вам, возможно, понадобится Flash плагин для Вашего браузера",
"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" => "Печать страниц Wiki",
"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" => "Назначенные пользователем модули",
"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" => "Статистика Wiki",
"Size of Wiki Pages" => "Размер страниц Wiki",
"Average page length" => "Средний размер страницы",
"Average versions per page" => "Среднее число версий на страницу",
"Visits to wiki pages" => "Посещения страниц Wiki",
"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" => "CMS статистика",
"Total reads" => "Общее число прочтений",
"Average reads per article" => "Среднее число прочтений на 1 статью",
"Total articles size" => "Суммарный размер статей",
"Average article size" => "Средний размер статьи",
"Forum Stats" => "Статистика форума",
"Total topics" => "Всего тем",
"Average topics per forums" => "Средне число тем на форуме",
"Total threads" => "Всего веток обсуждения",
"Average threads per topic" => "Среднее число веток на 1 тему",
"Visits to forums" => "Посещения форумов",
"Blog Stats" => "Статистика блогов",
"Weblogs" => "Веблоги",
"Total posts" => "Суммарное количество сообщений",
"Average posts pero weblog" => "В среднем сообщений на 1 блог",
"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" => "В среднем вопросов на 1 ЧаВо",
"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" => "Быстрое редактирование страницы Wiki",
"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)" => "Статьи (subs)",
"Apply template" => "Применить шаблон",
"none" => "нет",
"Search stats" => "Поиск по статистике",
"Hotwords in new window" => "Ключевые слова в новом окне",
"Allow smileys" => "Позволить смайлики",
"Shoutbox" => "Кричалка",
"Drawings" => "Рисунки",
"Referer stats" => "Статистика по Referer",
"Referer Stats" => "Статистика по Referer",
"search category" => "Поиск по категории",
"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" => "Приложение файлов к страницам Wiki",
"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" => "can_repeat",
"time_limit" => "time_limit",
"results" => "результаты",
"this quiz stats" => "статистика по этому тесту",
"edit this quiz" => "редактировать тест",
"Reuse question" => "Использовать вопрос повторно",
"Questions" => "Вопросы",
"maxScore" => "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" => "wiki ссылка",
"heading1" => "заголовок 1",
"heading2" => "заголовок 2",//perhaps not used
"heading3" => "заголовок 3",//perhaps not used
"title bar" => "строка заглавия",
"box" => "рамка",
"rss feed" => "rss поток",
"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" => "использовать в cms",
"use in wiki" => "использовать в 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" => "Tiki Кричалка",
"Post or edit a message" => "Разместить или изменить сообщение",
"Messages" => "Сообщения",
"Edit Image" => "Редактировать изображение",
"Edit successful!" => "Редактирование успешно!",
"The following image was successfully edited" => "Следующий файл успешно отредактирован",
"creates the editable drawing 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" => "Управлять динамическими зонами HTML страницы",
"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" => "wiki страницы изменились",
"new files" => "новые файлы",
"new comments" => "новые комментарии",
"new users" => "новые пользователи",
"Google Search" => "Поиск по Google",
"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" => "Вопрос не указан",
"similar" => "подобные",
"Wiki Import dump" => "Дамп импорта Wiki",
"trckrs" => "трекеры",//perhaps not used
"frms" => "форумы",//perhaps not used
"gral" => "общ",//perhaps not used
"feat" => "feat",//perhaps not used
"Full Text Search" => "Полнотекстовый поиск",
"Trackers" => "Трекеры",
"Surveys" => "Опросы",
"Newsletters" => "Рассылки",
"Directory" => "Каталог ссылок",
"Use gzipped output" => "Использовать сжатый вывод страниц",
"Use direct pagination links" => "Использовать прямые ссылки на страницы",
"Slideshows theme" => "Тема для слайд-шоу",
"Server name (for absolute URIs)" => "Имя сервера (для абсолютных ссылок)",
"Server time zone" => "Часовая зона сервера",
"Displayed time zone" => "Видимая часовая зона",
"Long date format" => "Длинный формат даты",
"Short date format" => "Короткий формат даты",
"Long time format" => "Длинный формат времени",
"Short time format" => "Короткий формат времени",
"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" => "Пароль устареет через, дней",
"Require HTTP Basic authentication" => "Требовать HTTP Basic авторизацию",
"Allow secure (https) login" => "Позволять безопасный (https) вход",
"Require secure (https) login" => "Требовать безопасный (https) вход",
"HTTP server name" => "Имя веб сервера",
"HTTP port" => "Порт веб сервера",
"HTTP URL prefix" => "HTTP приставка к URL",
"HTTPS server name" => "Имя HTTPS сервера",
"HTTPS port" => "Порт HTTPS сервера",
"HTTPS URL prefix" => "HTTPS приставка к URL",
"Export Wiki Pages" => "Экспорт страниц Wiki",
"Export" => "Экспорт",
"Remove unused pictures" => "Удалить неиспользуемые изображения",
"Wiki Home Page" => "Домашняя страница Wiki",
"Wiki Page Names" => "Имена страниц Wiki",
"full" => "полные",
"strict" => "строгие",
"Pictures" => "Изображения",
"Use page description" => "Использовать описание страницы",
"file gls" => "файл.гал.",//perhaps not used
"Blog level comments" => "Комментарии к блогу",
"Post level comments" => "Комментарии к сообщению",
"img gls" => "фотогал.",//perhaps not used
"webmail" => "вебпочта",//perhaps not used
"Webmail" => "Вебпочта",
"Allow viwing HTML mails?" => "Позволить просмотр HTML писем?",//perhaps not used
"Maximum size for each attachment" => "Наибольший допустимый размер вложения",
"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" => "Подписки",
"Structures" => "Структуры",
"Create new structure" => "Создать новую структуру",
"Structure" => "Структура",
"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" => "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" => "is_main",
"Tbl vis" => "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" => "поля",
"Change password enforced" => "Требуется срочная смена пароля",
"Page alias" => "Page alias",
"page" => "стр.",
"page|desc" => "стр.|описание",
"SomeName" => "ЧьёТоИмя",
"some text" => "какой-то текст",
"Non parsed sections" => "Не разбираемые анализатором области",
"data" => "данные",
"Prevents parsing data" => "Запрещает разбор анализатором Ваших данных",
"b" => "b",//perhaps not used
"i" => "i",//perhaps not used
"ul" => "ul",//perhaps not used
"tbl" => "tbl",//perhaps not used
"a" => "a",//perhaps not used
"h1" => "h1",//perhaps not used
"h2" => "h2",//perhaps not used
"h3" => "h3",//perhaps not used
"dcs" => "dcs",//perhaps not used
"center" => "center",
"col" => "col",//perhaps not used
"img nc" => "img nc",
"chars" => "симв.",//perhaps not used
"In parent page" => "На родительской странице",
"After page" => "После страницы",
"create page" => "Создать страницу",
"Remove only from structure" => "Удалить только из структуры",
"Remove from structure and remove page too" => "Удалить из структуры и удалить саму страницу",
"list submissions" => "Список поступлений",
"at" => "в",
"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." => "Песочница - это страница, где Вы можете попрактиковаться в создании достойных страниц. Для Песочницы не сохраняются версии и не контролируются права доступа.",
"Import page" => "Импорт страницы",
"export all versions" => "Экспорт всех версий",
"Upload picture" => "Закачать картинку",
"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" => "Заранее удалить существующие версии страницы",
"import" => "Импорт",
"ver" => "Версия",
"excerpt" => "Цитата",
"edit new article" => "Редактировать новую статью",
"view articles" => "Просмотр статей",
"edit new submission" => "Редактировать новое поступление",
"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." => "Спасибо, что подписались на рассылку. Вы должны получить email с просьбой подтвердить подписку.
Вы не получите ни одной рассылки, пока не подтвердите своё желание в ней участвовать.",//perhaps not used
"Your email address was removed from the list of subscriptors." => "Ваш адрес был удалён из списка подписчиков.",
"Subscription confirmed!" => "Подписка подтверждена!",
"Subscribe to newsletter" => "Подписаться на рассылку",
"Email:" => "Ваш email:",
"Subscribe" => "Подписаться",
"slides" => "слайды",
"export" => "экспорт",
"Pick your avatar" => "Выберите аватару",
"Pick user Avatar" => "Выберите аватару для пользователя",
"Your current avatar" => "Ваша аватара",
"Upload your own avatar" => "Закачайте свою аватару на сервер",
"File" => "Файл",
"Received pages" => "Полученные страницы",
"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 " => "Статистика по вопросам этого опроса ",
"Batch upload" => "Пакетная закачка",
"Avatar" => "Аватара",
"at tracker" => "в трекере",
"Print" => "Печать",
"view comments" => "комментарии",
"Viewing blog post" => "Просмотр сообщения в блоге",
"Return to blog" => "Вернуться в блог",
"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" => "Учётные записи",
"account" => "учётная запись",
"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" => "копия (cc)",
"bcc" => "слепая копия (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" => "Адресная книга",
"Directory Administration" => "Управление каталогом",
"Statistics" => "Статистика",
"invalid sites" => "ошибочные сайты",
"There are" => "Есть в наличии",
"valid sites" => "проверенных сайтов",
"Users have visited" => "Посетители прошли на",
"sites from the directory" => "сайтов из каталога",
"Users have searched" => "Посетители искали",
"times from the directory" => "раз по каталогу",
"Admin sites" => "Управлять сайтами",
"Admin category relationships" => "Управлять отношениями в категориях",
"Validate links" => "Проверить ссылки",
"Settings" => "Настройки",
"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" => "Позволить переход на сайты этой категории",
"Show number of sites in this category" => "Выводить число сайтов этой категории",
"Editor group" => "Группа редакторов",
"Subcategories" => "Подкатегории",
"cType" => "вид",
"allow" => "включено",
"count" => "кол-во",
"editor" => "редактор",
"relate" => "отношения",
"phpinfo" => "phpinfo",
"List Trackers" => "Список трекеров",
"List Surveys" => "Список опросов",
"Last Modified Items" => "Последние изменённые элементы",
"Last Items" => "Последние элементы",
"standard" => "обычный",
"secure" => "безопасный",
"stay in ssl mode" => "оставаться в безопасном ssl режиме",
"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" => "Пароль должен содержать буквы и цифры",
"No structure indicated" => "Структура не указана",
"You dont have permission to do that" => "У Вас недостаточно прав для этого действия",
"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 post indicated" => "Сообщение не указано",
"No item indicated" => "Элемент не указан",
"parent" => "родитель",
"directory" => "каталог",
"userfiles" => "файлы пользователя",//perhaps not used
"User Messages" => "Сообщения пользователя",
"User Tasks" => "Задачи",
"Newsreader" => "Чтение новостей",
"Contact" => "Связаться",
"User Notepad" => "Блокнот",
"User files" => "Файлы пользователя",
"User menu" => "Меню пользователя",
"Mini calendar" => "Мини-календарь",
"Ephemerides" => "События",
"Theme control" => "Управление темами",
"Theme Control" => "Управление темами",
"OS" => "Операционная система",
"Unix" => "Unix",
"Windows" => "Windows",
"Unknown/Other" => "Не знаю/другая",
"Use database for translation" => "Использовать базу данных для перевода",
"Record untranslated" => "Запись не переведена",
"Temporary directory" => "Временная папка",
"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" => "Кешировать страницы Wiki",
"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" => "История Wiki",
"Forum settings" => "Настройки форума",//perhaps not used
"Allow wiki markup" => "Включить разметку wiki",//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)" => "Квота (Мбайт)",
"Use database to store userfiles" => "Хранить файлы пользователей в базе данных",
"Use a directory to store userfiles" => "Хранить файлы пользователей на диске",
"top" => "лучшие",
"subs" => "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" => "Список рекомендуемых ссылок",
"Admin Menus" => "Управлять меню",
"
<b>Note 1</b>: if you allow your users to configure modules then assigned
modules won't be reflected in the screen until you configure them
from MyTiki->modules.<br />
<b>Note 2</b>: If you assign modules to groups make sure that you
have turned off the option 'display modules to all groups always'
from Admin->General
" => "
<b>Примечание 1</b>: если Вы позволяете пользователям настраивать модули то
назначенные модули не будут отображены на экране, пока Вы не настроите их
из меню MyTiki->Модули.<br />
<b>Примечание 2</b>: Если Вы назначаете модули для групп, убедитесь, что Вы выключили опцию 'показывать модули для всех групп всегда' в меню
Админ->Общие",//perhaps not used
"left" => "слева",
"right" => "справа",
"Assigned Modules" => "Назначенные модули",
"Left Modules" => "Модули слева",
"Right Modules" => "Модули справа",
"Edit/Create user module" => "Создать/редактировать пользовательский модуль",
"All galleries" => "Все галереи",
"Admin newsletter subscriptions" => "Управлять подписчиками рассылки",
"Admin newsletters" => "Управлять рассылкой",
"Admin Polls" => "Управлять голосованиями",
"Poll options" => "Параметры голосования",
"Set last poll as current" => "Установить последнее голосование текущим",
"Close all polls but last" => "Закрыть все голосования кроме последнего",
"Activate all polls" => "Открыть все голосования",
"Admin RSS modules" => "Управлять RSS модулями",
"Rss channels" => "Rss каналы",
"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" => "трекеры",
"assign_perms" => "дать права",
"Create level" => "Создать уровень",
"all permissions in level" => "все права доступа на уровне",
"update" => "обновить",
"Content Templates" => "Шаблоны для содержимого",
"DSN" => "DSN",
"level" => "уровень",
"assgn" => "назнач.",
"List of available backups" => "Список доступных резервных копий",
"Restoring a backup destoys all the data in your Tiki database. All your tables will be replaced with the information in the backup." => "Востановление из резервной копии разрушит все данные в Вашей базе данных. Все Ваши таблицы будут заменены данными из резервной копии.",
"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",
"view blog" => "просмотр блога",
"list blogs" => "список блогов",
"Objects" => "Объекты",
"original size" => "оригинальный размер",
"rotate right" => "сдвинуть вправо",
"rotate left" => "сдвинуть влево",//perhaps not used
"Klick to enlarge" => "Нажмите чтобы увеличить",
"smaller" => "меньше",
"bigger" => "больше",
"Welcome to the Tiki Chat Rooms" => "Добро пожаловать в Чат-комнаты Tiki",
"Please select a chat channel" => "Пожалуйста, выберите канал",
"Browser not supported" => "Браузер не поддерживается",
"Channel" => "Канал",
"Ratio" => "Соотношение",
"browse" => "просмотр",
"related" => "по теме",
"sites" => "сайты",
"validate" => "проверить",
"Admin related categories" => "Управлять родственными категориями",
"Category" => "Категория",
"Mutual" => "Взаимные",
"Related categories" => "Родственные категории",
"category" => "категория",
"Add or edit a site" => "Добавить или редактировать сайт",
"Country" => "Страна",
"Is valid" => "Проверено, работает",
"Sites" => "Сайты",
"country" => "страна",
"Validate sites" => "Проверить сайты",
"list articles" => "перечень статей",
"There are individual permissions set for this blog" => "Для этого блога заданы индивидуальные права доступа",
"Create/edit options for question" => "Создать/редактировать ответы на вопрос",
"Create/edit questions for quiz" => "Создать/редактировать вопросы для теста",
"You will remove" => "Вы удаляете",
"and its subpages from the structure, now you have two options:" => "и все подчинённые страницы из структуры, у Вас два варианта действий на выбор:",
"There are individual permissions set for this file gallery" => "Для этой файловой галереи заданы индивидуальные права доступа",
"There are individual permissions set for this gallery" => "Для этой галереи заданы индивидуальные права доступа",
"Available scales" => "Доступные масштабы",
"No scales available" => "Масштабы недоступны",
"Add scaled images size X x Y" => "Добавить отмасштабированные изображения размером X x Y",
"Path to where the dumped files are (relative to tiki basedir with trailing slash ex: dump/)" => "Путь к файлам дампа (относительно базовой папки Tiki обязательно со слешем в конце, например dump/)",
"hist" => "история",
"Create banner" => "Создать баннер",
"edit blog" => "редактировать блог",
"Create or edit content block" => "Создать или редактировать блок содержимого",
"Available FAQs" => "Доступные FAQ",
"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." => "Спасибо, что подписались на рассылку. Вы должны получить email с просьбой подтвердить подписку. Вы не получите ни одной рассылки, пока не подтвердите своё желание в ней участвовать.",
"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" => "Полученные статьи",
"wiki pages" => "страницы wiki",//perhaps not used
"Relevance" => "Отношение к теме",
"locked by" => "заблокировано",
"Save to notepad" => "Сохранить в блокноте",
"pvs" => "просмотров стр.",
"display" => "вывести",
"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" => "Принимать сообщения от других пользователей",
"Send me an email for messages with priority equal or greater than" => "Выслать мне письмо для сообщений с приоритетом не менее",
"Tasks per page" => "Число заданий на лист",
"My Tiki" => "Мой Tiki",
"My pages" => "Мои страницы",
"My messages" => "Мои сообщения",
"My tasks" => "Мои задачи",
"My items" => "Мои объекты",
"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" => "Учётные записи по приёму почты",
"wiki-get" => "wiki-get",
"wiki-put" => "wiki-put",
"wiki-append" => "wiki-append",
"Send me a message" => "Выслать мне сообщение",
"Lowest" => "Низший",
"Low" => "Низкий",
"Normal" => "Обычный",
"High" => "Высокий",
"Very High" => "Высший",
"Read message" => "Прочесть сообщение",
"Return to messages" => "Вернуться к сообщениям",
"replyall" => "ответить всем",
"Unflagg" => "Снять флажок",
"Flag this message" => "Отметить флажком",
"Compose message" => "Создать сообщение",
"CC" => "Копия (CC)",
"BCC" => "Слепая копия (BCC)",
"Unflagged" => "Без отметки флажком",
"1" => "1",
"2" => "2",
"3" => "3",
"4" => "4",
"5" => "5",
"Mark as flagged" => "Отметить флажком",
"No messages to display" => "Нет сообщений для вывода",
"Mailbox" => "Почтовый ящик",
"Compose" => "Создать",
"Broadcast" => "Широковещание",
"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" => "сбросить таблицу",
"previous page" => "страница назад",
"next page" => "страница вперёд",
"Im- Export languages" => "Импорт/экспорт языков",
"Select the language to Import" => "Выберите язык для импорта",
"Select the language to Export" => "Выберите язык для экспорта",
"MyTiki" => "Мой Tiki",
"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" => "Импортировать CSV файл",
"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" => "час",
"Add or edit event" => "Добавить или редактировать событие",
"Start" => "Начало",
"Duration" => "Длительность",
"Admin external wikis" => "Управлять внешними Wiki",
"Create/edit extwiki" => "Создать/редактировать внешнюю Wiki",
"URL (use to be replaced by the page name in the URL example: http://www.example.com/wiki/index.php?page=)" => "URL (Используйте чтобы заменить именем страницы URL пример: http://www.example.com/wiki/index.php?page=)",//perhaps not used
"extwiki" => "внеш.wiki",
"Admin dsn" => "Управлять DSN",
"Create/edit dsn" => "Создать/редактировать DSN",
"dsn" => "DSN",
"Rename page" => "Переименовать страницу",
"New name" => "Новое название",
"Mail-in" => "Mail-in",
"External wikis" => "Внешние wikis",
"contact us" => "свяжитесь с нами",
"My files" => "Мои файлы",
"structures" => "структуры",
"List forums" => "Список форумов",
"Browse Directory" => "Просмотр каталога",
"Admin directory" => "Управлять каталогом",
"Admin quiz" => "Управлять тестом",
"Admin (click!)" => "Админ (нажми!)",
"Edit languages" => "Редактировать языки",
"online users" => "народу онлайн",
"Remember me" => "Запомнить меня",
"Tiki Logo" => "Tiki логотип",
"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" => "Следует ввести ссылку, чтобы добавить сайт",
"Must select a category" => "Следует выбрать категорию",
"You can not download files" => "Вы не можете скачивать файлы",
"Invalid email address. You must enter a valid email address" => "Неверный адрес email. Пожалуйста введите настоящий работающий адрес email.",
"No site indicated" => "Сайт не указан",
"Must enter a name to add a site" => "Следует ввести название, чтобы добавить сайт",
"URL already added to the directory. Duplicate site?" => "Ссылка уже добавлена в каталог. Вы вводите дубликат?",
"URL cannot be accessed wrong URL or site is offline and cannot be added to the directory" => "URL недоступен - неверный 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" => "Заметка не указана",
"Forum posts" => "Число сообщений в форуме",
"URL (use \$page to be replaced by the page name in the URL example: http://www.example.com/wiki/index.php?page=\$page)" => "URL (Используйте чтобы заменить именем страницы URL пример: http://www.example.com/wiki/index.php?page=)",
"picture not found" => "рисунок не найден",
"Menu options" => "Опции меню",
"Charts" => "Графики",
"No charts defined yet" => "Графики еще не определенны",
"Admin charts" => "Графики админа",
"Add or edit a chart" => "Добавление/редактирование графика",
"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 Votes" => "Показать гослосования",
"Use Cookies for unregistered users" => "Использовать куки для незарегистрированных пользователей",
"Users can vote again after" => "Пользователи могут голосовать снова после",
"Items" => "Пункты",
"Ranks" => "Категории",
"All items" => "Все пункты",
"Top 10 items" => "Лучшие 10",
"Top 20 items" => "Лучшие 20",
"Top 40 items" => "Лучшие 40",
"Top 50 items" => "Лучшие 50",
"Top 100 items" => "Лучшие 100",
"Top 250 items" => "Лучшие 250",
"Vote items" => "Vote items",
"Rank 1..5" => "Rank 1..5",
"Rank 1..10" => "Rank 1..10",
"Realtime" => "Реальное время",
"Each 5 minutes" => "Каждые 5 минут",
"Monthly" => "Ежемесячно",
"Anytime" => "В любое время",
"5 minutes" => "5 минут",
"1 day" => "1 день",
"1 week" => "1 неделя",
"1 month" => "1 месяц",
"You will receive an email with your password soon" => "Скоро вы получите письмо с вашим паролем",//perhaps not used
"Thank you for you registration. You may log in now." => "Спасибо за регистрацию. Теперь вы можете залогиниться.",
"Batch upload (CSV file)" => "Пакетная закачка (CSV файл)",
"Overwrite" => "Перезаписать",
"Displays the user Avatar" => "Показать пользователя Avatar",
"Centers the plugin content in the wiki page" => "Центрировать содердимой плагина на странице wiki",
"Displays a snippet of code.
Set optional paramater -+ln+- to 1 if you need line numbering feature." => "Показать отрезок кода.
Установите необязательный параметр -+ln+- в 1 если вы желаете включить нумерацию строк.",//perhaps not used
"No description available" => "Описание недоступно",
"Displays a graphical GAUGE" => "Показть графический GAUGE",
"Renders a graph" => "Сформировать график",
"Insert copyright notices" => "Вставить сообщение об авторских правах",
"Displays a module inlined in page" => "Показывать module встроенный в страницу",
"Insert theme styled box on wiki page" => "Вставить тематически-стилевой блок в страницу wiki",
"PluginsHelp" => "Помощь по плагинам",
"Wiki quick help" => "Быстрая помощь по Wiki",
"create new empty structure" => "создать новую пустую структуру",
"Create structure from tree" => "создать структуру из дерева",
"Use single spaces to indent structure levels" => "Использовать одиночный пробел для отступа уровней структуры",
"tree" => "дерево",
"Admin structures" => "Административная структура",
"Click twice if once is not enough !" => "Кликните дважды если одного раза недостаточно !",
"Toggle display of comment zone" => "Включить отображение комментариев",
"Copyrights" => "Авторские права",
"Go back" => "Назад",
"In blog listing show user as" => "In blog listing show user as",
"Plain text" => "Обыкновенный текст",
"Link to user information" => "Информация о пользователе",
"User avatar" => "User avatar",
"Blog listing configuration (when listing available blogs)" => "Blog listing configuration (when listing available blogs)",
"creation date" => "дата создания",
"last modification time" => "время последнего изменения",
"activity" => "активность",
"Articles listing configuration" => "Articles listing configuration",
"Author" => "Автор",
"Edit css" => "Редактировать css",
"Workflow engine" => "Механизм выполнения",
"Use PHPOpenTracker" => "Использовать PHPOpenTracker",
"User watches" => "Пользовательские метки",
"Live support system" => "Live support system",
"Banning system" => "Banning system",
"please read" => "пожалуйста прочитайте",
"Gallery listing configuration" => "Gallery listing configuration",
"Accept wiki syntax" => "Принять синтаксис wiki",
"Forum quick jumps" => "Forum quick jumps",
"Forum listing configuration" => "Forum listing configuration",
"Posts per day" => "Сообщений в день",
"Last post" => "Последнее сообщение",
"Library to use for processing images" => "Library to use for processing images",
"Display menus as folders" => "Отображать меню как папки",
"Sender Email" => "Email отправителя",
"Sections" => "Секции",
"Authentication method" => "Метод аутентификации",
"Just Tiki" => "Just Tiki",
"Web Server" => "Web Сервер",
"Tiki and PEAR::Auth" => "Tiki and PEAR::Auth",
"Tiki and HTTP Auth" => "Tiki and HTTP Auth",
"Use WebServer authentication for Tiki" => "Исплользовать WebServer аутентификацию для Tiki",
"Prevent automatic/robot registration" => "Предотвращать автоматическую регистрацию",
"PEAR::Auth" => "PEAR::Auth",
"Create user if not in Tiki?" => "Создать пользователя, если он не в Tiki?",
"Create user if not in Auth?" => "Создать пользователя, если он не в Auth?",
"Just use Tiki auth for admin?" => "Использовать только аутентификацию Tiki для админа?",
"LDAP Host" => "LDAP хост",
"LDAP Port" => "LDAP порт",
"LDAP Scope" => "LDAP Scope",
"LDAP Base DN" => "LDAP Base DN",
"LDAP User DN" => "LDAP User DN",
"LDAP User Attribute" => "LDAP пользовательские аттрибуты",
"LDAP User OC" => "LDAP User OC",
"LDAP Group DN" => "LDAP Group DN",
"LDAP Group Atribute" => "LDAP групповые аттрибуты",
"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?" => "Разрешить просмотр HTML почты?",
"PDF Export" => "PDF экспорт",
"Wiki Discussion" => "Wiki Discussion",
"Discuss pages on forums" => "Обсудить страницы на форуме",
"Wiki page list configuration" => "Wiki page list configuration",
"Creator" => "Создатель",
"PDF generation" => "Создание PDF",
"Page creators are admin of their pages" => "Создатели администраторы своих страниц",
"Automonospaced text" => "Автомоноширинный текст",
"Copyright Management" => "Управление авторскими правами",
"Enable Feature" => "Разрешить свойство",
"License Page" => "Лицензионное соглашение",
"Submit Notice" => "Submit Notice",
"Add or edit a rule" => "Добавить или редактировать правило",
"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" => "Правила",
"User/IP" => "Пользователь/IP",
"Admin Calendars" => "Календарь админа",
"Create/edit Calendars" => "Создать/редактировать календарь",
"Custom Locations" => "Custom Locations",
"Custom Categories" => "Custom Categories",
"Custom Languages" => "Custom Languages",
"Custom Priorities" => "Custom Priorities",
"List of Calendars" => "Список календарей",
"loc" => "loc",
"cat" => "cat",
"lang" => "lang",
"prio" => "prio",
"Admin chart items" => "Admin chart items",
"charts" => "графики",
"edit chart" => "редактировать график",
"Chart items" => "Элемент графика",
"No items defined yet" => "Пока нет определенных элементов",
"Edit drawings" => "Редактировать рисунок",
"Ver" => "Ver",
"Show description" => "Показать описание",
"Moderator user" => "Модератор",
"Moderator group" => "Группа модераотра",
"Password protected" => "Защищено паролем",
"Topics only" => "Topics only",
"All posts" => "Все сообщения",
"Forum password" => "Пароль на форум",
"Date (asc)" => "Дата (asc)",
"Topic list configuration" => "Конфигурация списка тем",
"Replies" => "Ответы",
"Threads can be voted" => "Threads can be voted",
"Forward messages to this forum to this email" => "Перенаправлять сообщения в форуме на этот email",
"Add messages from this email to the forum" => "Добавлять сообщения от этого email в форум",
"POP3 server" => "POP3 сервер",
"Use topic smileys" => "Use topic smileys",
"Show topic summary" => "Показать сводку темы",
"User information display" => "User information display",
"avatar" => "avatar",
"flag" => "флаг",
"user level" => "уровень пользователя",
"online" => "онлайн",
"Approval type" => "Approval type",
"All posted" => "All posted",
"Queue anonymous posts" => "Queue anonymous posts",
"Queue all posts" => "Queue all posts",
"No attachments" => "Нет вложений",
"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" => "База данных",
"Directory (include trailing slash)" => "Directory (include trailing slash)",
"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" => "Использовать редактор типа wysiwyg",
"Use normal editor" => "Использовать нормальный редактор",
"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" => "Причина",
"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" => "первая картинка",
"last image" => "последняя картинка",
"Popup window" => "Всплывающее окно",
"popup window" => "всплывающее окно",
"Calendars Panel" => "Панель календарей",
"Navigation Panel" => "Панель навигации",
"Hide Panels" => "Прятать панели",
"Refresh" => "Обновить",
"Group Calendars" => "Группа календарей",
"check / uncheck all" => "check / uncheck all",
"Tools Calendars" => "Tools Calendars",
"hide from display" => "прятать с экрана",
"Tiki Calendars" => "Tiki Calendars",
"today" => "сегодня",
"+1d" => "+1d",
"+7d" => "+7d",
"+1m" => "+1m",
"browse by" => "browse by",
"month" => "месяц",
"+" => "+",
"Edit Calendar Item" => "Edit Calendar Item",
"Modified" => "Модифицировано",
"Calendrier" => "Calendrier",
"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" => "Расположение",
"or create a new location" => "или создаете новое расположение",
"Organized by" => "Organized by",
"comma separated usernames" => "имена пользователей, разделенные запятыми",
"from the list" => "из списка",
"choose" => "выберите",
"Participants" => "Participants",
"comma separated username:role" => "comma separated username:role",
"Chair" => "Chair",
"Required" => "Обязательно",
"Optional" => "Опционально",
"with roles" => "with roles",
"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" => "Создать PDF",
"PDF Settings" => "Настройки PDF",
"Font" => "Шрифт",
"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" => "Масштаб картинки",
"Select Wiki Pages" => "Select Wiki Pages",
"reset" => "сброс",
"Add a related category" => "Add a related category",
"sort" => "сорт",
"Float text around image" => "Float text around image",
"Use ...page... to separate pages in a multi-page article" => "Use ...page... to separate pages in a multi-page article",
"Edit or create banners" => "Edit or create banners",
"List banners" => "List banners",
"Show the banner only on" => "Show the banner only on",
"Current heading" => "Current heading",
"Use titles in blog posts" => "Use titles in blog posts",
"Allow search" => "Allow search",
"Allow comments" => "Allow comments",
"Blog heading" => "Blog heading",
"Edit Style Sheet" => "Edit Style Sheet",
"Style Sheet" => "Style Sheet",
"save a custom copy" => "save a custom copy",
"Cancel" => "Cancel",
"choose a stylesheet" => "choose a stylesheet",
"try" => "try",
"File with names appended by -{\$user} are modifiable, others are only duplicable and be used as model." => "File with names appended by -{\$user} are modifiable, others are only duplicable and be used as model.",
"Multi-page pages" => "Multi-page pages",
"use ...page... to separate pages" => "use ...page... to separate pages",
"italic" => "italic",
"heading" => "heading",
"horizontal ruler" => "horizontal ruler",
"special characters" => "special characters",
"Edit question options" => "Edit question options",
"Admin quizzes" => "Admin quizzes",
"quizzes" => "quizzes",
"Edit quiz questions" => "Edit quiz questions",
"Available templates" => "Available templates",
"Copyright" => "Copyright",
"License" => "License",
"Important" => "Important",
"Minor" => "Minor",
"Admin FAQ" => "Admin FAQ",
"No suggested questions" => "No suggested questions",
"Listing configuration" => "Listing configuration",
"icon" => "icon",
"id" => "id",
"downloads" => "downloads",
"Name-filename" => "Name-filename",
"Filename only" => "Filename only",
"Max description display size" => "Max description display size",
"create new gallery" => "create new gallery",
"Actions" => "Actions",
"configure listing" => "configure listing",
"Message queue for" => "Message queue for",
"back to forum" => "back to forum",
"Edit queued message" => "Edit queued message",
"make this a thread of" => "make this a thread of",
"None, this is a thread message" => "None, this is a thread message",
"summary" => "summary",
"no feeling" => "no feeling",
"frown" => "frown",
"exclaim" => "exclaim",
"idea" => "idea",
"mad" => "mad",
"neutral" => "neutral",
"sad" => "sad",
"happy" => "happy",
"wink" => "wink",
"save and approve" => "save and approve",
"convert to topic" => "convert to topic",
"List of messages" => "List of messages",
"new topic" => "new topic",
"no summary" => "no summary",
"attachment" => "attachment",
"No messages queued yet" => "No messages queued yet",
"reject" => "reject",
"adm" => "adm",
"Reported messages for" => "Reported messages for",
"Reported by" => "Reported by",
"Activity completed" => "Activity completed",
"Process" => "Process",
"Admin process activities" => "Admin process activities",
"Add or edit an activity" => "Add or edit an activity",
"end" => "end",
"switch" => "switch",
"split" => "split",
"join" => "join",
"standalone" => "standalone",
"interactive" => "interactive",
"auto routed" => "auto routed",
"Add transitions" => "Add transitions",
"Add transition from:" => "Add transition from:",
"Add transition to:" => "Add transition to:",
"roles" => "roles",
"No roles associated to this activity" => "No roles associated to this activity",
"Add role" => "Add role",
"add new" => "add new",
"add role" => "add role",
"Process activities" => "Process activities",
"Int" => "Int",
"Routing" => "Routing",
"Interactive" => "Interactive",
"Automatic" => "Automatic",
"Auto routed" => "Auto routed",
"Manual" => "Manual",
"#" => "#",
"inter" => "inter",
"route" => "route",
"(no roles)" => "(no roles)",
"code" => "code",
"No activities defined yet" => "No activities defined yet",
"Process Transitions" => "Process Transitions",
"List of transitions" => "List of transitions",
"From:" => "From:",
"Origin" => "Origin",
"No transitions defined yet" => "No transitions defined yet",
"Add a transition" => "Add a transition",
"Admin instance" => "Admin instance",
"Instance" => "Instance",
"Workitems" => "Workitems",
"exception" => "exception",
"aborted" => "aborted",
"Owner" => "Owner",
"Send all to" => "Send all to",
"Don't move" => "Don't move",
"Activities" => "Activities",
"Act status" => "Act status",
"run" => "run",
"Properties" => "Properties",
"Property" => "Property",
"Value" => "Value",
"Add property" => "Add property",
"value" => "value",
"Admin processes" => "Admin processes",
"Add or edit a process" => "Add or edit a process",
"This process is invalid" => "This process is invalid",
"Process Name" => "Process Name",
"ver:" => "ver:",
"is active?" => "is active?",
"Or upload a process using this form" => "Or upload a process using this form",
"List of processes" => "List of processes",
"Inactive" => "Inactive",
"act" => "act",
"val" => "val",
"active process" => "active process",
"invalid" => "invalid",
"invalid process" => "invalid process",
"valid process" => "valid process",
"new minor" => "new minor",
"new major" => "new major",
"activities" => "activities",
"No processes defined yet" => "No processes defined yet",
"Admin process roles" => "Admin process roles",
"Add or edit a role" => "Add or edit a role",
"Process roles" => "Process roles",
"No roles defined yet" => "No roles defined yet",
"Map users to roles" => "Map users to roles",
"Roles" => "Roles",
"Anonymous" => "Anonymous",
"map" => "map",
"Map groups to roles" => "Map groups to roles",
"Operation" => "Operation",
"Role" => "Role",
"Warning" => "Warning",
"No roles are defined yet so no roles can be mapped" => "No roles are defined yet so no roles can be mapped",
"List of mappings" => "List of mappings",
"No mappings defined yet" => "No mappings defined yet",
"Admin process sources" => "Admin process sources",
"select source" => "select source",
"Shared code" => "Shared code",
"Set next user" => "Set next user",
"Get property" => "Get property",
"Set property" => "Set property",
"Complete" => "Complete",
"Process form" => "Process form",
"Set Next act" => "Set Next act",
"If:SetNextact" => "If:SetNextact",
"Switch construct" => "Switch construct",
"Map process roles" => "Map process roles",
"admin processes" => "admin processes",
"admin activities" => "admin activities",
"admin roles" => "admin roles",
"edit this process" => "edit this process",
"Process:" => "Process:",
"Monitor activities" => "Monitor activities",
"List of activities" => "List of activities",
"proc" => "proc",
"auto" => "auto",
"int" => "int",
"routing" => "routing",
"Instances" => "Instances",
"run activity" => "run activity",
"monitor" => "monitor",
"monitor processes" => "monitor processes",
"monitor activities" => "monitor activities",
"monitor instances" => "monitor instances",
"monitor workitems" => "monitor workitems",
"Monitor instances" => "Monitor instances",
"List of instances" => "List of instances",
"act status" => "act status",
"running" => "running",
"No instances created yet" => "No instances created yet",
"Monitor processes" => "Monitor processes",
"Valid" => "Valid",
"Invalid" => "Invalid",
"Activs" => "Activs",
"processes" => "processes",
"being run" => "being run",
"exceptions" => "exceptions",
"Monitor workitems" => "Monitor workitems",
"List of workitems" => "List of workitems",
"instance" => "instance",
"Ins" => "Ins",
"stop" => "stop",
"acvtivate" => "acvtivate",
"activate" => "activate",
"graph" => "graph",
"User Activities" => "User Activities",
"process" => "process",
"user processes" => "user processes",
"user activities" => "user activities",
"user instances" => "user instances",
"User instances" => "User instances",
"Inst Status" => "Inst Status",
"exception instance" => "exception instance",
"exceptions instance" => "exceptions instance",
"send instance" => "send instance",
"run instance" => "run instance",
"abort instance" => "abort instance",
"grab instance" => "grab instance",
"release instance" => "release instance",
"No instances defined yet" => "No instances defined yet",
"User processes" => "User processes",
"Browsing Workitem" => "Browsing Workitem",
"Workitem information" => "Workitem information",
"First page" => "First page",
"Previous page" => "Previous page",
"Next page" => "Next page",
"Last page" => "Last page",
"create new blog" => "create new blog",
"Edit a file using this form" => "Edit a file using this form",
"Gallery Files" => "Gallery Files",
"move selected files" => "move selected files",
"delete selected files" => "delete selected files",
"Move to" => "Move to",
"Gallery Images" => "Gallery Images",
"unlocked" => "unlocked",
"with checked" => "with checked",
"Open operator console" => "Open operator console",
"Open client window" => "Open client window",
"Generate HTML" => "Generate HTML",
"Transcripts" => "Transcripts",
"Support tickets" => "Support tickets",
"Online operators" => "Online operators",
"Operator" => "Operator",
"Accepted requests" => "Accepted requests",
"since" => "since",
"transcripts" => "transcripts",
"Offline operators" => "Offline operators",
"Add an operator to the system" => "Add an operator to the system",
"Operators must be tiki users" => "Operators must be tiki users",
"set as operator" => "set as operator",
"Chat started" => "Chat started",
"User:" => "User:",
"Operator:" => "Operator:",
"Request live support" => "Request live support",
"Request support" => "Request support",
"Open a support ticket instead" => "Open a support ticket instead",
"Your request is being processed" => "Your request is being processed",
"cancel request and exit" => "cancel request and exit",
"cancel request and leave a message" => "cancel request and leave a message",
"Live support:Console" => "Live support:Console",
"be online" => "be online",
"be offline" => "be offline",
"Support requests" => "Support requests",
"Requested" => "Requested",
"Accept" => "Accept",
"Join" => "Join",
"Support chat transcripts" => "Support chat transcripts",
"back to admin" => "back to admin",
"op" => "op",
"started" => "started",
"reason" => "reason",
"msgs" => "msgs",
"Transcript" => "Transcript",
"My watches" => "My watches",
"No notes yet" => "No notes yet",
"merge selected notes into" => "merge selected notes into",
"wiki create" => "wiki create",
"wiki overwrite" => "wiki overwrite",
"discuss" => "discuss",
"attachments" => "attachments",
"Vote poll" => "Vote poll",
"posted by" => "posted by",
"Permalink" => "Permalink",
"referenced by" => "referenced by",
"references" => "references",
"email this post" => "email this post",
"Your registration code:" => "Your registration code:",
"Registration code" => "Registration code",
"Send blog post" => "Send blog post",
"A link to this post was sent to the following addresses:" => "A link to this post was sent to the following addresses:",
"Send post to this addresses" => "Send post to this addresses",
"List of email addresses separated by commas" => "List of email addresses separated by commas",
"The newsletter was sent to {\$sent} email addresses" => "The newsletter was sent to {\$sent} email addresses",
"This newsletter will be sent to {\$subscribers} email addresses." => "This newsletter will be sent to {\$subscribers} email addresses.",
"create pdf" => "create pdf",
"pdf" => "pdf",
"monitor this page" => "monitor this page",
"stop monitoring this page" => "stop monitoring this page",
"last modification" => "last modification",
"To edit the copyright notices" => "To edit the copyright notices",
"click here" => "click here",
"The content on this page is licensed under the terms of the" => "The content on this page is licensed under the terms of the",
"Theme is selected as follows" => "Theme is selected as follows",
"Errors detected" => "Errors detected",
"You have to create a gallery first!" => "You have to create a gallery first!",
"move to right column" => "move to right column",
"move to left column" => "move to left column",
"Folders" => "Folders",
"remove folder" => "remove folder",
"remove bookmark" => "remove bookmark",
"refresh cache" => "refresh cache",
"Admin folders and bookmarks" => "Admin folders and bookmarks",
"Is email public? (uses scrambling to prevent spam)" => "Is email public? (uses scrambling to prevent spam)",
"Edit CSS" => "Edit CSS",
"No tasks entered" => "No tasks entered",
"Watches" => "Watches",
"RSS feed" => "RSS feed",
"Edit blog" => "Edit blog",
"monitor this blog" => "monitor this blog",
"stop monitoring this blog" => "stop monitoring this blog",
"read more" => "read more",
"refereces" => "refereces",
"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 tihis item" => "Vote tihis item",
"Highest" => "Highest",
"Q" => "Q",
"A" => "A",
"Tiki forums" => "Tiki forums",
"monitor this forum" => "monitor this forum",
"stop monitoring this forum" => "stop monitoring this forum",
" unread private messages" => " unread private messages",
"You have to enter a title and text" => "You have to enter a title and text",
"Summary" => "Summary",
"Attach file" => "Attach file",
"moderator actions" => "moderator actions",
"move selected topics" => "move selected topics",
"unlock selected topics" => "unlock selected topics",
"lock selected topics" => "lock selected topics",
"delete selected topics" => "delete selected topics",
"merge" => "merge",
"merge selected topics" => "merge selected topics",
"reported messages:" => "reported messages:",
"queued messages:" => "queued messages:",
"Merge into topic" => "Merge into topic",
"mot" => "mot",
"No topics yet" => "No topics yet",
"Show posts" => "Show posts",
"Last hour" => "Last hour",
"Last 24 hours" => "Last 24 hours",
"Last 48 hours" => "Last 48 hours",
"Jump to forum" => "Jump to forum",
"stars" => "stars",
"monitor this topic" => "monitor this topic",
"stop monitoring this topic" => "stop monitoring this topic",
"send email to user" => "send email to user",
"user online" => "user online",
"user offline" => "user offline",
"prev topic" => "prev topic",
"next topic" => "next topic",
"Moderator actions" => "Moderator actions",
"delete selected" => "delete selected",
"Move to topic:" => "Move to topic:",
"reported:" => "reported:",
"queued:" => "queued:",
"this post was reported" => "this post was reported",
"report this post" => "report this post",
"IRC log" => "IRC log",
"Select" => "Select",
"Tracker" => "Tracker",
"Syntax" => "Syntax",
"Example" => "Example",
"Somebody or you tried to subscribe this email address at our site:" => "Somebody or you tried to subscribe this email address at our site:",
"To the newsletter:" => "To the newsletter:",
"In order to confirm your subscription you must access the following URL:" => "In order to confirm your subscription you must access the following URL:",
"A new message was posted to forum" => "A new message was posted to forum",
"Message" => "Message",
"The user" => "The user",
"registered at your site" => "registered at your site",
"Bye bye!" => "Bye bye!",
"This email address has been removed to the list of subscriptors of:" => "This email address has been removed to the list of subscriptors of:",
"Newsletter:" => "Newsletter:",
"Welcome to our newsletter!" => "Welcome to our newsletter!",
"This email address has been added to the list of subscriptors of:" => "This email address has been added to the list of subscriptors of:",
"You can always cancel your subscription using:" => "You can always cancel your subscription using:",
"Hi" => "Hi",
"someone from" => "someone from",
"requested a reminder of the password for the" => "requested a reminder of the password for the",
"since this is our registered email address we inform that the" => "since this is our registered email address we inform that the",
"password for this account is" => "password for this account is",
"you or someone registered this email address at" => "you or someone registered this email address at",
"If you want to be a registered user in this site you will have to use" => "If you want to be a registered user in this site you will have to use",
"the following link to login for the first time" => "the following link to login for the first time",
"Enjoy the site!" => "Enjoy the site!",
"Banning" => "Banning",
"Syntax highlighting" => "Syntax highlighting",
"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",
"blog_ranking_top_blogs" => "blog_ranking_top_blogs",
"Last posts" => "Last posts",
"blog_ranking_last_posts" => "blog_ranking_last_posts",
"Top active blogs" => "Top active blogs",
"blog_ranking_top_active_blogs" => "blog_ranking_top_active_blogs",
"Permission denied you cannot view the calendar" => "Permission denied you cannot view the calendar",
"event without name" => "event without name",
"Top authors" => "Top authors",
"Message sent to" => "Message sent to",
"You dont have permission to write the style sheet" => "You dont have permission to write the style sheet",
"You have to create a topic first" => "You have to create a topic first",
"page imported" => "page imported",
"created from import" => "created from import",
"filegal_ranking_top_galleries" => "filegal_ranking_top_galleries",
"filegal_ranking_top_files" => "filegal_ranking_top_files",
"filegal_ranking_last_files" => "filegal_ranking_last_files",
"No process indicated" => "No process indicated",
"Activity name already exists" => "Activity name already exists",
"No instance indicated" => "No instance indicated",
"The process name already exists" => "The process name already exists",
"Process already exists" => "Process already exists",
"No activity indicated" => "No activity indicated",
"You cant execute this activity" => "You cant execute this activity",
"gal_ranking_top_galleries" => "gal_ranking_top_galleries",
"gal_ranking_top_images" => "gal_ranking_top_images",
"gal_ranking_last_images" => "gal_ranking_last_images",
"page not added (Exists)" => "page not added (Exists)",
"overwriting old page" => "overwriting old page",
"updated by the phpwiki import process" => "updated by the phpwiki import process",
"page created" => "page created",
"created from phpwiki import" => "created from phpwiki import",
"Cannot write to this file:" => "Cannot write to this file:",
"Wiki page" => "Wiki page",
"Permission denied you can't upload files so you can't edit them" => "Permission denied you can't upload files so you can't edit them",
"Permission denied you cannot edit this file" => "Permission denied you cannot edit this file",
"Permission denied you cannot remove pages" => "Permission denied you cannot remove pages",
"Tiki mail-in instructions" => "Tiki mail-in instructions",
"About" => "About",
"merged note:" => "merged note:",
"No name indicated for wiki page" => "No name indicated for wiki page",
"Page already exists" => "Page already exists",
"created from notepad" => "created from notepad",
"Wrong registration code" => "Wrong registration code",
"New user registration" => "New user registration",
"You will receive an email with information to login for the first time into this site" => "You will receive an email with information to login for the first time into this site",
"Your Tiki information registration" => "Your Tiki information registration",
"Your Tiki account information for" => "Your Tiki account information for",
"A password reminder email has been sent " => "A password reminder email has been sent ",
"A new password has been sent " => "A new password has been sent ",
"to the registered email address for" => "to the registered email address for",
"Invalid or unknown username" => "Invalid or unknown username",
"Cannot rename page maybe new page already exists" => "Cannot rename page maybe new page already exists",
"Post recommendation at" => "Post recommendation at",
" successfully sent" => " successfully sent",
" not sent" => " not sent",
"Please create a category first" => "Please create a category first",
"Permission denied you cannot upload files" => "Permission denied you cannot upload files",
"No permission to upload zipped file packages" => "No permission to upload zipped file packages",
"Cannot read file" => "Cannot read file",
"Upload was not successful" => "Upload was not successful",
"Invalid imagename (using filters for filenames)" => "Invalid imagename (using filters for filenames)",
"Error processing zipped image package" => "Error processing zipped image package",
"No permission to upload zipped image packages" => "No permission to upload zipped image packages",
"Cannot upload this file not enough quota" => "Cannot upload this file not enough quota",
"No itemindicated" => "No itemindicated",
"Wrong password. Cannot post comment" => "Wrong password. Cannot post comment",
"Cannot upload this file maximum upload size exceeded" => "Cannot upload this file maximum upload size exceeded",
" new topic:" => " new topic:",
"Tiki email notification" => "Tiki email notification",
"Re:" => "Re:",
"topic:" => "topic:",
"forum topic" => "forum topic",
"Your email address has been removed from the list of addresses monitoring this tracker" => "Your email address has been removed from the list of addresses monitoring this tracker",
"Your email address has been added to the list of addresses monitoring this tracker" => "Your email address has been added to the list of addresses monitoring this tracker",
"Cancel monitoring" => "Cancel monitoring",
"Monitor" => "Monitor",
"Your email address has been removed from the list of addresses monitoring this item" => "Your email address has been removed from the list of addresses monitoring this item",
"Your email address has been added to the list of addresses monitoring this item" => "Your email address has been added to the list of addresses monitoring this item",
"No subject" => "No subject",
"Your email was sent" => "Your email was sent",
"Top pages" => "Top pages",
"Last pages" => "Last pages",
"Most relevant pages" => "Most relevant pages",
"no such file" => "no such file",
"January" => "January",
"February" => "February",
"March" => "March",
"April" => "April",
"May" => "May",
"June" => "June",
"July" => "July",
"August" => "August",
"September" => "September",
"October" => "October",
"November" => "November",
"December" => "December",
"Sunday" => "Sunday",
"Monday" => "Monday",
"Tuesday" => "Tuesday",
"Wednesday" => "Wednesday",
"Thursday" => "Thursday",
"Friday" => "Friday",
"Saturday" => "Saturday",
"WikiDiff::apply: line count mismatch: %s != %s" => "WikiDiff::apply: line count mismatch: %s != %s",
"WikiDiff::_check: failed" => "WikiDiff::_check: failed",
"WikiDiff::_check: edit sequence is non-optimal" => "WikiDiff::_check: edit sequence is non-optimal",
"WikiDiff Okay: LCS = %s" => "WikiDiff Okay: LCS = %s",
"Current page:" => "Current page:",
"version %s" => "version %s",
"last modified on %s" => "last modified on %s",
"by %s" => "by %s",
"Archived page:" => "Archived page:",
"Versions are identical" => "Versions are identical",
"Diff of %s." => "Diff of %s.",
"FAQ" => "FAQ",
"No image yet, sorry." => "No image yet, sorry.",
"You are banned from" => "You are banned from",
"no description" => "no description",
"drawing not found" => "drawing not found",
"help" => "help",
" tags. Example: {tr}The newsletter was sent to {\$sent} email addresses" => " tags. Example: {tr}The newsletter was sent to {\$sent} email addresses",
"indicates if the process is active. Invalid processes cant be active" => "indicates if the process is active. Invalid processes cant be active",
"New article submitted at " => "New article submitted at ",
"Blog post" => "Blog post",
"continued" => "continued",
"click to edit" => "click to edit",
"new image uploaded by" => "new image uploaded by",
"uploaded by" => "uploaded by",
"new item in tracker" => "new item in tracker",
"new subscriptions" => "new subscriptions",
"not specified" => "not specified",
"Home" => "Home",
"NONE" => "NONE",
"Newsletter subscription information at " => "Newsletter subscription information at ",
"Welcome to " => "Welcome to ",
" at " => " at ",
"Bye bye from " => "Bye bye from ",
"You can unsubscribe from this newsletter following this link" => "You can unsubscribe from this newsletter following this link",
"Wiki top pages" => "Wiki top pages",
"Wiki last pages" => "Wiki last pages",
"Forums last topics" => "Forums last topics",
"Topic date" => "Topic date",
"Forums most read topics" => "Forums most read topics",
"Forums best topics" => "Forums best topics",
"Forums most visited forums" => "Forums most visited forums",
"Forums with most posts" => "Forums with most posts",
"Wiki top galleries" => "Wiki top galleries",
"Wiki top file galleries" => "Wiki top file galleries",
"Wiki top images" => "Wiki top images",
"Wiki top files" => "Wiki top files",
"Wiki last images" => "Wiki last images",
"Upload date" => "Upload date",
"Wiki last files" => "Wiki last files",
"Wiki top articles" => "Wiki top articles",
"Most active blogs" => "Most active blogs",
"Blogs last posts" => "Blogs last posts",
"Post date" => "Post date",
"Wiki top authors" => "Wiki top authors",
"Top article authors" => "Top article authors",
"Tracker was modified at " => "Tracker was modified at ",
"Displays a snippet of code.\nSet optional paramater -+ln+- to 1 if you need line numbering feature." => "Displays a snippet of code.\nSet optional paramater -+ln+- to 1 if you need line numbering feature.",
"Sorry no such module" => "Sorry no such module",
"Please choose a module" => "Please choose a module",
"to be used as argument" => "to be used as argument",
"Missing db param" => "Missing db param",
"There is an error in the plugin data" => "There is an error in the plugin data",
"Change your email" => "Change your email",
"Edit this assigned module:" => "Edit this assigned module:",
"##end###" => "###end###");
?>
|