1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
|
# Copyright (C) 2006, 2007 Free Software Foundation, Inc.
# translation of kxsconfig.po to Macedonian
#
# Zaklina Gjalevska <gjalevska@yahoo.com>, 2006.
# Bozidar Proevski <bobibobi@freemail.com.mk>, 2006.
#
#
msgid ""
msgstr ""
"Project-Id-Version: kxsconfig\n"
"POT-Creation-Date: 2014-09-29 00:53-0500\n"
"PO-Revision-Date: 2006-05-15 18:02+0200\n"
"Last-Translator: Bozidar Proevski <bobibobi@freemail.com.mk>\n"
"Language-Team: Macedonian <mkde-l10n@lists.sourceforge.net>\n"
"Language: mk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.10.2\n"
#: kxsconfig.cpp:316
msgid "TDE X Screen Saver Configuration tool"
msgstr "ΠΠ»Π°ΡΠΊΠ° Π·Π° ΠΊΠΎΠ½ΡΠΈΠ³ΡΡΠ°ΡΠΈΡΠ° Π½Π° X Screen Saver Π²ΠΎ TDE"
#: kxsconfig.cpp:322
msgid "Filename of the screen saver to configure"
msgstr "ΠΠΌΠ΅ Π½Π° Π΄Π°Ρ. Π½Π° Π΅ΠΊΡΠ°Π½ΡΠΊΠΈΠΎΡ ΡΡΠ²Π°Ρ ΡΡΠΎ ΡΠ΅ ΠΊΠΎΠ½ΡΠΈΠ³ΡΡΠΈΡΠ°"
#: kxsconfig.cpp:323
msgid "Optional screen saver name used in messages"
msgstr "ΠΠΌΠ΅ Π½Π° Π΅ΠΊΡΠ°Π½ΡΠΊΠΈΠΎΡ ΡΡΠ²Π°Ρ ΡΡΠΎ ΡΠ΅ ΠΊΠΎΡΠΈΡΡΠΈ Π²ΠΎ ΠΏΠΎΡΠ°ΠΊΠΈΡΠ΅"
#: kxsconfig.cpp:338
msgid "KXSConfig"
msgstr "KXSConfig"
#: kxsconfig.cpp:381
#, c-format
msgid "No configuration available for %1"
msgstr "ΠΠ΅ΠΌΠ° Π΄ΠΎΡΡΠ°ΠΏΠ½Π° ΠΊΠΎΠ½ΡΠΈΠ³ΡΡΠ°ΡΠΈΡΠ° Π·Π° %1"
#: kxsrun.cpp:49
msgid "TDE X Screen Saver Launcher"
msgstr "Π‘ΡΠ°ΡΡΡΠ²Π°Ρ Π½Π° X Screen Saver Π²ΠΎ TDE"
#: kxsrun.cpp:55
msgid "Filename of the screen saver to start"
msgstr "ΠΠΌΠ΅ Π½Π° Π΄Π°Ρ. Π½Π° Π΅ΠΊΡΠ°Π½ΡΠΊΠΈΠΎΡ ΡΡΠ²Π°Ρ Π·Π° ΡΡΠ°ΡΡΡΠ²Π°ΡΠ΅"
#: kxsrun.cpp:56
msgid "Extra options to pass to the screen saver"
msgstr "ΠΠΎΠΏΠΎΠ»Π½ΠΈΡΠ΅Π»Π½ΠΈ ΠΎΠΏΡΠΈΠΈ ΡΡΠΎ ΠΌΡ ΡΠ΅ ΠΏΡΠ΅Π΄Π°Π²Π°Π°Ρ Π½Π° Π΅ΠΊΡΠ°Π½ΡΠΊΠΈΠΎΡ ΡΡΠ²Π°Ρ"
#: kxsrun.cpp:63
msgid "KXSRun"
msgstr "KXSRun"
#: hacks/config/ant.xml.h:1
msgid ""
"A cellular automaton that is really a two-dimensional Turing machine: as the "
"heads (``ants'') walk along the screen, they change pixel values in their path. "
"Then, as they pass over changed pixels, their behavior is influenced. Written "
"by David Bagley."
msgstr ""
"ΠΠ΅Π»ΠΈΡΡΠΊΠΈ Π°Π²ΡΠΎΠΌΠ°Ρ ΡΡΠΎ Π΅ Π²ΡΡΡΠ½ΠΎΡΡ Π΄Π²ΠΎΠ΄ΠΈΠΌΠ΅Π½Π·ΠΈΠΎΠ½Π°Π»Π½Π° Π’ΡΡΠΈΠ½Π³ΠΎΠ²Π° ΠΌΠ°ΡΠΈΠ½Π°: Π΄ΠΎΠ΄Π΅ΠΊΠ° "
"Π³Π»Π°Π²ΠΈΡΠ΅ (βΠΌΡΠ°Π²ΠΊΠΈΡΠ΅β) ΠΎΠ΄Π°Ρ ΠΏΠΎ Π΅ΠΊΡΠ°Π½ΠΎΡ, Π³ΠΈ ΠΌΠ΅Π½ΡΠ²Π°Π°Ρ Π²ΡΠ΅Π΄Π½ΠΎΡΡΠΈΡΠ΅ Π½Π° ΠΏΠΈΠΊΡΠ΅Π»ΠΈΡΠ΅ ΠΎΠ΄ "
"Π½ΠΈΠ²Π½Π°ΡΠ° ΠΏΠ°ΡΠ΅ΠΊΠ°. ΠΠΎΡΠΎΠ°, Π΄ΠΎΠ΄Π΅ΠΊΠ° ΠΏΠΎΠΌΠΈΠ½ΡΠ²Π°Π°Ρ ΠΏΡΠ΅ΠΊΡ ΠΏΡΠΎΠΌΠ΅Π½Π΅ΡΠΈΡΠ΅ ΠΏΠΈΠΊΡΠ΅Π»ΠΈ, ΡΠ΅ Π²Π»ΠΈΡΠ°Π΅ "
"Π²ΡΠ· Π½ΠΈΠ²Π½ΠΎΡΠΎ ΠΎΠ΄Π½Π΅ΡΡΠ²Π°ΡΠ΅. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ David Bagley."
#: hacks/config/ant.xml.h:2
msgid "Ant"
msgstr "ΠΡΠ°Π²ΠΊΠ°"
#: hacks/config/ant.xml.h:3
msgid "Ant Size"
msgstr ""
"ΠΠΎΠ»Π΅ΠΌΠΈΠ½Π°\n"
"Π½Π° ΠΌΡΠ°Π²ΠΊΠ°ΡΠ°"
#: hacks/config/ant.xml.h:4
msgid "Ants Count"
msgstr "ΠΡΠΎΡ Π½Π° ΠΌΡΠ°Π²ΠΊΠΈ"
#: hacks/config/ant.xml.h:5 hacks/config/apollonian.xml.h:5
#: hacks/config/atlantis.xml.h:4 hacks/config/attraction.xml.h:8
#: hacks/config/blaster.xml.h:3 hacks/config/blitspin.xml.h:4
#: hacks/config/bouboule.xml.h:3 hacks/config/boxed.xml.h:4
#: hacks/config/braid.xml.h:4 hacks/config/bubble3d.xml.h:3
#: hacks/config/bubbles.xml.h:8 hacks/config/bumps.xml.h:3
#: hacks/config/cage.xml.h:2 hacks/config/circuit.xml.h:4
#: hacks/config/compass.xml.h:3 hacks/config/coral.xml.h:7
#: hacks/config/critical.xml.h:3 hacks/config/crystal.xml.h:6
#: hacks/config/cubenetic.xml.h:8 hacks/config/cynosure.xml.h:4
#: hacks/config/dangerball.xml.h:3 hacks/config/decayscreen.xml.h:2
#: hacks/config/deluxe.xml.h:4 hacks/config/demon.xml.h:4
#: hacks/config/discrete.xml.h:2 hacks/config/distort.xml.h:4
#: hacks/config/drift.xml.h:3 hacks/config/engine.xml.h:3
#: hacks/config/epicycle.xml.h:5 hacks/config/euler2d.xml.h:3
#: hacks/config/extrusion.xml.h:3 hacks/config/fadeplot.xml.h:4
#: hacks/config/flag.xml.h:2 hacks/config/flame.xml.h:6
#: hacks/config/flipscreen3d.xml.h:1 hacks/config/flow.xml.h:4
#: hacks/config/fluidballs.xml.h:3 hacks/config/forest.xml.h:1
#: hacks/config/galaxy.xml.h:3 hacks/config/gears.xml.h:2
#: hacks/config/gflux.xml.h:6 hacks/config/glforestfire.xml.h:4
#: hacks/config/glplanet.xml.h:2 hacks/config/glsnake.xml.h:5
#: hacks/config/gltext.xml.h:3 hacks/config/goop.xml.h:4
#: hacks/config/grav.xml.h:2 hacks/config/greynetic.xml.h:1
#: hacks/config/halo.xml.h:2 hacks/config/hopalong.xml.h:9
#: hacks/config/hyperball.xml.h:2 hacks/config/hypercube.xml.h:2
#: hacks/config/ifs.xml.h:1 hacks/config/interference.xml.h:5
#: hacks/config/jigsaw.xml.h:3 hacks/config/juggle.xml.h:3
#: hacks/config/julia.xml.h:2 hacks/config/kaleidescope.xml.h:2
#: hacks/config/kumppa.xml.h:3 hacks/config/lament.xml.h:2
#: hacks/config/laser.xml.h:3 hacks/config/lightning.xml.h:1
#: hacks/config/lisa.xml.h:2 hacks/config/lissie.xml.h:3
#: hacks/config/lmorph.xml.h:3 hacks/config/loop.xml.h:1
#: hacks/config/maze.xml.h:4 hacks/config/menger.xml.h:3
#: hacks/config/moebius.xml.h:3 hacks/config/moire2.xml.h:2
#: hacks/config/molecule.xml.h:10 hacks/config/morph3d.xml.h:3
#: hacks/config/mountain.xml.h:2 hacks/config/munch.xml.h:3
#: hacks/config/nerverot.xml.h:9 hacks/config/penetrate.xml.h:3
#: hacks/config/penrose.xml.h:6 hacks/config/petri.xml.h:5
#: hacks/config/phosphor.xml.h:3 hacks/config/pipes.xml.h:5
#: hacks/config/polyominoes.xml.h:2 hacks/config/pulsar.xml.h:11
#: hacks/config/pyro.xml.h:4 hacks/config/qix.xml.h:7
#: hacks/config/rd-bomb.xml.h:9 hacks/config/ripples.xml.h:4
#: hacks/config/rocks.xml.h:4 hacks/config/rotor.xml.h:3
#: hacks/config/rubik.xml.h:3 hacks/config/sballs.xml.h:4
#: hacks/config/shadebobs.xml.h:3 hacks/config/sierpinski.xml.h:2
#: hacks/config/sierpinski3d.xml.h:2 hacks/config/slidescreen.xml.h:2
#: hacks/config/slip.xml.h:2 hacks/config/speedmine.xml.h:3
#: hacks/config/sphere.xml.h:2 hacks/config/spheremonics.xml.h:5
#: hacks/config/spiral.xml.h:3 hacks/config/spotlight.xml.h:2
#: hacks/config/sproingies.xml.h:2 hacks/config/squiral.xml.h:4
#: hacks/config/stairs.xml.h:1 hacks/config/starfish.xml.h:3
#: hacks/config/starwars.xml.h:6 hacks/config/strange.xml.h:2
#: hacks/config/superquadrics.xml.h:3 hacks/config/swirl.xml.h:2
#: hacks/config/t3d.xml.h:6 hacks/config/thornbird.xml.h:2
#: hacks/config/triangle.xml.h:1 hacks/config/truchet.xml.h:1
#: hacks/config/twang.xml.h:3 hacks/config/vines.xml.h:1
#: hacks/config/webcollage.xml.h:4 hacks/config/worm.xml.h:3
#: hacks/config/xearth.xml.h:7 hacks/config/xfishtank.xml.h:3
#: hacks/config/xflame.xml.h:4 hacks/config/xjack.xml.h:1
#: hacks/config/xmatrix.xml.h:4 hacks/config/xmountains.xml.h:1
#: hacks/config/xrayswarm.xml.h:2 hacks/config/zoom.xml.h:2
msgid "Fast"
msgstr "ΠΡΠ·ΠΎ"
#: hacks/config/ant.xml.h:6
msgid "Four Sided Cells"
msgstr "Π§Π΅ΡΠΈΡΠΈΡΡΡΠ°Π½ΠΈ ΡΠ΅Π»ΠΈΠΈ"
#: hacks/config/ant.xml.h:7 hacks/config/attraction.xml.h:13
#: hacks/config/cubenetic.xml.h:11 hacks/config/demon.xml.h:5
#: hacks/config/discrete.xml.h:3 hacks/config/distort.xml.h:5
#: hacks/config/fadeplot.xml.h:5 hacks/config/flag.xml.h:4
#: hacks/config/flow.xml.h:7 hacks/config/fluidballs.xml.h:12
#: hacks/config/hopalong.xml.h:13 hacks/config/interference.xml.h:8
#: hacks/config/julia.xml.h:5 hacks/config/lissie.xml.h:4
#: hacks/config/loop.xml.h:2 hacks/config/moire.xml.h:4
#: hacks/config/rd-bomb.xml.h:11 hacks/config/rorschach.xml.h:5
#: hacks/config/rubik.xml.h:4 hacks/config/sierpinski.xml.h:3
#: hacks/config/slip.xml.h:3
msgid "Large"
msgstr "ΠΠΎΠ»Π΅ΠΌΠΎ"
#: hacks/config/ant.xml.h:8 hacks/config/apollonian.xml.h:7
#: hacks/config/attraction.xml.h:18 hacks/config/blaster.xml.h:6
#: hacks/config/bouboule.xml.h:5 hacks/config/braid.xml.h:7
#: hacks/config/coral.xml.h:9 hacks/config/critical.xml.h:4
#: hacks/config/crystal.xml.h:8 hacks/config/cubenetic.xml.h:13
#: hacks/config/cynosure.xml.h:6 hacks/config/deco.xml.h:5
#: hacks/config/deluxe.xml.h:6 hacks/config/demon.xml.h:6
#: hacks/config/discrete.xml.h:4 hacks/config/drift.xml.h:9
#: hacks/config/epicycle.xml.h:8 hacks/config/euler2d.xml.h:8
#: hacks/config/fadeplot.xml.h:6 hacks/config/flag.xml.h:5
#: hacks/config/flame.xml.h:11 hacks/config/flow.xml.h:8
#: hacks/config/fluidballs.xml.h:13 hacks/config/forest.xml.h:3
#: hacks/config/galaxy.xml.h:6 hacks/config/grav.xml.h:4
#: hacks/config/halo.xml.h:4 hacks/config/hopalong.xml.h:15
#: hacks/config/ifs.xml.h:3 hacks/config/imsmap.xml.h:9
#: hacks/config/interference.xml.h:11 hacks/config/julia.xml.h:6
#: hacks/config/kaleidescope.xml.h:5 hacks/config/laser.xml.h:6
#: hacks/config/lightning.xml.h:3 hacks/config/lisa.xml.h:5
#: hacks/config/lissie.xml.h:6 hacks/config/loop.xml.h:4
#: hacks/config/moire.xml.h:5 hacks/config/moire2.xml.h:3
#: hacks/config/mountain.xml.h:4 hacks/config/nerverot.xml.h:15
#: hacks/config/pedal.xml.h:6 hacks/config/penrose.xml.h:7
#: hacks/config/petri.xml.h:11 hacks/config/polyominoes.xml.h:5
#: hacks/config/qix.xml.h:14 hacks/config/rd-bomb.xml.h:12
#: hacks/config/ripples.xml.h:7 hacks/config/rocks.xml.h:5
#: hacks/config/rotor.xml.h:6 hacks/config/shadebobs.xml.h:5
#: hacks/config/sierpinski.xml.h:4 hacks/config/slip.xml.h:4
#: hacks/config/sphere.xml.h:3 hacks/config/spiral.xml.h:6
#: hacks/config/squiral.xml.h:9 hacks/config/starfish.xml.h:5
#: hacks/config/strange.xml.h:5 hacks/config/swirl.xml.h:3
#: hacks/config/thornbird.xml.h:4 hacks/config/triangle.xml.h:3
#: hacks/config/vines.xml.h:2 hacks/config/whirlwindwarp.xml.h:4
#: hacks/config/worm.xml.h:4 hacks/config/xearth.xml.h:12
#: hacks/config/xfishtank.xml.h:8
msgid "Many"
msgstr "ΠΠ½ΠΎΠ³Ρ"
#: hacks/config/ant.xml.h:9
msgid "Nine Sided Cells"
msgstr "ΠΠ΅Π²Π΅ΡΡΡΡΠ°Π½ΠΈ ΡΠ΅Π»ΠΈΠΈ"
#: hacks/config/ant.xml.h:10 hacks/config/apollonian.xml.h:8
#: hacks/config/attraction.xml.h:19 hacks/config/bouboule.xml.h:6
#: hacks/config/braid.xml.h:9 hacks/config/critical.xml.h:5
#: hacks/config/crystal.xml.h:10 hacks/config/cynosure.xml.h:7
#: hacks/config/deco.xml.h:8 hacks/config/deluxe.xml.h:7
#: hacks/config/demon.xml.h:7 hacks/config/discrete.xml.h:6
#: hacks/config/drift.xml.h:10 hacks/config/epicycle.xml.h:9
#: hacks/config/euler2d.xml.h:9 hacks/config/fadeplot.xml.h:7
#: hacks/config/flag.xml.h:6 hacks/config/flame.xml.h:12
#: hacks/config/flow.xml.h:9 hacks/config/forest.xml.h:4
#: hacks/config/galaxy.xml.h:7 hacks/config/grav.xml.h:5
#: hacks/config/halo.xml.h:6 hacks/config/hopalong.xml.h:17
#: hacks/config/ifs.xml.h:4 hacks/config/imsmap.xml.h:10
#: hacks/config/interference.xml.h:12 hacks/config/julia.xml.h:7
#: hacks/config/laser.xml.h:8 hacks/config/lightning.xml.h:4
#: hacks/config/lisa.xml.h:6 hacks/config/lissie.xml.h:7
#: hacks/config/loop.xml.h:5 hacks/config/moire.xml.h:7
#: hacks/config/moire2.xml.h:5 hacks/config/mountain.xml.h:6
#: hacks/config/penrose.xml.h:8 hacks/config/polyominoes.xml.h:6
#: hacks/config/rd-bomb.xml.h:13 hacks/config/rocks.xml.h:6
#: hacks/config/rotor.xml.h:7 hacks/config/shadebobs.xml.h:6
#: hacks/config/sierpinski.xml.h:5 hacks/config/slip.xml.h:5
#: hacks/config/sphere.xml.h:4 hacks/config/spiral.xml.h:8
#: hacks/config/squiral.xml.h:10 hacks/config/starfish.xml.h:6
#: hacks/config/strange.xml.h:6 hacks/config/swirl.xml.h:5
#: hacks/config/thornbird.xml.h:5 hacks/config/triangle.xml.h:4
#: hacks/config/vines.xml.h:3 hacks/config/worm.xml.h:5
#: hacks/config/xearth.xml.h:17 hacks/config/xfishtank.xml.h:9
msgid "Number of Colors"
msgstr "ΠΡΠΎΡ Π½Π° Π±ΠΎΠΈ"
#: hacks/config/ant.xml.h:11
msgid "Random Cell Shape"
msgstr "ΠΡΠΎΠΈΠ·Π²ΠΎΠ»Π΅Π½ ΠΎΠ±Π»ΠΈΠΊ Π½Π° ΡΠ΅Π»ΠΈΡΠ°"
#: hacks/config/ant.xml.h:12 hacks/config/speedmine.xml.h:11
msgid "Sharp Turns"
msgstr "ΠΡΡΡΠΈ Π²ΡΡΠ΅ΡΠ°"
#: hacks/config/ant.xml.h:13
msgid "Six Sided Cells"
msgstr "Π¨Π΅ΡΡΡΠ°Π½ΠΈ ΡΠ΅Π»ΠΈΠΈ"
#: hacks/config/ant.xml.h:14 hacks/config/apollonian.xml.h:11
#: hacks/config/atlantis.xml.h:13 hacks/config/attraction.xml.h:26
#: hacks/config/blaster.xml.h:8 hacks/config/blitspin.xml.h:7
#: hacks/config/bouboule.xml.h:8 hacks/config/boxed.xml.h:6
#: hacks/config/braid.xml.h:11 hacks/config/bubble3d.xml.h:5
#: hacks/config/bubbles.xml.h:10 hacks/config/bumps.xml.h:4
#: hacks/config/cage.xml.h:4 hacks/config/circuit.xml.h:10
#: hacks/config/compass.xml.h:4 hacks/config/coral.xml.h:12
#: hacks/config/critical.xml.h:6 hacks/config/crystal.xml.h:11
#: hacks/config/cubenetic.xml.h:22 hacks/config/cynosure.xml.h:9
#: hacks/config/dangerball.xml.h:5 hacks/config/decayscreen.xml.h:17
#: hacks/config/deluxe.xml.h:8 hacks/config/demon.xml.h:8
#: hacks/config/discrete.xml.h:7 hacks/config/distort.xml.h:11
#: hacks/config/drift.xml.h:12 hacks/config/engine.xml.h:5
#: hacks/config/epicycle.xml.h:10 hacks/config/euler2d.xml.h:14
#: hacks/config/extrusion.xml.h:11 hacks/config/fadeplot.xml.h:8
#: hacks/config/flag.xml.h:7 hacks/config/flame.xml.h:14
#: hacks/config/flipscreen3d.xml.h:6 hacks/config/flow.xml.h:13
#: hacks/config/fluidballs.xml.h:18 hacks/config/forest.xml.h:5
#: hacks/config/galaxy.xml.h:10 hacks/config/gears.xml.h:7
#: hacks/config/gflux.xml.h:12 hacks/config/glforestfire.xml.h:14
#: hacks/config/glplanet.xml.h:6 hacks/config/glsnake.xml.h:12
#: hacks/config/gltext.xml.h:13 hacks/config/goop.xml.h:10
#: hacks/config/grav.xml.h:8 hacks/config/greynetic.xml.h:3
#: hacks/config/halo.xml.h:9 hacks/config/hopalong.xml.h:21
#: hacks/config/hyperball.xml.h:8 hacks/config/hypercube.xml.h:7
#: hacks/config/ifs.xml.h:5 hacks/config/interference.xml.h:14
#: hacks/config/jigsaw.xml.h:5 hacks/config/juggle.xml.h:7
#: hacks/config/julia.xml.h:8 hacks/config/kaleidescope.xml.h:7
#: hacks/config/kumppa.xml.h:8 hacks/config/lament.xml.h:6
#: hacks/config/laser.xml.h:10 hacks/config/lightning.xml.h:5
#: hacks/config/lisa.xml.h:8 hacks/config/lissie.xml.h:9
#: hacks/config/lmorph.xml.h:11 hacks/config/loop.xml.h:7
#: hacks/config/maze.xml.h:14 hacks/config/menger.xml.h:16
#: hacks/config/moebius.xml.h:7 hacks/config/moire2.xml.h:6
#: hacks/config/molecule.xml.h:22 hacks/config/morph3d.xml.h:6
#: hacks/config/mountain.xml.h:7 hacks/config/munch.xml.h:7
#: hacks/config/nerverot.xml.h:20 hacks/config/penetrate.xml.h:6
#: hacks/config/penrose.xml.h:11 hacks/config/petri.xml.h:23
#: hacks/config/phosphor.xml.h:6 hacks/config/pipes.xml.h:15
#: hacks/config/polyominoes.xml.h:10 hacks/config/pulsar.xml.h:15
#: hacks/config/pyro.xml.h:13 hacks/config/qix.xml.h:19
#: hacks/config/rd-bomb.xml.h:17 hacks/config/ripples.xml.h:11
#: hacks/config/rocks.xml.h:9 hacks/config/rotor.xml.h:11
#: hacks/config/rubik.xml.h:9 hacks/config/sballs.xml.h:13
#: hacks/config/shadebobs.xml.h:9 hacks/config/sierpinski.xml.h:7
#: hacks/config/sierpinski3d.xml.h:8 hacks/config/slidescreen.xml.h:6
#: hacks/config/slip.xml.h:7 hacks/config/speedmine.xml.h:13
#: hacks/config/sphere.xml.h:5 hacks/config/spheremonics.xml.h:19
#: hacks/config/spiral.xml.h:9 hacks/config/spotlight.xml.h:4
#: hacks/config/sproingies.xml.h:6 hacks/config/squiral.xml.h:14
#: hacks/config/stairs.xml.h:3 hacks/config/starfish.xml.h:8
#: hacks/config/starwars.xml.h:12 hacks/config/strange.xml.h:7
#: hacks/config/superquadrics.xml.h:7 hacks/config/swirl.xml.h:6
#: hacks/config/t3d.xml.h:11 hacks/config/thornbird.xml.h:7
#: hacks/config/triangle.xml.h:5 hacks/config/truchet.xml.h:2
#: hacks/config/twang.xml.h:9 hacks/config/vines.xml.h:4
#: hacks/config/webcollage.xml.h:7 hacks/config/worm.xml.h:7
#: hacks/config/xearth.xml.h:22 hacks/config/xfishtank.xml.h:10
#: hacks/config/xflame.xml.h:5 hacks/config/xjack.xml.h:2
#: hacks/config/xmatrix.xml.h:13 hacks/config/xmountains.xml.h:4
#: hacks/config/xrayswarm.xml.h:3 hacks/config/zoom.xml.h:6
msgid "Slow"
msgstr "ΠΠ°Π²Π½ΠΎ"
#: hacks/config/ant.xml.h:15 hacks/config/attraction.xml.h:27
#: hacks/config/cubenetic.xml.h:23 hacks/config/demon.xml.h:9
#: hacks/config/discrete.xml.h:8 hacks/config/distort.xml.h:12
#: hacks/config/fadeplot.xml.h:9 hacks/config/flag.xml.h:8
#: hacks/config/flow.xml.h:15 hacks/config/fluidballs.xml.h:19
#: hacks/config/hopalong.xml.h:22 hacks/config/interference.xml.h:15
#: hacks/config/julia.xml.h:9 hacks/config/lissie.xml.h:10
#: hacks/config/loop.xml.h:8 hacks/config/moire.xml.h:9
#: hacks/config/rd-bomb.xml.h:18 hacks/config/rorschach.xml.h:8
#: hacks/config/rubik.xml.h:10 hacks/config/sierpinski.xml.h:8
#: hacks/config/slip.xml.h:8
msgid "Small"
msgstr "ΠΠ°Π»ΠΎ"
#: hacks/config/ant.xml.h:16 hacks/config/apollonian.xml.h:12
#: hacks/config/attraction.xml.h:28 hacks/config/blaster.xml.h:9
#: hacks/config/bouboule.xml.h:9 hacks/config/braid.xml.h:12
#: hacks/config/bubble3d.xml.h:6 hacks/config/bubbles.xml.h:11
#: hacks/config/bumps.xml.h:5 hacks/config/cage.xml.h:6
#: hacks/config/circuit.xml.h:11 hacks/config/compass.xml.h:5
#: hacks/config/coral.xml.h:14 hacks/config/critical.xml.h:7
#: hacks/config/crystal.xml.h:12 hacks/config/cubenetic.xml.h:24
#: hacks/config/cynosure.xml.h:10 hacks/config/dangerball.xml.h:6
#: hacks/config/decayscreen.xml.h:18 hacks/config/deluxe.xml.h:9
#: hacks/config/demon.xml.h:10 hacks/config/discrete.xml.h:9
#: hacks/config/distort.xml.h:13 hacks/config/drift.xml.h:13
#: hacks/config/engine.xml.h:6 hacks/config/epicycle.xml.h:11
#: hacks/config/euler2d.xml.h:15 hacks/config/extrusion.xml.h:13
#: hacks/config/fadeplot.xml.h:10 hacks/config/flag.xml.h:9
#: hacks/config/flame.xml.h:15 hacks/config/flipscreen3d.xml.h:7
#: hacks/config/flow.xml.h:16 hacks/config/fluidballs.xml.h:20
#: hacks/config/forest.xml.h:6 hacks/config/galaxy.xml.h:11
#: hacks/config/glforestfire.xml.h:15 hacks/config/glplanet.xml.h:8
#: hacks/config/gltext.xml.h:15 hacks/config/goop.xml.h:11
#: hacks/config/grav.xml.h:9 hacks/config/greynetic.xml.h:4
#: hacks/config/halo.xml.h:10 hacks/config/hopalong.xml.h:23
#: hacks/config/hyperball.xml.h:9 hacks/config/hypercube.xml.h:8
#: hacks/config/ifs.xml.h:6 hacks/config/jigsaw.xml.h:7
#: hacks/config/juggle.xml.h:8 hacks/config/julia.xml.h:10
#: hacks/config/kaleidescope.xml.h:8 hacks/config/kumppa.xml.h:9
#: hacks/config/lament.xml.h:7 hacks/config/laser.xml.h:11
#: hacks/config/lightning.xml.h:6 hacks/config/lisa.xml.h:9
#: hacks/config/lissie.xml.h:11 hacks/config/lmorph.xml.h:12
#: hacks/config/loop.xml.h:9 hacks/config/menger.xml.h:18
#: hacks/config/moebius.xml.h:10 hacks/config/moire2.xml.h:7
#: hacks/config/molecule.xml.h:24 hacks/config/morph3d.xml.h:7
#: hacks/config/mountain.xml.h:8 hacks/config/munch.xml.h:9
#: hacks/config/nerverot.xml.h:22 hacks/config/penrose.xml.h:12
#: hacks/config/petri.xml.h:25 hacks/config/phosphor.xml.h:7
#: hacks/config/pipes.xml.h:16 hacks/config/polyominoes.xml.h:11
#: hacks/config/pulsar.xml.h:17 hacks/config/qix.xml.h:22
#: hacks/config/rotor.xml.h:12 hacks/config/rubik.xml.h:11
#: hacks/config/sballs.xml.h:14 hacks/config/shadebobs.xml.h:10
#: hacks/config/sierpinski.xml.h:9 hacks/config/sierpinski3d.xml.h:10
#: hacks/config/slidescreen.xml.h:7 hacks/config/slip.xml.h:9
#: hacks/config/speedmine.xml.h:15 hacks/config/sphere.xml.h:6
#: hacks/config/spheremonics.xml.h:22 hacks/config/spiral.xml.h:10
#: hacks/config/spotlight.xml.h:5 hacks/config/sproingies.xml.h:8
#: hacks/config/squiral.xml.h:16 hacks/config/stairs.xml.h:5
#: hacks/config/starfish.xml.h:9 hacks/config/strange.xml.h:8
#: hacks/config/superquadrics.xml.h:9 hacks/config/swirl.xml.h:7
#: hacks/config/t3d.xml.h:13 hacks/config/thornbird.xml.h:8
#: hacks/config/triangle.xml.h:6 hacks/config/truchet.xml.h:3
#: hacks/config/twang.xml.h:10 hacks/config/vines.xml.h:5
#: hacks/config/webcollage.xml.h:8 hacks/config/whirlygig.xml.h:4
#: hacks/config/worm.xml.h:8 hacks/config/xearth.xml.h:25
#: hacks/config/xflame.xml.h:6 hacks/config/xjack.xml.h:3
#: hacks/config/xmatrix.xml.h:16 hacks/config/xmountains.xml.h:5
#: hacks/config/xrayswarm.xml.h:4 hacks/config/zoom.xml.h:7
msgid "Speed"
msgstr "ΠΡΠ·ΠΈΠ½Π°"
#: hacks/config/ant.xml.h:17
msgid "Three Sided Cells"
msgstr "Π’ΡΠΈΡΡΡΠ°Π½ΠΈ ΡΠ΅Π»ΠΈΠΈ"
#: hacks/config/ant.xml.h:18 hacks/config/demon.xml.h:12
#: hacks/config/discrete.xml.h:10 hacks/config/fadeplot.xml.h:11
#: hacks/config/flag.xml.h:12 hacks/config/flow.xml.h:17
#: hacks/config/lissie.xml.h:12 hacks/config/loop.xml.h:11
#: hacks/config/rubik.xml.h:12 hacks/config/sierpinski.xml.h:11
#: hacks/config/slip.xml.h:11
msgid "Timeout"
msgstr "ΠΡΡΠ΅ΠΊ Π½Π° Π²ΡΠ΅ΠΌΠ΅"
#: hacks/config/ant.xml.h:19
#, fuzzy
msgid "Truchet Lines"
msgstr "ΠΠΈΠ½ΠΈΠΈ Truchet"
#: hacks/config/ant.xml.h:20
msgid "Twelve Sided Cells"
msgstr "ΠΠ²Π°Π½Π°Π΅ΡΡΠΎΡΡΡΠ°Π½ΠΈ ΡΠ΅Π»ΠΈΠΈ"
#: hacks/config/ant.xml.h:21 hacks/config/apollonian.xml.h:13
#: hacks/config/attraction.xml.h:32 hacks/config/bouboule.xml.h:11
#: hacks/config/braid.xml.h:13 hacks/config/critical.xml.h:8
#: hacks/config/crystal.xml.h:13 hacks/config/cynosure.xml.h:11
#: hacks/config/deco.xml.h:10 hacks/config/deluxe.xml.h:14
#: hacks/config/demon.xml.h:13 hacks/config/discrete.xml.h:11
#: hacks/config/drift.xml.h:14 hacks/config/epicycle.xml.h:13
#: hacks/config/euler2d.xml.h:17 hacks/config/fadeplot.xml.h:12
#: hacks/config/flag.xml.h:13 hacks/config/flame.xml.h:16
#: hacks/config/flow.xml.h:18 hacks/config/forest.xml.h:8
#: hacks/config/galaxy.xml.h:13 hacks/config/grav.xml.h:11
#: hacks/config/halo.xml.h:12 hacks/config/hopalong.xml.h:25
#: hacks/config/ifs.xml.h:8 hacks/config/imsmap.xml.h:15
#: hacks/config/interference.xml.h:16 hacks/config/julia.xml.h:12
#: hacks/config/laser.xml.h:12 hacks/config/lightning.xml.h:8
#: hacks/config/lisa.xml.h:12 hacks/config/lissie.xml.h:13
#: hacks/config/loop.xml.h:12 hacks/config/moire.xml.h:11
#: hacks/config/moire2.xml.h:9 hacks/config/mountain.xml.h:9
#: hacks/config/nerverot.xml.h:23 hacks/config/penrose.xml.h:13
#: hacks/config/polyominoes.xml.h:12 hacks/config/rd-bomb.xml.h:20
#: hacks/config/rocks.xml.h:12 hacks/config/rotor.xml.h:13
#: hacks/config/shadebobs.xml.h:12 hacks/config/sierpinski.xml.h:12
#: hacks/config/slip.xml.h:12 hacks/config/sphere.xml.h:8
#: hacks/config/spiral.xml.h:12 hacks/config/squiral.xml.h:18
#: hacks/config/starfish.xml.h:14 hacks/config/strange.xml.h:11
#: hacks/config/swirl.xml.h:9 hacks/config/thornbird.xml.h:13
#: hacks/config/triangle.xml.h:8 hacks/config/vines.xml.h:7
#: hacks/config/worm.xml.h:9 hacks/config/xearth.xml.h:28
#: hacks/config/xfishtank.xml.h:11
msgid "Two"
msgstr "ΠΠ²Π΅"
#: hacks/config/apollonian.xml.h:1
msgid "Apollonian"
msgstr "ΠΠΏΠΎΠ»ΠΎΠ½ΡΠΊΠΈ"
#: hacks/config/apollonian.xml.h:2
msgid "Deep"
msgstr "ΠΠ»Π°Π±ΠΎΠΊΠΎ"
#: hacks/config/apollonian.xml.h:3
msgid "Depth"
msgstr "ΠΠ»Π°Π±ΠΎΡΠΈΠ½Π°"
#: hacks/config/apollonian.xml.h:4
msgid "Draw Labels"
msgstr "Π¦ΡΡΠ°Ρ ΠΎΠ·Π½Π°ΠΊΠΈ"
#: hacks/config/apollonian.xml.h:6
msgid "Include Alternate Geometries"
msgstr "ΠΠΊΠ»ΡΡΠΈ Π½Π°ΠΈΠ·ΠΌΠ΅Π½ΠΈΡΠ½ΠΈ Π³Π΅ΠΎΠΌΠ΅ΡΡΠΈΠΈ"
#: hacks/config/apollonian.xml.h:9
msgid ""
"Packs a large circle with smaller circles, demonstrating the Descartes Circle "
"Theorem. Written by Allan R. Wilks and David Bagley."
msgstr ""
"ΠΠ°ΠΊΡΠ²Π° Π³ΠΎΠ»Π΅ΠΌ ΠΊΡΡΠ³ ΡΠΎ ΠΌΠ°Π»ΠΈ ΠΊΡΡΠ³ΠΎΠ²ΠΈ, ΠΏΡΠΈΠΊΠ°ΠΆΡΠ²Π°ΡΡΠΈ ΡΠ° ΡΠ΅ΠΎΡΠ΅ΠΌΠ°ΡΠ° Π·Π° ΠΊΡΡΠ³ΠΎΠ²ΠΈ Π½Π° "
"ΠΠ΅ΠΊΠ°ΡΡ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Allan R. Wilks ΠΈ David Bagley."
#: hacks/config/apollonian.xml.h:10
msgid "Shallow"
msgstr "ΠΠ»ΠΈΡΠΊΠΎ"
#: hacks/config/atlantis.xml.h:1
msgid "Agressive"
msgstr "ΠΠ³ΡΠ΅ΡΠΈΠ²Π½ΠΎ"
#: hacks/config/atlantis.xml.h:2
msgid "Atlantis"
msgstr "ΠΡΠ»Π°Π½ΡΠΈΠΊ"
#: hacks/config/atlantis.xml.h:3
msgid "Clear Water"
msgstr "Π§ΠΈΡΡΠ° Π²ΠΎΠ΄Π°"
#: hacks/config/atlantis.xml.h:5
msgid "Flat Background"
msgstr "Π Π°ΠΌΠ½Π° Π·Π°Π΄Π½ΠΈΠ½Π°"
#: hacks/config/atlantis.xml.h:6
msgid "Gradient Background"
msgstr "ΠΠ°Π΄Π½ΠΈΠ½Π° ΡΠΎ Π³ΡΠ°Π΄ΠΈΠ΅Π½Ρ"
#: hacks/config/atlantis.xml.h:7
msgid "Number of Sharks"
msgstr "ΠΡΠΎΡ Π½Π° Π°ΡΠΊΡΠ»ΠΈ"
#: hacks/config/atlantis.xml.h:8
msgid "Shark Proximity"
msgstr "ΠΠ»ΠΈΠ·ΠΈΠ½Π° Π½Π° Π°ΡΠΊΡΠ»ΠΈΡΠ΅"
#: hacks/config/atlantis.xml.h:9
msgid "Shark Speed"
msgstr "ΠΡΠ·ΠΈΠ½Π° Π½Π° Π°ΡΠΊΡΠ»ΠΈΡΠ΅"
#: hacks/config/atlantis.xml.h:10
msgid "Shimmering Water"
msgstr "Π’ΡΠ΅ΠΏΠ΅ΡΠ»ΠΈΠ²Π° Π²ΠΎΠ΄Π°"
#: hacks/config/atlantis.xml.h:11 hacks/config/boxed.xml.h:5
#: hacks/config/bubble3d.xml.h:4 hacks/config/cage.xml.h:3
#: hacks/config/circuit.xml.h:9 hacks/config/cubenetic.xml.h:21
#: hacks/config/dangerball.xml.h:4 hacks/config/engine.xml.h:4
#: hacks/config/extrusion.xml.h:10 hacks/config/flipscreen3d.xml.h:5
#: hacks/config/fluidballs.xml.h:17 hacks/config/gears.xml.h:6
#: hacks/config/gflux.xml.h:11 hacks/config/glforestfire.xml.h:13
#: hacks/config/glplanet.xml.h:5 hacks/config/glsnake.xml.h:10
#: hacks/config/gltext.xml.h:12 hacks/config/lament.xml.h:5
#: hacks/config/menger.xml.h:15 hacks/config/moebius.xml.h:6
#: hacks/config/molecule.xml.h:21 hacks/config/morph3d.xml.h:5
#: hacks/config/pipes.xml.h:14 hacks/config/pulsar.xml.h:14
#: hacks/config/rubik.xml.h:6 hacks/config/sballs.xml.h:12
#: hacks/config/sierpinski3d.xml.h:6 hacks/config/spheremonics.xml.h:18
#: hacks/config/sproingies.xml.h:4 hacks/config/stairs.xml.h:2
#: hacks/config/starwars.xml.h:11 hacks/config/superquadrics.xml.h:6
msgid "Show Frames-per-Second"
msgstr "ΠΡΠΈΠΊΠ°ΠΆΠΈ Π±ΡΠΎΡ Π½Π° ΡΠ°ΠΌΠΊΠΈ Π²ΠΎ ΡΠ΅ΠΊΡΠ½Π΄Π°"
#: hacks/config/atlantis.xml.h:12
msgid "Shy"
msgstr "Π‘ΡΠ°ΠΌΠ΅ΠΆΠ»ΠΈΠ²ΠΈ"
#: hacks/config/atlantis.xml.h:14 hacks/config/boxed.xml.h:7
#: hacks/config/cage.xml.h:5 hacks/config/extrusion.xml.h:12
#: hacks/config/gears.xml.h:8 hacks/config/glplanet.xml.h:7
#: hacks/config/glsnake.xml.h:13 hacks/config/gltext.xml.h:14
#: hacks/config/menger.xml.h:17 hacks/config/molecule.xml.h:23
#: hacks/config/munch.xml.h:8 hacks/config/sierpinski3d.xml.h:9
#: hacks/config/speedmine.xml.h:14 hacks/config/spheremonics.xml.h:21
#: hacks/config/sproingies.xml.h:7 hacks/config/stairs.xml.h:4
#: hacks/config/stonerview.xml.h:2 hacks/config/superquadrics.xml.h:8
msgid "Solid"
msgstr "ΠΠΎΠ»Π½ΠΎ"
#: hacks/config/atlantis.xml.h:15
#, fuzzy
msgid ""
"This is xfishtank writ large: a GL animation of a number of sharks, dolphins, "
"and whales. The swimming motions are great. Originally written by Mark Kilgard."
msgstr ""
"ΠΠ²Π° Π΅ Π³ΠΎΠ»Π΅ΠΌ Π½Π°Π»ΠΎΠ³ Π½Π° xfishtank: GL-Π°Π½ΠΈΠΌΠ°ΡΠΈΡΠ° Π½Π° ΠΎΠ΄ΡΠ΅Π΄Π΅Π½ Π±ΡΠΎΡ Π°ΡΠΊΡΠ»ΠΈ, Π΄Π΅Π»ΡΠΈΠ½ΠΈ ΠΈ "
"ΠΊΠΈΡΠΎΠ²ΠΈ. ΠΠ²ΠΈΠΆΠ΅ΡΠ°ΡΠ° ΠΏΡΠΈ ΠΏΠ»ΠΈΠ²Π°ΡΠ΅ ΡΠ΅ ΠΎΠ΄Π»ΠΈΡΠ½ΠΈ. ΠΡΠΈΠ³ΠΈΠ½Π°Π»Π½ΠΎ Π½Π°ΠΏΠΈΡΠ°Π½Π° ΠΎΠ΄ Mark Kilgard."
#: hacks/config/atlantis.xml.h:16
msgid "Whale Speed"
msgstr "ΠΡΠ·ΠΈΠ½Π° Π½Π° ΠΊΠΈΡΠΎΠ²ΠΈΡΠ΅"
#: hacks/config/atlantis.xml.h:17 hacks/config/boxed.xml.h:8
#: hacks/config/cage.xml.h:8 hacks/config/dangerball.xml.h:11
#: hacks/config/extrusion.xml.h:19 hacks/config/gears.xml.h:11
#: hacks/config/glforestfire.xml.h:20 hacks/config/glplanet.xml.h:11
#: hacks/config/glsnake.xml.h:16 hacks/config/gltext.xml.h:18
#: hacks/config/lament.xml.h:9 hacks/config/menger.xml.h:21
#: hacks/config/moebius.xml.h:11 hacks/config/molecule.xml.h:26
#: hacks/config/pulsar.xml.h:20 hacks/config/sballs.xml.h:18
#: hacks/config/sierpinski3d.xml.h:12 hacks/config/speedmine.xml.h:18
#: hacks/config/spheremonics.xml.h:26 hacks/config/sproingies.xml.h:10
#: hacks/config/stairs.xml.h:7 hacks/config/stonerview.xml.h:4
#: hacks/config/superquadrics.xml.h:11
msgid "Wireframe"
msgstr "ΠΡΠ΅ΠΆΠ΅Π½ ΡΠΊΠ΅Π»Π΅Ρ"
#: hacks/config/attraction.xml.h:1
msgid "Attraction"
msgstr "ΠΡΠΈΠ²Π»Π΅ΠΊΡΠ²Π°ΡΠ΅"
#: hacks/config/attraction.xml.h:2
msgid "Ball Count"
msgstr "ΠΡΠΎΡ Π½Π° ΡΠΎΠΏΡΠΈΡΠ°"
#: hacks/config/attraction.xml.h:3
msgid "Ball Mass"
msgstr "ΠΠ°ΡΠ° Π½Π° ΡΠΎΠΏΡΠΈΡΠ°ΡΠ°"
#: hacks/config/attraction.xml.h:4 hacks/config/fluidballs.xml.h:2
msgid "Balls"
msgstr "Π’ΠΎΠΏΡΠΈΡΠ°"
#: hacks/config/attraction.xml.h:5
msgid "Bounce Off Walls"
msgstr "ΠΠ΄Π±ΠΈΠ²Π°ΡΠ΅ ΠΎΠ΄ ΡΠΈΠ΄ΠΎΠ²ΠΈΡΠ΅"
#: hacks/config/attraction.xml.h:6 hacks/config/hopalong.xml.h:1
#: hacks/config/interference.xml.h:3 hacks/config/qix.xml.h:2
#: hacks/config/wander.xml.h:3
msgid "Color Contrast"
msgstr "ΠΠΎΠ½ΡΡΠ°ΡΡ Π½Π° Π±ΠΎΠΈΡΠ΅"
#: hacks/config/attraction.xml.h:7
msgid "Environmental Viscosity"
msgstr "ΠΠΈΡΠΊΠΎΠ·ΠΈΡΠ΅Ρ Π½Π° ΠΎΠΊΠΎΠ»ΠΈΠ½Π°ΡΠ°"
#: hacks/config/attraction.xml.h:9
msgid "Filled Splines"
msgstr "ΠΡΠΏΠΎΠ»Π½Π΅ΡΠΈ ΡΠΏΠ»Π°ΡΠ½ΠΎΠ²ΠΈ"
#: hacks/config/attraction.xml.h:10 hacks/config/ccurve.xml.h:9
#: hacks/config/cubenetic.xml.h:10 hacks/config/euler2d.xml.h:5
#: hacks/config/flame.xml.h:9 hacks/config/goop.xml.h:6
#: hacks/config/hopalong.xml.h:10 hacks/config/hyperball.xml.h:3
#: hacks/config/hypercube.xml.h:3 hacks/config/interference.xml.h:6
#: hacks/config/kumppa.xml.h:4 hacks/config/nerverot.xml.h:11
#: hacks/config/petri.xml.h:8 hacks/config/pyro.xml.h:5
#: hacks/config/qix.xml.h:10 hacks/config/speedmine.xml.h:5
#: hacks/config/spheremonics.xml.h:6 hacks/config/spiral.xml.h:4
#: hacks/config/squiral.xml.h:6 hacks/config/strange.xml.h:3
#: hacks/config/superquadrics.xml.h:4 hacks/config/t3d.xml.h:7
#: hacks/config/twang.xml.h:5 hacks/config/wander.xml.h:8
msgid "High"
msgstr "ΠΠΈΡΠΎΠΊΠΎ"
#: hacks/config/attraction.xml.h:11
msgid "Ignore Screen Edges"
msgstr "ΠΠ³Π½ΠΎΡΠΈΡΠ°Ρ ΡΠ°Π±ΠΎΠ²ΠΈ Π½Π° Π΅ΠΊΡΠ°Π½"
#: hacks/config/attraction.xml.h:12
msgid "Inward"
msgstr "ΠΠ°Π²Π½Π°ΡΡΠ΅"
#: hacks/config/attraction.xml.h:14
msgid ""
"Like qix, this uses a simple simple motion model to generate many different "
"display modes. The control points attract each other up to a certain distance, "
"and then begin to repel each other. The attraction/repulsion is proportional to "
"the distance between any two particles, similar to the strong and weak nuclear "
"forces. One of the most interesting ways to watch this hack is simply as "
"bouncing balls, because their motions and interactions with each other are so "
"odd. Sometimes two balls will get into a tight orbit around each other, to be "
"interrupted later by a third, or by the edge of the screen. It looks quite "
"chaotic. Written by Jamie Zawinski, based on Lisp code by John Pezaris."
msgstr ""
"ΠΠ°ΠΊΠΎ ΠΈ βΠΊΠΈΠΊΡβ, ΠΈ ΠΎΠ²Π° ΠΊΠΎΡΠΈΡΡΠΈ Π΅Π΄Π½ΠΎΡΡΠ°Π²Π΅Π½ ΠΌΠΎΠ΄Π΅Π» Π½Π° Π΄Π²ΠΈΠΆΠ΅ΡΠ΅ Π·Π° Π΄Π° Π³Π΅Π½Π΅ΡΠΈΡΠ° "
"Π½Π°ΡΡΠ°Π·Π»ΠΈΡΠ½ΠΈ ΡΠ΅ΠΆΠΈΠΌΠΈ Π½Π° ΠΏΡΠΈΠΊΠ°ΠΆΡΠ²Π°ΡΠ΅. ΠΠΎΠ½ΡΡΠΎΠ»Π½ΠΈΡΠ΅ ΡΠΎΡΠΊΠΈ ΠΌΠ΅ΡΡΡΠ΅Π±Π½ΠΎ ΡΠ΅ ΠΏΡΠΈΠ²Π»Π΅ΠΊΡΠ²Π°Π°Ρ "
"Π΄ΠΎ ΠΎΠ΄ΡΠ΅Π΄Π΅Π½ΠΎ ΡΠ°ΡΡΠΎΡΠ°Π½ΠΈΠ΅, Π° ΠΏΠΎΡΠΎΠ° ΠΏΠΎΡΠ½ΡΠ²Π°Π°Ρ Π΄Π° ΡΠ΅ ΠΎΠ΄Π±ΠΈΠ²Π°Π°Ρ. "
"ΠΡΠΈΠ²Π»Π΅ΠΊΡΠ²Π°ΡΠ΅ΡΠΎ/ΠΎΠ΄Π±ΠΈΠ²Π°ΡΠ΅ΡΠΎ Π΅ ΠΏΡΠΎΠΏΠΎΡΡΠΈΠΎΠ½Π°Π»Π½ΠΎ ΡΠΎ ΡΠ°ΡΡΠΎΡΠ°Π½ΠΈΠ΅ΡΠΎ ΠΌΠ΅ΡΡ ΠΊΠΎΠΈ Π±ΠΈΠ»ΠΎ Π΄Π²Π΅ "
"ΡΠ΅ΡΡΠΈΡΠΈ, ΡΠ»ΠΈΡΠ½ΠΎ Π½Π° ΡΠ°ΠΊΠΈΡΠ΅ ΠΈ ΡΠ»Π°Π±ΠΈΡΠ΅ Π½ΡΠΊΠ»Π΅Π°ΡΠ½ΠΈ ΡΠΈΠ»ΠΈ. ΠΠ΄Π΅Π½ ΠΎΠ΄ Π½Π°ΡΠΈΠ½ΡΠ΅ΡΠ΅ΡΠ½ΠΈΡΠ΅ "
"Π½Π°ΡΠΈΠ½ΠΈ Π΄Π° Π³ΠΎ ΡΠ»Π΅Π΄ΠΈΡΠ΅ ΠΎΠ²Π° Π΅ ΡΠΎ ΡΠΎΠΏΡΠΈΡΠ°ΡΠ° ΡΡΠΎ ΡΠΊΠΎΠΊΠ°Π°Ρ, Π±ΠΈΠ΄Π΅ΡΡΠΈ Π½ΠΈΠ²Π½ΠΈΡΠ΅ Π΄Π²ΠΈΠΆΠ΅ΡΠ° ΠΈ "
"ΠΌΠ΅ΡΡΡΠ΅Π±Π½ΠΈΡΠ΅ Π²Π»ΠΈΡΠ°Π½ΠΈΡΠ° ΡΠ΅ ΠΌΠ½ΠΎΠ³Ρ ΡΡΠ΄Π½ΠΈ. ΠΠΎΠ½Π΅ΠΊΠΎΠ³Π°Ρ Π΄Π²Π΅ ΡΠΎΠΏΡΠΈΡΠ° ΡΠ΅ Π²Π»Π΅Π·Π°Ρ Π²ΠΎ Π±Π»ΠΈΡΠΊΠ° "
"ΠΎΡΠ±ΠΈΡΠ° Π΅Π΄Π½Π° ΠΎΠΊΠΎΠ»Ρ Π΄ΡΡΠ³Π°, Π·Π° ΠΏΠΎΠ΄ΠΎΡΠ½Π° Π΄Π° Π±ΠΈΠ΄Π°Ρ ΠΏΡΠ΅ΠΊΠΈΠ½Π°ΡΠΈ ΠΎΠ΄ ΡΡΠ΅ΡΠ°, ΠΈΠ»ΠΈ ΠΎΠ΄ ΡΠ°Π±ΠΎΡ "
"Π½Π° Π΅ΠΊΡΠ°Π½ΠΎΡ. ΠΠ·Π³Π»Π΅Π΄Π° ΠΏΡΠΈΠ»ΠΈΡΠ½ΠΎ Ρ
Π°ΠΎΡΠΈΡΠ½ΠΎ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Jamie Zawinski , Π±Π°Π·ΠΈΡΠ°Π½ΠΎ Π½Π° "
"ΠΊΠΎΠ΄ Π²ΠΎ Lisp ΠΎΠ΄ John Pezaris."
#: hacks/config/attraction.xml.h:15 hacks/config/deluxe.xml.h:5
#: hacks/config/lmorph.xml.h:7 hacks/config/pedal.xml.h:5
#: hacks/config/starfish.xml.h:4 hacks/config/whirlygig.xml.h:3
msgid "Lines"
msgstr "ΠΠΈΠ½ΠΈΠΈ"
#: hacks/config/attraction.xml.h:16 hacks/config/braid.xml.h:6
#: hacks/config/cynosure.xml.h:5 hacks/config/drift.xml.h:8
#: hacks/config/euler2d.xml.h:6 hacks/config/galaxy.xml.h:5
#: hacks/config/juggle.xml.h:5 hacks/config/laser.xml.h:5
#: hacks/config/menger.xml.h:4 hacks/config/munch.xml.h:4
#: hacks/config/nerverot.xml.h:13 hacks/config/petri.xml.h:9
#: hacks/config/polyominoes.xml.h:4 hacks/config/rotor.xml.h:5
#: hacks/config/shadebobs.xml.h:4 hacks/config/sierpinski3d.xml.h:3
#: hacks/config/spheremonics.xml.h:7 hacks/config/wander.xml.h:10
#: hacks/config/whirlwindwarp.xml.h:3
msgid "Long"
msgstr "ΠΠΎΠ»Π³ΠΎ"
#: hacks/config/attraction.xml.h:17 hacks/config/ccurve.xml.h:10
#: hacks/config/cubenetic.xml.h:12 hacks/config/euler2d.xml.h:7
#: hacks/config/flame.xml.h:10 hacks/config/goop.xml.h:7
#: hacks/config/hopalong.xml.h:14 hacks/config/hyperball.xml.h:6
#: hacks/config/hypercube.xml.h:5 hacks/config/interference.xml.h:9
#: hacks/config/kumppa.xml.h:6 hacks/config/nerverot.xml.h:14
#: hacks/config/petri.xml.h:10 hacks/config/pyro.xml.h:7
#: hacks/config/qix.xml.h:13 hacks/config/speedmine.xml.h:6
#: hacks/config/spheremonics.xml.h:8 hacks/config/spiral.xml.h:5
#: hacks/config/squiral.xml.h:8 hacks/config/strange.xml.h:4
#: hacks/config/superquadrics.xml.h:5 hacks/config/t3d.xml.h:8
#: hacks/config/twang.xml.h:7 hacks/config/wander.xml.h:11
msgid "Low"
msgstr "ΠΠΈΡΠΊΠΎ"
#: hacks/config/attraction.xml.h:20
#, fuzzy
msgid "Orbital Mode"
msgstr "Π Π΅ΠΆΠΈΠΌ Π½Π° ΠΊΡΡΠΆΠ΅ΡΠ΅"
#: hacks/config/attraction.xml.h:21
msgid "Outward"
msgstr "ΠΠ°Π½Π°Π΄Π²ΠΎΡ"
#: hacks/config/attraction.xml.h:22
msgid "Polygons"
msgstr "ΠΠΎΠ»ΠΈΠ³ΠΎΠ½ΠΈ"
#: hacks/config/attraction.xml.h:23 hacks/config/spotlight.xml.h:3
msgid "Radius"
msgstr "Π Π°Π΄ΠΈΡΡ"
#: hacks/config/attraction.xml.h:24
msgid "Repulsion Threshold"
msgstr "ΠΡΠ°Π³ Π½Π° ΠΎΠ΄Π±ΠΈΠ²Π°ΡΠ΅"
#: hacks/config/attraction.xml.h:25 hacks/config/braid.xml.h:10
#: hacks/config/cynosure.xml.h:8 hacks/config/drift.xml.h:11
#: hacks/config/euler2d.xml.h:12 hacks/config/galaxy.xml.h:8
#: hacks/config/laser.xml.h:9 hacks/config/menger.xml.h:14
#: hacks/config/munch.xml.h:6 hacks/config/nerverot.xml.h:19
#: hacks/config/petri.xml.h:22 hacks/config/polyominoes.xml.h:9
#: hacks/config/rotor.xml.h:9 hacks/config/shadebobs.xml.h:8
#: hacks/config/sierpinski3d.xml.h:5 hacks/config/spheremonics.xml.h:17
#: hacks/config/wander.xml.h:12 hacks/config/whirlwindwarp.xml.h:6
msgid "Short"
msgstr "ΠΡΠ°ΡΠΊΠΎ"
#: hacks/config/attraction.xml.h:29
msgid "Splines"
msgstr "Π‘ΠΏΠ»Π°ΡΠ½ΠΎΠ²ΠΈ"
#: hacks/config/attraction.xml.h:30
msgid "Tails"
msgstr "Π’ΡΠ°Π³ΠΈ"
#: hacks/config/attraction.xml.h:31 hacks/config/euler2d.xml.h:16
#: hacks/config/juggle.xml.h:9
msgid "Trail Length"
msgstr "ΠΠΎΠ»ΠΆΠΈΠ½Π° Π½Π° ΡΡΠ°Π³Π°ΡΠ°"
#: hacks/config/blaster.xml.h:1
msgid "Blaster"
msgstr "ΠΠ°ΠΏΠ°Π΄"
#: hacks/config/blaster.xml.h:2
#, fuzzy
msgid ""
"Draws a simulation of flying space-combat robots (cleverly disguised as colored "
"circles) doing battle in front of a moving star field. Written by Jonathan Lin."
msgstr ""
"Π¦ΡΡΠ° ΡΠΈΠΌΡΠ»Π°ΡΠΈΡΠ° Π½Π° Π»Π΅ΡΠ΅ΡΠΊΠΈ Π²ΡΠ΅Π»Π΅Π½ΡΠΊΠΈ Π±ΠΎΡΠ±Π΅Π½ΠΈ ΡΠΎΠ±ΠΎΡΠΈ (Π»ΡΠΊΠ°Π²ΠΎ ΠΌΠ°ΡΠΊΠΈΡΠ°Π½ΠΈ ΠΊΠ°ΠΊΠΎ "
"ΠΎΠ±ΠΎΠ΅Π½ΠΈ ΠΊΡΡΠ³ΠΎΠ²ΠΈ) ΠΊΠΎΠΈ Π²ΠΎΡΡΠ²Π°Π°Ρ ΠΏΡΠ΅Π΄ ΠΏΠΎΠ΄Π²ΠΈΠΆΠ½ΠΎ ΡΠ²Π΅Π·Π΄Π΅Π½ΠΎ ΠΏΠΎΠ»Π΅. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Jonathan "
"Lin."
#: hacks/config/blaster.xml.h:4 hacks/config/bouboule.xml.h:4
#: hacks/config/coral.xml.h:8 hacks/config/cubenetic.xml.h:9
#: hacks/config/euler2d.xml.h:4 hacks/config/flame.xml.h:7
#: hacks/config/fluidballs.xml.h:4 hacks/config/kaleidescope.xml.h:3
#: hacks/config/lisa.xml.h:3 hacks/config/pedal.xml.h:4
#: hacks/config/petri.xml.h:7 hacks/config/qix.xml.h:8
#: hacks/config/thornbird.xml.h:3 hacks/config/whirlwindwarp.xml.h:1
#: hacks/config/xfishtank.xml.h:4
msgid "Few"
msgstr "ΠΠ°Π»ΠΊΡ"
#: hacks/config/blaster.xml.h:5 hacks/config/penetrate.xml.h:4
msgid "Lasers"
msgstr "ΠΠ°ΡΠ΅ΡΠΈ"
#: hacks/config/blaster.xml.h:7
msgid "Robots"
msgstr "Π ΠΎΠ±ΠΎΡΠΈ"
#: hacks/config/blaster.xml.h:10
msgid "Stars"
msgstr "Π
Π²Π΅Π·Π΄ΠΈ"
#: hacks/config/blitspin.xml.h:1
msgid "90Β° Rotation Speed"
msgstr "ΠΡΠ·ΠΈΠ½Π° Π½Π° ΡΠΎΡΠ°ΡΠΈΡΠ° Π·Π° 90Β°"
#: hacks/config/blitspin.xml.h:2
msgid "Bitmap to rotate"
msgstr "ΠΠΈΡΠΌΠ°ΠΏΠ° Π·Π° ΡΠΎΡΠΈΡΠ°ΡΠ΅"
#: hacks/config/blitspin.xml.h:3
msgid "BlitSpin"
msgstr "Π ΠΎΡΠΈΡΠ°ΡΠ΅ Π±ΠΈΡΠΌΠ°ΠΏΠΈ"
#: hacks/config/blitspin.xml.h:5
msgid "Fuzzy Rotation Speed"
msgstr "ΠΡΠ·ΠΈΠ½Π° Π½Π° ΡΠΎΡΠ°ΡΠΈΡΠ° Π½Π° Π·Π°ΠΌΠ°ΡΡΠ²Π°ΡΠ΅"
#: hacks/config/blitspin.xml.h:6
msgid "Grab Screen"
msgstr ""
"ΠΠ΅ΠΌΠΈ ΡΠ»ΠΈΠΊΠ°\n"
"ΠΎΠ΄ Π΅ΠΊΡΠ°Π½ΠΎΡ"
#: hacks/config/blitspin.xml.h:8
msgid ""
"The ``blitspin'' hack repeatedly rotates a bitmap by 90 degrees by using "
"logical operations: the bitmap is divided into quadrants, and the quadrants are "
"shifted clockwise. Then the same thing is done again with progressively smaller "
"quadrants, except that all sub-quadrants of a given size are rotated in "
"parallel. Written by Jamie Zawinski based on some cool SmallTalk code seen in "
"in Byte Magazine in 1981. As you watch it, the image appears to dissolve into "
"static and then reconstitute itself, but rotated. You can provide the image to "
"use, as an XBM or XPM file, or tell it to grab a screen image and rotate that."
msgstr ""
"Π₯Π°ΠΊΠΎΡ βΠ ΠΎΡΠΈΡΠ°ΡΠ΅ Π±ΠΈΡΠΌΠ°ΠΏΠΈβ ΡΠΎΡΠΈΡΠ° ΡΠΎ ΠΏΠΎΠ²ΡΠΎΡΡΠ²Π°ΡΠ΅ Π±ΠΈΡΠΌΠ°ΠΏΠ° Π·Π° 90 ΡΡΠ΅ΠΏΠ΅Π½ΠΈ, ΡΠΎ "
"ΠΊΠΎΡΠΈΡΡΠ΅ΡΠ΅ Π½Π° Π»ΠΎΠ³ΠΈΡΠΊΠΈ ΠΎΠΏΠ΅ΡΠ°ΡΠΈΠΈ: Π±ΠΈΡΠΌΠ°ΠΏΠ°ΡΠ° ΡΠ΅ Π΄Π΅Π»ΠΈ Π½Π° ΠΊΠ²Π°Π΄ΡΠ°Π½ΡΠΈ, Π° ΠΊΠ²Π°Π΄ΡΠ°Π½ΡΠΈΡΠ΅ ΡΠ΅ "
"ΠΏΠΎΠΌΠ΅ΡΡΡΠ²Π°Π°Ρ Π²ΠΎ Π½Π°ΡΠΎΠΊΠ° Π½Π° ΡΡΡΠ΅Π»ΠΊΠΈΡΠ΅ Π½Π° ΡΠ°ΡΠΎΠ²Π½ΠΈΠΊΠΎΡ. ΠΠΎΡΠΎΠ° ΠΈΡΡΠΎΡΠΎ ΠΏΠΎΠ²ΡΠΎΡΠ½ΠΎ ΡΠ΅ "
"ΠΏΡΠ°Π²ΠΈ ΡΠΎ Π΄ΠΎΠ±ΠΈΠ΅Π½ΠΈΡΠ΅ ΠΏΠΎΠΌΠ°Π»ΠΈ ΠΊΠ²Π°Π΄ΡΠ°Π½ΡΠΈ, ΠΎΡΠ²Π΅Π½ ΡΡΠΎ ΡΠΈΡΠ΅ ΠΏΠΎΡΠΊΠ²Π°Π΄ΡΠ°Π½ΡΠΈ ΡΠΎ Π΄Π°Π΄Π΅Π½Π° "
"Π³ΠΎΠ»Π΅ΠΌΠΈΠ½Π° ΡΠ΅ ΡΠΎΡΠΈΡΠ°Π°Ρ ΠΏΠ°ΡΠ°Π»Π΅Π»Π½ΠΎ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Jamie Zawinski Π±Π°Π·ΠΈΡΠ°Π½ΠΎ Π²ΡΠ· ΠΎΠ΄Π»ΠΈΡΠ΅Π½ "
"ΠΊΠΎΠ΄ Π²ΠΎ SmallTalk Π²ΠΈΠ΄Π΅Π½ Π²ΠΎ Byte Magazine Π²ΠΎ 1981. ΠΠΎΠ΄Π΅ΠΊΠ° Π³ΠΎ Π³Π»Π΅Π΄Π°ΡΠ΅, ΡΠ»ΠΈΠΊΠ°ΡΠ° "
"ΠΈΠ·Π³Π»Π΅Π΄Π° ΠΊΠ°ΠΊΠΎ Π΄Π° ΡΠ΅ ΡΠ°Π·Π»ΠΎΠΆΡΠ²Π° Π²ΠΎ ΡΡΠΌ ΠΈ ΠΏΠΎΡΠΎΠ° ΠΏΠΎΠ²ΡΠΎΡΠ½ΠΎ ΡΠ΅ ΡΠΎΡΡΠ°Π²ΡΠ²Π°, Π½ΠΎ ΡΠΎΡΠΈΡΠ°Π½Π°. "
"ΠΠΎΠΆΠ΅ Π΄Π° ΡΠ° Π·Π°Π΄Π°Π΄Π΅ΡΠ΅ ΡΠ»ΠΈΠΊΠ° Π·Π° ΠΊΠΎΡΠΈΡΡΠ΅ΡΠ΅, ΠΊΠ°ΠΊΠΎ XBM ΠΈΠ»ΠΈ XPM-Π΄Π°ΡΠΎΡΠ΅ΠΊΠ°, ΠΈΠ»ΠΈ Π΄Π° ΡΠ° "
"Π·Π΅ΠΌΠ΅ΡΠ΅ ΡΠ»ΠΈΠΊΠ°ΡΠ° ΠΎΠ΄ Π΅ΠΊΡΠ°Π½ΠΎΡ ΠΈ ΡΠ°Π° Π΄Π° ΡΠ΅ ΡΠΎΡΠΈΡΠ°."
#: hacks/config/bouboule.xml.h:1
msgid "Bouboule"
msgstr "ΠΠ°ΠΌΡΠ΅ΡΡΠΎ"
#: hacks/config/bouboule.xml.h:2 hacks/config/rocks.xml.h:3
msgid "Do Red/Blue 3D seperation"
msgstr "ΠΡΠ°Π²ΠΈ 3Π-ΡΠ°Π·Π»ΠΎΠΆΡΠ²Π°ΡΠ΅ Π½Π° ΡΡΠ²Π΅Π½Π°/ΡΠΈΠ½Π°"
#: hacks/config/bouboule.xml.h:7
msgid "Number of Spots"
msgstr "ΠΡΠΎΡ Π½Π° Π΄Π°ΠΌΠΊΠΈ"
#: hacks/config/bouboule.xml.h:10
msgid ""
"This draws what looks like a spinning, deforming baloon with varying-sized "
"spots painted on its invisible surface. Written by Jeremie Petit."
msgstr ""
"ΠΠ²Π° ΡΡΡΠ° Π½Π΅ΡΡΠΎ ΡΡΠΎ ΠΈΠ·Π³Π»Π΅Π΄Π° ΠΊΠ°ΠΊΠΎ Π²ΡΡΠ»ΠΈΠ², Π΄Π΅ΡΠΎΡΠΌΠΈΡΠ°Π½ Π±Π°Π»ΠΎΠ½ ΡΠΎ Π΄Π°ΠΌΠΊΠΈ ΡΠΎ ΠΏΡΠΎΠΌΠ΅Π½Π»ΠΈΠ²Π° "
"Π³ΠΎΠ»Π΅ΠΌΠΈΠ½Π°, Π½Π°ΡΠ»ΠΈΠΊΠ°Π½ΠΈ Π½Π° Π½Π°Π²ΠΈΠ΄Π»ΠΈΠ²Π° ΠΏΠΎΠ²ΡΡΠΈΠ½Π°. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Jeremie Petit."
#: hacks/config/boxed.xml.h:1 hacks/config/gears.xml.h:1
#: hacks/config/gflux.xml.h:1 hacks/config/pyro.xml.h:1
#: hacks/config/rd-bomb.xml.h:6 hacks/config/rocks.xml.h:1
#: hacks/config/starwars.xml.h:1 hacks/config/xfishtank.xml.h:1
msgid "Animation Speed"
msgstr "ΠΡΠ·ΠΈΠ½Π° Π½Π° Π°Π½ΠΈΠΌΠ°ΡΠΈΡΠ°"
#: hacks/config/boxed.xml.h:2
msgid "Boxed"
msgstr "Π‘ΠΏΠ°ΠΊΡΠ²Π°Π½ΠΎ"
#: hacks/config/boxed.xml.h:3
msgid ""
"Draws a box full of 3D bouncing balls that explode. Written by Sander van "
"Grieken."
msgstr ""
"Π¦ΡΡΠ° ΠΊΡΡΠΈΡΠ° ΠΏΠΎΠ»Π½Π° ΡΠΎ ΡΡΠΎΠ΄ΠΈΠΌΠ΅Π½Π·ΠΈΠΎΠ½Π°Π»Π½ΠΈ ΡΠΎΠΏΡΠΈΡΠ° ΡΡΠΎ ΡΠΊΠΎΠΊΠ°Π°Ρ ΠΈ Π΅ΠΊΡΠΏΠ»ΠΎΠ΄ΠΈΡΠ°Π°Ρ. "
"ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Sander van Grieken."
#: hacks/config/braid.xml.h:1
msgid "Braid"
msgstr "Π¨ΠΈΡΠΈΡ"
#: hacks/config/braid.xml.h:2
msgid ""
"Draws random color-cycling inter-braided concentric circles. Written by John "
"Neil."
msgstr ""
"Π¦ΡΡΠ° ΠΏΡΠΎΠΈΠ·Π²ΠΎΠ»Π½ΠΎ ΠΈΡΠΏΡΠ΅ΠΏΠ»Π΅ΡΠ΅Π½ΠΈ ΠΊΠΎΠ½ΡΠ΅Π½ΡΡΠΈΡΠ½ΠΈ ΠΊΡΡΠ³ΠΎΠ²ΠΈ Π²ΠΎ Π±ΠΎΠΈ ΡΡΠΎ ΠΊΡΡΠΆΠ°Ρ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ "
"ΠΎΠ΄ John Neil."
#: hacks/config/braid.xml.h:3 hacks/config/bsod.xml.h:8
#: hacks/config/ccurve.xml.h:7 hacks/config/coral.xml.h:6
#: hacks/config/cynosure.xml.h:3 hacks/config/deco.xml.h:4
#: hacks/config/drift.xml.h:2 hacks/config/epicycle.xml.h:3
#: hacks/config/euler2d.xml.h:1 hacks/config/flame.xml.h:5
#: hacks/config/galaxy.xml.h:2 hacks/config/glsnake.xml.h:4
#: hacks/config/helix.xml.h:3 hacks/config/hopalong.xml.h:2
#: hacks/config/imsmap.xml.h:6 hacks/config/laser.xml.h:2
#: hacks/config/menger.xml.h:2 hacks/config/moire.xml.h:3
#: hacks/config/molecule.xml.h:9 hacks/config/munch.xml.h:2
#: hacks/config/nerverot.xml.h:8 hacks/config/pedal.xml.h:3
#: hacks/config/penrose.xml.h:5 hacks/config/polyominoes.xml.h:1
#: hacks/config/rorschach.xml.h:3 hacks/config/rotzoomer.xml.h:5
#: hacks/config/shadebobs.xml.h:2 hacks/config/sierpinski3d.xml.h:1
#: hacks/config/spheremonics.xml.h:4 hacks/config/starfish.xml.h:2
#: hacks/config/vidwhacker.xml.h:3 hacks/config/wander.xml.h:7
#: hacks/config/xspirograph.xml.h:3
msgid "Duration"
msgstr "Π’ΡΠ°Π΅ΡΠ΅"
#: hacks/config/braid.xml.h:5 hacks/config/epicycle.xml.h:7
#: hacks/config/nerverot.xml.h:12
msgid "Line Thickness"
msgstr "ΠΠ΅Π±Π΅Π»ΠΈΠ½Π° Π½Π° Π»ΠΈΠ½ΠΈΡΠ°ΡΠ°"
#: hacks/config/braid.xml.h:8
msgid "Max Rings"
msgstr "ΠΠ°ΠΊΡ. ΠΏΡΡΡΠ΅Π½ΠΈ"
#: hacks/config/bsod.xml.h:1 hacks/config/molecule.xml.h:1
#: hacks/config/vidwhacker.xml.h:1 hacks/config/webcollage.xml.h:1
msgid "2 minutes"
msgstr "2 ΠΌΠΈΠ½ΡΡΠΈ"
#: hacks/config/bsod.xml.h:2 hacks/config/molecule.xml.h:2
msgid "5 seconds"
msgstr "5 ΡΠ΅ΠΊΡΠ½Π΄ΠΈ"
#: hacks/config/bsod.xml.h:3
msgid "AmigaDOS"
msgstr "AmigaDOS"
#: hacks/config/bsod.xml.h:4
msgid "Atari"
msgstr "Atari"
#: hacks/config/bsod.xml.h:5
msgid "BSD"
msgstr "BSD"
#: hacks/config/bsod.xml.h:6
msgid "BSOD"
msgstr "BSOD"
#: hacks/config/bsod.xml.h:7
msgid ""
"BSOD stands for ``Blue Screen of Death.'' The finest in personal computer "
"emulation, this hack simulates popular screen savers from a number of less "
"robust operating systems. Written by Jamie Zawinski."
msgstr ""
"BSOD ΠΎΠ·Π½Π°ΡΡΠ²Π° βBlue Screen of Deathβ (Π‘ΠΈΠ½ Π΅ΠΊΡΠ°Π½ Π½Π° ΡΠΌΡΡΡΠ°). ΠΠ°ΡΠ΄ΠΎΠ±ΡΠΎΡΠΎ ΠΎΠ΄ "
"Π΅ΠΌΡΠ»Π°ΡΠΈΠΈΡΠ΅ Π½Π° ΠΏΠ΅ΡΡΠΎΠ½Π°Π»Π½ΠΈΡΠ΅ ΠΊΠΎΠΌΠΏΡΡΡΠ΅ΡΠΈ, ΠΎΠ²ΠΎΡ Ρ
Π°ΠΊ ΡΠΈΠΌΡΠ»ΠΈΡΠ° ΠΏΠΎΠΏΡΠ»Π°ΡΠ½ΠΈ Π΅ΠΊΡΠ°Π½ΡΠΊΠΈ "
"ΡΡΠ²Π°ΡΠΈ ΠΎΠ΄ Π±ΡΠΎΡΠ½ΠΈ, ΠΏΠΎΠΌΠ°Π»ΠΊΡ ΡΠΎΠ±ΡΡΠ½ΠΈ ΠΎΠΏΠ΅ΡΠ°ΡΠΈΠ²Π½ΠΈ ΡΠΈΡΡΠ΅ΠΌΠΈ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Jamie "
"Zawinski."
#: hacks/config/bsod.xml.h:9
msgid "Mac Bomb"
msgstr "Mac Bomb"
#: hacks/config/bsod.xml.h:10
msgid "MacsBug"
msgstr "MacsBug"
#: hacks/config/bsod.xml.h:11
msgid "NCD X Terminal"
msgstr "NCD X Terminal"
#: hacks/config/bsod.xml.h:12
msgid "SCO"
msgstr "SCO"
#: hacks/config/bsod.xml.h:13
msgid "Sad Mac"
msgstr "Sad Mac"
#: hacks/config/bsod.xml.h:14
msgid "Solaris"
msgstr "Solaris"
#: hacks/config/bsod.xml.h:15
msgid "Sparc Linux"
msgstr "Sparc Linux"
#: hacks/config/bsod.xml.h:16
msgid "Windows"
msgstr "Windows"
#: hacks/config/bsod.xml.h:17
msgid "Windows 2000"
msgstr "Windows 2000"
#: hacks/config/bsod.xml.h:18
msgid "Windows NT"
msgstr "Windows NT"
#: hacks/config/bubble3d.xml.h:1
msgid "Bubble3D"
msgstr "ΠΠ΅ΡΡΡΠΈΡΠ° 3Π"
#: hacks/config/bubble3d.xml.h:2
msgid ""
"Draws a stream of rising, undulating 3D bubbles, rising toward the top of the "
"screen, with nice specular reflections. Written by Richard Jones."
msgstr ""
"Π¦ΡΡΠ° ΠΏΠΎΡΠΎΠΊ ΠΎΠ΄ Π»Π΅Π»Π΅Π°Π²ΠΈ 3Π-ΠΌΠ΅ΡΡΡΠΈΡΠ° ΡΡΠΎ ΡΠ΅ ΠΈΠ·Π΄ΠΈΠ³Π°Π°Ρ ΠΊΠΎΠ½ Π²ΡΠ²ΠΎΡ Π½Π° Π΅ΠΊΡΠ°Π½ΠΎΡ, ΡΠΎ "
"ΠΏΡΠΈΡΠ°ΡΠ½ΠΈ ΠΎΡΡΡΠ°ΠΈ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Richard Jones."
#: hacks/config/bubbles.xml.h:1 hacks/config/xfishtank.xml.h:2
msgid "Bubbles"
msgstr "ΠΠ΅ΡΡΡΠΈΡΠ°"
#: hacks/config/bubbles.xml.h:2
msgid "Bubbles Fall"
msgstr "ΠΠΎΠΆΠ΄ ΠΎΠ΄ ΠΌΠ΅ΡΡΡΠΈΡΠ°"
#: hacks/config/bubbles.xml.h:3
msgid "Bubbles Float"
msgstr "ΠΠ΅Π±Π΄Π΅ΡΠ΅ Π½Π° ΠΌΠ΅ΡΡΡΠΈΡΠ°"
#: hacks/config/bubbles.xml.h:4
msgid "Bubbles Rise"
msgstr "ΠΠ·Π΄ΠΈΠ³Π°ΡΠ΅ Π½Π° ΠΌΠ΅ΡΡΡΠΈΡΠ°"
#: hacks/config/bubbles.xml.h:5
msgid "Bubbles exist in three dimensions"
msgstr "ΠΠ΅ΡΡΡΠΈΡΠ°ΡΠ° ΡΠ΅ Π²ΠΎ ΡΡΠΈΡΠ΅ Π΄ΠΈΠΌΠ΅Π½Π·ΠΈΠΈ"
#: hacks/config/bubbles.xml.h:6
msgid "Don't hide bubbles when they pop"
msgstr "ΠΠ΅ Π³ΠΈ ΠΊΡΠΈΡ ΠΌΠ΅ΡΡΡΠΈΡΠ°ΡΠ° ΠΊΠΎΠ³Π° ΡΠ΅ ΠΏΡΠΊΠ½Π°Ρ"
#: hacks/config/bubbles.xml.h:7
msgid "Draw circles instead of pixmap bubbles"
msgstr "Π¦ΡΡΠ°Ρ ΠΊΡΡΠ³ΠΎΠ²ΠΈ Π½Π°ΠΌΠ΅ΡΡΠΎ ΠΌΠ΅ΡΡΡΠΈΡΠ°"
#: hacks/config/bubbles.xml.h:9
msgid "Leave Trails"
msgstr "ΠΡΡΠ°Π²Π°Ρ ΡΡΠ°Π³ΠΈ"
#: hacks/config/bubbles.xml.h:12
msgid ""
"This simulates the kind of bubble formation that happens when water boils:small "
"bubbles appear, and as they get closer to each other, they combine to form "
"larger bubbles, which eventually pop. Written by James Macnicol."
msgstr ""
"ΠΠ²Π° ΡΠΈΠΌΡΠ»ΠΈΡΠ° Π²ΠΈΠ΄ Π½Π° Π³ΡΡΠΏΠΈ ΠΌΠ΅ΡΡΡΠΈΡΠ° ΡΡΠΎ ΡΠ΅ ΡΠ°Π²ΡΠ²Π°Π°Ρ ΠΏΡΠΈ Π²ΡΠΈΠ΅ΡΠ΅ Π½Π° Π²ΠΎΠ΄Π°: ΡΠ΅ "
"ΠΏΠΎΡΠ°Π²ΡΠ²Π°Π°Ρ ΠΌΠ°Π»ΠΈ ΠΌΠ΅ΡΡΡΠΈΡΠ°, ΠΈ ΠΊΠ°ΠΊΠΎ ΡΡΠΎ ΡΠ΅ ΠΏΡΠΈΠ±Π»ΠΈΠΆΡΠ²Π°Π°Ρ Π΅Π΄Π½ΠΈ Π΄ΠΎ Π΄ΡΡΠ³ΠΈ, ΡΠ΅ "
"ΡΠΏΠΎΡΡΠ²Π°Π°Ρ ΠΈ ΡΠΎΠ·Π΄Π°Π²Π°Π°Ρ ΠΏΠΎΠ³ΠΎΠ»Π΅ΠΌΠΈ ΠΌΠ΅ΡΡΠΈ, ΠΊΠΎΠΈ ΠΏΠΎΠ΄ΠΎΡΠ½Π° ΠΏΡΠΊΠ°Π°Ρ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ James "
"Macnicol."
#: hacks/config/bumps.xml.h:1
#, fuzzy
msgid ""
"A bit like `Spotlight', except that instead of merely exposing part of your "
"desktop, it creates a bump map from it. Basically, it 3D-izes a roaming section "
"of your desktop, based on color intensity. Written by Shane Smit."
msgstr ""
"Π‘Π»ΠΈΡΠ½ΠΎ Π½Π° βΠ Π΅ΡΠ»Π΅ΠΊΡΠΎΡβ, Π½ΠΎ Π½Π°ΠΌΠ΅ΡΡΠΎ ΠΏΡΠΈΠΊΠ°ΠΆΡΠ²Π°ΡΠ΅ Π΄Π΅Π» ΠΎΠ΄ Π²Π°ΡΠ°ΡΠ° ΡΠ°Π±ΠΎΡΠ½Π° ΠΏΠΎΠ²ΡΡΠΈΠ½Π°, "
"ΠΊΡΠ΅ΠΈΡΠ° Π½Π΅ΡΠ°ΠΌΠ½Π° ΠΌΠ°ΠΏΠ° ΠΎΠ΄ Π½Π΅Π°. ΠΠΎ ΠΎΡΠ½ΠΎΠ²Π°, Π³ΠΎ ΠΏΡΠ΅ΡΠ²ΠΎΡΠ° Π²ΠΎ 3Π ΡΠΊΠΈΡΠ°ΡΠΊΠΈΠΎΡ Π΄Π΅Π» ΠΎΠ΄ "
"Π²Π°ΡΠ°ΡΠ° ΡΠ°Π±ΠΎΡΠ½Π° ΠΏΠΎΠ²ΡΡΠΈΠ½Π°, ΡΠΏΠΎΡΠ΅Π΄ ΠΈΠ½ΡΠ΅Π½Π·ΠΈΡΠ΅ΡΠΎΡ Π½Π° Π±ΠΎΡΠ°ΡΠ°. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Shane Smit."
#: hacks/config/bumps.xml.h:2
msgid "Bumps"
msgstr "ΠΠ΅ΡΠ°ΠΌΠ½ΠΈΠ½ΠΈ"
#: hacks/config/cage.xml.h:1
msgid "Cage"
msgstr "ΠΠ°ΡΠ΅Π·"
#: hacks/config/cage.xml.h:7
msgid ""
"This draws Escher's ``Impossible Cage,'' a 3d analog of a moebius strip, and "
"rotates it in three dimensions. Written by Marcelo Vianna."
msgstr ""
"ΠΠ²Π° Π³ΠΎ ΡΡΡΠ° ΠΡΠ΅ΡΠΎΠ²ΠΈΠΎΡ βΠΠ΅Π²ΠΎΠ·ΠΌΠΎΠΆΠ΅Π½ ΠΊΠ°ΡΠ΅Π·β, 3Π΄-Π°Π½Π°Π»ΠΎΠ³ΠΈΡΠ° Π½Π° ΠΌΠΎΠ΅Π±ΠΈΡΡΠΎΠ²Π° Π»Π΅Π½ΡΠ° ΡΡΠΎ "
"ΡΠΎΡΠΈΡΠ° Π²ΠΎ ΡΡΠΈΡΠ΅ Π΄ΠΈΠΌΠ΅Π½Π·ΠΈΠΈ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Marcelo Vianna."
#: hacks/config/ccurve.xml.h:1
msgid "0 seconds"
msgstr "0 ΡΠ΅ΠΊΡΠ½Π΄ΠΈ"
#: hacks/config/ccurve.xml.h:2 hacks/config/epicycle.xml.h:1
msgid "1 minute"
msgstr "1 ΠΌΠΈΠ½ΡΡΠ°"
#: hacks/config/ccurve.xml.h:3 hacks/config/epicycle.xml.h:2
msgid "1 second"
msgstr "1 ΡΠ΅ΠΊΡΠ½Π΄Π°"
#: hacks/config/ccurve.xml.h:4
msgid "C Curve"
msgstr "C-ΠΊΡΠΈΠ²Π°"
#: hacks/config/ccurve.xml.h:5
msgid "Delay"
msgstr "ΠΠΎΡΠ½Π΅ΡΠ΅"
#: hacks/config/ccurve.xml.h:6 hacks/config/coral.xml.h:5
#: hacks/config/imsmap.xml.h:5 hacks/config/kumppa.xml.h:1
#: hacks/config/qix.xml.h:6 hacks/config/squiral.xml.h:2
#: hacks/config/wander.xml.h:4
msgid "Density"
msgstr "ΠΡΡΡΠΈΠ½Π°"
#: hacks/config/ccurve.xml.h:8
msgid ""
"Generates self-similar linear fractals, including the classic ``C Curve.'' "
"Written by Rick Campbell."
msgstr ""
"ΠΠ΅Π½Π΅ΡΠΈΡΠ° ΡΠ°ΠΌΠΎΡΠ»ΠΈΡΠ½ΠΈ Π»ΠΈΠ½Π΅Π°ΡΠ½ΠΈ ΡΡΠ°ΠΊΡΠ°Π»ΠΈ, Π²ΠΊΠ»ΡΡΠΈΡΠ΅Π»Π½ΠΎ ΠΈ ΠΊΠ»Π°ΡΠΈΡΠ½Π°ΡΠ° βC-ΠΊΡΠΈΠ²Π°β. "
"ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Rick Campbell."
#: hacks/config/circuit.xml.h:1
msgid "Animates a number of 3D electronic components. Written by Ben Buxton."
msgstr ""
"ΠΡΠΈΠ΄Π²ΠΈΠΆΡΠ²Π° ΠΎΠ΄ΡΠ΅Π΄Π΅Π½ Π±ΡΠΎΡ 3Π Π΅Π»Π΅ΠΊΡΡΠΎΠ½ΡΠΊΠΈ ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½ΡΠΈ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Ben Buxton."
#: hacks/config/circuit.xml.h:2
msgid "Circuit"
msgstr "ΠΠ»Π΅ΠΊΡΡΠΎΠ½ΡΠΊΠΈ ΠΊΠΎΠ»Π°"
#: hacks/config/circuit.xml.h:3 hacks/config/gflux.xml.h:4
#: hacks/config/pulsar.xml.h:2
msgid "Directional Lighting"
msgstr "ΠΠ°ΡΠΎΡΠ΅Π½ΠΎ ΠΎΡΠ²Π΅ΡΠ»ΡΠ²Π°ΡΠ΅"
#: hacks/config/circuit.xml.h:5
msgid "Flat Coloring"
msgstr "Π Π°ΠΌΠ½ΠΎ ΠΎΠ±ΠΎΡΡΠ²Π°ΡΠ΅"
#: hacks/config/circuit.xml.h:6
msgid "Parts"
msgstr "ΠΠ΅Π»ΠΎΠ²ΠΈ"
#: hacks/config/circuit.xml.h:7 hacks/config/flipscreen3d.xml.h:4
msgid "Rotate"
msgstr "Π ΠΎΡΠΈΡΠ°Ρ"
#: hacks/config/circuit.xml.h:8
msgid "Rotation Speed"
msgstr "ΠΡΠ·ΠΈΠ½Π° Π½Π° ΡΠΎΡΠΈΡΠ°ΡΠ΅"
#: hacks/config/circuit.xml.h:12 hacks/config/dangerball.xml.h:9
#: hacks/config/engine.xml.h:7
msgid "Spin"
msgstr "ΠΡΡΠ΅ΠΆΠ΅Π½ ΠΌΠΎΠΌΠ΅Π½Ρ"
#: hacks/config/compass.xml.h:1
msgid "Compass"
msgstr "ΠΠΎΠΌΠΏΠ°Ρ"
#: hacks/config/compass.xml.h:2 hacks/config/deluxe.xml.h:3
#: hacks/config/interference.xml.h:4 hacks/config/kumppa.xml.h:2
#: hacks/config/nerverot.xml.h:6 hacks/config/pipes.xml.h:4
msgid "Double Buffer"
msgstr "ΠΠ²ΠΎΠ΅Π½ Π±Π°ΡΠ΅Ρ"
#: hacks/config/compass.xml.h:6
msgid ""
"This draws a compass, with all elements spinning about randomly, for that "
"``lost and nauseous'' feeling. Written by Jamie Zawinski."
msgstr ""
"ΠΠ²Π° ΡΡΡΠ° ΠΊΠΎΠΌΠΏΠ°Ρ, ΡΠΎ Π΅Π»Π΅ΠΌΠ΅Π½ΡΠΈ ΡΡΠΎ ΡΠ΅ Π²ΡΡΠ°Ρ ΠΏΡΠΎΠΈΠ·Π²ΠΎΠ»Π½ΠΎ, Π·Π° Π΄Π° ΡΠ΅ Π΄ΠΎΠ±ΠΈΠ΅ ΡΡΠ²ΡΡΠ²ΠΎΡΠΎ "
"Π½Π° βΠΈΠ·Π³ΡΠ±Π΅Π½ΠΎΡΡ ΠΈ Π²ΡΡΠΎΠ³Π»Π°Π²ΠΈΡΠ°β. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Jamie Zawinski."
#: hacks/config/coral.xml.h:1 hacks/config/deco.xml.h:1
#: hacks/config/helix.xml.h:1 hacks/config/imsmap.xml.h:1
#: hacks/config/jigsaw.xml.h:2 hacks/config/moire.xml.h:1
#: hacks/config/pedal.xml.h:1 hacks/config/rorschach.xml.h:1
#: hacks/config/rotzoomer.xml.h:2 hacks/config/wander.xml.h:2
#: hacks/config/xspirograph.xml.h:1
msgid "1 Minute"
msgstr "1 ΠΌΠΈΠ½ΡΡΠ°"
#: hacks/config/coral.xml.h:2 hacks/config/deco.xml.h:2
#: hacks/config/helix.xml.h:2 hacks/config/imsmap.xml.h:2
#: hacks/config/moire.xml.h:2 hacks/config/pedal.xml.h:2
#: hacks/config/penrose.xml.h:1 hacks/config/rorschach.xml.h:2
#: hacks/config/xspirograph.xml.h:2
msgid "1 Second"
msgstr "1 ΡΠ΅ΠΊΡΠ½Π΄Π°"
#: hacks/config/coral.xml.h:3
msgid "Coral"
msgstr "ΠΠΎΡΠ°Π»"
#: hacks/config/coral.xml.h:4 hacks/config/gflux.xml.h:3
#: hacks/config/imsmap.xml.h:4 hacks/config/pyro.xml.h:2
#: hacks/config/qix.xml.h:5 hacks/config/squiral.xml.h:1
#: hacks/config/xearth.xml.h:4
msgid "Dense"
msgstr "ΠΡΡΡΠΈΠ½Π°"
#: hacks/config/coral.xml.h:10 hacks/config/squiral.xml.h:13
msgid "Seeds"
msgstr "Π‘Π΅ΠΌΠΈΡΠ°"
#: hacks/config/coral.xml.h:11
msgid ""
"Simulates coral growth, albeit somewhat slowly. This image doesn't really do it "
"justice. Written by Frederick Roeber."
msgstr ""
"Π‘ΠΈΠΌΡΠ»ΠΈΡΠ° ΡΠ°ΡΡΠ΅ΡΠ΅ Π½Π° ΠΊΠΎΡΠ°Π», Π½ΠΎ Π½Π΅ΡΡΠΎ ΠΏΠΎΡΠΏΠΎΡΠΎ. ΠΠ²Π°Π° ΡΠ»ΠΈΠΊΠ° ΡΠ΅ΠΏΠ°ΠΊ Π½Π΅ Π³ΠΎ ΠΏΠΎΠΊΠ°ΠΆΡΠ²Π° "
"ΡΠ°ΡΡΠ΅ΡΠ΅ΡΠΎ Π²ΠΎ Π²ΠΈΡΡΠΈΠ½ΡΠΊΠ° ΡΠ²Π΅ΡΠ»ΠΈΠ½Π°. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Frederick Roeber."
#: hacks/config/coral.xml.h:13 hacks/config/gflux.xml.h:13
#: hacks/config/imsmap.xml.h:13 hacks/config/pyro.xml.h:14
#: hacks/config/qix.xml.h:21 hacks/config/squiral.xml.h:15
#: hacks/config/xearth.xml.h:24 hacks/config/xmatrix.xml.h:15
msgid "Sparse"
msgstr "Π Π΅ΡΠΊΠΎ"
#: hacks/config/cosmos.xml.h:1
msgid "Cosmos"
msgstr "ΠΠΎΡΠΌΠΎΡ"
#: hacks/config/cosmos.xml.h:2
msgid ""
"Draws fireworks and zooming, fading flares. By Tom Campbell. You can find it at "
"<http://cosmos.dnsalias.net/cosmos/>"
msgstr ""
"Π¦ΡΡΠ° ΠΎΠ³Π½ΠΎΠΌΠ΅ΡΠΈ ΠΈ ΡΠ°ΠΊΠ΅ΡΠΈ ΡΡΠΎ ΠΏΡΠΎΠ»Π΅ΡΡΠ²Π°Π°Ρ ΠΈ ΡΠ΅ Π³ΡΠ±Π°Ρ. ΠΠ΄ Tom Campbell. ΠΠΎΠΆΠ΅ Π΄Π° Π³ΠΎ "
"Π½Π°ΡΠ΄Π΅ΡΠ΅ Π½Π° <http://cosmos.dnsalias.net/cosmos/>"
#: hacks/config/critical.xml.h:1
msgid "Critical"
msgstr "ΠΡΠΈΡΠΈΡΠ½ΠΎ"
#: hacks/config/critical.xml.h:2
msgid ""
"Draws a system of self-organizing lines. It starts out as random squiggles, but "
"after a few iterations, order begins to appear. Written by Martin Pool."
msgstr ""
"Π¦ΡΡΠ° ΡΠΈΡΡΠ΅ΠΌ ΠΎΠ΄ ΡΠ°ΠΌΠΎΡΠ³Π°Π½ΠΈΠ·ΠΈΡΠ°ΡΠΊΠΈ Π»ΠΈΠ½ΠΈΠΈ. ΠΠ°ΠΏΠΎΡΠ½ΡΠ²Π° ΠΊΠ°ΠΊΠΎ ΠΏΡΠΎΠΈΠ·Π²ΠΎΠ»Π½ΠΈ ΡΠΊΡΡΠ°Π½ΠΈΡΠΈ, Π½ΠΎ "
"ΠΏΠΎ Π½Π΅ΠΊΠΎΠ»ΠΊΡ ΠΈΡΠ΅ΡΠ°ΡΠΈΠΈ ΠΏΠΎΡΠ½ΡΠ²Π° Π΄Π° ΡΠ΅ ΠΏΠΎΡΠ°Π²ΡΠ²Π° ΡΠ΅Π΄. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Martin Pool."
#: hacks/config/crystal.xml.h:1
msgid "Center on Screen"
msgstr "Π¦Π΅Π½ΡΡΠΈΡΠ°Ρ Π½Π° Π΅ΠΊΡΠ°Π½ΠΎΡ"
#: hacks/config/crystal.xml.h:2 hacks/config/deluxe.xml.h:1
#: hacks/config/fadeplot.xml.h:1 hacks/config/flow.xml.h:3
#: hacks/config/galaxy.xml.h:1 hacks/config/glforestfire.xml.h:1
#: hacks/config/grav.xml.h:1 hacks/config/julia.xml.h:1
#: hacks/config/laser.xml.h:1 hacks/config/lisa.xml.h:1
#: hacks/config/lissie.xml.h:2 hacks/config/morph3d.xml.h:2
#: hacks/config/mountain.xml.h:1 hacks/config/qix.xml.h:4
#: hacks/config/rocks.xml.h:2 hacks/config/rotor.xml.h:2
#: hacks/config/rubik.xml.h:1 hacks/config/shadebobs.xml.h:1
#: hacks/config/sierpinski.xml.h:1 hacks/config/slip.xml.h:1
#: hacks/config/spiral.xml.h:1 hacks/config/sproingies.xml.h:1
#: hacks/config/superquadrics.xml.h:1 hacks/config/swirl.xml.h:1
#: hacks/config/worm.xml.h:2
msgid "Count"
msgstr "ΠΡΠΎΡ"
#: hacks/config/crystal.xml.h:3
msgid "Crystal"
msgstr "ΠΡΠΈΡΡΠ°Π»"
#: hacks/config/crystal.xml.h:4
msgid "Draw Cell"
msgstr "Π¦ΡΡΠ°Ρ ΡΠ΅Π»ΠΈΡΠ°"
#: hacks/config/crystal.xml.h:5 hacks/config/spheremonics.xml.h:3
#: hacks/config/xearth.xml.h:6
msgid "Draw Grid"
msgstr "Π¦ΡΡΠ°Ρ ΠΌΡΠ΅ΠΆΠ°"
#: hacks/config/crystal.xml.h:7
msgid "Horizontal Symmetries"
msgstr "Π₯ΠΎΡΠΈΠ·ΠΎΠ½ΡΠ°Π»Π½ΠΈ ΡΠΈΠΌΠ΅ΡΡΠΈΠΈ"
#: hacks/config/crystal.xml.h:9
msgid ""
"Moving polygons, similar to a kaleidescope (more like a kaleidescope than the "
"hack called `kaleid,' actually.) This one by Jouk Jansen."
msgstr ""
"ΠΠΎΠ΄Π²ΠΈΠΆΠ½ΠΈ ΠΏΠΎΠ»ΠΈΠ³ΠΎΠ½ΠΈ, ΡΠ»ΠΈΡΠ½ΠΈ Π½Π° ΠΊΠ°Π»Π΅ΠΈΠ΄ΠΎΡΠΊΠΎΠΏ (ΠΏΠΎΠ²Π΅ΡΠ΅ ΠΊΠ°ΠΊΠΎ ΠΊΠ°Π»Π΅ΠΈΠ΄ΠΎΡΠΊΠΎΠΏ ΠΎΡΠΊΠΎΠ»ΠΊΡ Ρ
Π°ΠΊΠΎΡ "
"Π½Π°ΡΠ΅ΡΠ΅Π½ βkaleidβ). ΠΠ²ΠΎΡ Π΅ ΠΎΠ΄ Jouk Jansen."
#: hacks/config/crystal.xml.h:14
msgid "Vertical Symmetries"
msgstr "ΠΠ΅ΡΡΠΈΠΊΠ°Π»Π½ΠΈ ΡΠΈΠΌΠ΅ΡΡΠΈΠΈ"
#: hacks/config/cubenetic.xml.h:1
msgid "Boxes"
msgstr "ΠΡΡΠΈΠΈ"
#: hacks/config/cubenetic.xml.h:2
msgid "Cubenetic"
msgstr "Π₯ΠΈΠΏΠ΅ΡΠΊΠΎΡΠΊΠΈ"
#: hacks/config/cubenetic.xml.h:3
msgid "Display Solid Colors"
msgstr "ΠΡΠΈΠΊΠ°Π· ΡΠΎ ΡΠΈΡΡΠΈ Π±ΠΎΠΈ"
#: hacks/config/cubenetic.xml.h:4
msgid "Display Surface Patterns"
msgstr "ΠΡΠΈΠΊΠ°Π· ΡΠΎ ΠΏΠΎΠ²ΡΡΠΈΠ½ΡΠΊΠΈ ΡΠ΅ΠΌΠΈ"
#: hacks/config/cubenetic.xml.h:5
msgid "Display Wireframe"
msgstr "ΠΡΠΈΠΊΠ°Π· ΡΠΎ ΠΌΡΠ΅ΠΆΠ΅Π½ ΡΠΊΠ΅Π»Π΅Ρ"
#: hacks/config/cubenetic.xml.h:6 hacks/config/gltext.xml.h:2
#: hacks/config/menger.xml.h:1 hacks/config/molecule.xml.h:4
#: hacks/config/spheremonics.xml.h:1
msgid "Don't Rotate"
msgstr "ΠΠ΅Π· ΡΠΎΡΠ°ΡΠΈΡΠ°"
#: hacks/config/cubenetic.xml.h:7
msgid ""
"Draws a pulsating set of overlapping boxes with ever-chaning blobby patterns "
"undulating across their surfaces. It's sort of a cubist Lavalite. Written by "
"Jamie Zawinski."
msgstr ""
"Π¦ΡΡΠ° ΠΏΡΠ»ΡΠΈΡΠ°ΡΠΊΠΎ ΠΌΠ½ΠΎΠΆΠ΅ΡΡΠ²ΠΎ ΠΏΡΠ΅ΠΊΠ»ΠΎΠΏΡΠ²Π°ΡΠΊΠΈ ΠΊΡΡΠΈΠΈ ΡΠΎ ΠΏΠΎΡΡΠΎΡΠ°Π½ΠΎ ΠΏΡΠΎΠΌΠ΅Π½Π»ΠΈΠ²ΠΈ Π΄Π°ΠΌΡΠ΅ΡΡΠΈ "
"ΡΠ°Π±Π»ΠΎΠ½ΠΈ ΡΡΠΎ ΡΠ΅ Π»Π΅Π»Π΅Π°Ρ ΠΏΡΠ΅ΠΊΡ Π½ΠΈΠ²Π½ΠΈΡΠ΅ ΠΏΠΎΠ²ΡΡΠΈΠ½ΠΈ. ΠΠ΅ΡΡΠΎ ΠΊΠ°ΠΊΠΎ ΠΊΡΠ±ΠΈΡΡΠΈΡΠΊΠ° ΠΠ°Π²Π°-Π»Π°ΠΌΠ±Π°. "
"ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Jamie Zawinski."
#: hacks/config/cubenetic.xml.h:14 hacks/config/gltext.xml.h:5
#: hacks/config/menger.xml.h:7 hacks/config/molecule.xml.h:14
#: hacks/config/spheremonics.xml.h:10
msgid "Rotate around X and Y axes"
msgstr "Π ΠΎΡΠ°ΡΠΈΡΠ° ΠΎΠΊΠΎΠ»Ρ ΠΎΡΠΊΠΈΡΠ΅ X ΠΈ Y"
#: hacks/config/cubenetic.xml.h:15 hacks/config/gltext.xml.h:6
#: hacks/config/menger.xml.h:8 hacks/config/molecule.xml.h:15
#: hacks/config/spheremonics.xml.h:11
msgid "Rotate around X and Z axes"
msgstr "Π ΠΎΡΠ°ΡΠΈΡΠ° ΠΎΠΊΠΎΠ»Ρ ΠΎΡΠΊΠΈΡΠ΅ X ΠΈ Z"
#: hacks/config/cubenetic.xml.h:16 hacks/config/gltext.xml.h:7
#: hacks/config/menger.xml.h:9 hacks/config/molecule.xml.h:16
#: hacks/config/spheremonics.xml.h:12
msgid "Rotate around X axis"
msgstr "Π ΠΎΡΠ°ΡΠΈΡΠ° ΠΎΠΊΠΎΠ»Ρ X-ΠΎΡΠΊΠ°ΡΠ°"
#: hacks/config/cubenetic.xml.h:17 hacks/config/gltext.xml.h:8
#: hacks/config/menger.xml.h:10 hacks/config/molecule.xml.h:17
#: hacks/config/spheremonics.xml.h:13
msgid "Rotate around Y and Z axes"
msgstr "Π ΠΎΡΠ°ΡΠΈΡΠ° ΠΎΠΊΠΎΠ»Ρ ΠΎΡΠΊΠΈΡΠ΅ Y ΠΈ Z"
#: hacks/config/cubenetic.xml.h:18 hacks/config/gltext.xml.h:9
#: hacks/config/menger.xml.h:11 hacks/config/molecule.xml.h:18
#: hacks/config/spheremonics.xml.h:14
msgid "Rotate around Y axis"
msgstr "Π ΠΎΡΠ°ΡΠΈΡΠ° ΠΎΠΊΠΎΠ»Ρ Y-ΠΎΡΠΊΠ°ΡΠ°"
#: hacks/config/cubenetic.xml.h:19 hacks/config/gltext.xml.h:10
#: hacks/config/menger.xml.h:12 hacks/config/molecule.xml.h:19
#: hacks/config/spheremonics.xml.h:15
msgid "Rotate around Z axis"
msgstr "Π ΠΎΡΠ°ΡΠΈΡΠ° ΠΎΠΊΠΎΠ»Ρ Z-ΠΎΡΠΊΠ°ΡΠ°"
#: hacks/config/cubenetic.xml.h:20 hacks/config/gltext.xml.h:11
#: hacks/config/menger.xml.h:13 hacks/config/molecule.xml.h:20
#: hacks/config/spheremonics.xml.h:16
msgid "Rotate around all three axes"
msgstr "Π ΠΎΡΠ°ΡΠΈΡΠ° ΠΎΠΊΠΎΠ»Ρ ΡΠΈΡΠ΅ ΡΡΠΈ ΠΎΡΠΊΠΈ"
#: hacks/config/cubenetic.xml.h:25
msgid "Surface Pattern Complexity"
msgstr "ΠΠΎΠΌΠΏΠ»Π΅ΠΊΡΠ½ΠΎΡΡ Π½Π° ΠΏΠΎΠ²ΡΡΠΈΠ½ΡΠΊΠ°ΡΠ° ΡΠ΅ΠΌΠ°"
#: hacks/config/cubenetic.xml.h:26
msgid "Surface Pattern Overlap"
msgstr "ΠΡΠ΅ΠΊΠ»ΠΎΠΏΡΠ²Π°ΡΠ΅ Π½Π° ΠΏΠΎΠ²ΡΡΠΈΠ½ΡΠΊΠ°ΡΠ° ΡΠ΅ΠΌΠ°"
#: hacks/config/cubenetic.xml.h:27
msgid "Surface Pattern Speed"
msgstr "ΠΡΠ·ΠΈΠ½Π° Π½Π° ΠΏΠΎΠ²ΡΡΠΈΠ½ΡΠΊΠ°ΡΠ° ΡΠ΅ΠΌΠ°"
#: hacks/config/cubenetic.xml.h:28 hacks/config/dangerball.xml.h:10
#: hacks/config/engine.xml.h:8 hacks/config/glforestfire.xml.h:19
#: hacks/config/gltext.xml.h:17 hacks/config/menger.xml.h:20
#: hacks/config/molecule.xml.h:25 hacks/config/spheremonics.xml.h:25
#: hacks/config/wander.xml.h:15
msgid "Wander"
msgstr "Π’Π°Π»ΠΊΠ°ΡΠ΅"
#: hacks/config/cynosure.xml.h:1
msgid ""
"A hack similar to `greynetic', but less frenetic. The first implementation was "
"by Stephen Linhart; then Ozymandias G. Desiderata wrote a Java applet clone. "
"That clone was discovered by Jamie Zawinski, and ported to C for inclusion "
"here."
msgstr ""
"Π₯Π°ΠΊ ΡΠ»ΠΈΡΠ΅Π½ Π½Π° βgreyneticβ, Π½ΠΎ ΠΏΠΎΠΌΠ°Π»ΠΊΡ ΡΡΠ΅Π½Π΅ΡΠΈΡΠ΅Π½. ΠΡΠ²Π°ΡΠ° ΠΈΠΌΠΏΠ»Π΅ΠΌΠ΅Π½ΡΠ°ΡΠΈΡΠ° Π±Π΅ΡΠ΅ ΠΎΠ΄ "
"Stephen Linhart, Π° ΠΏΠΎΡΠΎΠ° Ozymandias G. Desiderata Π½Π°ΠΏΠΈΡΠ° ΠΊΠ»ΠΎΠ½ Π½Π° Π°ΠΏΠ»Π΅ΡΠΎΡ Π²ΠΎ "
"ΠΠ°Π²Π°. Π’ΠΎΡ ΠΊΠ»ΠΎΠ½ Π±Π΅ΡΠ΅ ΠΎΡΠΊΡΠΈΠ΅Π½ ΠΎΠ΄ Jamie Zawinski, ΠΈ ΠΏΡΠ΅ΡΡΠ»Π΅Π½ Π²ΠΎ C Π·Π° Π΄Π° ΡΠ΅ Π²ΠΊΠ»ΡΡΠΈ "
"ΡΡΠΊΠ°."
#: hacks/config/cynosure.xml.h:2
msgid "Cynosure"
msgstr "ΠΡΠ΅Π΄ΠΌΠ΅Ρ Π½Π° Π²ΠΎΡΡ
ΠΈΡ"
#: hacks/config/dangerball.xml.h:1
msgid "DangerBall"
msgstr "ΠΠΏΠ°ΡΠ½Π° ΡΠΎΠΏΠΊΠ°"
#: hacks/config/dangerball.xml.h:2
msgid ""
"Draws a ball that periodically extrudes many random spikes. Ouch! Written by "
"Jamie Zawinski."
msgstr ""
"Π¦ΡΡΠ° ΡΠΎΠΏΠΊΠ° ΡΡΠΎ ΠΏΠ΅ΡΠΈΠΎΠ΄ΠΈΡΠ½ΠΎ ΠΈΡΠΏΡΡΡΠ° ΠΌΠ½ΠΎΠ³Ρ ΡΠ»ΡΡΠ°ΡΠ½ΠΈ Π±ΠΎΡΠΊΠΈ. ΠΡ! ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Jamie "
"Zawinski."
#: hacks/config/dangerball.xml.h:7
msgid "Spike Count"
msgstr "ΠΡΠΎΡ Π½Π° Π±ΠΎΡΠΊΠΈ"
#: hacks/config/dangerball.xml.h:8
msgid "Spike Growth"
msgstr "Π Π°ΡΡΠ΅ΡΠ΅ Π½Π° Π±ΠΎΡΠΊΠΈΡΠ΅"
#: hacks/config/decayscreen.xml.h:1
msgid "DecayScreen"
msgstr "Π Π°ΡΠΏΠ°ΡΠ°ΡΠ΅ Π½Π° Π΅ΠΊΡΠ°Π½ΠΎΡ"
#: hacks/config/decayscreen.xml.h:3
msgid "Fuzzy Melt"
msgstr "ΠΠ΅ΡΠ°ΡΠ½ΠΎ ΡΠΎΠΏΠ΅ΡΠ΅"
#: hacks/config/decayscreen.xml.h:4
msgid "Melt Away From Center"
msgstr "Π’ΠΎΠΏΠ΅ΡΠ΅ ΠΎΠ΄ ΡΠ΅Π½ΡΠ°ΡΠΎΡ Π½Π°Π½Π°Π΄Π²ΠΎΡ"
#: hacks/config/decayscreen.xml.h:5
msgid "Melt Down"
msgstr "Π’ΠΎΠΏΠ΅ΡΠ΅ Π½Π°Π΄ΠΎΠ»Ρ"
#: hacks/config/decayscreen.xml.h:6
msgid "Melt Down, Left"
msgstr "Π’ΠΎΠΏΠ΅ΡΠ΅ Π½Π°Π΄ΠΎΠ»Ρ, Π½Π°Π»Π΅Π²ΠΎ"
#: hacks/config/decayscreen.xml.h:7
msgid "Melt Down, Right"
msgstr "Π’ΠΎΠΏΠ΅ΡΠ΅ Π½Π°Π΄ΠΎΠ»Ρ, Π½Π°Π΄Π΅ΡΠ½ΠΎ"
#: hacks/config/decayscreen.xml.h:8
msgid "Melt Left"
msgstr "Π’ΠΎΠΏΠ΅ΡΠ΅ Π²ΠΎ Π»Π΅Π²ΠΎ"
#: hacks/config/decayscreen.xml.h:9
msgid "Melt Right"
msgstr "Π’ΠΎΠΏΠ΅ΡΠ΅ Π²ΠΎ Π΄Π΅ΡΠ½ΠΎ"
#: hacks/config/decayscreen.xml.h:10
msgid "Melt Towards Center"
msgstr "Π’ΠΎΠΏΠ΅ΡΠ΅ ΠΊΠΎΠ½ ΡΠ΅Π½ΡΠ°ΡΠΎΡ"
#: hacks/config/decayscreen.xml.h:11
msgid "Melt Up"
msgstr "Π’ΠΎΠΏΠ΅ΡΠ΅ Π½Π°Π³ΠΎΡΠ΅"
#: hacks/config/decayscreen.xml.h:12
msgid "Melt Up, Left"
msgstr "Π’ΠΎΠΏΠ΅ΡΠ΅ Π½Π°Π³ΠΎΡΠ΅, Π½Π°Π»Π΅Π²ΠΎ"
#: hacks/config/decayscreen.xml.h:13
msgid "Melt Up, Right"
msgstr "Π’ΠΎΠΏΠ΅ΡΠ΅ Π½Π°Π³ΠΎΡΠ΅, Π½Π°Π΄Π΅ΡΠ½ΠΎ"
#: hacks/config/decayscreen.xml.h:14
msgid "Melty Melt"
msgstr "Π’ΠΎΠΏΠ΅ΡΠ΅ ΡΠΎ ΡΠ°Π·Π»Π΅Π²Π°ΡΠ΅"
#: hacks/config/decayscreen.xml.h:15
msgid "Random Melt Style"
msgstr "Π‘Π»ΡΡΠ°Π΅Π½ ΡΡΠΈΠ» Π½Π° ΡΠΎΠΏΠ΅ΡΠ΅"
#: hacks/config/decayscreen.xml.h:16
msgid "Shuffle Melt"
msgstr "Π’ΠΎΠΏΠ΅ΡΠ΅ ΡΠΎ ΠΌΠ΅ΡΠ°ΡΠ΅"
#: hacks/config/decayscreen.xml.h:19
msgid "Stretchy Melt"
msgstr "Π’ΠΎΠΏΠ΅ΡΠ΅ ΡΠΎ ΡΠ°ΡΡΠ΅Π³Π°ΡΠ΅"
#: hacks/config/decayscreen.xml.h:20
msgid ""
"This takes an image and makes it melt. You've no doubt seen this effect before, "
"but no screensaver would really be complete without it. It works best if "
"there's something colorful visible. Warning, if the effect continues after the "
"screen saver is off, seek medical attention. Written by David Wald and Vivek "
"Khera."
msgstr ""
"ΠΠ²Π° ΡΠ° Π·Π΅ΠΌΠ° ΡΠ»ΠΈΠΊΠ°ΡΠ° ΠΈ ΠΏΡΠ°Π²ΠΈ ΡΠ°Π° Π΄Π° ΡΠ΅ ΡΠΎΠΏΠΈ. ΠΠ΅Π· ΡΠΎΠΌΠ½Π΅Π²Π°ΡΠ΅ ΠΎΠ²ΠΎΡ Π΅ΡΠ΅ΠΊΡ Π²Π΅ΡΠ΅ ΡΡΠ΅ "
"Π³ΠΎ Π²ΠΈΠ΄Π΅Π»Π΅ ΠΏΡΠ΅ΡΡ
ΠΎΠ΄Π½ΠΎ, Π½ΠΎ Π½ΠΈΡΡ Π΅Π΄Π΅Π½ Π΅ΠΊΡΠ°Π½ΡΠΊΠΈ ΡΡΠ²Π°Ρ Π½Π΅ Π±ΠΈ Π±ΠΈΠ» ΠΊΠΎΠΌΠΏΠ»Π΅ΡΠ΅Π½ Π±Π΅Π· Π½Π΅Π³ΠΎ. "
"ΠΠ°ΡΠ΄ΠΎΠ±ΡΠΎ ΡΠ°Π±ΠΎΡΠΈ Π°ΠΊΠΎ Π΅ Π²ΠΈΠ΄Π»ΠΈΠ²ΠΎ Π½Π΅ΡΡΠΎ ΠΊΠΎΠ»ΠΎΡΠΈΡΠ½ΠΎ. ΠΠ½ΠΈΠΌΠ°Π½ΠΈΠ΅, Π°ΠΊΠΎ Π΅ΡΠ΅ΠΊΡΠΎΡ ΠΏΡΠΎΠ΄ΠΎΠ»ΠΆΠΈ "
"ΠΎΡΠΊΠ°ΠΊΠΎ Π΅ ΠΈΡΠΊΠ»ΡΡΠ΅Π½ Π΅ΠΊΡΠ°Π½ΡΠΊΠΈΠΎΡ ΡΡΠ²Π°Ρ, ΠΏΠΎΠ±Π°ΡΠ°ΡΡΠ΅ ΠΌΠ΅Π΄ΠΈΡΠΈΠ½ΡΠΊΠ° ΠΏΠΎΠΌΠΎΡ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ "
"David Wald ΠΈ Vivek Khera."
#: hacks/config/deco.xml.h:3
msgid "Deco"
msgstr "ΠΠ΅ΠΊΠΎ"
#: hacks/config/deco.xml.h:6 hacks/config/menger.xml.h:5
#: hacks/config/sierpinski3d.xml.h:4
msgid "Max Depth"
msgstr "ΠΠ°ΠΊΡ. Π΄Π»Π°Π±ΠΎΡΠΈΠ½Π°"
#: hacks/config/deco.xml.h:7
msgid "Min Size"
msgstr "ΠΠΈΠ½. Π³ΠΎΠ»Π΅ΠΌΠΈΠ½Π°"
#: hacks/config/deco.xml.h:9
msgid ""
"This one subdivides and colors rectangles randomly. It looks kind of like "
"Brady-Bunch-era rec-room wall paneling. (Raven says: ``this screensaver is ugly "
"enough to peel paint.'') Written by Jamie Zawinski, inspired by Java code by "
"Michael Bayne."
msgstr ""
"ΠΠ²ΠΎΡ ΡΡΠ²Π°Ρ ΠΏΡΠΎΠΈΠ·Π²ΠΎΠ»Π½ΠΎ ΡΠ°Π·Π΄Π΅Π»ΡΠ²Π° ΠΈ ΠΎΠ±ΠΎΡΡΠ²Π° ΠΏΡΠ°Π²ΠΎΠ°Π³ΠΎΠ»Π½ΠΈΡΠΈ. ΠΠ·Π³Π»Π΅Π΄Π° ΠΊΠ°ΠΊΠΎ ΡΠΈΠ΄Π½Π°ΡΠ° "
"Π»Π°ΠΌΠΏΠ΅ΡΠΈΡΠ° Π½Π° ΡΠΎΠ±Π°ΡΠ° Π·Π° ΠΎΠ΄ΠΌΠΎΡ Π½Π° ΡΠ΅ΠΌΠ΅ΡΡΡΠ²ΠΎΡΠΎ ΠΡΠ΅ΡΠ΄ΠΈΠ΅Π²ΠΈ. (Raven ΠΈΠ·ΡΠ°Π²ΠΈΠ»: βΠΎΠ²ΠΎΡ "
"Π΅ΠΊΡΠ°Π½ΡΠΊΠΈ ΡΡΠ²Π°Ρ Π΅ Π΄ΠΎΠ²ΠΎΠ»Π½ΠΎ Π³ΡΠ΄ Π·Π° Π΄Π° ΡΠ° ΠΈΠ·Π»ΡΠΏΠΈ Π±ΠΎΡΠ°ΡΠ°.β) ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Jamie "
"Zawinski, ΠΈΠ½ΡΠΏΠΈΡΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ ΠΊΠΎΠ΄ΠΎΡ Π²ΠΎ Java ΠΎΠ΄ Michael Bayne."
#: hacks/config/deco.xml.h:11 hacks/config/rd-bomb.xml.h:23
#: hacks/config/whirlygig.xml.h:7 hacks/config/xearth.xml.h:33
#: hacks/config/zoom.xml.h:10
msgid "x"
msgstr " x"
#: hacks/config/deluxe.xml.h:2
msgid "Deluxe"
msgstr "ΠΠ΅Π»ΡΠΊΡ"
#: hacks/config/deluxe.xml.h:10 hacks/config/lmorph.xml.h:13
#: hacks/config/starfish.xml.h:11 hacks/config/thornbird.xml.h:9
msgid "Thick"
msgstr "ΠΠ΅Π±Π΅Π»ΠΈ"
#: hacks/config/deluxe.xml.h:11 hacks/config/lmorph.xml.h:14
#: hacks/config/starfish.xml.h:12 hacks/config/thornbird.xml.h:11
msgid "Thin"
msgstr "Π’Π΅Π½ΠΊΠΈ"
#: hacks/config/deluxe.xml.h:12
msgid ""
"This draws a pulsing sequence of stars, circles, and lines. It would look "
"better if it was faster, but as far as I can tell, there is no way to make this "
"be both: fast, and flicker-free. Yet another reason X sucks. Written by Jamie "
"Zawinski."
msgstr ""
"ΠΠ²Π° ΡΡΡΠ° ΠΏΡΠ»ΡΠΈΡΠ°ΡΠΊΠ° Π½ΠΈΠ·Π° Π·Π²Π΅Π·Π΄ΠΈ, ΠΊΡΡΠ³ΠΎΠ²ΠΈ ΠΈ Π»ΠΈΠ½ΠΈΠΈ. ΠΠ΅ ΠΈΠ·Π³Π»Π΅Π΄Π° ΠΏΠΎΠ΄ΠΎΠ±ΡΠΎ Π°ΠΊΠΎ Π΅ "
"ΠΏΠΎΠ±ΡΠ·ΠΎ, Π½ΠΎ ΠΊΠΎΠ»ΠΊΡ ΡΡΠΎ ΠΌΠΎΠΆΠ°ΠΌ Π΄Π° ΠΊΠ°ΠΆΠ°ΠΌ, Π½Π΅ ΠΏΠΎΡΡΠΎΠΈ Π½Π°ΡΠΈΠ½ Π΄Π° ΡΠ΅ Π½Π°ΠΏΡΠ°Π²ΠΈ ΠΈΡΡΠΎΠ²ΡΠ΅ΠΌΠ΅Π½ΠΎ "
"Π΄Π° Π±ΠΈΠ΄Π΅ ΠΈ Π±ΡΠ·ΠΎ ΠΈ Π±Π΅Π· ΡΡΠ΅ΠΏΠΊΠ°ΡΠ΅. ΠΡΠ΅ ΡΡΡΠ΅ Π΅Π΄Π½Π° ΠΏΡΠΈΡΠΈΠ½Π° Π·ΠΎΡΡΠΎ X Π½Π΅ ΡΠΈΠ½ΠΈ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ "
"ΠΎΠ΄ Jamie Zawinski."
#: hacks/config/deluxe.xml.h:13
msgid "Transparency"
msgstr "ΠΡΠΎΡΠΈΡΠ½ΠΎΡΡ"
#: hacks/config/demon.xml.h:1
msgid ""
"A cellular automaton that starts with a random field, and organizes it into "
"stripes and spirals. Written by David Bagley."
msgstr ""
"ΠΠ΅Π»ΠΈΡΡΠΊΠΈ Π°Π²ΡΠΎΠΌΠ°Ρ ΡΡΠΎ Π·Π°ΠΏΠΎΡΠ½ΡΠ²Π° ΡΠΎ ΡΠ»ΡΡΠ°ΡΠ½ΠΎ ΠΏΠΎΠ»Π΅ ΠΈ Π³ΠΎ ΠΎΡΠ³Π°Π½ΠΈΠ·ΠΈΡΠ° Π²ΠΎ Π»Π΅Π½ΡΠΈ ΠΈ "
"ΡΠΏΠΈΡΠ°Π»ΠΈ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ David Bagley."
#: hacks/config/demon.xml.h:2 hacks/config/petri.xml.h:1
msgid "Cell Size"
msgstr ""
"ΠΠΎΠ»Π΅ΠΌΠΈΠ½Π°\n"
"Π½Π° ΡΠ΅Π»ΠΈΡΠ°"
#: hacks/config/demon.xml.h:3
msgid "Demon"
msgstr "ΠΠ΅ΠΌΠΎΠ½"
#: hacks/config/demon.xml.h:11
msgid "States"
msgstr "Π‘ΠΎΡΡΠΎΡΠ±ΠΈ"
#: hacks/config/discrete.xml.h:1
msgid "Discrete"
msgstr "ΠΠΈΡΠΊΡΠ΅ΡΠ½ΠΎ"
#: hacks/config/discrete.xml.h:5
msgid ""
"More ``discrete map'' systems, including new variants of Hopalong and Julia, "
"and a few others. Written by Tim Auckland."
msgstr ""
"ΠΠΎΠ²Π΅ΡΠ΅ ΡΠΈΡΡΠ΅ΠΌΠΈ Π½Π° βΠ΄ΠΈΡΠΊΡΠ΅ΡΠ½ΠΈ ΠΌΠ°ΠΏΠΈβ, Π²ΠΊΠ»ΡΡΡΠ²Π°ΡΡΠΈ Π½ΠΎΠ²ΠΈ Π²Π°ΡΠΈΡΠ°Π½ΡΠΈ Π½Π° βΠ€ΡΠ°ΠΊΡΠ°Π»Π½Π° "
"ΡΠΈΠΏΠΊΠ°β, βΠΡΠ»ΠΈΡΠ°β ΠΈ Π½Π΅ΠΊΠΎΠΈ Π΄ΡΡΠ³ΠΈ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Tim Auckland."
#: hacks/config/distort.xml.h:1
msgid "Black Hole"
msgstr "Π¦ΡΠ½Π° Π΄ΡΠΏΠΊΠ°"
#: hacks/config/distort.xml.h:2
msgid "Bounce"
msgstr "Π‘ΠΊΠΎΠΊΠ°ΡΠ΅"
#: hacks/config/distort.xml.h:3
msgid "Distort"
msgstr "ΠΠ·ΠΎΠ±Π»ΠΈΡΡΠ²Π°ΡΠ΅"
#: hacks/config/distort.xml.h:6
msgid "Lens Count"
msgstr "ΠΡΠΎΡ Π½Π° Π»Π΅ΡΠΈ"
#: hacks/config/distort.xml.h:7
msgid "Lens Size"
msgstr "ΠΠΎΠ»Π΅ΠΌΠΈΠ½Π° Π½Π° Π»Π΅ΡΠΈΡΠ΅"
#: hacks/config/distort.xml.h:8
msgid "Magnify"
msgstr "ΠΠ³ΠΎΠ»Π΅ΠΌΡΠ²Π°ΡΠ΅"
#: hacks/config/distort.xml.h:9 hacks/config/glforestfire.xml.h:10
#: hacks/config/lament.xml.h:4 hacks/config/sballs.xml.h:6
msgid "Normal"
msgstr "ΠΠΎΡΠΌΠ°Π»Π½ΠΎ"
#: hacks/config/distort.xml.h:10
msgid "Reflect"
msgstr "Π Π΅ΡΠ»Π΅ΠΊΡΠΈΡΠ°"
#: hacks/config/distort.xml.h:14
msgid "Swamp Thing"
msgstr "Π‘ΡΡΡΠ΅ΡΡΠ²ΠΎ ΠΎΠ΄ ΠΌΠΎΡΡΡΠΈΡΡΠ΅ΡΠΎ"
#: hacks/config/distort.xml.h:15
msgid ""
"This hack grabs an image of the screen, and then lets a transparent lens wander "
"around the screen, magnifying whatever is underneath. Written by Jonas Munsin."
msgstr ""
"ΠΠ²ΠΎΡ Ρ
Π°ΠΊ ΡΠ° Π·Π΅ΠΌΠ° ΡΠ»ΠΈΠΊΠ°ΡΠ° ΠΎΠ΄ Π΅ΠΊΡΠ°Π½ΠΎΡ ΠΈ ΠΏΠΎΡΠΎΠ° ΠΎΠ²ΠΎΠ·ΠΌΠΎΠΆΡΠ²Π° ΠΏΡΠΎΡΠΈΡΠ½ΠΈ Π»Π΅ΡΠΈ Π΄Π° ΡΠ΅ΡΠ°Π°Ρ "
"ΠΏΠΎ Π΅ΠΊΡΠ°Π½ΠΎΡ, Π·Π³ΠΎΠ»Π΅ΠΌΡΠ²Π°ΡΡΠΈ ΡΡ ΡΡΠΎ Π΅ ΠΎΠ΄ΠΎΠ·Π΄ΠΎΠ»Π°. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Jonas Munsin."
#: hacks/config/distort.xml.h:16 hacks/config/moire.xml.h:12
#: hacks/config/rd-bomb.xml.h:21 hacks/config/ripples.xml.h:15
#: hacks/config/rotzoomer.xml.h:10 hacks/config/swirl.xml.h:10
#: hacks/config/twang.xml.h:15 hacks/config/xflame.xml.h:7
msgid "Use Shared Memory"
msgstr "ΠΠΎΡΠΈΡΡΠΈ Π·Π°Π΅Π΄Π½ΠΈΡΠΊΠ° ΠΌΠ΅ΠΌΠΎΡΠΈΡΠ°"
#: hacks/config/distort.xml.h:17
msgid "Vortex"
msgstr "ΠΡΡΠ»ΠΎΠ³"
#: hacks/config/drift.xml.h:1
msgid "Drift"
msgstr "Π’Π°Π»ΠΊΠ°ΡΠ΅"
#: hacks/config/drift.xml.h:4
msgid "Fractal Growth"
msgstr "Π Π°ΡΡΠ΅ΡΠ΅ Π½Π° ΡΡΠ°ΠΊΡΠ°Π»ΠΎΡ"
#: hacks/config/drift.xml.h:5
msgid "High Dimensional Sphere"
msgstr "ΠΡΠ»ΡΠΈΠ΄ΠΈΠΌΠ΅Π½Π·ΠΈΠΎΠ½Π°Π»Π½Π° ΡΡΠ΅ΡΠ°"
#: hacks/config/drift.xml.h:6
msgid ""
"How could one possibly describe this except as ``drifting recursive fractal "
"cosmic flames?'' Another fine hack from the Scott Draves collection of fine "
"hacks."
msgstr ""
"ΠΠ°ΠΊΠΎ Π½Π΅ΠΊΠΎΡ Π²ΠΎΠΎΠΏΡΡΠΎ ΠΌΠΎΠΆΠ΅ Π΄Π° Π³ΠΎ ΠΎΠΏΠΈΡΠ΅ ΠΎΠ²Π° ΠΎΡΠ²Π΅Π½ ΠΊΠ°ΠΊΠΎ βΡΠ΅ΠΊΡΡΠ·ΠΈΠ²Π½ΠΈ ΡΡΠ°ΠΊΡΠ°Π»Π½ΠΈ "
"ΠΊΠΎΡΠΌΠΈΡΠΊΠΈ ΠΏΠ»Π°ΠΌΠ΅Π½ΠΈ ΡΡΠΎ ΡΠ°Π»ΠΊΠ°Π°Ρ?β. Π£ΡΡΠ΅ Π΅Π΄Π΅Π½ Π΄ΠΎΠ±Π°Ρ Ρ
Π°ΠΊ ΠΎΠ΄ ΠΊΠΎΠ»Π΅ΠΊΡΠΈΡΠ°ΡΠ° Π΄ΠΎΠ±ΡΠΈ Ρ
Π°ΠΊΠΎΠ²ΠΈ "
"Π½Π° Scott Draves."
#: hacks/config/drift.xml.h:7
msgid "Lissojous Figures"
msgstr "Π€ΠΈΠ³ΡΡΠΈ Π½Π° ΠΠΈΡΠ°ΠΆΡ"
#: hacks/config/electricsheep.xml.h:1
msgid "ElectricSheep"
msgstr "ElectricSheep"
#: hacks/config/electricsheep.xml.h:2
msgid ""
"ElectricSheep is an xscreensaver module that displays mpeg video of an animated "
"fractal flame. In the background, it contributes render cycles to the next "
"animation. Periodically it uploades completed frames to the server, where they "
"are compressed for distribution to all clients. This program is recommended "
"only if you have a high bandwidth connection to the Internet. By Scott Draves. "
"You can find it at <http://www.electricsheep.org/>. See that web site for "
"configuration information."
msgstr ""
"ElectricSheep Π΅ ΠΌΠΎΠ΄ΡΠ» Π½Π° xscreensaver ΡΡΠΎ ΠΏΡΠΈΠΊΠ°ΠΆΡΠ²Π° mpeg-Π²ΠΈΠ΄Π΅ΠΎ ΠΎΠ΄ Π°Π½ΠΈΠΌΠΈΡΠ°Π½ "
"ΡΡΠ°ΠΊΡΠ°Π»Π΅Π½ ΠΏΠ»Π°ΠΌΠ΅Π½. ΠΠΎ Π·Π°Π΄Π½ΠΈΠ½Π° ΠΏΡΠΈΠ΄ΠΎΠ½Π΅ΡΡΠ²Π° Π½Π° ΡΠΈΠΊΠ»ΡΡΠΈΡΠ΅ Π·Π° ΠΈΡΡΡΡΡΠ²Π°ΡΠ΅ Π½Π° ΡΠ»Π΅Π΄Π½Π°ΡΠ° "
"Π°Π½ΠΈΠΌΠ°ΡΠΈΡΠ°. ΠΠ΅ΡΠΈΠΎΠ΄ΠΈΡΠ½ΠΎ Π³ΠΈ ΠΊΠ°ΡΡΠ²Π° ΠΊΠΎΠΌΠΏΠ»Π΅ΡΠΈΡΠ°Π½ΠΈΡΠ΅ ΡΠ°ΠΌΠΊΠΈ Π½Π° ΡΠ΅ΡΠ²Π΅ΡΠΎΡ, ΠΊΠ°Π΄Π΅ ΡΠΈΠ΅ ΡΠ΅ "
"ΠΊΠΎΠΌΠΏΡΠ΅ΡΠΈΡΠ°Π°Ρ Π·Π° Π΄ΠΈΡΡΡΠΈΠ±ΡΠΈΡΠ°ΡΠ΅ Π΄ΠΎ ΡΠΈΡΠ΅ ΠΊΠ»ΠΈΠ΅Π½ΡΠΈ. ΠΠ²Π°Π° ΠΏΡΠΎΠ³ΡΠ°ΠΌΠ° ΡΠ΅ ΠΏΡΠ΅ΠΏΠΎΡΠ°ΡΡΠ²Π° "
"ΡΠ°ΠΌΠΎ Π°ΠΊΠΎ ΠΈΠΌΠ°ΡΠ΅ Π²ΡΡΠΊΠ° Π½Π° ΠΠ½ΡΠ΅ΡΠ½Π΅Ρ ΡΠΎ Π³ΠΎΠ»Π΅ΠΌ ΠΏΡΠΎΡΠΎΠΊ. ΠΠ΄ Scott Draves. ΠΠΎΠΆΠ΅ΡΠ΅ Π΄Π° Π³ΠΎ "
"Π½Π°ΡΠ΄Π΅ΡΠ΅ Π½Π° <http://www.electricsheep.org/>. ΠΠΈΠ΄Π΅ΡΠ΅ ΡΠ° Π²Π΅Π±-ΡΡΡΠ°Π½ΠΈΡΠ°ΡΠ° Π·Π° "
"ΠΈΠ½ΡΠΎΡΠΌΠ°ΡΠΈΠΈ Π·Π° ΠΊΠΎΠ½ΡΠΈΠ³ΡΡΠ°ΡΠΈΡΠ°ΡΠ°."
#: hacks/config/engine.xml.h:1
msgid ""
"Draws a simple four-stroke engine that floats around the screen. Written by Ben "
"Buxton."
msgstr ""
"Π¦ΡΡΠ° Π΅Π΄Π½ΠΎΡΡΠ°Π²Π΅Π½ ΡΠ΅ΡΠΈΡΠΈΡΠ°ΠΊΡΠ΅Π½ ΠΌΠΎΡΠΎΡ ΡΡΠΎ Π»Π΅Π±Π΄ΠΈ ΠΏΠΎ Π΅ΠΊΡΠ°Π½ΠΎΡ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Ben "
"Buxton."
#: hacks/config/engine.xml.h:2
msgid "Engine"
msgstr "ΠΠΎΡΠΎΡ"
#: hacks/config/epicycle.xml.h:4
msgid "Epicycle"
msgstr "ΠΠΏΠΈΡΠΈΠΊΠ»"
#: hacks/config/epicycle.xml.h:6
msgid "Harmonics"
msgstr "Π₯Π°ΡΠΌΠΎΠ½ΠΈΡΠΈ"
#: hacks/config/epicycle.xml.h:12
msgid ""
"This program draws the path traced out by a point on the edge of a circle. That "
"circle rotates around a point on the rim of another circle, and so on, several "
"times. These were the basis for the pre-heliocentric model of planetary motion. "
"Written by James Youngman."
msgstr ""
"ΠΠ²Π°Π° ΠΏΡΠΎΠ³ΡΠ°ΠΌΠ° ΡΠ° ΡΡΡΠ° ΠΏΠ°ΡΠ΅ΠΊΠ°ΡΠ° ΡΠ»Π΅Π΄Π΅Π½Π° ΠΎΠ΄ ΡΠΎΡΠΊΠ° Π½Π° ΡΠ°Π±ΠΎΡ Π½Π° ΠΊΡΡΠ³. ΠΡΡΠ³ΠΎΡ ΡΠΎΡΠΈΡΠ° "
"ΠΎΠΊΠΎΠ»Ρ ΡΠΎΡΠΊΠ° Π½Π° ΡΠ°Π±ΠΎΡ Π½Π° Π΄ΡΡΠ³ ΠΊΡΡΠ³ ΠΈΡΠ½., Π½Π΅ΠΊΠΎΠ»ΠΊΡ ΠΏΠ°ΡΠΈ. ΠΠ²Π° Π΅ ΠΎΡΠ½ΠΎΠ²Π°ΡΠ° Π·Π° ΠΌΠΎΠ΄Π΅Π»ΠΎΡ "
"Π½Π° ΠΏΠ»Π°Π½Π΅ΡΠ°ΡΠ½ΠΎΡΠΎ Π΄Π²ΠΈΠΆΠ΅ΡΠ΅ ΠΏΡΠ΅Π΄ Ρ
Π΅Π»ΠΈΠΎΡΠ΅Π½ΡΡΠΈΡΠ½ΠΈΠΎΡ . ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ James Youngman."
#: hacks/config/euler2d.xml.h:2
msgid "Euler2d"
msgstr "ΠΡΠ»Π΅Ρ2Π"
#: hacks/config/euler2d.xml.h:10 hacks/config/whirlwindwarp.xml.h:5
msgid "Particles"
msgstr "Π§Π΅ΡΡΠΈΡΠΊΠΈ"
#: hacks/config/euler2d.xml.h:11
msgid "Power"
msgstr "ΠΠΎΡΠ½ΠΎΡΡ"
#: hacks/config/euler2d.xml.h:13
msgid ""
"Simulates two dimensional Incompressible Inviscid Fluid Flow. Written by "
"Stephen Montgomery-Smith."
msgstr ""
"Π‘ΠΈΠΌΡΠ»ΠΈΡΠ° Π΄Π²ΠΎΠ΄ΠΈΠΌΠ΅Π½Π·ΠΈΠΎΠ½Π°Π»Π΅Π½ ΡΠ΅ΠΊ Π½Π° Π½Π΅Π²ΠΈΡΠΊΠΎΠ·Π½Π° Π½Π΅ΠΊΠΎΠΌΠΏΡΠ΅ΡΠΈΠ±ΠΈΠ»Π½Π° ΡΠ΅ΡΠ½ΠΎΡΡ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ "
"ΠΎΠ΄ Stephen Montgomery-Smith."
#: hacks/config/extrusion.xml.h:1
msgid ""
"Draws various rotating extruded shapes that twist around, lengthen, and turn "
"inside out. Created by David Konerding from the samples that come with the GL "
"Extrusion library by Linas Vepstas."
msgstr ""
"Π¦ΡΡΠ° ΡΠ°Π·Π½ΠΎΠ²ΠΈΠ΄Π½ΠΈ ΡΠΎΡΠΈΡΠ°ΡΠΊΠΈ ΠΈΠ·Π΄ΠΎΠ»ΠΆΠ΅Π½ΠΈ ΠΎΠ±Π»ΠΈΡΠΈ ΡΡΠΎ ΡΠ΅ Π²ΡΡΠ°Ρ, ΡΠ΅ ΠΈΠ·Π΄ΠΎΠ»ΠΆΡΠ²Π°Π°Ρ ΠΈ ΡΠ΅ "
"ΠΏΡΠ΅Π²ΡΡΡΠ²Π°Π°Ρ ΠΎΠ΄Π²Π½Π°ΡΡΠ΅-Π½Π°Π½Π°Π΄Π²ΠΎΡ. ΠΡΠ΅ΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ David Konerding, ΠΎΠ΄ ΠΏΡΠΈΠΌΠ΅ΡΠΈΡΠ΅ ΡΡΠΎ "
"Π΄ΠΎΠ°ΡΠ°Π°Ρ ΡΠΎ Π±ΠΈΠ±Π»ΠΈΠΎΡΠ΅ΠΊΠ°ΡΠ° GL Extrusion ΠΎΠ΄ Linas Vepstas."
#: hacks/config/extrusion.xml.h:2
msgid "Extrusion"
msgstr "ΠΠ·Π΄ΠΎΠ»ΠΆΡΠ²Π°ΡΠ΅"
#: hacks/config/extrusion.xml.h:4
msgid "Helix 2"
msgstr "Π‘ΠΏΠΈΡΠ°Π»Π° 2"
#: hacks/config/extrusion.xml.h:5
msgid "Helix 3"
msgstr "Π‘ΠΏΠΈΡΠ°Π»Π° 3"
#: hacks/config/extrusion.xml.h:6
msgid "Helix 4"
msgstr "Π‘ΠΏΠΈΡΠ°Π»Π° 4"
#: hacks/config/extrusion.xml.h:7
msgid "Join Offset"
msgstr "Π Π°ΡΡΠΎΡΠ°Π½ΠΈΠ΅ Π΄ΠΎ ΡΠΏΠΎΡΠΎΡ"
#: hacks/config/extrusion.xml.h:8
msgid "Random Object"
msgstr "Π‘Π»ΡΡΠ°Π΅Π½ ΠΎΠ±ΡΠ΅ΠΊΡ"
#: hacks/config/extrusion.xml.h:9
msgid "Screw"
msgstr "Π‘Π²ΡΡΡΠ²Π°ΡΠ΅"
#: hacks/config/extrusion.xml.h:14
msgid "Taper"
msgstr "Π‘ΡΠ΅ΡΠ½ΡΠ²Π°ΡΠ΅"
#: hacks/config/extrusion.xml.h:15
msgid "Texture Image"
msgstr "Π‘Π»ΠΈΠΊΠ° Π·Π° ΡΠ΅ΠΊΡΡΡΡΠ°"
#: hacks/config/extrusion.xml.h:16
msgid "Twistoid"
msgstr "Π’ΠΎΡΠ·ΠΈΡΠ°"
#: hacks/config/extrusion.xml.h:17 hacks/config/glplanet.xml.h:9
#: hacks/config/pulsar.xml.h:19
msgid "Use Flat Coloring"
msgstr "ΠΠΎΡΠΈΡΡΠΈ ΡΠ°ΠΌΠ½ΠΎ ΠΎΠ±ΠΎΡΡΠ²Π°ΡΠ΅"
#: hacks/config/extrusion.xml.h:18 hacks/config/glplanet.xml.h:10
msgid "Use Lighting"
msgstr "ΠΠΎΡΠΈΡΡΠΈ ΠΎΡΠ²Π΅ΡΠ»ΡΠ²Π°ΡΠ΅"
#: hacks/config/fadeplot.xml.h:2
msgid ""
"Draws what looks like a waving ribbon following a sinusoidal path. Written by "
"Bas van Gaalen and Charles Vidal."
msgstr ""
"Π¦ΡΡΠ° Π½Π΅ΡΡΠΎ ΡΡΠΎ ΠΈΠ·Π³Π»Π΅Π΄Π° ΠΊΠ°ΠΊΠΎ Π±ΡΠ°Π½ΠΎΠ²ΠΈΠ΄Π½Π° Π»Π΅Π½ΡΠ° ΡΡΠΎ ΠΎΠ΄ΠΈ ΠΏΠΎ ΡΠΈΠ½ΡΡΠΎΠΈΠ΄Π°Π»Π½Π° ΠΏΠ°ΡΠ΅ΠΊΠ°. "
"ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Bas van Gaalen ΠΈ Charles Vidal."
#: hacks/config/fadeplot.xml.h:3
msgid "FadePlot"
msgstr "ΠΠ»Π΅Π΄ΠΎ ΠΈΡΡΡΡΡΠ²Π°ΡΠ΅"
#: hacks/config/flag.xml.h:1
msgid "Bitmap for Flag"
msgstr "ΠΠΈΡΠΌΠ°ΠΏΠ° Π·Π° Π·Π½Π°ΠΌΠ΅ΡΠΎ"
#: hacks/config/flag.xml.h:3
msgid "Flag"
msgstr "ΠΠ½Π°ΠΌΠ΅"
#: hacks/config/flag.xml.h:10
msgid "Text for Flag"
msgstr "Π’Π΅ΠΊΡΡ Π·Π° Π·Π½Π°ΠΌΠ΅ΡΠΎ"
#: hacks/config/flag.xml.h:11
msgid ""
"This draws a waving colored flag, that undulates its way around the screen. The "
"trick is the flag can contain arbitrary text and images. By default, it "
"displays either the current system name and OS type, or a picture of ``Bob,'' "
"but you can replace the text or the image with a command-line option. Written "
"by Charles Vidal and Jamie Zawinski."
msgstr ""
"ΠΠ²Π° ΡΡΡΠ° ΡΠ°Π·Π²Π΅Π°Π½ΠΎ ΠΎΠ±ΠΎΠ΅Π½ΠΎ Π·Π½Π°ΠΌΠ΅ ΡΡΠΎ Π±ΡΠ°Π½ΠΎΠ²ΠΈΠ΄Π½ΠΎ ΡΠ΅ Π΄Π²ΠΈΠΆΠΈ ΠΏΠΎ Π΅ΠΊΡΠ°Π½ΠΎΡ. Π’ΡΠΈΠΊΠΎΡ Π΅ ΡΠΎΡ "
"ΡΡΠΎ Π·Π½Π°ΠΌΠ΅ΡΠΎ ΠΌΠΎΠΆΠ΅ Π΄Π° ΡΠΎΠ΄ΡΠΆΠΈ ΠΏΡΠΎΠΈΠ·Π²ΠΎΠ»Π΅Π½ ΡΠ΅ΠΊΡΡ ΠΈ ΡΠ»ΠΈΠΊΠΈ. ΠΠΎΠΎΠ±ΠΈΡΠ°Π΅Π½ΠΎ Π³ΠΎ ΠΏΡΠΈΠΊΠ°ΠΆΡΠ²Π° "
"ΠΈΠ»ΠΈ ΡΠ΅ΠΊΠΎΠ²Π½ΠΎΡΠΎ ΠΈΠΌΠ΅ ΠΈ ΡΠΈΠΏΠΎΡ Π½Π° ΠΠ‘, ΠΈΠ»ΠΈ ΡΠ»ΠΈΠΊΠ°ΡΠ° Π½Π° βΠΠΎΠ±β, Π½ΠΎ ΡΠ΅ΠΊΡΡΠΎΡ ΠΈΠ»ΠΈ ΡΠ»ΠΈΠΊΠ°ΡΠ° "
"ΠΌΠΎΠΆΠ΅ΡΠ΅ Π΄Π° Π³ΠΈ Π·Π°ΠΌΠ΅Π½ΠΈΡΠ΅ ΡΠΎ ΠΊΠΎΠΌΠ°Π½Π΄Π½ΠΎ-Π»ΠΈΠ½ΠΈΡΠΊΠ° ΠΎΠΏΡΠΈΡΠ°. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Charles Vidal ΠΈ "
"Jamie Zawinski."
#: hacks/config/flame.xml.h:1 hacks/config/jigsaw.xml.h:1
#: hacks/config/maze.xml.h:1 hacks/config/rotzoomer.xml.h:1
#: hacks/config/wander.xml.h:1
msgid "0 Seconds"
msgstr "0 ΡΠ΅ΠΊΡΠ½Π΄ΠΈ"
#: hacks/config/flame.xml.h:2 hacks/config/maze.xml.h:2
msgid "10 Seconds"
msgstr "10 ΡΠ΅ΠΊΡΠ½Π΄ΠΈ"
#: hacks/config/flame.xml.h:3
msgid "Another iterative fractal generator. Written by Scott Draves."
msgstr "Π£ΡΡΠ΅ Π΅Π΄Π΅Π½ Π³Π΅Π½Π΅ΡΠ°ΡΠΎΡ Π½Π° ΠΈΡΠ΅ΡΠ°ΡΠΈΠ²Π½ΠΈ ΡΡΠ°ΠΊΡΠ°Π»ΠΈ. ΠΠ°ΠΏΠΈΡΠ°Π½ ΠΎΠ΄ Scott Draves."
#: hacks/config/flame.xml.h:4
msgid "Complexity"
msgstr "ΠΠΎΠΌΠΏΠ»Π΅ΠΊΡΠ½ΠΎΡΡ"
#: hacks/config/flame.xml.h:8
msgid "Flame"
msgstr "ΠΠ»Π°ΠΌΠ΅Π½"
#: hacks/config/flame.xml.h:13
msgid "Number of Fractals"
msgstr "ΠΡΠΎΡ Π½Π° ΡΡΠ°ΠΊΡΠ°Π»ΠΈ"
#: hacks/config/flipscreen3d.xml.h:2
msgid "Flipscreen3d"
msgstr "ΠΡΠ΅Π²ΡΡΡΠ²Π°ΡΠ΅ Π΅ΠΊΡΠ°Π½ 3Π"
#: hacks/config/flipscreen3d.xml.h:3
msgid ""
"Grabs an image of the desktop, turns it into a GL texture map, and spins it "
"around and deforms it in various ways. Written by Ben Buxton."
msgstr ""
"ΠΠ° Π·Π΅ΠΌΠ° ΡΠ»ΠΈΠΊΠ°ΡΠ° Π½Π° ΡΠ°Π±ΠΎΡΠ½Π°ΡΠ° ΠΏΠΎΠ²ΡΡΠΈΠ½Π°, ΡΠ° ΠΏΡΠ΅ΡΠ²ΠΎΡΠ° Π²ΠΎ GL-ΡΠ΅ΠΊΡΡΡΡΠ° ΠΈ ΡΠ° Π²ΡΡΠΈ ΠΈ "
"Π΄Π΅ΡΠΎΡΠΌΠΈΡΠ° Π½Π° ΡΠ°Π·Π»ΠΈΡΠ½ΠΈ Π½Π°ΡΠΈΠ½ΠΈ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΈ ΠΎΠ΄ Ben Buxton."
#: hacks/config/flow.xml.h:1
msgid "Allow 2D Attractors"
msgstr "ΠΠΎΠ·Π²ΠΎΠ»ΠΈ 2Π-Π°ΡΡΠ°ΠΊΡΠΎΡΠΈ"
#: hacks/config/flow.xml.h:2
msgid ""
"Another series of strange attractors: a flowing series of points, making "
"strange rotational shapes. Written by Jeff Butterworth."
msgstr ""
"Π£ΡΡΠ΅ Π΅Π΄Π½Π° ΡΠ΅ΡΠΈΡΠ° Π½Π° ΡΡΠ΄Π½ΠΈ Π°ΡΡΠ°ΠΊΡΠΎΡΠΈ: ΡΠ΅ΠΊ ΠΎΠ΄ Π½ΠΈΠ·ΠΈ ΡΠΎΡΠΊΠΈ ΡΡΠΎ ΠΏΡΠ°Π²Π°Ρ ΡΡΠ΄Π½ΠΈ ΠΎΠ±Π»ΠΈΡΠΈ "
"ΡΡΠΎ ΡΠΎΡΠΈΡΠ°Π°Ρ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Jeff Butterworth."
#: hacks/config/flow.xml.h:5
msgid "Flow"
msgstr "Π’Π΅ΠΊ"
#: hacks/config/flow.xml.h:6
msgid "Freeze Some Bees"
msgstr "ΠΠ°ΠΌΡΠ·Π½ΠΈ Π½Π΅ΠΊΠΎΠΈ ΠΏΡΠ΅Π»ΠΈ"
#: hacks/config/flow.xml.h:10
#, fuzzy
msgid "Ride a Trained Bee"
msgstr "ΠΠ°Π²Π°Ρ ΡΡΠ΅Π½ΠΈΡΠ°Π½Π° ΠΏΡΠ΅Π»Π°"
#: hacks/config/flow.xml.h:11
msgid "Rotate Around Attractor"
msgstr "Π ΠΎΡΠΈΡΠ°Ρ ΠΎΠΊΠΎΠ»Ρ Π°ΠΊΡΡΠ°ΠΊΡΠΎΡΠΎΡ"
#: hacks/config/flow.xml.h:12
msgid "Show Bounding Box"
msgstr "ΠΡΠΈΠΊΠ°ΠΆΠΈ ΠΎΠ³ΡΠ°Π½ΠΈΡΡΠ²Π°ΡΠΊΠ° ΠΊΡΡΠΈΡΠ°"
#: hacks/config/flow.xml.h:14
#, fuzzy
msgid "Slow Bees with Antifreeze"
msgstr "ΠΠ°Π±Π°Π²ΠΈ Π³ΠΈ ΠΏΡΠ΅Π»ΠΈΡΠ΅ ΡΠΎ Π°Π½ΡΠΈΡΡΠΈΠ·"
#: hacks/config/flow.xml.h:19
msgid "Zoom In and Out"
msgstr "ΠΡΠΌΠΈΡΠ°Ρ Π½Π°Π½Π°Π΄Π²ΠΎΡ ΠΈ Π½Π°Π²Π½Π°ΡΡΠ΅"
#: hacks/config/fluidballs.xml.h:1
msgid "Ball Size"
msgstr "ΠΠΎΠ»Π΅ΠΌΠΈΠ½Π° Π½Π° ΡΠΎΠΏΡΠΈΡΠ°ΡΠ°"
#: hacks/config/fluidballs.xml.h:5
msgid "FluidBalls"
msgstr "Π’ΠΎΠΏΡΠΈΡΠ° ΡΠΎ ΡΠ΅ΡΠ½ΠΎΡΡ"
#: hacks/config/fluidballs.xml.h:6
msgid "Freefall"
msgstr "Π‘Π»ΠΎΠ±ΠΎΠ΄Π΅Π½ ΠΏΠ°Π΄"
#: hacks/config/fluidballs.xml.h:7 hacks/config/twang.xml.h:4
msgid "Friction"
msgstr "Π’ΡΠΈΠ΅ΡΠ΅"
#: hacks/config/fluidballs.xml.h:8
msgid "Glass"
msgstr "Π‘ΡΠ°ΠΊΠ»ΠΎ"
#: hacks/config/fluidballs.xml.h:9 hacks/config/qix.xml.h:9
#: hacks/config/speedmine.xml.h:4
msgid "Gravity"
msgstr "ΠΡΠ°Π²ΠΈΡΠ°ΡΠΈΡΠ°"
#: hacks/config/fluidballs.xml.h:10
msgid "Hurricane"
msgstr "Π£ΡΠ°Π³Π°Π½"
#: hacks/config/fluidballs.xml.h:11
msgid "Jupiter"
msgstr "ΠΡΠΏΠΈΡΠ΅Ρ"
#: hacks/config/fluidballs.xml.h:14
msgid ""
"Models the physics of bouncing balls, or of particles in a gas or fluid, "
"depending on the settings. If \"Shake Box\" is selected, then every now and "
"then, the box will be rotated, changing which direction is down (in order to "
"keep the settled balls in motion.)"
msgstr ""
"ΠΠΎ ΠΌΠΎΠ΄Π΅Π»ΠΈΡΠ° ΡΠΈΠ·ΠΈΡΠΊΠΎΡΠΎ ΠΎΠ΄Π½Π΅ΡΡΠ²Π°ΡΠ΅ Π½Π° ΡΠΎΠΏΡΠΈΡΠ° ΡΡΠΎ ΡΠΊΠΎΠΊΠ°Π°Ρ, ΠΈΠ»ΠΈ Π½Π° ΡΠ΅ΡΡΠΈΡΠΊΠΈ Π²ΠΎ Π³Π°Ρ "
"ΠΈΠ»ΠΈ ΡΠ΅ΡΠ½ΠΎΡΡ, Π·Π°Π²ΠΈΡΠ½ΠΎ ΠΎΠ΄ ΠΏΠΎΡΡΠ°Π²ΡΠ²Π°ΡΠ°ΡΠ°. ΠΠΊΠΎ Π΅ ΠΈΠ·Π±ΡΠ°Π½ΠΎ βΠΡΠΎΡΡΠ΅ΡΠΈ ΠΊΡΡΠΈΡΠ°β ΠΎΠ΄Π²ΡΠ΅ΠΌΠ΅ "
"Π½Π°Π²ΡΠ΅ΠΌΠ΅ ΠΊΡΡΠΈΡΠ°ΡΠ° ΡΠ΅ Π±ΠΈΠ΄Π΅ Π·Π°Π²ΡΡΠ΅Π½Π°, ΠΌΠ΅Π½ΡΠ²Π°ΡΡΠΈ ΡΠ° Π½Π°ΡΠΎΠΊΠ°ΡΠ° ΡΡΠΎ ΠΏΠΎΠΊΠ°ΠΆΡΠ²Π° Π½Π°Π΄ΠΎΠ»Ρ "
"(ΡΠΎ ΡΠ΅Π» Π΄Π° ΡΠ΅ ΠΎΠ΄ΡΠΆΠ°Ρ Π²ΠΎ Π΄Π²ΠΈΠΆΠ΅ΡΠ΅ ΡΡΠ°Π²Π΅Π½ΠΈΡΠ΅ ΡΠΎΠΏΡΠΈΡΠ°)"
#: hacks/config/fluidballs.xml.h:15
msgid "Sandpaper"
msgstr "Π¨ΠΌΠΈΡΠ³Π»Π°"
#: hacks/config/fluidballs.xml.h:16
msgid "Shake Box"
msgstr "ΠΡΠΎΡΡΠ΅ΡΠΈ ΠΊΡΡΠΈΡΠ°"
#: hacks/config/fluidballs.xml.h:21 hacks/config/glforestfire.xml.h:16
msgid "Still"
msgstr "ΠΠΈΡΠ½ΠΎ"
#: hacks/config/fluidballs.xml.h:22
msgid "Various Ball Sizes"
msgstr "Π Π°Π·Π»ΠΈΡΠ½ΠΈ Π³ΠΎΠ»Π΅ΠΌΠΈΠ½ΠΈ Π½Π° ΡΠΎΠΏΡΠΈΡΠ°"
#: hacks/config/fluidballs.xml.h:23
msgid "Wind"
msgstr "ΠΠ΅ΡΠ°Ρ"
#: hacks/config/forest.xml.h:2 hacks/config/glforestfire.xml.h:6
msgid "Forest"
msgstr "Π¨ΡΠΌΠ°"
#: hacks/config/forest.xml.h:7
msgid ""
"This draws fractal trees. Written by Peter Baumung. Everybody loves fractals, "
"right?"
msgstr ""
"ΠΠ²Π° ΡΡΡΠ° ΡΡΠ°ΠΊΡΠ°Π»Π½ΠΈ Π΄ΡΠ²Π°. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Peter Baumung. Π‘ΠΈΡΠ΅ ΡΠ°ΠΊΠ°Π°Ρ ΡΡΠ°ΠΊΡΠ°Π»ΠΈ, Π½Π΅Π»ΠΈ?"
#: hacks/config/galaxy.xml.h:4
msgid "Galaxy"
msgstr "ΠΠ°Π»Π°ΠΊΡΠΈΡΠ°"
#: hacks/config/galaxy.xml.h:9 hacks/config/lisa.xml.h:7
#: hacks/config/lissie.xml.h:8 hacks/config/loop.xml.h:6
#: hacks/config/penrose.xml.h:10 hacks/config/rotor.xml.h:10
#: hacks/config/rubik.xml.h:8 hacks/config/sproingies.xml.h:5
#: hacks/config/wander.xml.h:13 hacks/config/worm.xml.h:6
msgid "Size"
msgstr "ΠΠΎΠ»Π΅ΠΌΠΈΠ½Π°"
#: hacks/config/galaxy.xml.h:12
msgid ""
"This draws spinning galaxies, which then collide and scatter their stars to "
"the, uh, four winds or something. Originally an Amiga program by Uli Siegmund."
msgstr ""
"ΠΠ²Π° ΡΡΡΠ° Π²ΡΡΠ»ΠΈΠ²ΠΈ Π³Π°Π»Π°ΠΊΡΠΈΠΈ, ΡΡΠΎ ΠΏΠΎΡΠΎΠ° ΡΠ΅ ΡΡΠ΄ΠΈΡΠ°Π°Ρ ΠΈ Π³ΠΈ ΡΠ°ΡΡΡΠ»Π°Π°Ρ Π½ΠΈΠ²Π½ΠΈΡΠ΅ ΡΠ²Π΅Π·Π΄ΠΈ "
"Π²ΠΎ, ΠΎΠ²Π°, ΡΠ΅ΡΠΈΡΠΈΡΠ΅ Π²Π΅ΡΡΠΎΠ²ΠΈ ΠΈΠ»ΠΈ Π½Π΅ΡΡΠΎ ΡΠ°ΠΊΠ°. ΠΡΠΈΠ³ΠΈΠ½Π°Π»Π½ΠΎ Π±ΠΈΠ»Π° ΠΏΡΠΎΠ³ΡΠ°ΠΌΠ° Π·Π° Amiga ΠΎΠ΄ "
"Uli Siegmund."
#: hacks/config/gears.xml.h:3
msgid "Gears"
msgstr "ΠΠ°ΠΏΡΠ°Π½ΠΈΡΠΈ"
#: hacks/config/gears.xml.h:4
msgid "Planetary Gear System"
msgstr "Π‘ΠΈΡΡΠ΅ΠΌ ΡΠΎ ΠΏΠ»Π°Π½Π΅ΡΠ°ΡΠ½ΠΈ Π·Π°ΠΏΡΠ°Π½ΠΈΡΠΈ"
#: hacks/config/gears.xml.h:5 hacks/config/goop.xml.h:9
msgid "Rotational Speed"
msgstr "ΠΡΠ·ΠΈΠ½Π° Π½Π° ΡΠΎΡΠΈΡΠ°ΡΠ΅"
#: hacks/config/gears.xml.h:9
msgid ""
"This draws sets of turning, interlocking gears, rotating in three dimensions. "
"Another GL hack, by Danny Sung, Brian Paul, Ed Mackey, and Jamie Zawinski."
msgstr ""
"ΠΠ²Π° ΡΡΡΠ° ΠΌΠ½ΠΎΠΆΠ΅ΡΡΠ²ΠΎ ΠΏΠΎΠ΄Π²ΠΈΠΆΠ½ΠΈ, Π²ΠΊΠ»ΠΎΠΏΠ΅Π½ΠΈ Π·Π°ΠΏΡΠ°Π½ΠΈΡΠΈ, ΡΡΠΎ ΡΠΎΡΠΈΡΠ°Π°Ρ Π²ΠΎ ΡΡΠΈ Π΄ΠΈΠΌΠ΅Π½Π·ΠΈΠΈ. "
"Π£ΡΡΠ΅ Π΅Π΄Π΅Π½ GL-Ρ
Π°ΠΊ, ΠΎΠ΄ Danny Sung, Brian Paul, Ed Mackey ΠΈ Jamie Zawinski."
#: hacks/config/gears.xml.h:10
msgid "Three Gear System"
msgstr "Π‘ΠΈΡΡΠ΅ΠΌ ΡΠΎ ΡΡΠΈ Π·Π°ΠΏΡΠ°Π½ΠΈΡΠΈ"
#: hacks/config/gflux.xml.h:2
msgid "Checkerboard"
msgstr "Π¨Π°Ρ
ΠΎΠ²ΡΠΊΠ° ΡΠ°Π±Π»Π°"
#: hacks/config/gflux.xml.h:5
msgid ""
"Draws a rippling waves on a rotating wireframe grid, using GL. Written by "
"Josiah Pease."
msgstr ""
"Π¦ΡΡΠ° Π±ΡΠ°Π½ΠΎΠ²ΠΈ ΡΡΠΎ ΡΠ΅ ΡΠΈΡΠ°Ρ Π½Π° ΡΠΎΡΠΈΡΠ°ΡΠΊΠ° ΠΆΠΈΡΠ΅Π½Π° ΠΌΡΠ΅ΠΆΠ°, ΡΠΎ ΠΊΠΎΡΠΈΡΡΠ΅ΡΠ΅ Π½Π° GL. "
"ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Josiah Pease."
#: hacks/config/gflux.xml.h:7
msgid "Flat Lighting"
msgstr "Π Π°ΠΌΠ½ΠΎ ΠΎΡΠ²Π΅ΡΠ»ΡΠ²Π°ΡΠ΅"
#: hacks/config/gflux.xml.h:8
msgid "GFlux"
msgstr "ΠΠ€Π»ΡΠΊΡ"
#: hacks/config/gflux.xml.h:9
msgid "Mesh Density"
msgstr "ΠΡΡΡΠΈΠ½Π° Π½Π° ΠΌΡΠ΅ΠΆΠ°ΡΠ°"
#: hacks/config/gflux.xml.h:10
msgid "Screen Image"
msgstr "Π‘Π»ΠΈΠΊΠ° ΠΎΠ΄ Π΅ΠΊΡΠ°Π½ΠΎΡ"
#: hacks/config/gflux.xml.h:14 hacks/config/interference.xml.h:18
msgid "Wave Speed"
msgstr "ΠΡΠ·ΠΈΠ½Π° Π½Π° Π±ΡΠ°Π½ΠΎΡ"
#: hacks/config/gflux.xml.h:15
msgid "Waves"
msgstr "ΠΡΠ°Π½ΠΎΠ²ΠΈ"
#: hacks/config/gflux.xml.h:16
msgid "Wire Mesh"
msgstr "ΠΠΈΡΠ΅Π½Π° ΠΌΡΠ΅ΠΆΠ°"
#: hacks/config/glforestfire.xml.h:2
msgid "Desert"
msgstr "ΠΡΡΡΠΈΠ½Π°"
#: hacks/config/glforestfire.xml.h:3
msgid ""
"Draws an animation of sprinkling fire-like 3D triangles in a landscape filled "
"with trees. Requires OpenGL, and a machine with fast hardware support for "
"texture maps. Written by Eric Lassauge <lassauge@mail.dotcom.fr>."
msgstr ""
"Π¦ΡΡΠ° Π°Π½ΠΈΠΌΠ°ΡΠΈΡΠ° Π½Π° 3Π-ΡΡΠΈΠ°Π³ΠΎΠ»Π½ΠΈΡΠΈ ΡΠ»ΠΈΡΠ½ΠΈ Π½Π° ΠΎΠ³Π°Π½ ΡΡΠΎ ΠΈΠ·Π±ΠΈΠ²Π° ΠΎΠ΄ ΠΏΠΎΠ»Π΅ ΠΈΡΠΏΠΎΠ»Π½Π΅ΡΠΎ ΡΠΎ "
"Π΄ΡΠ²Π°. ΠΠΎΡΡΠ΅Π±Π½ΠΈ ΡΠ΅ OpenGL ΠΈ ΠΌΠ°ΡΠΈΠ½Π° ΡΠΎ Π΄ΠΎΠ±ΡΠ° Ρ
Π°ΡΠ΄Π²Π΅ΡΡΠΊΠ° ΠΏΠΎΠ΄Π΄ΡΡΠΊΠ° Π·Π° ΡΠ΅ΠΊΡΡΡΡΠΈ. "
"ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Eric Lassauge <lassauge@mail.dotcom.fr>."
#: hacks/config/glforestfire.xml.h:5
msgid "Fog"
msgstr "ΠΠ°Π³Π»Π°"
#: hacks/config/glforestfire.xml.h:7
msgid "GLForestFire"
msgstr "GL-ΡΡΠΌΡΠΊΠΈ ΠΏΠΎΠΆΠ°Ρ"
#: hacks/config/glforestfire.xml.h:8
msgid "Huge Fire"
msgstr "ΠΠΎΠ»Π΅ΠΌ ΠΎΠ³Π°Π½"
#: hacks/config/glforestfire.xml.h:9
msgid "No shadow"
msgstr "ΠΠ΅Π· ΡΠ΅Π½ΠΊΠ°"
#: hacks/config/glforestfire.xml.h:11
msgid "Number of trees"
msgstr "ΠΡΠΎΡ Π½Π° Π΄ΡΠ²Π°"
#: hacks/config/glforestfire.xml.h:12
msgid "Rain"
msgstr "ΠΠΎΠΆΠ΄"
#: hacks/config/glforestfire.xml.h:17
msgid "Track mouse"
msgstr "Π‘Π»Π΅Π΄ΠΈ Π³Π»ΡΡΠ΅Ρ"
#: hacks/config/glforestfire.xml.h:18 hacks/config/lament.xml.h:8
#: hacks/config/sballs.xml.h:17
msgid "Untextured"
msgstr "ΠΠ΅Π· ΡΠ΅ΠΊΡΡΡΡΠ°"
#: hacks/config/glplanet.xml.h:1
msgid ""
"Draws a planet bouncing around in space. Written by David Konerding. The "
"built-in image is a map of the earth (extracted from `xearth'), but you can "
"wrap any texture around the sphere, e.g., the planetary textures that come with "
"`ssystem'."
msgstr ""
"Π¦ΡΡΠ° ΠΏΠ»Π°Π½Π΅ΡΠ° ΡΡΠΎ ΡΠΊΠΎΠΊΠ° Π½ΠΈΠ· Π²ΡΠ΅Π»Π΅Π½Π°ΡΠ°. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ David Konerding. ΠΠ³ΡΠ°Π΄Π΅Π½Π°ΡΠ° "
"ΡΠ»ΠΈΠΊΠ° Π΅ ΠΊΠ°ΡΡΠ° Π½Π° Π·Π΅ΠΌΡΠ°ΡΠ° (ΠΈΠ·Π²Π»Π΅ΡΠ΅Π½Π° ΠΎΠ΄ βxearthβ), Π½ΠΎ ΠΌΠΎΠΆΠ΅ΡΠ΅ Π΄Π° ΡΡΠ°Π²ΠΈΡΠ΅ Π±ΠΈΠ»ΠΎ "
"ΠΊΠ°ΠΊΠ²Π° ΡΠ΅ΠΊΡΡΡΡΠ° ΠΎΠΊΠΎΠ»Ρ ΡΡΠ΅ΡΠ°ΡΠ° ΠΊΠ°ΠΊΠΎ Π½Π° ΠΏΡΠΈΠΌΠ΅Ρ ΡΠ΅ΠΊΡΡΡΡΠΈΡΠ΅ Π½Π° ΠΏΠ»Π°Π½Π΅ΡΠΈ ΡΡΠΎ Π΄ΠΎΠ°ΡΠ°Π°Ρ "
"ΡΠΎ βssystemβ."
#: hacks/config/glplanet.xml.h:3
msgid "GLPlanet"
msgstr "GL-ΠΏΠ»Π°Π½Π΅ΡΠ°"
#: hacks/config/glplanet.xml.h:4
msgid "Image File"
msgstr "ΠΠ°ΡΠΎΡΠ΅ΠΊΠ° ΡΠΎ ΡΠ»ΠΈΠΊΠ°"
#: hacks/config/glsnake.xml.h:1
msgid "1"
msgstr "1"
#: hacks/config/glsnake.xml.h:2 hacks/config/penrose.xml.h:2
msgid "30 Seconds"
msgstr "30 ΡΠ΅ΠΊΡΠ½Π΄ΠΈ"
#: hacks/config/glsnake.xml.h:3
msgid ""
"Draws a simulation of the Rubik's Snake puzzle. Written by Jamie Wilkinson, "
"Andrew Bennetts, and Peter Aylett."
msgstr ""
"Π¦ΡΡΠ° ΡΠΈΠΌΡΠ»Π°ΡΠΈΡΠ° Π½Π° ΡΠ»ΠΎΠΆΡΠ²Π°Π»ΠΊΠ°ΡΠ° Π ΡΠ±ΠΈΠΊΠΎΠ²Π° Π·ΠΌΠΈΡΠ°. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Jamie Wilkinson, "
"Andrew Bennetts ΠΈ Peter Aylett."
#: hacks/config/glsnake.xml.h:6
msgid "GlSnake"
msgstr "GL-Π·ΠΌΠΈΡΠ°"
#: hacks/config/glsnake.xml.h:7
msgid "Loose"
msgstr "ΠΠ°Π±Π°Π²ΠΎ"
#: hacks/config/glsnake.xml.h:8
msgid "Packing"
msgstr "ΠΠ°ΠΊΡΠ²Π°ΡΠ΅"
#: hacks/config/glsnake.xml.h:9
msgid "Scary Colors"
msgstr "ΠΠ°ΡΡΡΠ°ΡΡΠ²Π°ΡΠΊΠΈ Π±ΠΎΠΈ"
#: hacks/config/glsnake.xml.h:11
msgid "Show Labels"
msgstr "ΠΠΎΠΊΠ°ΠΆΠΈ Π½Π°ΡΠΏΠΈΡΠΈ"
#: hacks/config/glsnake.xml.h:14
msgid "Tight"
msgstr "Π‘ΡΠ΅Π³Π½Π°ΡΠΎ"
#: hacks/config/glsnake.xml.h:15 hacks/config/rocks.xml.h:13
msgid "Velocity"
msgstr "ΠΡΠ·ΠΈΠ½Π°"
#: hacks/config/glsnake.xml.h:17
msgid "Y Rotation"
msgstr "Π ΠΎΡΠ°ΡΠΈΡΠ° ΠΏΠΎ Y"
#: hacks/config/glsnake.xml.h:18
msgid "Z Rotation"
msgstr "Π ΠΎΡΠ°ΡΠΈΡΠ° ΠΏΠΎ Z"
#: hacks/config/gltext.xml.h:1
msgid ""
"Displays a few lines of text spinning around in a solid 3D font. Written by "
"Jamie Zawinski."
msgstr ""
"ΠΡΠΈΠΊΠ°ΠΆΡΠ²Π° Π½Π΅ΠΊΠΎΠ»ΠΊΡ Π»ΠΈΠ½ΠΈΠΈ ΡΠ΅ΠΊΡΡ ΡΡΠΎ ΡΠ΅ Π²ΡΡΠ°Ρ Π½Π°ΠΎΠΊΠΎΠ»Ρ, Π½Π°ΠΏΠΈΡΠ°Π½ΠΈ ΡΠΎ 3Π-ΡΠΎΠ½Ρ. "
"ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Jamie Zawinski."
#: hacks/config/gltext.xml.h:4
msgid "GLText"
msgstr "GL-ΡΠ΅ΠΊΡΡ"
#: hacks/config/gltext.xml.h:16 hacks/config/noseguy.xml.h:5
msgid "Text"
msgstr "Π’Π΅ΠΊΡΡ"
#: hacks/config/goban.xml.h:1
msgid "Goban"
msgstr "ΠΠΎΠ±Π°Π½"
#: hacks/config/goban.xml.h:2
msgid ""
"Replays historical games of go (aka wei-chi and baduk) on the screen. By Scott "
"Draves. You can find it at <http://www.draves.org/goban/>."
msgstr ""
"ΠΡΠΈΠΊΠ°ΠΆΡΠ²Π° Π½Π° Π΅ΠΊΡΠ°Π½ ΠΈΡΡΠΎΡΠΈΡΠΊΠΈ ΠΈΠ³ΡΠΈ Π½Π° Π³ΠΎ (Ρ.Π΅. Π²Π΅ΠΈ-ΡΠΈ ΠΈ Π±Π°Π΄ΡΠΊ). ΠΠ΄ Scott Draves. "
"ΠΠΎΠΆΠ΅ Π΄Π° Π³ΠΎ Π½Π°ΡΠ΄Π΅ΡΠ΅ Π½Π° <http://www.draves.org/goban/>."
#: hacks/config/goop.xml.h:1
msgid "Additive Colors (reflected light)"
msgstr "ΠΠΎΠΈΡΠ΅ ΡΠ΅ ΡΠΎΠ±ΠΈΡΠ°Π°Ρ (ΠΎΠ΄Π±ΠΈΠ΅Π½ΠΎ ΡΠ²Π΅ΡΠ»ΠΎ)"
#: hacks/config/goop.xml.h:2
msgid "Blob Count"
msgstr "ΠΡΠΎΡ Π½Π° Π΄Π°ΠΌΠΊΠΈ"
#: hacks/config/goop.xml.h:3
msgid "Elasticity"
msgstr "ΠΠ»Π°ΡΡΠΈΡΠ½ΠΎΡΡ"
#: hacks/config/goop.xml.h:5
msgid "Goop"
msgstr "ΠΠ΅Π΄ΠΎΠ²Π΅ΡΠ½ΠΎ"
#: hacks/config/goop.xml.h:8
msgid "Opaque Blobs"
msgstr "ΠΠ΅ΠΏΡΠΎΡΠΈΡΠ½ΠΈ Π΄Π°ΠΌΠΊΠΈ"
#: hacks/config/goop.xml.h:12
msgid "Speed Limit"
msgstr "ΠΠ³ΡΠ°Π½ΠΈΡΡΠ²Π°ΡΠ΅ Π½Π° Π±ΡΠ·ΠΈΠ½Π°ΡΠ°"
#: hacks/config/goop.xml.h:13
msgid "Subtractive Colors (transmitted light)"
msgstr "ΠΠΎΠΈΡΠ΅ ΡΠ΅ ΠΎΠ΄Π·Π΅ΠΌΠ°Π°Ρ (ΠΏΡΠ΅Π½Π΅ΡΠ΅Π½Π° ΡΠ²Π΅ΡΠ»ΠΈΠ½Π°)"
#: hacks/config/goop.xml.h:14
msgid ""
"This draws set of animating, transparent, amoeba-like blobs. The blobs change "
"shape as they wander around the screen, and they are translucent, so you can "
"see the lower blobs through the higher ones, and when one passes over another, "
"their colors merge. Written by Jamie Zawinski. I got the idea for this from a "
"cool mouse pad I have, which achieves the same kind of effect in real life by "
"having several layers plastic with colored oil between them. Written by Jamie "
"Zawinski."
msgstr ""
"ΠΠ²Π° ΡΡΡΠ° ΠΌΠ½ΠΎΠΆΠ΅ΡΡΠ²ΠΎ ΠΏΠΎΠ΄Π²ΠΈΠΆΠ½ΠΈ ΠΏΡΠΎΡΠΈΡΠ½ΠΈ Π΄Π°ΠΌΠΊΠΈ ΡΠ»ΠΈΡΠ½ΠΈ Π½Π° Π°ΠΌΠ΅Π±Π°. ΠΠ°ΠΌΠΊΠΈΡΠ΅ ΠΌΠ΅Π½ΡΠ²Π°Π°Ρ "
"ΠΎΠ±Π»ΠΈΠΊ Π΄ΠΎΠ΄Π΅ΠΊΠ° ΡΠ΅ Π΄Π²ΠΈΠΆΠ°Ρ ΠΏΠΎ Π΅ΠΊΡΠ°Π½ΠΎΡ. ΠΡΠΎΡΠΈΡΠ½ΠΈ ΡΠ΅, ΡΠ°ΠΊΠ° ΡΡΠΎ ΠΌΠΎΠΆΠ΅ Π΄Π° Π³ΠΈ Π²ΠΈΠ΄ΠΈΡΠ΅ "
"ΠΏΠΎΠ΄ΠΎΠ»Π½ΠΈΡΠ΅ Π΄Π°ΠΌΠΊΠΈ Π½ΠΈΠ· ΠΏΠΎΠ³ΠΎΡΠ½ΠΈΡΠ΅, ΠΈ ΠΊΠΎΠ³Π° Π΅Π΄Π½ΠΈ ΠΌΠΈΠ½ΡΠ²Π°Π°Ρ Π½Π°Π΄ Π΄ΡΡΠ³ΠΈ Π½ΠΈΠ²Π½ΠΈΡΠ΅ Π±ΠΎΠΈ ΡΠ΅ "
"ΡΠΏΠΎΡΡΠ²Π°Π°Ρ. ΠΠ° Π΄ΠΎΠ±ΠΈΠ² ΠΈΠ΄Π΅ΡΠ°ΡΠ° Π·Π° ΠΎΠ²Π° ΠΎΠ΄ ΠΈΠ½ΡΠ΅ΡΠ΅ΡΠ½Π°ΡΠ° ΠΏΠΎΠ΄Π»ΠΎΠ³Π° Π·Π° Π³Π»ΡΡΠ΅Ρ ΡΡΠΎ ΡΠ° "
"ΠΈΠΌΠ°Π², ΠΊΠΎΡΠ° Π³ΠΎ Π΄ΠΎΠ±ΠΈΠ²Π°ΡΠ΅ ΠΈΡΡΠΈΠΎΡ Π΅ΡΠ΅ΠΊΡ Π²ΠΎ ΡΠ΅Π°Π»Π½ΠΎΡΡΠ° ΠΎΠ΄ Π½Π΅ΠΊΠΎΠ»ΠΊΡΡΠ΅ ΡΠ»ΠΎΠ΅Π²ΠΈ ΠΏΠ»Π°ΡΡΠΈΠΊΠ° "
"ΡΠΎ ΠΎΠ±ΠΎΠ΅Π½ΠΎ ΠΌΠ°ΡΠ»ΠΎ ΠΌΠ΅ΡΡ Π½ΠΈΠ². ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Jamie Zawinski."
#: hacks/config/goop.xml.h:15
msgid "Transparent Blobs"
msgstr "ΠΡΠΎΡΠΈΡΠ½ΠΈ Π΄Π°ΠΌΠΊΠΈ"
#: hacks/config/goop.xml.h:16
msgid "XOR Blobs"
msgstr "XOR-Π΄Π°ΠΌΠΊΠΈ"
#: hacks/config/grav.xml.h:3
msgid "Grav"
msgstr "ΠΡΠ°Π²ΠΈΡΠ°ΡΠΈΡΠ°"
#: hacks/config/grav.xml.h:6
msgid "Object Trails"
msgstr "Π’ΡΠ°Π³ΠΈ Π½Π° ΠΎΠ±ΡΠ΅ΠΊΡΠΈΡΠ΅"
#: hacks/config/grav.xml.h:7
msgid "Orbital Decay"
msgstr "Π Π°ΡΠΏΠ°ΡΠ°ΡΠ΅ Π½Π° ΠΎΡΠ±ΠΈΡΠ°ΡΠ°"
#: hacks/config/grav.xml.h:10
msgid ""
"This program draws a simple orbital simulation. If you turn on trails, it looks "
"kind of like a cloud-chamber photograph. Written by Greg Bowering."
msgstr ""
"ΠΠ²Π°Π° ΠΏΡΠΎΠ³ΡΠ°ΠΌΠ° ΡΡΡΠ° Π΅Π΄Π½ΠΎΡΡΠ°Π²Π½Π° ΡΠΈΠΌΡΠ»Π°ΡΠΈΡΠ° Π½Π° ΠΎΡΠ±ΠΈΡΠ°. ΠΠΊΠΎ Π³ΠΈ Π²ΠΊΠ»ΡΡΠΈΡΠ΅ ΡΡΠ°Π³ΠΈΡΠ΅, "
"ΠΈΠ·Π³Π»Π΅Π΄Π° ΡΠ»ΠΈΡΠ½ΠΎ Π½Π° ΡΠΎΡΠΎΠ³ΡΠ°ΡΠΈΡΠ° ΠΎΠ΄ Π·Π°ΠΌΠ°Π³Π»Π΅Π½Π° ΡΠΎΠ±Π°. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Greg Bowering."
#: hacks/config/greynetic.xml.h:2
msgid "Greynetic"
msgstr "ΠΠ±ΠΎΠ΅Π½ΠΈ ΠΏΡΠ°Π²ΠΎΠ°Π³ΠΎΠ»Π½ΠΈΡΠΈ"
#: hacks/config/greynetic.xml.h:5
msgid ""
"This draws random colored and stippled rectangles. Written by Jamie Zawinski."
msgstr ""
"ΠΠ²Π° ΡΡΡΠ° ΠΏΡΠΎΠΈΠ·Π²ΠΎΠ»Π½ΠΈ ΠΎΠ±ΠΎΠ΅Π½ΠΈ ΠΈ ΠΈΡΠ°ΡΠ°Π½ΠΈ ΠΏΡΠ°Π²ΠΎΠ°Π³ΠΎΠ»Π½ΠΈΡΠΈ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Jamie Zawinski."
#: hacks/config/halo.xml.h:1
msgid "Animate Circles"
msgstr "ΠΠ½ΠΈΠΌΠΈΡΠ°Ρ ΠΊΡΡΠ³ΠΎΠ²ΠΈ"
#: hacks/config/halo.xml.h:3
msgid "Halo"
msgstr "ΠΡΠ΅ΠΎΠ»"
#: hacks/config/halo.xml.h:5
msgid "Number of Circles"
msgstr "ΠΡΠΎΡ Π½Π° ΠΊΡΡΠ³ΠΎΠ²ΠΈ"
#: hacks/config/halo.xml.h:7 hacks/config/imsmap.xml.h:11
msgid "Random Mode"
msgstr "Π‘Π»ΡΡΠ°Π΅Π½ ΡΠ΅ΠΆΠΈΠΌ"
#: hacks/config/halo.xml.h:8
msgid "Seuss Mode"
msgstr "Π Π΅ΠΆΠΈΠΌ Seuss"
#: hacks/config/halo.xml.h:11
msgid ""
"This draws trippy psychedelic circular patterns that hurt to look at. It can "
"also animate the control-points, but that takes a lot of CPU and bandwidth. "
"Written by Jamie Zawinski."
msgstr ""
"ΠΠ²Π° ΡΡΡΠ° ΠΏΡΠΈΡ
ΠΎΠ΄Π΅Π»ΠΈΡΠ½ΠΈ ΠΊΡΡΠΆΠ½ΠΈ ΡΠ΅ΠΌΠΈ ΠΎΠ΄ ΠΊΠΎΠΈ Π±ΠΎΠ»Π°Ρ ΠΎΡΠΈ. ΠΠΎΠΆΠ΅ Π΄Π° ΡΠ΅ Π°Π½ΠΈΠΌΠΈΡΠ°Π°Ρ "
"ΠΊΠΎΠ½ΡΡΠΎΠ»Π½ΠΈΡΠ΅ ΡΠΎΡΠΊΠΈ, Π½ΠΎ ΡΠΎΠ° Π±Π°ΡΠ° Π³ΠΎΠ»Π΅ΠΌΠ° ΠΏΡΠΎΡΠ΅ΡΠΎΡΡΠΊΠ° ΠΌΠΎΡ ΠΈ ΠΏΡΠΎΡΠΎΠΊ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ "
"Jamie Zawinski."
#: hacks/config/helix.xml.h:4
msgid "Helix"
msgstr "Π₯Π΅Π»ΠΈΠΊΡ"
#: hacks/config/helix.xml.h:5
msgid ""
"This repeatedly generates spirally string-art-ish patterns. Written by Jamie "
"Zawinski."
msgstr ""
"ΠΠ²Π° Π³Π΅Π½Π΅ΡΠΈΡΠ° ΡΠ΅ΠΌΠΈ ΠΎΠ΄ ΡΠΏΠΈΡΠ°Π»Π½ΠΈ ΡΠΌΠ΅ΡΠ½ΠΈΡΠΊΠΈ ΡΡΠ΅Π΄Π΅Π½ΠΈ ΠΆΠΈΡΠΈ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Jamie "
"Zawinski."
#: hacks/config/hopalong.xml.h:3
msgid "EJK1"
msgstr "EJK1"
#: hacks/config/hopalong.xml.h:4
msgid "EJK2"
msgstr "EJK2"
#: hacks/config/hopalong.xml.h:5
msgid "EJK3"
msgstr "EJK3"
#: hacks/config/hopalong.xml.h:6
msgid "EJK4"
msgstr "EJK4"
#: hacks/config/hopalong.xml.h:7
msgid "EJK5"
msgstr "EJK5"
#: hacks/config/hopalong.xml.h:8
msgid "EJK6"
msgstr "EJK6"
#: hacks/config/hopalong.xml.h:11
msgid "Hopalong"
msgstr "Π€ΡΠ°ΠΊΡΠ°Π»Π½Π° ΡΠΈΠΏΠΊΠ°"
#: hacks/config/hopalong.xml.h:12
msgid "Jong"
msgstr "ΠΠΎΠ½Π³"
#: hacks/config/hopalong.xml.h:16
msgid "Martin"
msgstr "ΠΠ°ΡΡΠΈΠ½"
#: hacks/config/hopalong.xml.h:18
msgid "Popcorn"
msgstr "ΠΡΠΊΠ°Π½ΠΊΠ°"
#: hacks/config/hopalong.xml.h:19
msgid "RR"
msgstr "RR"
#: hacks/config/hopalong.xml.h:20
msgid "Sine"
msgstr "Π‘ΠΈΠ½ΡΡΠΎΠΈΠ΄Π°"
#: hacks/config/hopalong.xml.h:24
msgid ""
"This draws lacy fractal patterns, based on iteration in the imaginary plane, "
"from a 1986 Scientific American article. Mostly written by Patrick Naughton."
msgstr ""
"ΠΠ²Π° ΡΡΡΠ° ΡΠΈΠΏΠΊΠ΅ΡΡΠΈ ΡΠ΅ΠΌΠΈ ΠΎΠ΄ ΡΡΠ°ΠΊΡΠ°Π»ΠΈ, Π±Π°Π·ΠΈΡΠ°Π½ΠΈ Π²ΡΠ· ΠΈΡΠ΅ΡΠ°ΡΠΈΠΈ Π½Π° ΠΈΠΌΠ°Π³ΠΈΠ½Π°ΡΠ½Π°ΡΠ° "
"ΠΏΠΎΠ²ΡΡΠΈΠ½Π°, ΠΎΠ΄ ΡΡΠ°ΡΠΈΡΠ° ΠΎΠ΄ Scientific American ΠΎΠ΄ 1986 Π³. ΠΠΎΠ³Π»Π°Π²Π½ΠΎ Π½Π°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ "
"Patrick Naughton."
#: hacks/config/hyperball.xml.h:1 hacks/config/hypercube.xml.h:1
msgid "Far"
msgstr "ΠΠ°Π»Π΅ΠΊΡ"
#: hacks/config/hyperball.xml.h:4
msgid "Hyperball"
msgstr "Π₯ΠΈΠΏΠ΅ΡΡΠΎΠΏΠΊΠ°"
#: hacks/config/hyperball.xml.h:5
msgid ""
"Hyperball is to hypercube as dodecahedron is to cube: this displays a 2D "
"projection of the sequence of 3D objects which are the projections of the 4D "
"analog to the dodecahedron. Written by Joe Keane."
msgstr ""
"Π₯ΠΈΠΏΠ΅ΡΡΠΎΠΏΠΊΠ°ΡΠ° ΡΠΏΡΠ΅ΠΌΠ° Ρ
ΠΈΠΏΠ΅ΡΠΊΠΎΡΠΊΠ°ΡΠ° Π΅ ΠΎΠ½Π° ΡΡΠΎ Π΅ Π΄ΠΎΠ΄Π΅ΠΊΠ°Π΅Π΄Π°ΡΠΎΡ ΡΠΏΡΠ΅ΠΌΠ° ΠΊΠΎΡΠΊΠ°ΡΠ°: ΠΎΠ²Π° "
"ΠΏΡΠΈΠΊΠ°ΠΆΡΠ²Π° 2Π-ΠΏΡΠΎΠ΅ΠΊΡΠΈΡΠ° Π½Π° Π½ΠΈΠ·Π° 3Π-ΠΎΠ±ΡΠ΅ΠΊΡΠΈ ΡΡΠΎ ΡΠ΅ ΠΏΡΠΎΠ΅ΠΊΡΠΈΠΈ Π½Π° 4Π-ΡΠ΅Π»Π° Π°Π½Π°Π»ΠΎΠ³Π½ΠΈ "
"Π½Π° Π΄ΠΎΠ΄Π΅ΠΊΠ°Π΅Π΄Π°Ρ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Joe Keane."
#: hacks/config/hyperball.xml.h:7 hacks/config/hypercube.xml.h:6
msgid "Near"
msgstr "ΠΠ»ΠΈΡΠΊΡ"
#: hacks/config/hyperball.xml.h:10 hacks/config/hypercube.xml.h:10
msgid "XW Rotation"
msgstr "Π ΠΎΡΠ°ΡΠΈΡΠ° ΠΏΠΎ XW"
#: hacks/config/hyperball.xml.h:11 hacks/config/hypercube.xml.h:11
msgid "XY Rotation"
msgstr "Π ΠΎΡΠ°ΡΠΈΡΠ° ΠΏΠΎ XY"
#: hacks/config/hyperball.xml.h:12 hacks/config/hypercube.xml.h:12
msgid "XZ Rotation"
msgstr "Π ΠΎΡΠ°ΡΠΈΡΠ° ΠΏΠΎ XZ"
#: hacks/config/hyperball.xml.h:13 hacks/config/hypercube.xml.h:13
msgid "YW Rotation"
msgstr "Π ΠΎΡΠ°ΡΠΈΡΠ° ΠΏΠΎ YW"
#: hacks/config/hyperball.xml.h:14 hacks/config/hypercube.xml.h:14
msgid "YZ Rotation"
msgstr "Π ΠΎΡΠ°ΡΠΈΡΠ° ΠΏΠΎ YZ"
#: hacks/config/hyperball.xml.h:15 hacks/config/hypercube.xml.h:15
msgid "ZW Rotation"
msgstr "Π ΠΎΡΠ°ΡΠΈΡΠ° ΠΏΠΎ ZW"
#: hacks/config/hyperball.xml.h:16 hacks/config/hypercube.xml.h:16
#: hacks/config/zoom.xml.h:8
msgid "Zoom"
msgstr "ΠΡΠΌΠΈΡΠ°ΡΠ΅"
#: hacks/config/hypercube.xml.h:4
msgid "Hypercube"
msgstr "Π₯ΠΈΠΏΠ΅ΡΠΊΠΎΡΠΊΠ°"
#: hacks/config/hypercube.xml.h:9
msgid ""
"This displays 2D projections of the sequence of 3D objects which are the "
"projections of the 4D analog to the cube: as a square is composed of four "
"lines, each touching two others; and a cube is composed of six squares, each "
"touching four others; a hypercube is composed of eight cubes, each touching six "
"others. To make it easier to visualize the rotation, it uses a different color "
"for the edges of each face. Don't think about it too long, or your brain will "
"melt. Written by Joe Keane, Fritz Mueller, and Jamie Zawinski."
msgstr ""
"ΠΠ²Π° ΠΏΡΠΈΠΊΠ°ΠΆΡΠ²Π° 2Π-ΠΏΡΠΎΠ΅ΠΊΡΠΈΠΈ Π½Π° Π½ΠΈΠ·Π° 3Π-ΠΎΠ±ΡΠ΅ΠΊΡΠΈ ΡΡΠΎ ΡΠ΅ ΠΏΡΠΎΠ΅ΠΊΡΠΈΠΈ Π½Π° 4Π-ΡΠ΅Π»Π° "
"Π°Π½Π°Π»ΠΎΠ³Π½ΠΈ Π½Π° ΠΊΠΎΡΠΊΠ°: Π±ΠΈΠ΄Π΅ΡΡΠΈ ΠΊΠ²Π°Π΄ΡΠ°ΡΠΎΡ ΡΠ΅ ΡΠΎΡΡΠΎΠΈ ΠΎΠ΄ ΡΠ΅ΡΠΈΡΠΈ Π»ΠΈΠ½ΠΈΠΈ, ΠΎΠ΄ ΠΊΠΎΠΈ ΡΠ΅ΠΊΠΎΡΠ° "
"Π΄ΠΎΠΏΠΈΡΠ° Π΄ΡΡΠ³ΠΈ Π΄Π²Π΅, Π° ΠΊΠΎΡΠΊΠ°ΡΠ° ΡΠ΅ ΡΠΎΡΡΠΎΠΈ ΠΎΠ΄ ΡΠ΅ΡΡ ΠΊΠ²Π°Π΄ΡΠ°ΡΠΈ, ΠΎΠ΄ ΠΊΠΎΠΈ ΡΠ΅ΠΊΠΎΡ Π΄ΠΎΠΏΠΈΡΠ° "
"ΡΠ΅ΡΠΈΡΠΈ Π΄ΡΡΠ³ΠΈ; Ρ
ΠΈΠΏΠ΅ΡΠΊΠΎΡΠΊΠ°ΡΠ° ΡΠ΅ ΡΠΎΡΡΠΎΠΈ ΠΎΠ΄ ΠΎΡΡΠΌ ΠΊΠΎΡΠΊΠΈ, ΠΎΠ΄ ΠΊΠΎΠΈ ΡΠ΅ΠΊΠΎΡΠ° Π΄ΠΎΠΏΠΈΡΠ° ΡΠ΅ΡΡ "
"Π΄ΡΡΠ³ΠΈ. ΠΠ° ΠΏΠΎΠ»Π΅ΡΠ½ΠΎ Π΄Π° ΡΠ΅ Π΄ΠΎΠ»ΠΎΠ²ΠΈ ΡΠΎΡΠ°ΡΠΈΡΠ°ΡΠ°, ΡΠ΅ ΠΊΠΎΡΠΈΡΡΠΈ ΡΠ°Π·Π»ΠΈΡΠ½Π° Π±ΠΎΡΠ° Π·Π° ΡΠ°Π±ΠΎΠ²ΠΈΡΠ΅ "
"ΠΎΠ΄ ΡΠ΅ΠΊΠΎΡΠ° ΡΡΡΠ°Π½Π°. ΠΠ΅ ΡΠ°Π·ΠΌΠΈΡΠ»ΡΠ²Π°ΡΡΠ΅ Π·Π° ΠΎΠ²Π° ΠΌΠ½ΠΎΠ³Ρ Π΄ΠΎΠ»Π³ΠΎ, Π±ΠΈΠ΄Π΅ΡΡΠΈ ΡΠ΅ Π²ΠΈ ΡΠ΅ ΡΡΠΎΠΏΠΈ "
"ΠΌΠΎΠ·ΠΎΠΊΠΎΡ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Joe Keane, Fritz Mueller ΠΈ Jamie Zawinski."
#: hacks/config/ifs.xml.h:2
#, fuzzy
msgid "IFS"
msgstr "ΠΠ‘Π€"
#: hacks/config/ifs.xml.h:7
#, fuzzy
msgid ""
"This one draws spinning, colliding iterated-function-system images. Written by "
"Massimino Pascal."
msgstr ""
"ΠΠ²Π° ΡΡΡΠ° ΡΠ»ΠΈΠΊΠΈ ΠΎΠ΄ ΠΈΡΠ΅ΡΠ°ΡΠΈΠ²Π½ΠΈ ΡΠΈΡΡΠ΅ΠΌΠΈ ΡΡΠ½ΠΊΡΠΈΠΈ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Massimino Pascal."
#: hacks/config/imsmap.xml.h:3
msgid "Brightness Gradients"
msgstr "ΠΡΠ°Π΄ΠΈΠ΅Π½ΡΠΈ Π½Π° ΠΎΡΠ²Π΅ΡΠ»ΡΠ²Π°ΡΠ΅"
#: hacks/config/imsmap.xml.h:7
msgid "Hue Gradients"
msgstr "ΠΡΠ°Π΄ΠΈΠ΅Π½ΡΠΈ Π½Π° Π½ΠΈΡΠ°Π½ΡΠΈ"
#: hacks/config/imsmap.xml.h:8
msgid "IMSmap"
msgstr "IMSmap"
#: hacks/config/imsmap.xml.h:12
msgid "Saturation Gradients"
msgstr "ΠΡΠ°Π΄ΠΈΠ΅Π½ΡΠΈ Π½Π° Π·Π°ΡΠΈΡΡΠ²Π°ΡΠ΅"
#: hacks/config/imsmap.xml.h:14
msgid ""
"This generates random cloud-like patterns. It looks quite different in "
"monochrome and color. The basic idea is to take four points on the edge of the "
"image, and assign each a random ``elevation''. Then find the point between "
"them, and give it a value which is the average of the other four, plus some "
"small random offset. Then coloration is done based on elevation. The color "
"selection is done by binding the elevation to either hue, saturation, or "
"brightness, and assigning random values to the others. The ``brightness'' mode "
"tends to yield cloudlike patterns, and the others tend to generate images that "
"look like heat-maps or CAT-scans. Written by Juergen Nickelsen and Jamie "
"Zawinski."
msgstr ""
"ΠΠ²Π° Π³Π΅Π½Π΅ΡΠΈΡΠ° ΡΠ»ΡΡΠ°ΡΠ½ΠΈ ΡΠ΅ΠΌΠΈ ΡΠ»ΠΈΡΠ½ΠΈ Π½Π° ΠΎΠ±Π»Π°ΡΠΈ. ΠΠ·Π³Π»Π΅Π΄Π° ΡΠΎΡΠ΅ΠΌΠ° ΠΏΠΎΠΈΠ½Π°ΠΊΡ Π²ΠΎ ΠΏΠΎΠ²Π΅ΡΠ΅ "
"Π±ΠΎΠΈ ΠΎΡΠΊΠΎΠ»ΠΊΡ Π²ΠΎ Π΅Π΄Π½Π°. ΠΡΠ½ΠΎΠ²Π½Π°ΡΠ° ΠΈΠ΄Π΅ΡΠ° Π΅ Π΄Π° ΡΠ΅ ΠΈΠ·Π±Π΅ΡΠ°Ρ ΡΠ΅ΡΠΈΡΠΈ ΡΠΎΡΠΊΠΈ Π½Π° ΡΠ°Π±ΠΎΡ Π½Π° "
"ΡΠ»ΠΈΠΊΠ°ΡΠ°, ΠΈ Π½Π° ΡΠΈΡΠ΅ Π΄Π° ΠΈΠΌ ΡΠ΅ Π΄ΠΎΠ΄Π΅Π»ΠΈ ΡΠ»ΡΡΠ°ΡΠ½ΠΎ βΠΈΠ·Π΄ΠΈΠ³Π°ΡΠ΅β. ΠΠΎΡΠΎΠ° ΡΠ΅ ΠΈΠ·Π±ΠΈΡΠ° ΡΠΎΡΠΊΠ° "
"ΠΌΠ΅ΡΡ Π½ΠΈΠ² ΠΈ Ρ ΡΠ΅ Π΄ΠΎΠ΄Π΅Π»ΡΠ²Π° Π²ΡΠ΅Π΄Π½ΠΎΡΡ ΡΡΠΎ Π΅ ΠΏΡΠΎΡΠ΅ΠΊ ΠΎΠ΄ ΠΎΡΡΠ°Π½Π°ΡΠΈΡΠ΅ ΡΠ΅ΡΠΈΡΠΈ, ΠΊΠ°ΠΊΠΎ ΠΈ "
"Π΄ΠΎΠΏΠΎΠ»Π½ΠΈΡΠ΅Π»Π½ΠΎ ΠΌΠ°Π»ΠΎ ΠΏΡΠΎΠΈΠ·Π²ΠΎΠ»Π½ΠΎ Π½Π°Π΄ΠΎΠΏΠΎΠ»Π½ΡΠ²Π°ΡΠ΅. ΠΠ±ΠΎΡΡΠ²Π°ΡΠ΅ΡΠΎ Π΅ Π½Π°ΠΏΡΠ°Π²Π΅Π½ΠΎ Π²ΡΠ· ΠΎΡΠ½ΠΎΠ²Π° "
"Π½Π° ΠΈΠ·Π΄ΠΈΠ³Π°ΡΠ΅ΡΠΎ. ΠΠ·Π±ΠΎΡΠΎΡ Π½Π° Π±ΠΎΡΠ° Π΅ Π½Π°ΠΏΡΠ°Π²Π΅Π½ ΡΠΎ ΠΏΠΎΠ²ΡΠ·ΡΠ²Π°ΡΠ΅ Π½Π° ΠΈΠ·Π΄ΠΈΠ³Π°ΡΠ΅ΡΠΎ ΡΠΎ "
"Π½ΠΈΡΠ°Π½ΡΠΈΡΠ°ΡΠ΅ΡΠΎ, Π·Π°ΡΠΈΡΡΠ²Π°ΡΠ΅ΡΠΎ ΠΈΠ»ΠΈ ΠΎΡΠ²Π΅ΡΠ»ΡΠ²Π°ΡΠ΅ΡΠΎ, ΠΈ ΡΠΎ Π΄ΠΎΠ΄Π΅Π»ΡΠ²Π°ΡΠ΅ ΠΏΡΠΎΠΈΠ·Π²ΠΎΠ»Π½ΠΈ "
"Π²ΡΠ΅Π΄Π½ΠΎΡΡΠΈ Π½Π° ΠΎΡΡΠ°Π½Π°ΡΠΈΡΠ΅. Π Π΅ΠΆΠΈΠΌΠΎΡ βΠΎΡΠ²Π΅ΡΠ»ΡΠ²Π°ΡΠ΅β ΡΠ΅ΠΆΠ½Π΅Π΅ Π΄Π° ΡΠΎΠ·Π΄Π°Π΄Π΅ ΡΠ°Π±Π»ΠΎΠ½ΠΈ ΡΡΠΎ "
"Π»ΠΈΡΠ°Ρ Π½Π° ΠΎΠ±Π»Π°ΡΠΈ, Π° Π΄ΡΡΠ³ΠΈΡΠ΅ ΡΠ΅ΠΆΠ½Π΅Π°Ρ Π΄Π° Π³Π΅Π½Π΅ΡΠΈΡΠ°Π°Ρ ΡΠ»ΠΈΠΊΠΈ ΡΡΠΎ Π»ΠΈΡΠ°Ρ Π½Π° ΡΡΡΠ° ΠΈΠ»ΠΈ "
"CAT-ΡΠΊΠ΅Π½ΠΈΡΠ°ΡΠ°. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Juergen Nickelsen ΠΈ Jamie Zawinski."
#: hacks/config/interference.xml.h:1
msgid "Anim Speed"
msgstr "ΠΡΠ·ΠΈΠ½Π° Π½Π° Π°Π½ΠΈΠΌΠ°ΡΠΈΡΠ°"
#: hacks/config/interference.xml.h:2
msgid ""
"Another color-field hack, this one works by computing decaying sinusoidal "
"waves, and allowing them to interfere with each other as their origins move. "
"Written by Hannu Mallat."
msgstr ""
"Π£ΡΡΠ΅ Π΅Π΄Π΅Π½ ΠΎΠ±ΠΎΠ΅Π½ Ρ
Π°ΠΊ. ΠΠ²ΠΎΡ ΡΠ°Π±ΠΎΡΠΈ ΡΠΎ ΠΏΡΠ΅ΡΠΌΠ΅ΡΡΠ²Π°ΡΠ΅ Π½Π° ΠΎΠΏΠ°ΡΠ°ΡΠΊΠΈ ΡΠΈΠ½ΡΡΠΎΠΈΠ΄Π½ΠΈ "
"Π±ΡΠ°Π½ΠΎΠ²ΠΈ, ΠΎΠ²ΠΎΠ·ΠΌΠΎΠΆΡΠ²Π°ΡΡΠΈ ΠΈΠΌ ΠΌΠ΅ΡΡΡΠ΅Π±Π½ΠΎ Π΄Π° ΡΠΈ Π²Π»ΠΈΡΠ°Π°Ρ Π΄ΠΎΠ΄Π΅ΠΊΠ° ΡΠ΅ Π΄Π²ΠΈΠΆΠ°Ρ Π½ΠΈΠ²Π½ΠΈΡΠ΅ "
"ΠΏΠΎΡΠ΅ΡΠΎΡΠΈ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Hannu Mallat."
#: hacks/config/interference.xml.h:7
msgid "Interference"
msgstr "ΠΠ½ΡΠ΅ΡΡΠ΅ΡΠ΅Π½ΡΠΈΡΠ°"
#: hacks/config/interference.xml.h:10 hacks/config/t3d.xml.h:9
#: hacks/config/xearth.xml.h:11 hacks/config/zoom.xml.h:5
msgid "Magnification"
msgstr "ΠΠ³ΠΎΠ»Π΅ΠΌΡΠ²Π°ΡΠ΅"
#: hacks/config/interference.xml.h:13
msgid "Number of Waves"
msgstr "ΠΡΠΎΡ Π½Π° Π±ΡΠ°Π½ΠΎΠ²ΠΈ"
#: hacks/config/interference.xml.h:17
msgid "Wave Size"
msgstr "ΠΠΎΠ»Π΅ΠΌΠΈΠ½Π° Π½Π° Π±ΡΠ°Π½ΠΎΠ²ΠΈΡΠ΅"
#: hacks/config/jigsaw.xml.h:4
msgid "Jigsaw"
msgstr "Π‘Π»ΠΎΠΆΡΠ²Π°Π»ΠΊΠ°"
#: hacks/config/jigsaw.xml.h:6
msgid "Solved Duration"
msgstr "ΠΠ΅ΡΠΈΠΎΠ΄ Π·Π° ΡΠ΅ΡΠ°Π²Π°ΡΠ΅"
#: hacks/config/jigsaw.xml.h:8
msgid ""
"This grabs a screen image, carves it up into a jigsaw puzzle, shuffles it, and "
"then solves the puzzle. This works especially well when you feed it an external "
"video signal instead of letting it grab the screen image (actually, I guess "
"this is generally true...) When it is grabbing a video image, it is sometimes "
"pretty hard to guess what the image is going to look like once the puzzle is "
"solved. Written by Jamie Zawinski."
msgstr ""
"ΠΠ²Π° ΡΠ° Π·Π΅ΠΌΠ° ΡΠ»ΠΈΠΊΠ°ΡΠ° Π½Π° Π΅ΠΊΡΠ°Π½ΠΎΡ, ΡΠ° ΡΠ΅ΡΠ΅ Π½Π° ΠΏΠ°ΡΡΠΈΡΠ° ΠΎΠ΄ ΡΠ»ΠΎΠΆΡΠ²Π°Π»ΠΊΠ°, Π³ΠΈ ΠΌΠ΅ΡΠ°, ΠΈ "
"ΠΏΠΎΡΠΎΠ° ΡΠ° ΡΠ΅ΡΠ°Π²Π° ΡΠ»ΠΎΠΆΡΠ²Π°Π»ΠΊΠ°ΡΠ°. ΠΠ²Π° ΡΠ°Π±ΠΎΡΠΈ ΠΎΡΠΎΠ±Π΅Π½ΠΎ Π΄ΠΎΠ±ΡΠΎ ΠΊΠΎΠ³Π° ΡΠ΅ Π΄ΠΎΠ²Π΅Π΄Π΅ΡΠ΅ "
"Π½Π°Π΄Π²ΠΎΡΠ΅ΡΠ΅Π½ Π²ΠΈΠ΄Π΅ΠΎ-ΡΠΈΠ³Π½Π°Π» Π½Π°ΠΌΠ΅ΡΡΠΎ ΡΠ»ΠΈΠΊΠ° ΠΎΠ΄ Π΅ΠΊΡΠ°Π½ΠΎΡ (Π²ΡΡΡΠ½ΠΎΡΡ, ΠΏΡΠ΅ΡΠΏΠΎΡΡΠ°Π²ΡΠ²Π°ΠΌ Π΄Π΅ΠΊΠ° "
"ΠΎΠ²Π° Π²ΠΎ ΠΏΡΠΈΠ½ΡΠΈΠΏ Π΅ ΡΠΎΡΠ½ΠΎ...) ΠΠΎΠ³Π° Π·Π΅ΠΌΠ° ΡΠ»ΠΈΠΊΠ° ΠΎΠ΄ Π²ΠΈΠ΄Π΅ΠΎ, ΠΏΠΎΠ½Π΅ΠΊΠΎΠ³Π°Ρ Π΅ Π΄ΠΎΡΡΠ° ΡΠ΅ΡΠΊΠΎ Π΄Π° "
"ΡΠ΅ ΠΏΡΠ΅ΡΠΏΠΎΡΡΠ°Π²ΠΈ ΠΊΠ°ΠΊΠΎ ΡΠ΅ ΠΈΠ·Π³Π»Π΅Π΄Π° ΡΠ»ΠΈΠΊΠ°ΡΠ° ΠΎΡΠΊΠ°ΠΊΠΎ ΡΠ΅ Π±ΠΈΠ΄Π΅ ΡΠ΅ΡΠ΅Π½Π° ΡΠ»ΠΎΠΆΡΠ²Π°Π»ΠΊΠ°ΡΠ°. "
"ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Jamie Zawinski."
#: hacks/config/juggle.xml.h:1
msgid "Checkered Balls"
msgstr "ΠΠ°ΡΠΈΡΠ°Π½ΠΈ ΡΠΎΠΏΡΠΈΡΠ°"
#: hacks/config/juggle.xml.h:2
msgid "Draws a juggling stick-man. Written by Tim Auckland."
msgstr "Π¦ΡΡΠ° ΡΡΠ°ΠΏΡΠ΅ΡΡ ΡΠΎΠ²Π΅ΠΊ ΡΡΠΎ ΠΆΠΎΠ½Π³Π»ΠΈΡΠ°. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Tim Auckland."
#: hacks/config/juggle.xml.h:4
msgid "Juggle"
msgstr "ΠΠΎΠ½Π³Π»ΠΈΡΠ°ΡΠ΅"
#: hacks/config/juggle.xml.h:6 hacks/config/pipes.xml.h:10
msgid "None"
msgstr "ΠΠ΅ΠΌΠ°"
#: hacks/config/julia.xml.h:3 hacks/config/rorschach.xml.h:4
msgid "Iterations"
msgstr "ΠΡΠ΅ΡΠ°ΡΠΈΠΈ"
#: hacks/config/julia.xml.h:4
msgid "Julia"
msgstr "ΠΡΠ»ΠΈΡΠ°"
#: hacks/config/julia.xml.h:11
msgid ""
"This one draws spinning, animating (are you detecting a pattern here yet?) "
"explorations of the Julia set. You've probably seen static images of this "
"fractal form before, but it's a lot of fun to watch in motion as well. One "
"interesting thing is that there is a small swinging dot passing in front of the "
"image, which indicates the control point from which the rest of the image was "
"generated. Written by Sean McCullough."
msgstr ""
"ΠΠ²Π° ΡΡΡΠ° Π²ΡΡΠ»ΠΈΠ²ΠΈ, Π°Π½ΠΈΠΌΠΈΡΠ°Π½ΠΈ (Π΄Π°Π»ΠΈ Π²Π΅ΡΠ΅ ΡΠ° Π½Π°ΡΠ΅ΡΡΠ²Π°ΡΠ΅ ΡΠ΅ΠΌΠ°ΡΠ°?) ΠΈΡΡΡΠ°ΠΆΡΠ²Π°ΡΠ° Π½Π° "
"ΠΌΠ½ΠΎΠΆΠ΅ΡΡΠ²ΠΎΡΠΎ ΠΡΠ»ΠΈΡΠ°. ΠΠ΅ΡΠΎΡΠ°ΡΠ½ΠΎ Π²Π΅ΡΠ΅ ΡΡΠ΅ Π²ΠΈΠ΄Π΅Π»Π΅ ΡΡΠ°ΡΠΈΡΠ½ΠΈ ΡΠ»ΠΈΠΊΠΈ ΠΎΠ΄ ΠΎΠ²Π°Π° ΡΠΎΡΠΌΠ° Π½Π° "
"ΡΡΠ°ΠΊΡΠ°Π»ΠΈ, Π½ΠΎ ΠΈΡΡΠΎ ΡΠ°ΠΊΠ° Π΅ ΠΈΠ½ΡΠ΅ΡΠ΅ΡΠ½ΠΎ Π΄Π° ΡΠ΅ Π³Π»Π΅Π΄Π° ΠΈ Π²ΠΎ Π΄Π²ΠΈΠΆΠ΅ΡΠ΅. ΠΠ΄Π½Π° ΠΈΠ½ΡΠ΅ΡΠ΅ΡΠ½Π° "
"ΡΠ°Π±ΠΎΡΠ° Π΅ ΡΡΠΎ ΠΏΠΎΡΡΠΎΠΈ ΠΌΠ°Π»Π° ΡΠΎΡΠΊΠ° ΡΡΠΎ ΡΠ΅ Π΄Π²ΠΈΠΆΠΈ ΠΈ ΠΌΠΈΠ½ΡΠ²Π° ΠΏΡΠ΅Π΄ ΡΠ»ΠΈΠΊΠ°ΡΠ°, ΠΈ ΡΠ° "
"ΠΎΠ·Π½Π°ΡΡΠ²Π° ΠΊΠΎΠ½ΡΡΠΎΠ»Π½Π°ΡΠ° ΡΠΎΡΠΊΠ° ΠΎΠ΄ ΠΊΠΎΡΠ° ΡΠ΅ Π³Π΅Π½Π΅ΡΠΈΡΠ° ΠΎΡΡΠ°ΡΠΎΠΊΠΎΡ Π½Π° ΡΠ»ΠΈΠΊΠ°ΡΠ°. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ "
"ΠΎΠ΄ Sean McCullough."
#: hacks/config/kaleidescope.xml.h:1
msgid ""
"Another clone of an ancient meme, consisting largely of frenetic rotational "
"motion of colored lines. This one is by Ron Tapia. The motion is nice, but I "
"think it needs more solids, or perhaps just brighter colors. More variations in "
"the rotational speed might help, too."
msgstr ""
"Π£ΡΡΠ΅ Π΅Π΄Π΅Π½ ΠΊΠ»ΠΎΠ½ Π½Π° Π΅Π΄Π½Π° ΡΡΠ°ΡΠ° ΠΈΠ΄Π΅ΡΠ°, ΡΡΠΎ ΡΠ΅ ΡΠΎΡΡΠΎΠΈ Π½Π°ΡΠΌΠ½ΠΎΠ³Ρ ΠΎΠ΄ ΡΡΠ΅Π½Π΅ΡΠΈΡΠ½ΠΎ "
"ΡΠΎΡΠ°ΡΠΈΠΎΠ½ΠΎ Π΄Π²ΠΈΠΆΠ΅ΡΠ΅ Π½Π° ΠΎΠ±ΠΎΠ΅Π½ΠΈ Π»ΠΈΠ½ΠΈΠΈ. ΠΠ²ΠΎΡ Π΅ ΠΎΠ΄ Ron Tapia. ΠΠ²ΠΈΠΆΠ΅ΡΠ΅ΡΠΎ Π΅ ΡΠ±Π°Π²ΠΎ, Π½ΠΎ "
"ΠΌΠΈΡΠ»Π°ΠΌ Π΄Π΅ΠΊΠ° ΡΠ΅ ΠΏΠΎΡΡΠ΅Π±Π½ΠΈ ΠΏΠΎΠ²Π΅ΡΠ΅ ΡΡΠΎΠ΄ΠΈΠΌΠ΅Π½Π·ΠΈΠΎΠ½Π°Π»Π½ΠΈ ΡΠ΅Π»Π°, ΠΈΠ»ΠΈ Π±Π°ΡΠ΅ΠΌ ΠΏΠΎΡΠ²Π΅ΡΠ»ΠΈ Π±ΠΎΠΈ. "
"ΠΠΎΠ²Π΅ΡΠ΅ Π²Π°ΡΠΈΡΠ°ΡΠΈΠΈ Π²ΠΎ Π±ΡΠ·ΠΈΠ½Π°ΡΠ° Π½Π° ΡΠΎΡΠ°ΡΠΈΡΠ° ΠΌΠΎΠΆΠ°Ρ ΠΈΡΡΠΎ ΡΠ°ΠΊΠ° Π΄Π° ΠΏΠΎΠΌΠΎΠ³Π½Π°Ρ."
#: hacks/config/kaleidescope.xml.h:4
msgid "Kaleidescope"
msgstr "ΠΠ°Π»Π΅ΠΈΠ΄ΠΎΡΠΊΠΎΠΏ"
#: hacks/config/kaleidescope.xml.h:6 hacks/config/qix.xml.h:18
msgid "Segments"
msgstr "Π‘Π΅Π³ΠΌΠ΅Π½ΡΠΈ"
#: hacks/config/kaleidescope.xml.h:9
msgid "Symmetry"
msgstr "Π‘ΠΈΠΌΠ΅ΡΡΠΈΡΠ°"
#: hacks/config/kaleidescope.xml.h:10
msgid "Trails"
msgstr "Π’ΡΠ°Π³ΠΈ"
#: hacks/config/kumppa.xml.h:5
msgid "Kumppa"
msgstr "ΠΡΠΌΠΏΠ°"
#: hacks/config/kumppa.xml.h:7
msgid "Randomize"
msgstr ""
"Π‘Π»ΡΡΠ°Π΅Π½\n"
"ΠΈΠ·Π±ΠΎΡ"
#: hacks/config/kumppa.xml.h:10
msgid ""
"Spiraling, spinning, and very, very fast splashes of color rush toward the "
"screen. Written by Teemu Suutari."
msgstr ""
"Π‘ΠΏΠΈΡΠ°Π»Π½ΠΈ, Π²ΡΡΠ»ΠΈΠ²ΠΈ ΠΈ ΠΌΠ½ΠΎΠ³Ρ, ΠΌΠ½ΠΎΠ³Ρ Π±ΡΠ·ΠΈ ΠΈΠ·Π»ΠΈΠ²ΠΈ Π½Π° Π±ΠΎΠΈ ΡΡΠΎ Π»Π΅ΡΠ°Π°Ρ ΠΊΠΎΠ½ Π΅ΠΊΡΠ°Π½ΠΎΡ. "
"ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Teemu Suutari."
#: hacks/config/lament.xml.h:1
msgid ""
"Animates a simulation of Lemarchand's Box, repeatedly solving itself. Requires "
"OpenGL, and a machine with fast hardware support for texture maps. Warning: "
"occasionally opens doors. Written by Jamie Zawinski."
msgstr ""
"ΠΠ½ΠΈΠΌΠΈΡΠ° ΡΠΈΠΌΡΠ»Π°ΡΠΈΡΠ° Π½Π° ΠΊΠΎΡΠΊΠ°ΡΠ° Π½Π° ΠΠ΅ΠΌΠ°ΡΡΠ°Π½ ΡΡΠΎ ΠΏΠΎΡΡΠΎΡΠ°Π½ΠΎ ΡΠ΅ ΡΠ΅ΡΠ°Π²Π° ΡΠ°ΠΌΠ°ΡΠ° ΡΠ΅Π±Π΅. "
"ΠΠ°ΡΠ° OpenGL ΠΈ ΠΌΠ°ΡΠΈΠ½Π° ΡΠΎ Π΄ΠΎΠ±ΡΠ° Ρ
Π°ΡΠ΄Π²Π΅ΡΡΠΊΠ° ΠΏΠΎΠ΄Π΄ΡΡΠΊΠ° Π·Π° ΡΠ΅ΠΊΡΡΡΡΠΈ. ΠΠ½ΠΈΠΌΠ°Π½ΠΈΠ΅; "
"ΠΏΠΎΠ²ΡΠ΅ΠΌΠ΅Π½ΠΎ ΠΎΡΠ²ΠΎΡΠ° Π²ΡΠ°ΡΠΈ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Jamie Zawinski."
#: hacks/config/lament.xml.h:3
msgid "Lament"
msgstr "ΠΠ΅ΠΌΠ°ΡΡΠ°Π½"
#: hacks/config/laser.xml.h:4
msgid "Laser"
msgstr "ΠΠ°ΡΠ΅Ρ"
#: hacks/config/laser.xml.h:7
msgid ""
"Moving radiating lines, that look vaguely like scanning laser beams. Written by "
"Pascal Pensa. (Frankie say: relax.)"
msgstr ""
"ΠΠΎΠ΄Π²ΠΈΠΆΠ½ΠΈ Π·ΡΠ°ΡΠΈ ΡΡΠΎ Π½Π°Π»ΠΈΠΊΡΠ²Π°Π°Ρ Π½Π° Π»Π°ΡΠ΅ΡΡΠΊΠΈ Π·ΡΠ°ΡΠΈ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Pascal Pensa. "
"(Π€ΡΠ΅Π½ΠΊΠΈ Π²Π΅Π»ΠΈ: ΠΎΠ»Π°Π±Π°Π²ΠΈ ΡΠ΅.)"
#: hacks/config/lightning.xml.h:2
msgid "Lightning"
msgstr "ΠΠΎΠ»ΡΠ°"
#: hacks/config/lightning.xml.h:7
msgid ""
"This one draws crackling fractal lightning bolts. It's simple, direct, and to "
"the point. If only it had sound... Written by Keith Romberg."
msgstr ""
"ΠΠ²Π° ΡΡΡΠ° ΠΈΡΠΏΡΠ΅ΠΊΡΡΠ΅Π½ΠΈ ΡΡΠ°ΠΊΡΠ°Π»Π½ΠΈ ΠΌΠΎΠ»ΡΠΈ. ΠΠ΄Π½ΠΎΡΡΠ°Π²Π½ΠΎ Π΅, Π΄ΠΈΡΠ΅ΠΊΡΠ½ΠΎ ΠΈ Π½Π° ΠΌΠ΅ΡΡΠΎ. Π‘Π°ΠΌΠΎ "
"ΡΡΡΠ΅ Π΄Π° ΠΈΠΌΠ°ΡΠ΅ Π·Π²ΡΠΊ... ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Keith Romberg."
#: hacks/config/lisa.xml.h:4
msgid "Lisa"
msgstr "ΠΠΈΠ·Π°"
#: hacks/config/lisa.xml.h:10
msgid "Steps"
msgstr "Π§Π΅ΠΊΠΎΡΠΈ"
#: hacks/config/lisa.xml.h:11
msgid ""
"This draws Lisajous loops, by Caleb Cullen. Remember that device they had the "
"Phantom Zone prisoners in during their trial in Superman? I think that was one "
"of these."
msgstr ""
"ΠΠ²Π° ΡΡΡΠ° ΡΠ°ΠΌΠΊΠΈ Π½Π° ΠΠΈΡΠ°ΠΆΡ, ΠΎΠ΄ Caleb Cullen. Π‘Π΅ ΡΠ΅ΡΠ°Π²Π°ΡΠ΅ Π»ΠΈ Π½Π° ΡΡΠ΅Π΄ΠΎΡ ΡΡΠΎ Π³ΠΎ ΠΈΠΌΠ°Π° "
"Π·Π°ΡΠ²ΠΎΡΠ΅Π½ΠΈΡΠΈΡΠ΅ Π²ΠΎ Π€Π°Π½ΡΠΎΠΌΡΠΊΠ°ΡΠ° Π·ΠΎΠ½Π° Π·Π° Π²ΡΠ΅ΠΌΠ΅ Π½Π° ΡΡΠ΄Π΅ΡΠ΅ΡΠΎ Π½Π° Π‘ΡΠΏΠ΅ΡΠΌΠ΅Π½? ΠΠΈΡΠ»Π°ΠΌ Π΄Π΅ΠΊΠ° "
"Π±Π΅ΡΠ΅ Π΅Π΄Π΅Π½ ΠΎΠ΄ ΠΎΠ²ΠΈΠ΅."
#: hacks/config/lissie.xml.h:1
msgid ""
"Another Lissajous figure. This one draws the progress of circular shapes along "
"a path. Written by Alexander Jolk."
msgstr ""
"Π£ΡΡΠ΅ Π΅Π΄Π½Π° ΡΠΈΠ³ΡΡΠ° Π½Π° ΠΠΈΡΠ°ΠΆΡ. ΠΠ²Π°Π° Π³ΠΎ ΡΡΡΠ° ΡΠ΅ΠΊΠΎΡ Π½Π° ΡΠΈΠΊΠ»ΠΈΡΠ½ΠΈΡΠ΅ ΠΎΠ±Π»ΠΈΡΠΈ Π΄ΠΎΠ»ΠΆ "
"ΠΏΠ°ΡΠ΅ΠΊΠ°ΡΠ°. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Alexander Jolk."
#: hacks/config/lissie.xml.h:5
msgid "Lissie"
msgstr "ΠΠΈΠ·ΠΈ"
#: hacks/config/lmorph.xml.h:1
msgid "Closed Figures"
msgstr "ΠΠ°ΡΠ²ΠΎΡΠ΅Π½ΠΈ ΡΠΈΠ³ΡΡΠΈ"
#: hacks/config/lmorph.xml.h:2
msgid "Control Points"
msgstr "ΠΠΎΠ½ΡΡΠΎΠ»Π½ΠΈ ΡΠΎΡΠΊΠΈ"
#: hacks/config/lmorph.xml.h:4
msgid "Interpolation Steps"
msgstr "Π§Π΅ΠΊΠΎΡΠΈ Π½Π° ΠΈΠ½ΡΠ΅ΡΠΏΠΎΠ»Π°ΡΠΈΡΠ°"
#: hacks/config/lmorph.xml.h:5
msgid "LMorph"
msgstr "ΠΠΌΠΎΡΡΠ½ΠΈ Π»ΠΈΠ½ΠΈΠΈ"
#: hacks/config/lmorph.xml.h:6
msgid "Less"
msgstr "ΠΠΎΠΌΠ°Π»ΠΊΡ"
#: hacks/config/lmorph.xml.h:8
msgid "More"
msgstr "ΠΠΎΠ²Π΅ΡΠ΅"
#: hacks/config/lmorph.xml.h:9
msgid "Open Figures"
msgstr "ΠΡΠ²ΠΎΡΠ΅Π½ΠΈ ΡΠΈΠ³ΡΡΠΈ"
#: hacks/config/lmorph.xml.h:10
msgid "Open and Closed Figures"
msgstr "ΠΡΠ²ΠΎΡΠ΅Π½ΠΈ ΠΈ Π·Π°ΡΠ²ΠΎΡΠ΅Π½ΠΈ ΡΠΈΠ³ΡΡΠΈ"
#: hacks/config/lmorph.xml.h:15
msgid ""
"This generates random spline-ish line drawings and morphs between them. Written "
"by Sverre H. Huseby and Glenn T. Lines."
msgstr ""
"ΠΠ²Π° Π³Π΅Π½Π΅ΡΠΈΡΠ° ΠΏΡΠΎΠΈΠ·Π²ΠΎΠ»Π½ΠΈ ΡΡΡΠ΅ΠΆΠΈ Π½Π° Π»ΠΈΠ½ΠΈΠΈ ΡΠ»ΠΈΡΠ½ΠΈ Π½Π° ΡΠΏΠ»Π°ΡΠ½ΠΎΠ²ΠΈ ΠΈ Π½ΠΈΠ²Π½ΠΎ ΠΌΠ΅ΡΡΡΠ΅Π±Π½ΠΎ "
"ΠΏΡΠ΅ΡΠΎΠΏΡΠ²Π°ΡΠ΅. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Sverre H. Huseby ΠΈ Glenn T. Lines."
#: hacks/config/loop.xml.h:3
msgid "Loop"
msgstr "ΠΠ°ΠΌΠΊΠ°"
#: hacks/config/loop.xml.h:10
msgid ""
"This one produces loop-shaped colonies that spawn, age, and eventually die. "
"Written by David Bagley."
msgstr ""
"ΠΠ²Π° Π΄Π°Π²Π° ΠΊΠΎΠ»ΠΎΠ½ΠΈΠΈ Π²ΠΎ ΠΎΠ±Π»ΠΈΠΊ Π½Π° ΡΠ°ΠΌΠΊΠ° ΡΡΠΎ ΡΠ΅ ΡΠ°Π·ΠΌΠ½ΠΎΠΆΡΠ²Π°Π°Ρ, ΡΡΠ°ΡΠ΅Π°Ρ ΠΈ Π½Π° ΠΊΡΠ°ΡΠΎΡ "
"ΡΠΌΠΈΡΠ°Π°Ρ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ David Bagley."
#: hacks/config/maze.xml.h:3
msgid "Backtracking Generator"
msgstr "ΠΠ΅Π½Π΅ΡΠ°ΡΠΎΡ Π·Π° ΡΠ»Π΅Π΄Π΅ΡΠ΅ Π½Π°Π½Π°Π·Π°Π΄"
#: hacks/config/maze.xml.h:5 hacks/config/slidescreen.xml.h:3
msgid "Grid Size"
msgstr "ΠΠΎΠ»Π΅ΠΌΠΈΠ½Π° Π½Π° ΠΌΡΠ΅ΠΆΠ°ΡΠ°"
#: hacks/config/maze.xml.h:6
msgid "Head Toward Exit"
msgstr "Π’ΡΠ³Π½ΠΈ ΠΊΠΎΠ½ ΠΈΠ·Π»Π΅Π·ΠΎΡ"
#: hacks/config/maze.xml.h:7
msgid "Ignorant of Exit Direction"
msgstr "ΠΠ³Π½ΠΎΡΠΈΡΠ°Ρ ΡΠ° Π½Π°ΡΠΎΠΊΠ°ΡΠ° ΠΊΠΎΠ½ ΠΈΠ·Π»Π΅Π·ΠΎΡ"
#: hacks/config/maze.xml.h:8
msgid "Joining Generator"
msgstr "ΠΠ΅Π½Π΅ΡΠ°ΡΠΎΡ Π½Π° ΡΠ²ΡΠ·ΡΠ²Π°ΡΠ΅"
#: hacks/config/maze.xml.h:9
msgid "Maze"
msgstr "ΠΠ°Π²ΠΈΡΠΈΠ½Ρ"
#: hacks/config/maze.xml.h:10
msgid "Post-Solve Delay"
msgstr "ΠΠ°Π΄ΡΠΆΡΠ²Π°ΡΠ΅ ΠΏΠΎ ΡΠ΅ΡΠ°Π²Π°ΡΠ΅"
#: hacks/config/maze.xml.h:11
msgid "Pre-Solve Delay"
msgstr "ΠΠ°Π΄ΡΠΆΡΠ²Π°ΡΠ΅ ΠΏΡΠ΅Π΄ ΡΠ΅ΡΠ°Π²Π°ΡΠ΅"
#: hacks/config/maze.xml.h:12
msgid "Random Generator"
msgstr "Π‘Π»ΡΡΠ°Π΅Π½ Π³Π΅Π½Π΅ΡΠ°ΡΠΎΡ"
#: hacks/config/maze.xml.h:13
#, fuzzy
msgid "Seeding Generator"
msgstr "ΠΠ΅Π½Π΅ΡΠ°ΡΠΎΡ Π½Π° ΡΠ°ΡΠ΅ΡΡΠ²Π°ΡΠ΅"
#: hacks/config/maze.xml.h:15
msgid "Solve Speed"
msgstr "ΠΡΠ·ΠΈΠ½Π° Π½Π° ΡΠ΅ΡΠ°Π²Π°ΡΠ΅"
#: hacks/config/maze.xml.h:16
msgid ""
"This is the ancient X maze demo, modified to work with xscreensaver. It "
"generates a random maze, then solves it with visual feedback. Originally by Jim "
"Randell; modified by a cast of thousands."
msgstr ""
"ΠΠ²Π° Π΅ ΡΡΠ°ΡΠ°ΡΠ° Π΄Π΅ΠΌΠΎΠ½ΡΡΡΠ°ΡΠΈΡΠ° Π½Π° Π»Π°Π²ΠΈΡΠΈΠ½Ρ Π·Π° X, ΠΏΡΠ΅ΠΏΡΠ°Π²Π΅Π½Π° Π΄Π° ΡΠ°Π±ΠΎΡΠΈ ΡΠΎ "
"xscreensaver. ΠΠ΅Π½Π΅ΡΠΈΡΠ° ΡΠ»ΡΡΠ°Π΅Π½ Π»Π°Π²ΠΈΡΠΈΠ½Ρ ΠΈ ΠΏΠΎΡΠΎΠ° Π³ΠΎ ΡΠ΅ΡΠ°Π²Π° ΡΠΎ Π²ΠΈΠ·ΡΠ΅Π»Π½Π° ΠΏΠΎΠ²ΡΠ°ΡΠ½Π° "
"ΠΈΠ½ΡΠΎΡΠΌΠ°ΡΠΈΡΠ°. ΠΡΠΈΠ³ΠΈΠ½Π°Π»Π½ΠΎ ΠΎΠ΄ Jim Randell; ΠΈΠ·ΠΌΠ΅Π½Π΅ΡΠΎ ΠΎΠ΄ ΠΈΠ»ΡΠ°Π΄Π½ΠΈΡΠΈ."
#: hacks/config/menger.xml.h:6
msgid "Menger"
msgstr "ΠΠ΅Π½Π³Π΅Ρ"
#: hacks/config/menger.xml.h:19
msgid ""
"This draws the three-dimensional variant of the recursive Menger Gasket, a "
"cube-based fractal object analagous to the Sierpinski Tetrahedron. Written by "
"Jamie Zawinski."
msgstr ""
"ΠΠ²Π° ΡΡΡΠ° ΡΡΠΎΠ΄ΠΈΠΌΠ΅Π½Π·ΠΈΠΎΠ½Π°Π»Π½Π° Π²Π°ΡΠΈΡΠ°Π½ΡΠ° Π½Π° ΡΠ΅ΠΊΡΡΠ·ΠΈΠ²Π½ΠΈΠΎΡ ΠΠ΅Π½Π³Π΅ΡΠΎΠ² ΡΡΠ½ΡΠ΅Ρ, ΠΊΠΎΡΠΊΠ΅ΡΡ "
"ΡΡΠ°ΠΊΡΠ°Π»Π΅Π½ ΠΎΠ±ΡΠ΅ΠΊΡ Π°Π½Π°Π»ΠΎΠ³Π΅Π½ Π½Π° Π’Π΅ΡΡΠ°Π΅Π΄Π°ΡΠΎΡ Π½Π° Π‘ΠΈΠ΅ΡΠΏΠΈΠ½ΡΠΊΠΈ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Jamie "
"Zawinski."
#: hacks/config/moebius.xml.h:1
msgid ""
"Another M. C. Escher hack by Marcelo Vianna, this one draws ``Moebius Strip "
"II,'' a GL image of ants walking along the surface of a moebius strip."
msgstr ""
"Π£ΡΡΠ΅ Π΅Π΄Π΅Π½ Ρ
Π°ΠΊ Π·Π° Π.Π¦. ΠΡΠ΅Ρ ΠΎΠ΄ Marcelo Vianna. ΠΠ²ΠΎΡ ΡΠ° ΡΡΡΠ° βΠΠ΅Π±ΠΈΡΡΠΎΠ²Π°ΡΠ° Π»Π΅Π½ΡΠ° "
"IIβ, GL-ΡΠ»ΠΈΠΊΠ° Π½Π° ΠΌΡΠ°Π²ΠΊΠΈ ΡΡΠΎ ΡΠ΅ΡΠ°Π°Ρ ΠΏΠΎ ΠΏΠΎΠ²ΡΡΠΈΠ½Π°ΡΠ° Π½Π° ΠΌΠ΅Π±ΠΈΡΡΠΎΠ²Π° Π»Π΅Π½ΡΠ°."
#: hacks/config/moebius.xml.h:2
msgid "Draw Ants"
msgstr "Π¦ΡΡΠ°Ρ ΠΌΡΠ°Π²ΠΊΠΈ"
#: hacks/config/moebius.xml.h:4
msgid "Mesh Floor"
msgstr "ΠΡΠ΅ΠΆΠ΅ΡΡ ΠΏΠΎΠ΄"
#: hacks/config/moebius.xml.h:5
msgid "Moebius"
msgstr "ΠΠ΅Π±ΠΈΡΡ"
#: hacks/config/moebius.xml.h:8
msgid "Solid Floor"
msgstr "Π¦Π²ΡΡΡ ΠΏΠΎΠ΄"
#: hacks/config/moebius.xml.h:9 hacks/config/qix.xml.h:20
#, fuzzy
msgid "Solid Objects"
msgstr "Π’ΡΠΈΠ΄ΠΈΠΌΠ΅Π½Π·ΠΈΠΎΠ½Π°Π»Π½ΠΈ ΠΎΠ±ΡΠ΅ΠΊΡΠΈ"
#: hacks/config/moire.xml.h:6
msgid "Moire"
msgstr "ΠΠΎΠ°ΡΠ΅"
#: hacks/config/moire.xml.h:8 hacks/config/rorschach.xml.h:6
msgid "Offset"
msgstr "Π Π°ΡΡΠΎΡΠ°Π½ΠΈΠ΅"
#: hacks/config/moire.xml.h:10
msgid ""
"This one draws cool circular interference patterns. Most of the circles you see "
"aren't explicitly rendered, but show up as a result of interactions between the "
"other pixels that were drawn. Written by Jamie Zawinski, inspired by Java code "
"by Michael Bayne. As he pointed out, the beauty of this one is that the heart "
"of the display algorithm can be expressed with just a pair of loops and a "
"handful of arithmetic, giving it a high ``display hack metric''."
msgstr ""
"ΠΠ²Π° ΡΡΡΠ° ΠΎΠ΄Π»ΠΈΡΠ½ΠΈ ΠΊΡΡΠΆΠ½ΠΈ ΡΠ΅ΠΌΠΈ Π½Π° ΠΈΠ½ΡΠ΅ΡΡΠ΅ΡΠ΅Π½ΡΠΈΡΠ°. ΠΠ°ΡΠ³ΠΎΠ»Π΅ΠΌΠΈΠΎΡ Π±ΡΠΎΡ ΠΎΠ΄ ΠΊΡΡΠ³ΠΎΠ²ΠΈΡΠ΅ "
"ΡΡΠΎ Π³ΠΈ Π³Π»Π΅Π΄Π°ΡΠ΅ Π½Π΅ ΡΠ΅ Π΅ΠΊΡΠΏΠ»ΠΈΡΠΈΡΠ½ΠΎ ΠΈΡΡΡΡΠ°Π½ΠΈ, ΡΡΠΊΡ ΡΠ΅ ΠΏΠΎΡΠ°Π²ΡΠ²Π°Π°Ρ ΠΊΠ°ΠΊΠΎ ΡΠ΅Π·ΡΠ»ΡΠ°Ρ Π½Π° "
"ΠΌΠ΅ΡΡΡΠ΅Π±Π½ΠΎ Π΄Π΅ΡΡΡΠ²ΠΎ Π½Π° Π΄ΡΡΠ³ΠΈΡΠ΅ Π½Π°ΡΡΡΠ°Π½ΠΈ ΠΏΠΈΠΊΡΠ΅Π»ΠΈ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Jamie Zawinski, "
"ΠΈΠ½ΡΠΏΠΈΡΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ ΠΊΠΎΠ΄ΠΎΡ Π²ΠΎ Java Π½Π° Michael Bayne. ΠΠ°ΠΊΠΎ ΡΡΠΎ ΡΠ°ΠΌΠΈΠΎΡ Π½Π°Π³Π»Π°ΡΠΈ, "
"ΡΠ±Π°Π²ΠΈΠ½Π°ΡΠ° Π½Π° ΠΎΠ²Π° Π΅ Π΄Π΅ΠΊΠ° ΡΡΡΠ΅ΡΠΎ Π½Π° Π°Π»Π³ΠΎΡΠΈΡΠ°ΠΌΠΎΡ Π·Π° ΠΏΡΠΈΠΊΠ°ΠΆΡΠ²Π°ΡΠ΅ ΠΌΠΎΠΆΠ΅ Π΄Π° ΡΠ΅ ΠΈΠ·ΡΠ°Π·ΠΈ "
"ΡΠ°ΠΌΠΎ ΡΠΎ ΠΏΠ°Ρ ΡΠ°ΠΌΠΊΠΈ ΠΈ Π³ΡΡΡ Π°ΡΠΈΡΠΌΠ΅ΡΠΈΠΊΠ°, Π΄Π°Π²Π°ΡΡΠΈ Π²ΠΈΡΠΎΠΊΠ° βΡ
Π°ΠΊΠ΅ΡΡΠΊΠ° ΠΌΠ΅ΡΡΠΈΠΊΠ° Π½Π° "
"ΠΏΡΠΈΠΊΠ°ΠΆΡΠ²Π°ΡΠ΅β."
#: hacks/config/moire2.xml.h:1
msgid ""
"Another example of the fun you can have with moire interference patterns; this "
"hack generates fields of concentric circles or ovals, and combines the planes "
"with various operations. The planes are moving independently of one another, "
"causing the interference lines to ``spray.'' Written by Jamie Zawinski."
msgstr ""
"Π£ΡΡΠ΅ Π΅Π΄Π΅Π½ ΠΏΡΠΈΠΌΠ΅Ρ Π½Π° Π·Π°Π±Π°Π²Π° ΡΡΠΎ ΠΌΠΎΠΆΠ΅ Π΄Π° ΡΠ° ΠΈΠΌΠ°ΡΠ΅ ΡΠΎ ΡΠ΅ΠΌΠΈΡΠ΅ Π½Π° ΠΈΠ½ΡΠ΅ΡΡΠ΅ΡΠ΅Π½ΡΠΈΡΠ° "
"ΠΌΠΎΠ°ΡΠ΅. ΠΠ²ΠΎΡ Ρ
Π°ΠΊ Π³Π΅Π½Π΅ΡΠΈΡΠ° ΠΏΠΎΠ»ΠΈΡΠ° ΠΎΠ΄ ΠΊΠΎΠ½ΡΠ΅Π½ΡΡΠΈΡΠ½ΠΈ ΠΊΡΡΠ³ΠΎΠ²ΠΈ ΠΈΠ»ΠΈ ΠΎΠ²Π°Π»ΠΈ ΠΈ Π³ΠΈ "
"ΠΊΠΎΠΌΠ±ΠΈΠ½ΠΈΡΠ° ΡΠ°ΠΌΠ½ΠΈΠ½ΠΈΡΠ΅ ΠΊΠΎΡΠΈΡΡΠ΅ΡΡΠΈ ΡΠ°Π·Π½ΠΈ ΠΎΠΏΠ΅ΡΠ°ΡΠΈΠΈ. Π Π°ΠΌΠ½ΠΈΠ½ΠΈΡΠ΅ ΡΠ΅ Π΄Π²ΠΈΠΆΠ°Ρ Π½Π΅Π·Π°Π²ΠΈΡΠ½ΠΎ "
"Π΅Π΄Π½Π° ΠΎΠ΄ Π΄ΡΡΠ³Π°, ΠΏΡΠ΅Π΄ΠΈΠ·Π²ΠΈΠΊΡΠ²Π°ΡΡΠΈ Π»ΠΈΠ½ΠΈΠΈΡΠ΅ Π½Π° ΠΈΠ½ΡΠ΅ΡΡΠ΅ΡΠ΅Π½ΡΠΈΡΠ° Π΄Π° βΠΏΡΡΠΊΠ°Π°Ρβ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ "
"ΠΎΠ΄ Jamie Zawinski."
#: hacks/config/moire2.xml.h:4
msgid "Moire2"
msgstr "ΠΠΎΠ°ΡΠ΅2"
#: hacks/config/moire2.xml.h:8 hacks/config/thornbird.xml.h:10
msgid "Thickness"
msgstr "ΠΠ΅Π±Π΅Π»ΠΈΠ½Π°"
#: hacks/config/molecule.xml.h:3
msgid "Describe Molecule"
msgstr "ΠΠΏΠΈΡΠΈ ΠΌΠΎΠ»Π΅ΠΊΡΠ»"
#: hacks/config/molecule.xml.h:5
msgid "Draw Atomic Bonds"
msgstr "ΠΠ°ΡΡΡΠ°Ρ Π°ΡΠΎΠΌΡΠΊΠΈ Π²ΡΡΠΊΠΈ"
#: hacks/config/molecule.xml.h:6
msgid "Draw Atoms"
msgstr "ΠΠ°ΡΡΡΠ°Ρ Π°ΡΠΎΠΌΠΈ"
#: hacks/config/molecule.xml.h:7 hacks/config/spheremonics.xml.h:2
msgid "Draw Bounding Box"
msgstr "ΠΠ°ΡΡΡΠ°Ρ ΡΠ°ΠΌΠΊΠ°"
#: hacks/config/molecule.xml.h:8
msgid ""
"Draws several different representations of molecules. Some common molecules are "
"built in, and it can also read PDB (Protein Data Base) files as input. Written "
"by Jamie Zawinski."
msgstr ""
"Π¦ΡΡΠ° Π½Π΅ΠΊΠΎΠ»ΠΊΡ ΡΠ°Π·Π»ΠΈΡΠ½ΠΈ ΠΏΡΠΈΠΊΠ°Π·ΠΈ Π½Π° ΠΌΠΎΠ»Π΅ΠΊΡΠ»ΠΈ. ΠΠ³ΡΠ°Π΄Π΅Π½ΠΈ ΡΠ΅ Π½Π΅ΠΊΠΎΠΈ Π²ΠΎΠΎΠ±ΠΈΡΠ°Π΅Π½ΠΈ "
"ΠΌΠΎΠ»Π΅ΠΊΡΠ»ΠΈ, Π° ΠΌΠΎΠΆΠ΅ Π΄Π° ΡΠΈΡΠ° ΠΈ PDB-Π΄Π°ΡΠΎΡΠ΅ΠΊΠΈ (Protein Data Base). ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Jamie "
"Zawinski."
#: hacks/config/molecule.xml.h:11
msgid "Label Atoms"
msgstr "ΠΠ·Π½Π°ΠΊΠΈ Π½Π° Π°ΡΠΎΠΌΠΈΡΠ΅"
#: hacks/config/molecule.xml.h:12
msgid "Molecule"
msgstr "ΠΠΎΠ»Π΅ΠΊΡΠ»"
#: hacks/config/molecule.xml.h:13
msgid "PDB File"
msgstr "PDB-Π΄Π°ΡΠΎΡΠ΅ΠΊΠ°"
#: hacks/config/morph3d.xml.h:1
msgid ""
"Another 3d shape-changing GL hack, by Marcelo Vianna. It has the same "
"shiny-plastic feel as Superquadrics, as many computer-generated objects do..."
msgstr ""
"Π£ΡΡΠ΅ Π΅Π΄Π΅Π½ GL-Ρ
Π°ΠΊ Π²ΠΎ 3Π ΡΠΎ ΠΏΡΠΎΠΌΠ΅Π½Π»ΠΈΠ² ΠΎΠ±Π»ΠΈΠΊ, ΠΎΠ΄ Marcelo Vianna. ΠΠΎ ΠΈΠΌΠ° ΠΈΡΡΠΎΡΠΎ "
"ΡΡΠ°ΡΠ½ΠΎ-ΠΏΠ»Π°ΡΡΠΈΡΠ½ΠΎ ΡΡΠ²ΡΡΠ²ΠΎ ΠΊΠ°ΠΊΠΎ ΠΈ Π‘ΡΠΏΠ΅ΡΠΊΠ²Π°Π΄ΡΠ°ΡΠΈ, ΠΊΠ°ΠΊΠΎ ΠΈ ΠΌΠ½ΠΎΠ³ΡΡΠ΅ ΠΊΠΎΠΌΠΏΡΡΡΠ΅ΡΡΠΊΠΈ "
"Π³Π΅Π½Π΅ΡΠΈΡΠ°Π½ΠΈ ΠΎΠ±ΡΠ΅ΠΊΡΠΈ..."
#: hacks/config/morph3d.xml.h:4
msgid "Morph3D"
msgstr "ΠΠΎΡΡ3Π"
#: hacks/config/mountain.xml.h:3
msgid ""
"Generates random 3d plots that look vaguely mountainous. Written by Pascal "
"Pensa."
msgstr ""
"ΠΠ΅Π½Π΅ΡΠΈΡΠ° ΡΠ»ΡΡΠ°ΡΠ½ΠΈ 3Π΄-Π³ΡΠ°ΡΠΈΡΠΈ ΡΡΠΎ ΠΏΠΎΠΌΠ°Π»ΠΊΡ Π½Π°Π»ΠΈΠΊΡΠ²Π°Π°Ρ Π½Π° ΠΏΠ»Π°Π½ΠΈΠ½ΠΈ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ "
"Pascal Pensa."
#: hacks/config/mountain.xml.h:5
msgid "Mountain"
msgstr "ΠΠ»Π°Π½ΠΈΠ½Π°"
#: hacks/config/munch.xml.h:1
msgid ""
"DATAI 2 ADDB 1,2 ROTC 2,-22 XOR 1,2 JRST .-4 As reported by HAKMEM, in 1962, "
"Jackson Wright wrote the above PDP-1 code. That code still lives on in this "
"screenhack, some 35 years later. The number of lines of enclosing code has "
"increased substantially, however. This version is by Tim Showalter."
msgstr ""
"DATAI 2 ADDB 1,2 ROTC 2,-22 XOR 1,2 JRST .-4 Π‘ΠΏΠΎΡΠ΅Π΄ ΠΎΠ±ΡΠ°Π²Π΅Π½ΠΎΡΠΎ ΠΎΠ΄ HAKMEM Π²ΠΎ "
"1962, Jackson Wright Π³ΠΎ Π½Π°ΠΏΠΈΡΠ°Π» ΠΏΠΎΠ³ΠΎΡΠ½ΠΈΠΎΡ ΠΊΠΎΠ΄ Π²ΠΎ PDP-1. Π’ΠΎΡ ΠΊΠΎΠ΄ ΡΡ ΡΡΡΠ΅ ΠΆΠΈΠ²Π΅Π΅ "
"Π²ΠΎ ΠΎΠ²ΠΎΡ Π΅ΠΊΡΠ°Π½ΡΠΊΠΈ Ρ
Π°ΠΊ, 35 Π³ΠΎΠ΄ΠΈΠ½ΠΈ ΠΏΠΎΠ΄ΠΎΡΠ½Π°. Π‘Π΅ΠΏΠ°ΠΊ, Π±ΡΠΎΡΠΎΡ Π½Π° Π»ΠΈΠ½ΠΈΠΈ Π²ΠΎ ΠΊΠΎΠ΄ΠΎΡ "
"ΠΎΠ΄ΠΎΠΊΠΎΠ»Ρ Π΅ Π·Π³ΠΎΠ»Π΅ΠΌΠ΅Π½. ΠΠ²Π°Π° Π²Π΅ΡΠ·ΠΈΡΠ° Π΅ ΠΎΠ΄ Tim Showalter."
#: hacks/config/munch.xml.h:5
msgid "Munch"
msgstr "ΠΠ²Π°ΠΊΠ°ΡΠ΅"
#: hacks/config/munch.xml.h:10 hacks/config/qix.xml.h:26
msgid "XOR"
msgstr "XOR"
#: hacks/config/nerverot.xml.h:1
msgid "Blot Count"
msgstr "ΠΡΠΎΡ Π½Π° Π΄Π°ΠΌΠΊΠΈ"
#: hacks/config/nerverot.xml.h:2
msgid "Calm"
msgstr "ΠΠΈΡΠ½ΠΎ"
#: hacks/config/nerverot.xml.h:3
msgid "Changes"
msgstr "ΠΡΠΎΠΌΠ΅Π½ΠΈ"
#: hacks/config/nerverot.xml.h:4
msgid "Colors"
msgstr "ΠΠΎΠΈ"
#: hacks/config/nerverot.xml.h:5
msgid "Crunchiness"
msgstr "Π Π°Π·Π΄ΡΠΎΠ±Π΅Π½ΠΎΡΡ"
#: hacks/config/nerverot.xml.h:7
msgid ""
"Draws different shapes composed of nervously vibrating squiggles, as if seen "
"through a camera operated by a monkey on crack. By Dan Bornstein."
msgstr ""
"Π¦ΡΡΠ° ΡΠ°Π·Π½ΠΎΠ²ΠΈΠ΄Π½ΠΈ ΠΎΠ±Π»ΠΈΡΠΈ ΡΠΎΡΡΠ°Π²Π΅Π½ΠΈ ΠΎΠ΄ Π½Π΅ΡΠ²ΠΎΠ·Π½ΠΈ Π²ΠΈΠ±ΡΠΈΡΠ°ΡΠΊΠΈ ΡΠΊΡΡΠ°Π½ΠΈΡΠΈ, ΠΊΠ°ΠΊΠΎ Π΄Π° ΡΠ΅ "
"Π³Π»Π΅Π΄Π°Π½ΠΈ Π½ΠΈΠ· ΠΊΠ°ΠΌΠ΅ΡΠ° ΡΡΠΎ ΡΠ° ΠΊΠΎΡΠΈΡΡΠΈ Π΄ΡΠΎΠ³ΠΈΡΠ°Π½ ΠΌΠ°ΡΠΌΡΠ½. ΠΠ΄ Dan Bornstein."
#: hacks/config/nerverot.xml.h:10
msgid "Frequent"
msgstr "Π§Π΅ΡΡΠΎ"
#: hacks/config/nerverot.xml.h:16
msgid "NerveRot"
msgstr "Π£Π½ΠΈΡΡΠ΅Π½ΠΈ Π½Π΅ΡΠ²ΠΈ"
#: hacks/config/nerverot.xml.h:17
msgid "Nervousness"
msgstr "ΠΠ΅ΡΠ²ΠΎΠ·Π°"
#: hacks/config/nerverot.xml.h:18 hacks/config/pyro.xml.h:12
msgid "Seldom"
msgstr "Π Π΅ΡΠΊΠΎ"
#: hacks/config/nerverot.xml.h:21
msgid "Spastic"
msgstr "Π‘ΠΏΠ°Π·ΠΌΠΈ"
#: hacks/config/noseguy.xml.h:1
msgid ""
"A little man with a big nose wanders around your screen saying things. The "
"things which he says can come from a file, or from an external program like "
"`zippy' or `fortune'. This was extracted from `xnlock' by Dan Heller. Colorized "
"by Jamie Zawinski."
msgstr ""
"ΠΠ°Π» ΡΠΎΠ²Π΅ΠΊ ΡΠΎ Π³ΠΎΠ»Π΅ΠΌ Π½ΠΎΡ ΡΠ΅ ΡΠ΅ΡΠ° Π½Π°ΠΎΠΊΠΎΠ»Ρ ΠΏΠΎ Π΅ΠΊΡΠ°Π½ΠΎΡ ΠΊΠ°ΠΆΡΠ²Π°ΡΡΠΈ ΡΠ°Π±ΠΎΡΠΈ. Π’ΠΎΠ° ΡΡΠΎ Π³ΠΎ "
"ΠΊΠ°ΠΆΡΠ²Π° ΠΌΠΎΠΆΠ΅ Π΄Π° Π΄ΠΎΠ°ΡΠ° ΠΎΠ΄ Π΄Π°ΡΠΎΡΠ΅ΠΊΠ° ΠΈΠ»ΠΈ ΠΎΠ΄ Π½Π°Π΄Π²ΠΎΡΠ΅ΡΠ½Π° ΠΏΡΠΎΠ³ΡΠ°ΠΌΠ° ΠΊΠ°ΠΊΠΎ βzippyβ ΠΈΠ»ΠΈ "
"βfortuneβ. ΠΠ²Π° Π΅ ΠΈΠ·Π²Π»Π΅ΡΠ΅Π½ΠΎ ΠΎΠ΄ βxnlockβ ΠΎΠ΄ Dan Heller. ΠΠ±ΠΎΠ΅Π½ΠΎ ΠΎΠ΄ Jamie Zawinski."
#: hacks/config/noseguy.xml.h:2
msgid "Get Text from File"
msgstr "ΠΠ΅ΠΌΠΈ ΡΠ΅ΠΊΡΡ ΠΎΠ΄ Π΄Π°ΡΠΎΡΠ΅ΠΊΠ°"
#: hacks/config/noseguy.xml.h:3
msgid "Get Text from Program"
msgstr "ΠΠ΅ΠΌΠΈ ΡΠ΅ΠΊΡΡ ΠΎΠ΄ ΠΏΡΠΎΠ³ΡΠ°ΠΌΠ°"
#: hacks/config/noseguy.xml.h:4
msgid "Noseguy"
msgstr "ΠΠΎΡΠΊΠΎ"
#: hacks/config/noseguy.xml.h:6
msgid "Text File"
msgstr "Π’Π΅ΠΊΡΡΡΠ°Π»Π½Π° Π΄Π°ΡΠΎΡΠ΅ΠΊΠ°"
#: hacks/config/noseguy.xml.h:7 hacks/config/phosphor.xml.h:8
#: hacks/config/starwars.xml.h:17
msgid "Text Program"
msgstr "Π’Π΅ΠΊΡΡΡΠ°Π»Π½Π° ΠΏΡΠΎΠ³ΡΠ°ΠΌΠ°"
#: hacks/config/noseguy.xml.h:8
msgid "Use Text Below"
msgstr "ΠΠΎΡΠΈΡΡΠΈ Π³ΠΎ ΡΠ΅ΠΊΡΡΠΎΡ ΠΏΠΎΠ΄ΠΎΠ»Ρ"
#: hacks/config/pedal.xml.h:7
msgid "Pedal"
msgstr "ΠΡΡΠ΅ΡΠ΅"
#: hacks/config/pedal.xml.h:8
msgid ""
"This is sort of a combination spirograph/string-art. It generates a large, "
"complex polygon, and lets the X server do the bulk of the work by giving it an "
"even/odd winding rule. Written by Dale Moore, based on some ancient PDP-11 "
"code."
msgstr ""
"ΠΠ²Π° Π΅ Π½Π΅ΠΊΠ°ΠΊΠΎΠ² Π²ΠΈΠ΄ ΠΊΠΎΠΌΠ±ΠΈΠ½Π°ΡΠΈΡΠ° Π½Π° ΡΠΏΠΈΡΠΎΠ³ΡΠ°Ρ/ΡΠΌΠ΅ΡΠ½ΠΎΡΡ ΡΠΎ ΠΆΠΈΡΠ°. ΠΠ΅Π½Π΅ΡΠΈΡΠ° Π³ΠΎΠ»Π΅ΠΌ, "
"ΠΊΠΎΠΌΠΏΠ»Π΅ΠΊΡΠ΅Π½ ΠΏΠΎΠ»ΠΈΠ³ΠΎΠ½, ΠΈ ΠΎΡΡΠ°Π²Π° X-ΡΠ΅ΡΠ²Π΅ΡΠΎΡ Π΄Π° Π³ΠΎ Π½Π°ΠΏΡΠ°Π²ΠΈ Π½Π°ΡΠ³ΠΎΠ»Π΅ΠΌΠΈΠΎΡ Π΄Π΅Π» ΠΎΠ΄ "
"ΡΠ°Π±ΠΎΡΠ°ΡΠ° Π·Π°Π΄Π°Π²Π°ΡΡΠΈ ΠΌΡ ΠΏΠ°ΡΠ½ΠΎ/Π½Π΅ΠΏΠ°ΡΠ½ΠΎ ΠΏΡΠ°Π²ΠΈΠ»ΠΎ Π½Π° Π²ΡΡΠ΅ΡΠ΅. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Dale Moore, "
"Π±Π°Π·ΠΈΡΠ°Π½ΠΎ Π²ΡΠ· Π°Π½ΡΠΈΡΠΊΠΈ ΠΊΠΎΠ΄ ΠΎΠ΄ PDP-11."
#: hacks/config/penetrate.xml.h:1
msgid "Always play well"
msgstr "Π‘Π΅ΠΊΠΎΠ³Π°Ρ ΠΈΠ³ΡΠ°Ρ Π΄ΠΎΠ±ΡΠΎ"
#: hacks/config/penetrate.xml.h:2
msgid "Explosions"
msgstr "ΠΠΊΡΠΏΠ»ΠΎΠ·ΠΈΠΈ"
#: hacks/config/penetrate.xml.h:5
msgid "Penetrate"
msgstr "ΠΡΠΎΠ±ΠΈΠ²Π°ΡΠ΅"
#: hacks/config/penetrate.xml.h:7
msgid "Start badly, but learn"
msgstr "ΠΠ°ΠΏΠΎΡΠ½ΠΈ Π»ΠΎΡΠΎ, Π½ΠΎ ΡΡΠΈ"
#: hacks/config/penetrate.xml.h:8
msgid ""
"This hack simulates the classic arcade game Missile Command. Written by Adam "
"Miller."
msgstr ""
"ΠΠ²ΠΎΡ Ρ
Π°ΠΊ ΡΠ° ΡΠΈΠΌΡΠ»ΠΈΡΠ° ΠΊΠ»Π°ΡΠΈΡΠ½Π°ΡΠ° Π°ΡΠΊΠ°Π΄Π½Π° ΠΈΠ³ΡΠ° Missile Command. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Adam "
"Miller."
#: hacks/config/penrose.xml.h:3
#, fuzzy
msgid "Draw Ammann Lines"
msgstr "Π¦ΡΡΠ°Ρ Π»ΠΈΠ½ΠΈΠΈ Π½Π° ΠΠΌΠ°Π½"
#: hacks/config/penrose.xml.h:4
msgid ""
"Draws quasiperiodic tilings; think of the implications on modern formica "
"technology. Written by Timo Korvola. In April 1997, Sir Roger Penrose, a "
"British math professor who has worked with Stephen Hawking on such topics as "
"relativity, black holes, and whether time has a beginning, filed a "
"copyright-infringement lawsuit against the Kimberly-Clark Corporation, which "
"Penrose said copied a pattern he created (a pattern demonstrating that ``a "
"nonrepeating pattern could exist in nature'') for its Kleenex quilted toilet "
"paper. Penrose said he doesn't like litigation but, ``When it comes to the "
"population of Great Britain being invited by a multinational to wipe their "
"bottoms on what appears to be the work of a Knight of the Realm, then a last "
"stand must be taken.'' As reported by News of the Weird #491, 4-jul-1997."
msgstr ""
"Π¦ΡΡΠ° ΠΊΠ²Π°Π·ΠΈΠΏΠ΅ΡΠΈΠΎΠ΄ΠΈΡΠ½ΠΈ ΠΏΠ»ΠΎΡΠΊΠΈ; Π·Π°ΠΌΠΈΡΠ»Π΅ΡΠ΅ ΡΠΈ ΡΠ° ΡΠΎΠ²ΡΠ΅ΠΌΠ΅Π½Π°ΡΠ° ΡΠ΅Ρ
Π½ΠΎΠ»ΠΎΠ³ΠΈΡΠ° Π½Π° "
"Π»Π°ΠΌΠΈΠ½Π°ΡΠΈ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Timo Korvola. ΠΠΎ Π°ΠΏΡΠΈΠ» 1997 Π³, Π‘Π΅Ρ Π ΠΎΡΠ΅Ρ ΠΠ΅Π½ΡΠΎΡΠ·, "
"Π±ΡΠΈΡΠ°Π½ΡΠΊΠΈ ΠΏΡΠΎΡΠ΅ΡΠΎΡ ΠΏΠΎ ΠΌΠ°ΡΠ΅ΠΌΠ°ΡΠΈΠΊΠ°, ΠΊΠΎΡ ΡΠ°Π±ΠΎΡΠ΅Π» ΡΠΎ Π‘ΡΠΈΠ²Π΅Π½ Π₯ΠΎΠΊΠΈΠ½Π³ Π½Π° ΡΠ΅ΠΌΠΈ ΠΊΠ°ΠΊΠΎ ΡΡΠΎ "
"ΡΠ΅ ΡΠ΅Π»Π°ΡΠΈΠ²Π½ΠΎΡΡ, ΡΡΠ½ΠΈ Π΄ΡΠΏΠΊΠΈ ΠΈ Π΄Π°Π»ΠΈ Π²ΡΠ΅ΠΌΠ΅ΡΠΎ ΠΈΠΌΠ° ΠΏΠΎΡΠ΅ΡΠΎΠΊ, ΠΏΠΎΠ΄Π½Π΅Π» ΡΡΠΆΠ±Π° Π·Π° ΠΊΡΡΠ΅ΡΠ΅ "
"Π½Π° Π°Π²ΡΠΎΡΡΠΊΠΈ ΠΏΡΠ°Π²Π° ΠΏΡΠΎΡΠΈΠ² ΠΊΠΎΡΠΏΠΎΡΠ°ΡΠΈΡΠ°ΡΠ° ΠΠΈΠΌΠ±Π΅ΡΠ»ΠΈ-ΠΠ»Π°ΡΠΊ Π·Π° ΠΊΠΎΡΠ° ΠΠ΅Π½ΡΠΎΡΠ· ΡΠ΅ΠΊΠΎΠ» "
"Π΄Π΅ΠΊΠ° ΡΠ° ΠΊΠΎΠΏΠΈΡΠ°Π»Π° ΡΠ΅ΠΌΠ°ΡΠ° ΡΡΠΎ ΡΠ° ΠΊΡΠ΅ΠΈΡΠ°Π» (ΡΠ΅ΠΌΠ° ΡΡΠΎ ΠΏΡΠΈΠΊΠ°ΠΆΡΠ²Π° Π΄Π΅ΠΊΠ° βΠ½Π΅ΠΏΠΎΠ²ΡΠΎΡΡΠ²Π°ΡΠΊΠ° "
"ΡΠ΅ΠΌΠ° ΠΌΠΎΠΆΠ΅ Π΄Π° ΠΏΠΎΡΡΠΎΠΈ Π²ΠΎ ΠΏΡΠΈΡΠΎΠ΄Π°ΡΠ°β) Π·Π° Π½ΠΈΠ²Π½Π°ΡΠ° Π²Π°ΡΠΈΡΠ°Π½Π° ΡΠΎΠ°Π»Π΅ΡΠ½Π° ΠΊΠ°ΡΡΠΈΡΠ° "
"ΠΠ»ΠΈΠ½Π΅ΠΊΡ. ΠΠ΅Π½ΡΠΎΡΠ· ΡΠ΅ΠΊΠΎΠ» Π΄Π΅ΠΊΠ° ΡΠΎΡ Π½Π΅ ΡΠ°ΠΊΠ° ΡΡΠ΄ΡΠΊΠΈ ΠΏΡΠΎΡΠ΅Ρ, Π½ΠΎ βΠΠΎΠ³Π° ΡΠ΅ ΡΠ°Π±ΠΎΡΠΈ Π·Π° "
"ΠΏΠΎΠ²ΠΈΠΊ ΠΎΠ΄ ΠΌΡΠ»ΡΡΠ½Π°ΡΠΈΠΎΠ½Π°Π»Π½Π° ΠΊΠΎΠΌΠΏΠ°Π½ΠΈΡΠ° Π΄ΠΎ ΠΏΠΎΠΏΡΠ»Π°ΡΠΈΡΠ°ΡΠ° Π½Π° ΠΠ΅Π»ΠΈΠΊΠ° ΠΡΠΈΡΠ°Π½ΠΈΡΠ° Π΄Π° ΡΠΈ Π³ΠΈ "
"Π±ΡΠΈΡΠ°Ρ Π·Π°Π΄Π½ΠΈΡΠΈΡΠ΅ ΡΠΎ Π½Π΅ΡΡΠΎ ΡΡΠΎ ΡΡΠ΅Π±Π° Π΄Π° Π±ΠΈΠ΄Π΅ Π΄Π΅Π»ΠΎ Π½Π° ΠΠΈΡΠ΅Π· Π½Π° ΠΡΠ°Π»ΡΡΠ²ΠΎΡΠΎ, ΡΠΎΠ³Π°Ρ "
"ΠΌΠΎΡΠ° Π΄Π° Π±ΠΈΠ΄Π°Ρ ΠΏΡΠ΅Π·Π΅ΠΌΠ΅Π½ΠΈ ΠΏΠΎΡΠ»Π΅Π΄Π½ΠΈΡΠ΅ ΠΌΠ΅ΡΠΊΠΈ.β ΠΠ±ΡΠ°Π²Π΅Π½ΠΎ Π²ΠΎ News of the Weird #491, "
"4-jul-1997."
#: hacks/config/penrose.xml.h:9
msgid "Penrose"
msgstr "ΠΠ΅Π½ΡΠΎΡΠ·"
#: hacks/config/petri.xml.h:2
msgid "Colony Shape"
msgstr "ΠΠ±Π»ΠΈΠΊ Π½Π° ΠΊΠΎΠ»ΠΎΠ½ΠΈΡΠ°ΡΠ°"
#: hacks/config/petri.xml.h:3
msgid "Death Comes"
msgstr "Π‘ΠΌΡΡΡΠ° Π΄ΠΎΠ°ΡΠ°"
#: hacks/config/petri.xml.h:4
msgid "Diamond"
msgstr "ΠΠΈΡΠ°ΠΌΠ°Π½Ρ"
#: hacks/config/petri.xml.h:6
msgid "Fertility"
msgstr "ΠΠ»ΠΎΠ΄Π½ΠΎΡΡ"
#: hacks/config/petri.xml.h:12
msgid "Maxium Lifespan"
msgstr "ΠΠ°ΠΊΡ. ΠΆΠΈΠ²ΠΎΡΠ΅Π½ Π²Π΅ΠΊ"
#: hacks/config/petri.xml.h:13
msgid "Maxium Rate of Death"
msgstr "ΠΠ°ΠΊΡ. ΡΡΠ°ΠΏΠΊΠ° Π½Π° ΡΠΌΡΡΠ½ΠΎΡΡ"
#: hacks/config/petri.xml.h:14
msgid "Maxium Rate of Growth"
msgstr "ΠΠ°ΠΊΡ. ΡΡΠ°ΠΏΠΊΠ° Π½Π° ΠΏΡΠΈΡΠ°ΡΡ"
#: hacks/config/petri.xml.h:15
msgid "Minium Lifespan"
msgstr "ΠΠΈΠ½. ΠΆΠΈΠ²ΠΎΡΠ΅Π½ Π²Π΅ΠΊ"
#: hacks/config/petri.xml.h:16
msgid "Minium Rate of Death"
msgstr "ΠΠΈΠ½. ΡΡΠ°ΠΏΠΊΠ° Π½Π° ΡΠΌΡΡΠ½ΠΎΡΡ"
#: hacks/config/petri.xml.h:17
msgid "Minium Rate of Growth"
msgstr "ΠΠΈΠ½. ΡΡΠ°ΠΏΠΊΠ° Π½Π° ΠΏΡΠΈΡΠ°ΡΡ"
#: hacks/config/petri.xml.h:18
msgid "Mold Varieties"
msgstr "Π’ΠΈΠΏΠΎΠ²ΠΈ ΠΌΡΠ²Π»Π°"
#: hacks/config/petri.xml.h:19
msgid "Offspring"
msgstr "ΠΠΎΠ΄ΠΌΠ»Π°Π΄ΠΎΠΊ"
#: hacks/config/petri.xml.h:20
msgid "Petri"
msgstr "ΠΠ΅ΡΡΠΈ"
#: hacks/config/petri.xml.h:21
msgid "Quickly"
msgstr "ΠΡΠ·ΠΎ"
#: hacks/config/petri.xml.h:24
msgid "Slowly"
msgstr "ΠΠ°Π²Π½ΠΎ"
#: hacks/config/petri.xml.h:26
msgid "Square"
msgstr "ΠΠ²Π°Π΄ΡΠ°Ρ"
#: hacks/config/petri.xml.h:27
#, fuzzy
msgid ""
"This simulates colonies of mold growing in a petri dish. Growing colored "
"circles overlap and leave spiral interference in their wake. Written by Dan "
"Bornstein."
msgstr ""
"ΠΠ²Π° ΡΠΈΠΌΡΠ»ΠΈΡΠ° ΠΊΠΎΠ»ΠΎΠ½ΠΈΠΈ Π½Π° ΠΌΡΠ²Π»Π° ΡΡΠΎ ΡΠ°ΡΡΠ°Ρ Π²ΠΎ ΠΏΠ΅ΡΡΠΈΠ΅Π²Π° ΡΠΈΠ½ΠΈΡΠ°. Π Π°ΡΡΠ΅ΡΠΊΠΈΡΠ΅ ΠΎΠ±ΠΎΠ΅Π½ΠΈ "
"ΠΊΡΡΠ³ΠΎΠ²ΠΈ ΡΠ΅ ΠΏΡΠ΅ΠΏΠΎΠΊΡΠΈΠ²Π°Π°Ρ ΠΈ ΠΎΡΡΠ°Π²Π°Π°Ρ ΡΠΏΠΈΡΠ°Π»Π½Π° ΠΈΠ½ΡΠ΅ΡΡΠ΅ΡΠ΅Π½ΡΠΈΡΠ° Π·Π°Π΄ ΡΠ΅Π±Π΅. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ "
"ΠΎΠ΄ Dan Bornstein."
#: hacks/config/phosphor.xml.h:1
msgid ""
"Draws a simulation of an old terminal, with large pixels and long-sustain "
"phosphor. It can run any program as a source of the text it displays. Written "
"by Jamie Zawinski."
msgstr ""
"Π¦ΡΡΠ° ΡΠΈΠΌΡΠ»Π°ΡΠΈΡΠ° Π½Π° ΡΡΠ°Ρ ΡΠ΅ΡΠΌΠΈΠ½Π°Π», ΡΠΎ Π³ΠΎΠ»Π΅ΠΌΠΈ ΠΏΠΈΠΊΡΠ΅Π»ΠΈ ΠΈ Π΄ΠΎΠ»Π³ΠΎΡΠ²Π΅ΡΠ»Π΅ΡΠΊΠΈ ΡΠΎΡΡΠΎΡ. "
"ΠΠΎΠΆΠ΅ Π΄Π° ΡΠ° ΠΈΠ·Π²ΡΡΡΠ²Π° ΡΠ΅ΠΊΠΎΡΠ° ΠΏΡΠΎΠ³ΡΠ°ΠΌΠ° ΠΊΠ°ΠΊΠΎ ΠΈΠ·Π²ΠΎΡ Π·Π° ΡΠ΅ΠΊΡΡΠΎΡ ΡΡΠΎ Π³ΠΎ ΠΏΡΠΈΠΊΠ°ΠΆΡΠ²Π°. "
"ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Jamie Zawinski."
#: hacks/config/phosphor.xml.h:2
msgid "Fade"
msgstr "ΠΠ·Π±Π»Π΅Π΄ΡΠ²Π°ΡΠ΅"
#: hacks/config/phosphor.xml.h:4
msgid "Phosphor"
msgstr "Π€ΠΎΡΡΠΎΡ"
#: hacks/config/phosphor.xml.h:5
msgid "Scale"
msgstr "Π Π°Π·ΠΌΠ΅Ρ"
#: hacks/config/pipes.xml.h:1
msgid "Allow Tight Turns"
msgstr "ΠΠΎΠ·Π²ΠΎΠ»ΠΈ Π±Π»ΠΈΡΠΊΠΈ ΡΠ²ΡΡΡΠ²Π°ΡΠ°"
#: hacks/config/pipes.xml.h:2
msgid "Ball Joints"
msgstr "Π’ΠΎΠΏΡΠ΅ΡΡΠΈ ΡΠ²ΡΠ·ΡΠ²Π°ΡΠ°"
#: hacks/config/pipes.xml.h:3
msgid "Curved Pipes"
msgstr "ΠΠ°ΠΊΡΠΈΠ²Π΅Π½ΠΈ ΡΠ΅Π²ΠΊΠΈ"
#: hacks/config/pipes.xml.h:6
msgid "Fisheye Lens"
msgstr "Π ΠΈΠ±ΠΈΠ½ΠΈ Π»Π΅ΡΠΈ"
#: hacks/config/pipes.xml.h:7
msgid "Gadgetry"
msgstr "ΠΠΏΠ°ΡΠ°ΡΠΈ"
#: hacks/config/pipes.xml.h:8
msgid ""
"If you've ever been in the same room with a Windows NT machine, you've probably "
"seen this GL hack. This version is by Marcelo Vianna."
msgstr ""
"ΠΠΊΠΎ ΡΡΠ΅ Π±ΠΈΠ»Π΅ Π²ΠΎ ΠΈΡΡΠ° ΡΠΎΠ±Π° ΡΠΎ ΠΌΠ°ΡΠΈΠ½Π° ΡΠΎ Windows NT, Π²Π΅ΡΠΎΡΠ°ΡΠ½ΠΎ ΡΡΠ΅ Π³ΠΎ Π²ΠΈΠ΄Π΅Π»Π΅ ΠΎΠ²ΠΎΡ "
"GL-Ρ
Π°ΠΊ. ΠΠ²Π°Π° Π²Π΅ΡΠ·ΠΈΡΠ° Π΅ ΠΎΠ΄ Marcelo Vianna."
#: hacks/config/pipes.xml.h:9
msgid "Lots"
msgstr "ΠΠ½ΠΎΠ³Ρ"
#: hacks/config/pipes.xml.h:11
msgid "Number of Pipe Systems"
msgstr "ΠΡΠΎΡ Π½Π° ΡΠΈΡΡΠ΅ΠΌΠΈ ΡΠ΅Π²ΠΊΠΈ"
#: hacks/config/pipes.xml.h:12
msgid "Pipe Fittings"
msgstr "ΠΠΎΠ½ΡΠ°ΠΆΠΈ Π½Π° ΡΠ΅Π²ΠΊΠΈ"
#: hacks/config/pipes.xml.h:13
msgid "Pipes"
msgstr "Π¦Π΅Π²ΠΊΠΈ"
#: hacks/config/pipes.xml.h:17
msgid "System Length"
msgstr "ΠΠΎΠ»ΠΆΠΈΠ½Π° Π½Π° ΡΠΈΡΡΠ΅ΠΌΠΎΡ"
#: hacks/config/polyominoes.xml.h:3
msgid "Identical Pieces"
msgstr "ΠΠ΄Π΅Π½ΡΠΈΡΠ½ΠΈ ΠΏΠ°ΡΡΠΈΡΠ°"
#: hacks/config/polyominoes.xml.h:7
msgid "Polyominoes"
msgstr "ΠΠΎΠ»ΠΈΠΎΠΌΠΈΠ½ΠΈ"
#: hacks/config/polyominoes.xml.h:8
msgid ""
"Repeatedly attempts to completely fill a rectangle with irregularly-shaped "
"puzzle pieces. Written by Stephen Montgomery-Smith."
msgstr ""
"ΠΠΎΡΡΠΎΡΠ°Π½ΠΎ ΡΠ΅ ΠΎΠ±ΠΈΠ΄ΡΠ²Π° ΡΠ΅Π»ΠΎΡΠ½ΠΎ Π΄Π° ΠΏΠΎΠΏΠΎΠ»Π½ΠΈ ΠΏΡΠ°Π²ΠΎΠ°Π³ΠΎΠ»Π½ΠΈΠΊ ΡΠΎ Π΄Π΅Π»ΡΠΈΡΠ° ΠΎΠ΄ ΡΠ»ΠΎΠΆΡΠ²Π°Π»ΠΊΠ° "
"ΡΡΠΎ ΡΠ΅ ΡΠΎ Π½Π΅ΠΏΡΠ°Π²ΠΈΠ»Π΅Π½ ΠΎΠ±Π»ΠΈΠΊ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Stephen Montgomery-Smith."
#: hacks/config/pulsar.xml.h:1
msgid "Anti-alias Lines"
msgstr "ΠΠ·ΠΌΠ°Π·Π½ΠΈ Π»ΠΈΠ½ΠΈΠΈ"
#: hacks/config/pulsar.xml.h:3
msgid ""
"Draws some intersecting planes, making use of alpha blending, fog, textures, "
"and mipmaps, plus a ``frames per second'' meter so that you can tell how fast "
"your graphics card is... Requires OpenGL. Written by David Konerding."
msgstr ""
"Π¦ΡΡΠ° ΠΏΡΠ΅ΡΠ΅ΠΊ Π½Π° Π½Π΅ΠΊΠΎΠ»ΠΊΡ ΡΠ°ΠΌΠ½ΠΈΠ½ΠΈ, ΡΠΎ ΠΊΠΎΡΠΈΡΡΠ΅ΡΠ΅ Π½Π° Π°Π»ΡΠ°-ΠΌΠ΅ΡΠ°ΡΠ΅, ΠΌΠ°Π³Π»Π°, ΡΠ΅ΠΊΡΡΡΡΠΈ ΠΈ "
"ΠΌΠΈΠΏΠΌΠ°ΠΏΠΈ, ΠΊΠ°ΠΊΠΎ ΠΈ ΠΌΠ΅ΡΠ°Ρ Π½Π° βΡΠ°ΠΌΠΊΠΈ Π²ΠΎ ΡΠ΅ΠΊΡΠ½Π΄Π°β, ΡΠ°ΠΊΠ° ΡΡΠΎ ΠΌΠΎΠΆΠ΅ΡΠ΅ Π΄Π° ΠΊΠ°ΠΆΠ΅ΡΠ΅ ΠΊΠΎΠ»ΠΊΡ Π²ΠΈ "
"Π΅ Π±ΡΠ·Π° Π³ΡΠ°ΡΠΈΡΠΊΠ°ΡΠ° ΠΊΠ°ΡΡΠΈΡΠΊΠ°... ΠΠ°ΡΠ° OpenGL. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ David Konerding."
#: hacks/config/pulsar.xml.h:4
msgid "Enable Blending"
msgstr "ΠΠ²ΠΎΠ·ΠΌΠΎΠΆΠΈ ΠΌΠ΅ΡΠ°ΡΠ΅"
#: hacks/config/pulsar.xml.h:5
msgid "Enable Depth Buffer"
msgstr "ΠΠ²ΠΎΠ·ΠΌΠΎΠΆΠΈ Π±Π°ΡΠ΅Ρ Π·Π° Π΄Π»Π°Π±ΠΎΡΠΈΠ½Π°"
#: hacks/config/pulsar.xml.h:6
msgid "Enable Fog"
msgstr "ΠΠ²ΠΎΠ·ΠΌΠΎΠΆΠΈ ΠΌΠ°Π³Π»Π°"
#: hacks/config/pulsar.xml.h:7
msgid "Enable Lighting"
msgstr "ΠΠ²ΠΎΠ·ΠΌΠΎΠΆΠΈ ΠΎΡΠ²Π΅ΡΠ»ΡΠ²Π°ΡΠ΅"
#: hacks/config/pulsar.xml.h:8
msgid "Enable Texture Filtering"
msgstr ""
"ΠΠ²ΠΎΠ·ΠΌΠΎΠΆΠΈ ΡΠΈΠ»ΡΡΠΈΡΠ°ΡΠ΅\n"
"Π½Π° ΡΠ΅ΠΊΡΡΡΡΠ°"
#: hacks/config/pulsar.xml.h:9
msgid "Enable Texture Mipmaps"
msgstr ""
"ΠΠ²ΠΎΠ·ΠΌΠΎΠΆΠΈ ΠΌΠΈΠΏΠΌΠ°ΠΏΠΈ\n"
"Π·Π° ΡΠ΅ΠΊΡΡΡΡΠ°"
#: hacks/config/pulsar.xml.h:10
msgid "Enable Texturing"
msgstr "ΠΠ²ΠΎΠ·ΠΌΠΎΠΆΠΈ ΡΠ΅ΠΊΡΡΡΡΠΈΡΠ°ΡΠ΅"
#: hacks/config/pulsar.xml.h:12
msgid "Pulsar"
msgstr "ΠΡΠ»ΡΠ°Ρ"
#: hacks/config/pulsar.xml.h:13
msgid "Quad Count"
msgstr "ΠΡΠΎΡ Π½Π° ΡΠ΅ΡΠΈΡΠΈΠ°Π³ΠΎΠ»Π½ΠΈΡΠΈ"
#: hacks/config/pulsar.xml.h:16
msgid "Solid Surface"
msgstr "ΠΡΠΏΠΎΠ»Π½Π΅ΡΠ° ΠΏΠΎΠ²ΡΡΠΈΠ½Π°"
#: hacks/config/pulsar.xml.h:18
msgid "Texture PPM File"
msgstr "PPM-Π΄Π°ΡΠΎΡΠ΅ΠΊΠ° ΡΠΎ ΡΠ΅ΠΊΡΡΡΡΠΈ"
#: hacks/config/pyro.xml.h:3
msgid "Explosive Yield"
msgstr "ΠΠΎΠ»Π΅ΠΌΠΈΠ½Π° Π½Π° Π΅ΠΊΡΠΏΠ»ΠΎΠ·ΠΈΡΠ°"
#: hacks/config/pyro.xml.h:6
msgid "Launch Frequency"
msgstr "Π§Π΅ΡΡΠΎΡΠ° Π½Π° Π»Π°Π½ΡΠΈΡΠ°ΡΠ΅"
#: hacks/config/pyro.xml.h:8
msgid "Often"
msgstr "Π§Π΅ΡΡΠΎ"
#: hacks/config/pyro.xml.h:9
msgid "Particle Density"
msgstr "ΠΡΡΡΠΈΠ½Π° Π½Π° ΡΠ΅ΡΡΠΈΡΠΊΠΈ"
#: hacks/config/pyro.xml.h:10
msgid "Pyro"
msgstr "ΠΠΈΡΠΎΡΠ΅Ρ
Π½ΠΈΠΊΠ°"
#: hacks/config/pyro.xml.h:11
msgid ""
"Pyro draws exploding fireworks. Blah blah blah. Written by Jamie Zawinski."
msgstr ""
"ΠΠΈΡΠΎΡΠ΅Ρ
Π½ΠΈΠΊΠ° ΡΡΡΠ° ΠΎΠ³Π½ΠΎΠΌΠ΅ΡΠΈ ΡΠΎ Π΅ΠΊΡΠΏΠ»ΠΎΠ·ΠΈΠΈ. ΠΠ»Π°, Π±Π»Π°, Π±Π»Π°. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Jamie "
"Zawinski."
#: hacks/config/qix.xml.h:1
msgid "Additive Colors"
msgstr "ΠΠΎΠΈΡΠ΅ ΡΠ΅ ΡΠΎΠ±ΠΈΡΠ°Π°Ρ"
#: hacks/config/qix.xml.h:3
msgid "Corners"
msgstr "ΠΠ³Π»ΠΈ"
#: hacks/config/qix.xml.h:11
msgid "Line Segments"
msgstr "Π‘Π΅Π³ΠΌΠ΅Π½ΡΠΈ Π½Π° ΠΏΡΠ°Π²ΠΈ"
#: hacks/config/qix.xml.h:12
msgid "Linear Motion"
msgstr "ΠΠΈΠ½Π΅Π°ΡΠ½ΠΎ Π΄Π²ΠΈΠΆΠ΅ΡΠ΅"
#: hacks/config/qix.xml.h:15
msgid "Max Size"
msgstr "ΠΠ°ΠΊΡ. Π³ΠΎΠ»Π΅ΠΌΠΈΠ½Π°"
#: hacks/config/qix.xml.h:16
msgid "Qix"
msgstr "ΠΠΈΠΊΡ"
#: hacks/config/qix.xml.h:17
msgid "Random Motion"
msgstr "Π‘Π»ΡΡΠ°ΡΠ½ΠΎ Π΄Π²ΠΈΠΆΠ΅ΡΠ΅"
#: hacks/config/qix.xml.h:23
msgid "Subtractive Colors"
msgstr "ΠΠΎΠΈΡΠ΅ ΡΠ΅ ΠΎΠ΄Π·Π΅ΠΌΠ°Π°Ρ"
#: hacks/config/qix.xml.h:24
#, fuzzy
msgid ""
"This is the swiss army chainsaw of qix programs. It bounces a series of line "
"segments around the screen, and uses variations on this basic motion pattern to "
"produce all sorts of different presentations: line segments, filled polygons, "
"overlapping translucent areas... Written by Jamie Zawinski."
msgstr ""
"ΠΠ²Π° Π΅ ΡΠ»ΠΎΠΆΡΠ²Π°Π»ΠΊΠ° ΠΎΠ΄ qix-ΠΏΡΠΎΠ³ΡΠ°ΠΌΠΈ Π½Π° ΡΠ²Π°ΡΡΠ°ΡΡΠΊΠ°ΡΠ° Π°ΡΠΌΠΈΡΠ°. ΠΡΡΡΠ»Π° Π½ΠΈΠ·ΠΈ ΠΎΠ΄ "
"ΡΠ΅Π³ΠΌΠ΅Π½ΡΠΈ Π½Π° ΠΏΡΠ°Π²ΠΈ ΠΏΠΎ Π΅ΠΊΡΠ°Π½ΠΎΡ, ΠΈ ΠΊΠΎΡΠΈΡΡΠΈ Π²Π°ΡΠΈΡΠ°ΡΠΈΠΈ Π½Π° ΠΎΠ²Π°Π° ΠΎΡΠ½ΠΎΠ²Π½Π° ΡΠ΅ΠΌΠ° Π½Π° "
"Π΄Π²ΠΈΠΆΠ΅ΡΠ΅ Π·Π° Π΄Π° ΠΏΡΠΎΠΈΠ·Π²Π΅Π΄Π΅ ΡΠ΅ΠΊΠ°ΠΊΠ²ΠΈ Π²ΠΈΠ΄ΠΎΠ²ΠΈ Π½Π° ΡΠ°Π·Π½ΠΎΠ²ΠΈΠ΄Π½ΠΈ ΠΏΡΠ΅Π·Π΅Π½ΡΠ°ΡΠΈΠΈ: ΡΠ΅Π³ΠΌΠ΅Π½ΡΠΈ Π½Π° "
"ΠΏΡΠ°Π²ΠΈ, ΠΈΡΠΏΠΎΠ»Π½Π΅ΡΠΈ ΠΏΠΎΠ»ΠΈΠ³ΠΎΠ½ΠΈ, ΠΏΡΠΎΡΠΈΡΠ½ΠΈ ΠΎΠ±Π»Π°ΡΡΠΈ ΡΡΠΎ ΡΠ΅ ΠΏΡΠ΅ΠΏΠΎΠΊΡΠΈΠ²Π°Π°Ρ... ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ "
"Jamie Zawinski."
#: hacks/config/qix.xml.h:25
msgid "Transparent"
msgstr "ΠΡΠΎΡΠΈΡΠ½ΠΎ"
#: hacks/config/rd-bomb.xml.h:1
msgid "/"
msgstr "/"
#: hacks/config/rd-bomb.xml.h:3
#, no-c-format
msgid "1%"
msgstr "1%"
#: hacks/config/rd-bomb.xml.h:5
#, no-c-format
msgid "100%"
msgstr "100%"
#: hacks/config/rd-bomb.xml.h:7
msgid ""
"Another variation of the `Bomb' program by Scott Draves. This draws a grid of "
"growing square-like shapes that, once they overtake each other, react in "
"unpredictable ways. ``RD'' stands for reaction-diffusion."
msgstr ""
"Π£ΡΡΠ΅ Π΅Π΄Π½Π° Π²Π°ΡΠΈΡΠ°ΡΠΈΡΠ° Π½Π° ΠΏΡΠΎΠ³ΡΠ°ΠΌΠ°ΡΠ° βΠΠΎΠΌΠ±Π°β ΠΎΠ΄ Scott Draves. ΠΠ²Π° ΡΡΡΠ° ΠΌΡΠ΅ΠΆΠ° ΠΎΠ΄ "
"ΡΠ°ΡΡΠ΅ΡΠΊΠΈ ΠΊΠ²Π°Π΄ΡΠ°ΡΠ΅ΡΡΠΈ ΠΎΠ±Π»ΠΈΡΠΈ ΠΊΠΎΠΈ, ΡΡΠΎΠΌ Π΅Π΄Π½Π°Ρ ΠΌΠ΅ΡΡΡΠ΅Π±Π½ΠΎ ΡΠ΅ ΡΠ΅ Π½Π°Π΄Π²Π»Π°Π΄Π΅Π°Ρ, "
"ΡΠ΅Π°Π³ΠΈΡΠ°Π°Ρ Π½Π° Π½Π΅ΠΏΡΠ΅Π΄Π²ΠΈΠ΄Π»ΠΈΠ² Π½Π°ΡΠΈΠ½. βΠ Πβ ΠΎΠ·Π½Π°ΡΡΠ²Π° ΡΠ΅Π°ΠΊΡΠΈΡΠ°-Π΄ΠΈΡΡΠ·ΠΈΡΠ°."
#: hacks/config/rd-bomb.xml.h:8
msgid "Epoch"
msgstr "ΠΠΏΠΎΡ
Π°"
#: hacks/config/rd-bomb.xml.h:10
msgid "Fill Screen"
msgstr "ΠΡΠΏΠΎΠ»Π½Π΅ΡΠΎΡΡ Π½Π° Π΅ΠΊΡΠ°Π½ΠΎΡ"
#: hacks/config/rd-bomb.xml.h:14
msgid "RD-Bomb"
msgstr "Π Π-Π±ΠΎΠΌΠ±Π°"
#: hacks/config/rd-bomb.xml.h:15
msgid "Reaction/Difusion"
msgstr "Π Π΅Π°ΠΊΡΠΈΡΠ°/Π΄ΠΈΡΡΠ·ΠΈΡΠ°"
#: hacks/config/rd-bomb.xml.h:16
msgid "Seed Radius"
msgstr "Π Π°Π΄ΠΈΡΡ Π½Π° ΡΠ°ΡΠ΅ΡΡΠ²Π°ΡΠ΅"
#: hacks/config/rd-bomb.xml.h:19 hacks/config/twang.xml.h:12
msgid "Tile Size"
msgstr "ΠΠΎΠ»Π΅ΠΌΠΈΠ½Π° Π½Π° ΠΏΠ»ΠΎΡΠΊΠ°"
#: hacks/config/rd-bomb.xml.h:22
msgid "Wander Speed"
msgstr "ΠΡΠ·ΠΈΠ½Π° Π½Π° Π΄Π²ΠΈΠΆΠ΅ΡΠ΅"
#: hacks/config/ripples.xml.h:1
msgid "Big Drops"
msgstr "ΠΠΎΠ»Π΅ΠΌΠΈ ΠΊΠ°ΠΏΠΊΠΈ"
#: hacks/config/ripples.xml.h:2
msgid "Colors Two"
msgstr "ΠΠΎΠΈ ΠΠ²Π΅"
#: hacks/config/ripples.xml.h:3
msgid "Drizzle"
msgstr "Π ΠΎΡΠ°"
#: hacks/config/ripples.xml.h:5
msgid "Grab Screen Image"
msgstr "ΠΠ΅ΠΌΠΈ ΡΠ»ΠΈΠΊΠ° ΠΎΠ΄ Π΅ΠΊΡΠ°Π½ΠΎΡ"
#: hacks/config/ripples.xml.h:6
msgid "Lighting Effect"
msgstr "ΠΡΠ΅ΠΊΡ Π½Π° ΠΎΡΠ²Π΅ΡΠ»Π΅Π½ΠΎΡΡ"
#: hacks/config/ripples.xml.h:8
msgid "Moving Splashes"
msgstr "ΠΠΎΠ΄Π²ΠΈΠΆΠ½ΠΈ ΠΏΡΡΠΊΠ°ΡΠ°"
#: hacks/config/ripples.xml.h:9
msgid "Psychedelic Colors"
msgstr "ΠΡΠΈΡ
ΠΎΠ΄Π΅Π»ΠΈΡΠ½ΠΈ Π±ΠΎΠΈ"
#: hacks/config/ripples.xml.h:10
msgid "Ripples"
msgstr "ΠΡΠ°Π½ΡΠ²Π°ΡΠ΅"
#: hacks/config/ripples.xml.h:12
msgid "Small Drops"
msgstr "ΠΠ°Π»ΠΈ ΠΊΠ°ΠΏΠΊΠΈ"
#: hacks/config/ripples.xml.h:13
msgid "Storm"
msgstr "ΠΡΡΠ°"
#: hacks/config/ripples.xml.h:14
msgid ""
"This draws rippling interference patterns like splashing water. With the -water "
"option, it manipulates your desktop image to look like something is dripping "
"into it. Written by Tom Hammersley."
msgstr ""
"ΠΠ²Π° ΡΡΡΠ° Π±ΡΠ°Π½ΠΎΠ²ΠΈΠ΄Π½ΠΈ ΡΠ΅ΠΌΠΈ Π½Π° ΠΈΠ½ΡΠ΅ΡΡΠ΅ΡΠ΅Π½ΡΠΈΡΠ°, ΠΊΠ°ΠΊΠΎ Π²ΠΎΠ΄Π° ΡΡΠΎ ΠΏΡΡΠΊΠ°. Π‘ΠΎ ΠΎΠΏΡΠΈΡΠ°ΡΠ° "
"-water ΠΌΠ°Π½ΠΈΠΏΡΠ»ΠΈΡΠ° ΡΠΎ Π²Π°ΡΠ°ΡΠ° ΡΠ»ΠΈΠΊΠ° Π½Π° ΡΠ°Π±ΠΎΡΠ½Π°ΡΠ° ΠΏΠΎΠ²ΡΡΠΈΠ½Π° Π·Π° Π΄Π° ΠΈΠ·Π³Π»Π΅Π΄Π° ΠΊΠ°ΠΊΠΎ "
"Π½Π΅ΡΡΠΎ Π΄Π° ΠΊΠ°ΠΏΠ΅ Π²ΠΎ Π½Π΅Π°. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Tom Hammersley."
#: hacks/config/rocks.xml.h:7
msgid "Rocks"
msgstr "ΠΠ°ΡΠΏΠΈ"
#: hacks/config/rocks.xml.h:8
msgid "Rotation"
msgstr "Π ΠΎΡΠ°ΡΠΈΡΠ°"
#: hacks/config/rocks.xml.h:10
msgid "Steering"
msgstr "Π£ΠΏΡΠ°Π²ΡΠ²Π°ΡΠ΅"
#: hacks/config/rocks.xml.h:11
msgid ""
"This draws an animation of flight through an asteroid field, with changes in "
"rotation and direction. It can also display 3D separations for red/blue "
"glasses! Mostly written by Jamie Zawinski."
msgstr ""
"ΠΠ²Π° ΡΡΡΠ° Π°Π½ΠΈΠΌΠ°ΡΠΈΡΠ° Π½Π° Π»Π΅ΡΠ°ΡΠ΅ Π½ΠΈΠ· Π°ΡΡΠ΅ΡΠΎΠΈΠ΄Π½ΠΎ ΠΏΠΎΠ»Π΅, ΡΠΎ ΠΏΡΠΎΠΌΠ΅Π½ΠΈ Π²ΠΎ ΡΠΎΡΠ°ΡΠΈΡΠ°ΡΠ° ΠΈ "
"Π½Π°ΡΠΎΠΊΠ°ΡΠ°. ΠΠΎΠΆΠ΅ Π΄Π° Π΄Π° ΠΏΡΠΈΠΊΠ°ΠΆΠ΅ ΠΈ 3Π-ΡΠ΅ΠΏΠ°ΡΠ°ΡΠΈΡΠ° Π·Π° ΡΡΠ²Π΅Π½ΠΎ/ΡΠΈΠ½ΠΈ Π½Π°ΠΎΡΠ°ΡΠΈ! ΠΠ°ΡΠΌΠ½ΠΎΠ³Ρ Π΅ "
"Π½Π°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Jamie Zawinski."
#: hacks/config/rorschach.xml.h:7
msgid "Rorschach"
msgstr "Π ΠΎΡΡΠ°Ρ
"
#: hacks/config/rorschach.xml.h:9
msgid ""
"This generates random inkblot patterns. The algorithm is deceptively simple for "
"how well it works; it merely walks a dot around the screen randomly, and then "
"reflects the image horizontally, vertically, or both. Any deep-seated neurotic "
"tendencies which this program reveals are your own problem. Written by Jamie "
"Zawinski."
msgstr ""
"ΠΠ²Π° Π³Π΅Π½Π΅ΡΠΈΡΠ° ΠΏΡΠΎΠΈΠ·Π²ΠΎΠ»Π½ΠΈ ΡΠ»ΠΈΠΊΠΈ ΠΎΠ΄ ΡΠ°Π·Π»Π΅Π°Π½ΠΎ ΠΌΠ°ΡΡΠΈΠ»ΠΎ. ΠΠ»Π³ΠΎΡΠΈΡΠΌΠΎΡ Π΅ Π»Π°ΠΆΠ½ΠΎ "
"Π΅Π΄Π½ΠΎΡΡΠ°Π²Π΅Π½ ΡΠΎ ΠΎΠ³Π»Π΅Π΄ Π½Π° ΡΠΎΠ° ΠΊΠΎΠ»ΠΊΡ Π΄ΠΎΠ±ΡΠΎ ΡΠ°Π±ΠΎΡΠΈ; Π΅Π΄Π½ΠΎΡΡΠ°Π²Π½ΠΎ, Π΄Π²ΠΈΠΆΠΈ ΡΠΎΡΠΊΠ° ΡΠ»ΡΡΠ°ΡΠ½ΠΎ "
"ΠΏΠΎ Π΅ΠΊΡΠ°Π½ΠΎΡ ΠΈ ΠΏΠΎΡΠΎΠ° ΡΠ° ΡΠ΅ΡΠ»Π΅ΠΊΡΠΈΡΠ° ΡΠ»ΠΈΠΊΠ°ΡΠ° Ρ
ΠΎΡΠΈΠ·ΠΎΠ½ΡΠ°Π»Π½ΠΎ , Π²Π΅ΡΡΠΈΠΊΠ°Π»Π½ΠΎ, ΠΈΠ»ΠΈ ΠΈ "
"Π΄Π²Π΅ΡΠ΅. Π‘Π΅ΠΊΠ°ΠΊΠ²ΠΈ Π΄Π»Π°Π±ΠΎΠΊΠΎ Π²ΡΠ°Π΄Π΅Π½ΠΈ Π½Π΅Π²ΡΠΎΡΠΈΡΠ½ΠΈ ΡΠ΅Π½Π΄Π΅Π½ΡΠΈΠΈ ΡΡΠΎ ΠΎΠ²Π°Π° ΠΏΡΠΎΠ³ΡΠ°ΠΌΠ° Π³ΠΈ "
"ΠΎΡΠΊΡΠΈΠ²Π° ΡΠ΅ Π²Π°Ρ Π»ΠΈΡΠ΅Π½ ΠΏΡΠΎΠ±Π»Π΅ΠΌ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Jamie Zawinski."
#: hacks/config/rorschach.xml.h:10
msgid "With X Symmetry"
msgstr "Π‘ΠΎ ΡΠΈΠΌΠ΅ΡΡΠΈΡΠ° ΠΏΠΎ X"
#: hacks/config/rorschach.xml.h:11
msgid "With Y Symmetry"
msgstr "Π‘ΠΎ ΡΠΈΠΌΠ΅ΡΡΠΈΡΠ° ΠΏΠΎ Y"
#: hacks/config/rotor.xml.h:1
msgid ""
"Another ancient xlock demo, this one by Tom Lawrence. It draws a line segment "
"moving along a complex spiraling curve. I tweaked this to generate curvier "
"lines, but still frames of it don't look like much."
msgstr ""
"Π£ΡΡΠ΅ Π΅Π΄Π½Π° Π°Π½ΡΠΈΡΠΊΠ° Π΄Π΅ΠΌΠΎΠ½ΡΡΡΠ°ΡΠΈΡΠ° Π½Π° xlock, ΠΎΠ²Π°Π° ΠΎΠ΄ Tom Lawrence. Π¦ΡΡΠ° Π΄Π΅Π» ΠΎΠ΄ "
"ΠΏΡΠ°Π²Π° ΡΡΠΎ ΡΠ΅ Π΄Π²ΠΈΠΆΠΈ ΠΏΠΎ ΡΠ»ΠΎΠΆΠ΅Π½Π° ΡΠΏΠΈΡΠ°Π»Π½Π° ΠΊΡΠΈΠ²Π°. ΠΠΎ ΠΈΠ·ΠΌΠ΅Π½ΠΈΠ² Π΄Π° Π³Π΅Π½Π΅ΡΠΈΡΠ° "
"ΠΏΠΎΠ·Π°ΠΊΡΠΈΠ²Π΅Π½ΠΈ Π»ΠΈΠ½ΠΈΠΈ, Π½ΠΎ Π·Π°ΠΌΡΠ·Π½Π°ΡΠΈΡΠ΅ ΡΠ°ΠΌΠΊΠΈ ΠΎΠ΄ Π½ΠΈΠ² Π½Π΅ ΠΈΠ·Π³Π»Π΅Π΄Π°Π°Ρ Π½Π°ΡΠ΄ΠΎΠ±ΡΠΎ."
#: hacks/config/rotor.xml.h:4 hacks/config/wander.xml.h:9
msgid "Length"
msgstr "ΠΠΎΠ»ΠΆΠΈΠ½Π°"
#: hacks/config/rotor.xml.h:8
msgid "Rotor"
msgstr "Π ΠΎΡΠΎΡ"
#: hacks/config/rotzoomer.xml.h:3
msgid "Animate"
msgstr "ΠΠ½ΠΈΠΌΠΈΡΠ°Ρ"
#: hacks/config/rotzoomer.xml.h:4
msgid ""
"Creates a collage of rotated and scaled portions of the screen. Written by "
"Claudio Matsuoka."
msgstr ""
"ΠΡΠ΅ΠΈΡΠ° ΠΊΠΎΠ»Π°ΠΆ ΠΎΠ΄ ΡΠΎΡΠΈΡΠ°Π½ΠΈ ΠΈ Π·Π³ΠΎΠ»Π΅ΠΌΠ΅Π½ΠΈ Π΄Π΅Π»ΠΎΠ²ΠΈ ΠΎΠ΄ Π΅ΠΊΡΠ°Π½ΠΎΡ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Claudio "
"Matsuoka."
#: hacks/config/rotzoomer.xml.h:6
msgid "Rectangle Count"
msgstr "ΠΡΠΎΡ Π½Π° ΠΏΡΠ°Π²ΠΎΠ°Π³ΠΎΠ»Π½ΠΈΡΠΈ"
#: hacks/config/rotzoomer.xml.h:7
msgid "RotZoomer"
msgstr "ΠΡΠΌΠΈΡΠ°Π½ΠΎ ΡΠ°ΡΠΏΠ°ΡΠ°ΡΠ΅"
#: hacks/config/rotzoomer.xml.h:8
msgid "Stationary Rectangles"
msgstr "ΠΠ΅ΠΏΠΎΠ΄Π²ΠΈΠΆΠ½ΠΈ ΠΏΡΠ°Π²ΠΎΠ°Π³ΠΎΠ»Π½ΠΈΡΠΈ"
#: hacks/config/rotzoomer.xml.h:9
msgid "Sweeping Arcs"
msgstr "ΠΡΠ°ΡΠΈΠΎΠ·Π½ΠΈ Π»Π°ΡΠΈ"
#: hacks/config/rotzoomer.xml.h:11
msgid "Wandering Rectangles"
msgstr "ΠΠΎΠ΄Π²ΠΈΠΆΠ½ΠΈ ΠΏΡΠ°Π²ΠΎΠ°Π³ΠΎΠ»Π½ΠΈΡΠΈ"
#: hacks/config/rubik.xml.h:2
msgid ""
"Draws a Rubik's Cube that rotates in three dimensions and repeatedly shuffles "
"and solves itself. Another fine GL hack by Marcelo Vianna."
msgstr ""
"Π¦ΡΡΠ° Π ΡΠ±ΠΈΠΊΠΎΠ²Π° ΠΊΠΎΡΠΊΠ° ΡΡΠΎ ΡΠΎΡΠΈΡΠ° Π²ΠΎ ΡΡΠΈ Π΄ΠΈΠΌΠ΅Π½Π·ΠΈΠΈ ΠΈ ΠΏΠΎΡΡΠΎΡΠ°Π½ΠΎ ΡΠ΅ ΠΏΡΠΎΠΌΠ΅ΡΡΠ²Π° ΠΈ ΡΠ΅ "
"ΡΠ΅ΡΠ°Π²Π° ΡΠ°ΠΌΠ°ΡΠ° ΡΠ΅Π±Π΅. Π£ΡΡΠ΅ Π΅Π΄Π΅Π½ Π΄ΠΎΠ±Π°Ρ GL-Ρ
Π°ΠΊ ΠΎΠ΄ Marcelo Vianna."
#: hacks/config/rubik.xml.h:5
msgid "Rubik"
msgstr "Π ΡΠ±ΠΈΠΊ"
#: hacks/config/rubik.xml.h:7
msgid "Show Shuffling"
msgstr "ΠΡΠΈΠΊΠ°ΠΆΠΈ ΠΏΡΠΎΠΌΠ΅ΡΡΠ²Π°ΡΠ΅"
#: hacks/config/sballs.xml.h:1
msgid "Cube"
msgstr "ΠΠΎΡΠΊΠ°"
#: hacks/config/sballs.xml.h:2
msgid "Dodecahedron"
msgstr "ΠΠΎΠ΄Π΅ΠΊΠ°Π΅Π΄Π°Ρ"
#: hacks/config/sballs.xml.h:3
msgid ""
"Draws an animation of textured balls spinning like crazy in GL. Requires "
"OpenGL, and a machine with fast hardware support for texture maps. Written by "
"Eric Lassauge <lassauge@mail.dotcom.fr>."
msgstr ""
"Π¦ΡΡΠ° Π°Π½ΠΈΠΌΠ°ΡΠΈΡΠ° Π½Π° ΡΠΎΠΏΡΠΈΡΠ° ΡΠΎ ΡΠ΅ΠΊΡΡΡΡΠ° ΡΡΠΎ ΡΠ΅ Π²ΡΡΠ°Ρ ΠΊΠ°ΠΊΠΎ Π»ΡΠ΄ΠΈ, Π²ΠΎ GL. ΠΠ°ΡΠ° "
"OpenGL ΠΈ ΠΌΠ°ΡΠΈΠ½Π° ΡΠΎ Π΄ΠΎΠ±ΡΠ° Ρ
Π°ΡΠ΄Π²Π΅ΡΡΠΊΠ° ΠΏΠΎΠ΄Π΄ΡΡΠΊΠ° Π·Π° ΡΠ΅ΠΊΡΡΡΡΠΈ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Eric "
"Lassauge <lassauge@mail.dotcom.fr>."
#: hacks/config/sballs.xml.h:5
msgid "Icosahedron"
msgstr "ΠΠΊΠΎΡΠ°Π΅Π΄Π°Ρ"
#: hacks/config/sballs.xml.h:7
msgid "Octahedron"
msgstr "ΠΠΊΡΠ°Π΅Π΄Π°Ρ"
#: hacks/config/sballs.xml.h:8
msgid "Plane"
msgstr "Π Π°ΠΌΠ½ΠΈΠ½Π°"
#: hacks/config/sballs.xml.h:9
msgid "Pyramid"
msgstr "ΠΠΈΡΠ°ΠΌΠΈΠ΄Π°"
#: hacks/config/sballs.xml.h:10
msgid "Random"
msgstr "Π‘Π»ΡΡΠ°ΡΠ½ΠΎ"
#: hacks/config/sballs.xml.h:11
msgid "Sballs"
msgstr "Π‘ΡΠΎΠΏΠΊΠΈ"
#: hacks/config/sballs.xml.h:15
msgid "Star"
msgstr "Π
Π²Π΅Π·Π΄Π°"
#: hacks/config/sballs.xml.h:16
msgid "Tetrahedron"
msgstr "Π’Π΅ΡΡΠ°Π΅Π΄Π°Ρ"
#: hacks/config/shadebobs.xml.h:7
msgid "ShadeBobs"
msgstr "ΠΠ΅ΠΎΠ½ΡΠΊΠΈ ΡΡΠ°Π³ΠΈ"
#: hacks/config/shadebobs.xml.h:11
msgid ""
"This draws smoothly-shaded oscilating oval patterns, that look something like "
"vapor trails or neon tubes. Written by Shane Smit."
msgstr ""
"ΠΠ²Π° ΡΡΡΠ° ΡΠ°ΠΌΠ½ΠΎΠΌΠ΅ΡΠ½ΠΎ ΠΈΡΠ΅Π½ΡΠ΅Π½ΠΈ ΠΎΠ²Π°Π»Π½ΠΈ ΡΠ΅ΠΌΠΈ ΡΡΠΎ ΠΎΡΡΠΈΠ»ΠΈΡΠ°Π°Ρ, ΡΠ»ΠΈΡΠ½ΠΈ Π½Π° ΡΡΠ°Π³ΠΈ ΠΎΠ΄ "
"ΠΈΡΠΏΠ°ΡΡΠ²Π°ΡΠ΅ ΠΈΠ»ΠΈ Π½Π΅ΠΎΠ½ΡΠΊΠΈ ΡΠ΅Π²ΠΊΠΈ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Shane Smit."
#: hacks/config/sierpinski.xml.h:6
msgid "Sierpinski"
msgstr "Π‘ΠΈΠ΅ΡΠΏΠΈΠ½ΡΠΊΠΈ"
#: hacks/config/sierpinski.xml.h:10
msgid ""
"This draws the two-dimensional variant of the recursive Sierpinski triangle "
"fractal. Written by Desmond Daignault."
msgstr ""
"ΠΠ²Π° ΡΠ° ΡΡΡΠ° Π΄Π²ΠΎΠ΄ΠΈΠΌΠ΅Π½Π·ΠΈΠΎΠ½Π°Π»Π½Π°ΡΠ° Π²Π°ΡΠΈΡΠ°Π½ΡΠ° Π½Π° ΡΠ΅ΠΊΡΡΠ·ΠΈΠ²Π½ΠΈΠΎΡ ΡΡΠΈΠ°Π³ΠΎΠ»Π΅Π½ ΡΡΠ°ΠΊΡΠ°Π» Π½Π° "
"Π‘ΠΈΠ΅ΡΠΏΠΈΠ½ΡΠΊΠΈ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Desmond Daignault."
#: hacks/config/sierpinski3d.xml.h:7
msgid "Sierpinski3D"
msgstr "Π‘ΠΈΠ΅ΡΠΏΠΈΠ½ΡΠΊΠΈ3Π"
#: hacks/config/sierpinski3d.xml.h:11
msgid ""
"This draws the three-dimensional variant of the recursive Sierpinski triangle "
"fractal, using GL. Written by Tim Robinson and Jamie Zawinski."
msgstr ""
"ΠΠ²Π° ΡΠ° ΡΡΡΠ° ΡΡΠΈΠ΄ΠΈΠΌΠ΅Π½Π·ΠΈΠΎΠ½Π°Π»Π½Π°ΡΠ° Π²Π°ΡΠΈΡΠ°Π½ΡΠ° Π½Π° ΡΠ΅ΠΊΡΡΠ·ΠΈΠ²Π½ΠΈΠΎΡ ΡΡΠΈΠ°Π³ΠΎΠ»Π΅Π½ ΡΡΠ°ΠΊΡΠ°Π» Π½Π° "
"Π‘ΠΈΠ΅ΡΠΏΠΈΠ½ΡΠΊΠΈ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Tim Robinson ΠΈ Jamie Zawinski."
#: hacks/config/slidescreen.xml.h:1 hacks/config/twang.xml.h:1
#: hacks/config/zoom.xml.h:1
msgid "Border Width"
msgstr "Π¨ΠΈΡΠΈΠ½Π° Π½Π° ΡΠ°Π±ΠΎΡ"
#: hacks/config/slidescreen.xml.h:4
msgid "Slide Speed"
msgstr "ΠΡΠ·ΠΈΠ½Π° Π½Π° ΡΠ»Π°ΡΠ΄ΠΎΠ²ΠΈΡΠ΅"
#: hacks/config/slidescreen.xml.h:5
msgid "SlideScreen"
msgstr "Π‘Π»Π°ΡΠ΄-Π΅ΠΊΡΠ°Π½"
#: hacks/config/slidescreen.xml.h:8
msgid ""
"This takes an image, divides it into a grid, and then randomly shuffles the "
"squares around as if it was one of those annoying ``16-puzzle'' games, where "
"there is a grid of squares, one of which is missing. I hate trying to solve "
"those puzzles, but watching one permute itself is more amusing. Written by "
"Jamie Zawinski."
msgstr ""
"ΠΠ²Π° Π·Π΅ΠΌΠ° ΡΠ»ΠΈΠΊΠ°, ΡΠ° Π΄Π΅Π»ΠΈ Π½Π° ΠΊΠ²Π°Π΄ΡΠ°ΡΠΈ ΠΈ ΠΏΠΎΡΠΎΠ° ΡΠ»ΡΡΠ°ΡΠ½ΠΎ Π³ΠΈ ΠΏΡΠΎΠΌΠ΅ΡΡΠ²Π° ΠΊΠ²Π°Π΄ΡΠ°ΡΠΈΡΠ΅, "
"ΠΊΠ°ΠΊΠΎ Π΄Π° Π΅ Π΅Π΄Π½Π° ΠΎΠ΄ ΠΎΠ½ΠΈΠ΅ Π΄ΠΎΡΠ°Π΄Π½ΠΈ ΠΈΠ³ΡΠΈ ΡΠΎ β16 ΡΠ»ΠΎΠΆΡΠ²Π°Π»ΠΊΠΈβ ΠΊΠ°Π΄Π΅ ΠΏΠΎΡΡΠΎΠΈ ΠΌΡΠ΅ΠΆΠ° "
"ΠΊΠ²Π°Π΄ΡΠ°ΡΠΈ ΠΎΠ΄ ΠΊΠΎΠΈ Π΅Π΄Π΅Π½ Π½Π΅Π΄ΠΎΡΡΠ°ΡΡΠ²Π°. ΠΡΠ°Π·Π°ΠΌ Π΄Π° Π³ΠΈ ΡΠ΅ΡΠ°Π²Π°ΠΌ ΡΠΈΠ΅ ΡΠ»ΠΎΠΆΡΠ²Π°Π»ΠΊΠΈ, Π½ΠΎ Π΄Π° "
"Π³Π»Π΅Π΄Π°ΠΌ Π΅Π΄Π½Π° Π΄Π° ΡΠ΅ ΡΠ°Π·ΠΌΠ΅ΡΡΡΠ²Π° ΡΠ΅Π±Π΅ΡΠΈ Π΅ ΠΏΠΎΠ·Π°Π±Π°Π²Π½ΠΎ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Jamie Zawinski."
#: hacks/config/slip.xml.h:6
msgid "Slip"
msgstr "ΠΠΈΠ·Π³Π°ΡΠ΅"
#: hacks/config/slip.xml.h:10
msgid ""
"This program throws some random bits on the screen, then sucks them through a "
"jet engine and spews them out the other side. To avoid turning the image "
"completely to mush, every now and then it will and then it interjects some "
"splashes of color into the scene, or go into a spin cycle, or stretch the image "
"like taffy, or (this is my addition) grab an image of your current desktop to "
"chew on. Originally written by Scott Draves; whacked on by Jamie Zawinski."
msgstr ""
"ΠΠ²Π°Π° ΠΏΡΠΎΠ³ΡΠ°ΠΌΠ° ΡΡΠ»Π° Π½Π΅ΠΊΠΎΠ»ΠΊΡ ΡΠ»ΡΡΠ°ΡΠ½ΠΈ Π±ΠΈΡΠΎΠ²ΠΈ Π½Π° Π΅ΠΊΡΠ°Π½ΠΎΡ, ΠΏΠΎΡΠΎΠ° Π³ΠΈ Π²ΡΠΌΡΠΊΡΠ²Π° Π½ΠΈΠ· "
"ΠΌΠ»Π°Π·Π΅Π½ ΠΌΠΎΡΠΎΡ ΠΈ Π³ΠΈ ΠΈΡΡΡΠ»Π° ΠΎΠ΄ Π΄ΡΡΠ³Π°ΡΠ° ΡΡΡΠ°Π½Π°. ΠΠ° Π΄Π° ΡΠ΅ ΠΈΠ·Π±Π΅Π³Π½Π΅ ΠΏΡΠ΅ΡΠ²ΠΎΡΠ°ΡΠ΅ Π½Π° "
"ΡΠ»ΠΈΠΊΠ°ΡΠ° Π²ΠΎ ΡΠ΅Π»ΠΎΡΠ½Π° ΠΊΠ°ΡΠ°, ΠΎΠ΄Π²ΡΠ΅ΠΌΠ΅ Π½Π°Π²ΡΠ΅ΠΌΠ΅ ΡΡΠ°Π½ΡΠ²Π° ΡΠ°ΠΊΠ²Π° ΠΈ ΠΏΠΎΡΠΎΠ° ΡΠ΅ ΡΡΡΠ»Π° ΠΌΠ°Π»ΠΊΡ "
"Π±ΠΎΡΠ° Π½Π° ΡΡΠ΅Π½Π°ΡΠ°, ΠΈΠ»ΠΈ Π·Π°ΠΏΠΎΡΠ½ΡΠ²Π° Π΄Π° ΡΠ΅ Π²ΡΡΠΈ Π²ΠΎ ΠΊΡΡΠ³, ΠΈΠ»ΠΈ ΡΠ° ΠΈΡΡΠ΅Π³Π½ΡΠ²Π° ΡΠ»ΠΈΠΊΠ°ΡΠ° "
"ΠΊΠ°ΠΊΠΎ ΠΊΠ°ΡΠ°ΠΌΠ΅Π»Π°, ΠΈΠ»ΠΈ (ΠΎΠ²Π° Π΅ ΠΌΠΎΡ Π΄ΠΎΠ΄Π°ΡΠΎΠΊ) ΡΠ° Π·Π΅ΠΌΠ° ΡΠ»ΠΈΠΊΠ°ΡΠ° ΠΎΠ΄ Π²Π°ΡΠ°ΡΠ° ΡΠ΅ΠΊΠΎΠ²Π½Π° "
"ΠΏΠΎΠ²ΡΡΠΈΠ½Π° Π΄Π° ΡΠ° ΠΈΠ·ΡΠ²Π°ΠΊΠ°. ΠΡΠΈΠ³ΠΈΠ½Π°Π»Π½ΠΎ Π½Π°ΠΏΠΈΡΠ°Π½Π° ΠΎΠ΄ Scott Draves; ΠΏΡΠΎΡΡΠ΅ΡΠ΅Π½Π° ΠΎΠ΄ "
"Jamie Zawinski."
#: hacks/config/sonar.xml.h:1
msgid "Ping Subnet"
msgstr "ΠΠΎΠ΄ΠΌΡΠ΅ΠΆΠ° Π·Π° ΠΏΠΈΠ½Π³ΡΠ²Π°ΡΠ΅"
#: hacks/config/sonar.xml.h:2
msgid "Simulation Team Members"
msgstr "Π§Π»Π΅Π½ΠΎΠ²ΠΈ Π½Π° ΡΠΈΠΌΠΎΡ Π·Π° ΡΠΈΠΌΡΠ»Π°ΡΠΈΡΠ°"
#: hacks/config/sonar.xml.h:3
msgid "Sonar"
msgstr "Π‘ΠΎΠ½Π°Ρ"
#: hacks/config/sonar.xml.h:4
msgid "Team A Name"
msgstr "ΠΠΌΠ΅ Π½Π° ΡΠΈΠΌΠΎΡ Π"
#: hacks/config/sonar.xml.h:5
msgid "Team B Name"
msgstr "ΠΠΌΠ΅ Π½Π° ΡΠΈΠΌΠΎΡ Π"
#: hacks/config/sonar.xml.h:6
msgid ""
"This program draws a simulation of a sonar screen. Written by default, it "
"displays a random assortment of ``bogies'' on the screen, but if compiled "
"properly, it can ping (pun intended) your local network, and actually plot the "
"proximity of the other hosts on your network to you. It would be easy to make "
"it monitor other sources of data, too. (Processes? Active network connections? "
"CPU usage per user?) Written by Stephen Martin."
msgstr ""
"ΠΠ²Π°Π° ΠΏΡΠΎΠ³ΡΠ°ΠΌΠ° ΡΡΡΠ° ΡΠΈΠΌΡΠ»Π°ΡΠΈΡΠ° Π½Π° Π΅ΠΊΡΠ°Π½ Π½Π° ΡΠΎΠ½Π°Ρ. Π‘ΡΠ°Π½Π΄Π°ΡΠ΄Π½ΠΎ Π½Π°ΠΏΠΈΡΠ°Π½Π°, ΠΏΡΠΈΠΊΠ°ΠΆΡΠ²Π° "
"ΠΏΡΠΎΠΈΠ·Π²ΠΎΠ»Π΅Π½ ΠΈΠ·Π±ΠΎΡ βΠ½Π΅ΠΏΡΠΈΡΠ°ΡΠ΅Π»ΠΈβ Π½Π° Π΅ΠΊΡΠ°Π½ΠΎΡ, Π½ΠΎ Π°ΠΊΠΎ ΡΠΎΠΎΠ΄Π²Π΅ΡΠ½ΠΎ ΡΠ΅ ΠΊΠΎΠΌΠΏΠΈΠ»ΠΈΡΠ°, ΠΌΠΎΠΆΠ΅ "
"Π΄Π° ΡΠ° ΠΏΠΈΠ½Π³ΡΠ²Π° (Π½Π°ΠΌΠ΅ΡΠ½Π° ΠΈΠ³ΡΠ° Π½Π° Π·Π±ΠΎΡΠΎΠ²ΠΈ) Π²Π°ΡΠ°ΡΠ° Π»ΠΎΠΊΠ°Π»Π½Π° ΠΌΡΠ΅ΠΆΠ° ΠΈ Π΄Π° ΡΠ° Π½Π°ΡΡΡΠ° "
"ΠΎΠ΄Π΄Π°Π»Π΅ΡΠ΅Π½ΠΎΡΡΠ° Π½Π° Π΄ΡΡΠ³ΠΈΡΠ΅ ΡΠ΅ΡΠ²Π΅ΡΠΈ Π΄ΠΎ Π²Π°Ρ. ΠΠΎΠΆΠ΅ Π»Π΅ΡΠ½ΠΎ Π΄Π° ΡΠ΅ Π½Π°ΠΏΡΠ°Π²ΠΈ Π΄Π° ΡΠ»Π΅Π΄ΠΈ ΠΈ "
"Π΄ΡΡΠ³ΠΈ ΠΈΠ·Π²ΠΎΡΠΈ Π½Π° ΠΏΠΎΠ΄Π°ΡΠΎΡΠΈ. (ΠΡΠΎΡΠ΅ΡΠΈ? ΠΠΊΡΠΈΠ²Π½ΠΈ ΠΌΡΠ΅ΠΆΠ½ΠΈ ΠΏΠΎΠ²ΡΠ·ΡΠ²Π°ΡΠ°? ΠΡΠΊΠΎΡΠΈΡΡΠ΅Π½ΠΎΡΡ Π½Π° "
"ΠΏΡΠΎΡΠ΅ΡΠΎΡΠΎΡ ΠΏΠΎ ΠΊΠΎΡΠΈΡΠ½ΠΈΠΊ?) ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Stephen Martin."
#: hacks/config/sonar.xml.h:7
msgid "vs."
msgstr "ΠΏΡΠΎΡΠΈΠ²"
#: hacks/config/speedmine.xml.h:1
msgid "Allow Wall Collisions"
msgstr "ΠΠΎΠ·Π²ΠΎΠ»ΠΈ ΡΡΠ΄Π°ΡΠΈ ΡΠΎ ΡΠΈΠ΄ΠΎΡ"
#: hacks/config/speedmine.xml.h:2
msgid "Display Crosshair"
msgstr "ΠΡΠΈΠΊΠ°ΠΆΠΈ Π½ΠΈΡΠ°Π½"
#: hacks/config/speedmine.xml.h:7
msgid "Max Velocity"
msgstr "ΠΠ°ΠΊΡΠΈΠΌΠ°Π»Π½Π° Π±ΡΠ·ΠΈΠ½Π°"
#: hacks/config/speedmine.xml.h:8
msgid "Mine Shaft"
msgstr "Π ΡΠ΄Π°ΡΡΠΊΠΎ ΠΎΠΊΠ½ΠΎ"
#: hacks/config/speedmine.xml.h:9
msgid "Present Bonuses"
msgstr "ΠΡΠΈΠΊΠ°ΠΆΠΈ Π±ΠΎΠ½ΡΡΠΈ"
#: hacks/config/speedmine.xml.h:10
msgid "Rocky Walls"
msgstr "ΠΠ°ΠΌΠ΅Π½ΠΈ ΡΠΈΠ΄ΠΎΠ²ΠΈ"
#: hacks/config/speedmine.xml.h:12
msgid ""
"Simulates speeding down a rocky mineshaft, or a funky dancing worm. Written by "
"Conrad Parker."
msgstr ""
"Π‘ΠΈΠΌΡΠ»ΠΈΡΠ° Π±ΡΠ·Π°ΡΠ΅ Π½ΠΈΠ· ΠΊΠ°ΠΌΠ΅Π½ΠΈΡΠΎ ΡΡΠ΄Π°ΡΡΠΊΠΎ ΠΎΠΊΠ½ΠΎ ΠΈΠ»ΠΈ ΡΠ°Π½ΠΊΠΈ ΡΡΠ² ΡΡΠΎ ΠΈΠ³ΡΠ°. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ "
"Conrad Parker."
#: hacks/config/speedmine.xml.h:16
msgid "SpeedMine"
msgstr "ΠΡΠ·ΠΎ ΠΊΠΎΠΏΠ°ΡΠ΅"
#: hacks/config/speedmine.xml.h:17
msgid "Thrust"
msgstr "ΠΠΎΡΠΈΡΠΎΠΊ"
#: hacks/config/speedmine.xml.h:19 hacks/config/worm.xml.h:10
msgid "Worm"
msgstr "Π¦ΡΠ²"
#: hacks/config/sphere.xml.h:1
msgid ""
"Another of the classic screenhacks of the distant past, this one draws shaded "
"spheres in multiple colors. This hack traces its lineage back to Tom Duff in "
"1982."
msgstr ""
"Π£ΡΡΠ΅ Π΅Π΄Π΅Π½ ΠΎΠ΄ ΠΊΠ»Π°ΡΠΈΡΠ½ΠΈΡΠ΅ Ρ
Π°ΠΊΠΎΠ²ΠΈ Π·Π° Π΅ΠΊΡΠ°Π½ ΠΎΠ΄ Π΄Π°Π»Π΅ΡΠ½ΠΎΡΠΎ ΠΌΠΈΠ½Π°ΡΠΎ. ΠΠ²ΠΎΡ ΡΡΡΠ° ΠΈΡΠ΅Π½ΡΠ΅Π½ΠΈ "
"ΡΡΠ΅ΡΠΈ Π²ΠΎ ΠΏΠΎΠ²Π΅ΡΠ΅ Π±ΠΎΠΈ. ΠΠ²ΠΎΡ Ρ
Π°ΠΊ Π²ΠΎΠ΄ΠΈ ΠΏΠΎΡΠ΅ΠΊΠ»ΠΎ ΠΎΠ΄ Tom Duff Π²ΠΎ 1982."
#: hacks/config/sphere.xml.h:7
msgid "Sphere"
msgstr "Π‘ΡΠ΅ΡΠ°"
#: hacks/config/sphereEversion.xml.h:1
msgid "SphereEversion"
msgstr "Π‘ΡΠ΅ΡΠΎΠΠ²Π΅ΡΠ·ΠΈΡΠ°"
#: hacks/config/sphereEversion.xml.h:2
msgid ""
"SphereEversion draws an animation of a sphere being turned inside out. A sphere "
"can be turned inside out, without any tears, sharp creases or discontinuities, "
"if the surface of the sphere is allowed to intersect itself. This program "
"animates what is known as the Thurston Eversion. Written by Nathaniel Thurston "
"and Michael McGuffin. This program is not included with the XScreenSaver "
"package, but if you don't have it already, you can find it at "
"<http://www.dgp.utoronto.ca/~mjmcguff/eversion/>."
msgstr ""
"Π‘ΡΠ΅ΡΠΎΠΠ²Π΅ΡΠ·ΠΈΡΠ° ΡΡΡΠ° Π°Π½ΠΈΠΌΠ°ΡΠΈΡΠ° Π½Π° ΡΡΠ΅ΡΠ° ΡΡΠΎ ΡΠ΅ ΠΏΡΠ΅Π²ΡΡΡΠ²Π° ΠΎΠ΄Π²Π½Π°ΡΡΠ΅ Π½Π°Π½Π°Π΄Π²ΠΎΡ. ΠΠ΄Π½Π° "
"ΡΡΠ΅ΡΠ° ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΠΈΠ΄Π΅ ΠΏΡΠ΅Π²ΡΡΠ΅Π½Π°, Π±Π΅Π· ΡΠ°ΡΡΠ΅ΠΏΠΈ, ΠΎΡΡΡΠΈ ΡΠ°Π±ΠΎΠ²ΠΈ ΠΈΠ»ΠΈ ΠΏΡΠ΅ΠΊΠΈΠ½ΠΈ, Π°ΠΊΠΎ Π½Π° "
"ΠΏΠΎΠ²ΡΡΠΈΠ½Π°ΡΠ° Π½Π° ΡΡΠ΅ΡΠ°ΡΠ° Ρ ΡΠ΅ Π΄ΠΎΠΏΡΡΡΠΈ Π΄Π° ΡΠ΅ ΡΠ΅ΡΠ΅ ΡΠ°ΠΌΠ°ΡΠ° ΡΠΎ ΡΠ΅Π±Π΅. ΠΠ²Π°Π° ΠΏΡΠΎΠ³ΡΠ°ΠΌΠ° Π³ΠΎ "
"Π°Π½ΠΈΠΌΠΈΡΠ° ΠΎΠ½Π° ΡΡΠΎ Π΅ ΠΏΠΎΠ·Π½Π°ΡΠΎ ΠΊΠ°ΠΊΠΎ ΠΠ²Π΅ΡΠ·ΠΈΡΠ° Π½Π° Thurston. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Nathaniel "
"Thurston ΠΈ Michael McGuffin. ΠΠ²Π°Π° ΠΏΡΠΎΠ³ΡΠ°ΠΌΠ° Π½Π΅ Π΅ Π²ΠΊΠ»ΡΡΠ΅Π½Π° Π²ΠΎ ΠΏΠ°ΠΊΠ΅ΡΠΎΡ Π½Π° "
"XScreenSaver, ΠΈ Π°ΠΊΠΎ ΡΡ ΡΡΡΠ΅ ΡΠ° Π½Π΅ΠΌΠ°ΡΠ΅, ΠΌΠΎΠΆΠ΅ Π΄Π° ΡΠ° Π½Π°ΡΠ΄Π΅ΡΠ΅ Π½Π° "
"<http://www.dgp.utoronto.ca/~mjmcguff/eversion/>."
#: hacks/config/spheremonics.xml.h:9
msgid "Resolution"
msgstr "Π Π΅Π·ΠΎΠ»ΡΡΠΈΡΠ°"
#: hacks/config/spheremonics.xml.h:20
msgid "Smoothed Lines"
msgstr "ΠΠ·ΠΌΠ°Π·Π½Π΅ΡΠΈ Π»ΠΈΠ½ΠΈΠΈ"
#: hacks/config/spheremonics.xml.h:23
msgid "Spheremonics"
msgstr "Π‘ΡΠ΅ΡΠΎΠΌΠΎΠ½ΠΈΡΠΈ"
#: hacks/config/spheremonics.xml.h:24
msgid ""
"These closed objects are commonly called spherical harmonics, although they are "
"only remotely related to the mathematical definition found in the solution to "
"certain wave functions, most notable the eigenfunctions of angular momentum "
"operators. Written by Paul Bourke and Jamie Zawinski."
msgstr ""
"ΠΠ²ΠΈΠ΅ Π·Π°ΡΠ²ΠΎΡΠ΅Π½ΠΈ ΠΎΠ±ΡΠ΅ΠΊΡΠΈ Π²ΠΎΠΎΠ±ΠΈΡΠ°Π΅Π½ΠΎ ΡΠ΅ Π½Π°ΡΠ΅ΠΊΡΠ²Π°Π°Ρ ΡΡΠ΅ΡΠ½ΠΈ Ρ
Π°ΡΠΌΠΎΠ½ΠΈΡΠΈ, ΠΈΠ°ΠΊΠΎ ΡΠ΅ ΠΌΠ°Π»ΠΊΡ "
"ΠΏΠΎΠ²ΡΠ·Π°Π½ΠΈ ΡΠΎ ΠΌΠ°ΡΠ΅ΠΌΠ°ΡΠΈΡΠΊΠ°ΡΠ° Π΄Π΅ΡΠΈΠ½ΠΈΡΠΈΡΠ° Π½Π°ΡΠ΄Π΅Π½Π° Π²ΠΎ ΡΠ΅ΡΠ΅Π½ΠΈΠ΅ΡΠΎ Π½Π° ΠΎΠ΄ΡΠ΅Π΄Π΅Π½ΠΈ Π±ΡΠ°Π½ΠΎΠ²ΠΈ "
"ΡΡΠ½ΠΊΡΠΈΠΈ, Π° Π½Π°ΡΠ·Π°Π±Π΅Π»Π΅ΠΆΠΈΡΠ΅Π»Π½ΠΈ ΡΠ΅ ΠΊΠ°ΡΠ°ΠΊΡΠ΅ΡΠΈΡΡΠΈΡΠ½ΠΈΡΠ΅ ΡΡΠ½ΠΊΡΠΈΠΈ (eigenfunctions) Π½Π° "
"ΠΎΠΏΠ΅ΡΠ°ΡΠΎΡΠΈΡΠ΅ Π½Π° Π°Π³ΠΎΠ»Π½ΠΈΠΎΡ ΠΌΠΎΠΌΠ΅Π½Ρ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Paul Bourke ΠΈ Jamie Zawinski."
#: hacks/config/spiral.xml.h:2
msgid "Cycles"
msgstr "Π¦ΠΈΠΊΠ»ΡΡΠΈ"
#: hacks/config/spiral.xml.h:7
msgid ""
"Moving circular patterns, by Peter Schmitzberger. Moving circular patterns "
"means moire; interference patterns, of course."
msgstr ""
"ΠΠΎΠ΄Π²ΠΈΠΆΠ½ΠΈ ΠΊΡΡΠΆΠ½ΠΈ ΡΠ΅ΠΌΠΈ, ΠΎΠ΄ Peter Schmitzberger. ΠΠΎΠ΄Π²ΠΈΠΆΠ½ΠΈΡΠ΅ ΠΊΡΡΠΆΠ½ΠΈ ΡΠ΅ΠΌΠΈ Π·Π½Π°ΡΠ°Ρ "
"ΠΌΠΎΠ°ΡΠ΅, Ρ.Π΅. ΡΠ΅ΠΌΠΈ Π½Π° ΠΈΠ½ΡΠ΅ΡΡΠ΅ΡΠ΅Π½ΡΠΈΡΠ° (ΡΠ΅ ΡΠ°Π·Π±ΠΈΡΠ°)."
#: hacks/config/spiral.xml.h:11
msgid "Spiral"
msgstr "Π‘ΠΏΠΈΡΠ°Π»Π°"
#: hacks/config/spotlight.xml.h:1
msgid ""
"Draws a spotlight scanning across a black screen, illumnating the underlying "
"desktop when it passes. Written by Rick Schultz."
msgstr ""
"Π¦ΡΡΠ° ΡΠ΅ΡΠ»Π΅ΠΊΡΠΎΡ ΡΡΠΎ ΡΠΊΠ΅Π½ΠΈΡΠ° ΠΏΠΎ ΡΡΠ½ Π΅ΠΊΡΠ°Π½, ΠΎΡΠ²Π΅ΡΠ»ΡΠ²Π°ΡΡΠΈ ΡΠ° ΡΠ°Π±ΠΎΡΠ½Π°ΡΠ° ΠΏΠΎΠ²ΡΡΠΈΠ½Π° ΠΏΠΎ "
"ΠΊΠΎΡΠ° ΠΏΠΎΠΌΠΈΠ½ΡΠ²Π°. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Rick Schultz."
#: hacks/config/spotlight.xml.h:6
msgid "Spotlight"
msgstr "Π Π΅ΡΠ»Π΅ΠΊΡΠΎΡ"
#: hacks/config/sproingies.xml.h:3
msgid "Q-Bert meets Marble Madness! Written by Ed Mackey."
msgstr "Q-Bert ΡΠ΅ ΡΡΠ΅ΡΠ½ΡΠ²Π° ΡΠΎ Marble Madness! ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Ed Mackey."
#: hacks/config/sproingies.xml.h:9
msgid "Sproingies"
msgstr "Π€Π΅Π΄Π΅ΡΡΠΈΡΠ°"
#: hacks/config/squiral.xml.h:3
msgid ""
"Draws a set of interacting, square-spiral-producing automata. The spirals grow "
"outward until they hit something, then they go around it. Written by Jeff "
"Epler."
msgstr ""
"Π¦ΡΡΠ° ΠΌΠ½ΠΎΠΆΠ΅ΡΡΠ²ΠΎ ΠΈΠ½ΡΠ΅ΡΠ°ΠΊΡΠΈΠ²Π½ΠΈ, ΠΊΠ²Π°Π΄ΡΠ°ΡΠ½ΠΎ-ΡΠΏΠΈΡΠ°Π»Π½ΠΈ Π°Π²ΡΠΎΠΌΠ°ΡΠΈ. Π‘ΠΏΠΈΡΠ°Π»ΠΈΡΠ΅ ΡΠ°ΡΡΠ°Ρ "
"Π½Π°Π½Π°Π΄Π²ΠΎΡ Π΄ΠΎΠ΄Π΅ΠΊΠ° Π½Π΅ ΡΠ΄ΡΠ°Ρ Π²ΠΎ Π½Π΅ΡΡΠΎ ΡΡΠΎ ΠΏΠΎΡΠΎΠ° Π³ΠΎ Π·Π°ΠΎΠ±ΠΈΠΊΠΎΠ»ΡΠ²Π°Π°Ρ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Jeff "
"Epler."
#: hacks/config/squiral.xml.h:5
msgid "Handedness"
msgstr "ΠΠ·Π΄Π°Π΄Π΅Π½ΠΎΡΡ"
#: hacks/config/squiral.xml.h:7
msgid "Left"
msgstr "ΠΠ°Π»Π΅Π²ΠΎ"
#: hacks/config/squiral.xml.h:11 hacks/config/twang.xml.h:8
msgid "Randomness"
msgstr "ΠΠ½ΡΡΠΎΠΏΠΈΡΠ°"
#: hacks/config/squiral.xml.h:12
msgid "Right"
msgstr "ΠΠ°Π΄Π΅ΡΠ½ΠΎ"
#: hacks/config/squiral.xml.h:17
msgid "Squiral"
msgstr "ΠΠ²Π°Π΄ΡΠΎΡΠΏΠΈΡΠ°Π»ΠΈ"
#: hacks/config/ssystem.xml.h:1
msgid "SSystem"
msgstr "Π‘-Π‘ΠΈΡΡΠ΅ΠΌ"
#: hacks/config/ssystem.xml.h:2
msgid ""
"SSystem is a GL Solar System simulator. It simulates flybys of Sun, the nine "
"planets and a few major satellites, with four camera modes. Written by Raul "
"Alonso. This is not included with the XScreenSaver package, but is packaged "
"separately. Note: SSystem does not work as a screen saver on all systems, "
"because it doesn't communicate with xscreensaver properly. It happens to work "
"with some window managers, but not with others, so your mileage may vary. "
"SSystem was once available at <http://www1.las.es/~amil/ssystem/>, but is "
"now gone. You may still be able to find copies elsewhere. SSystem has since "
"evolved into two different programs: OpenUniverse "
"(http://openuniverse.sourceforge.net/) and Celestia "
"(http://www.shatters.net/celestia/). Sadly, neither of these programs work with "
"xscreensaver at all. You are encouraged to nag their authors into adding "
"xscreensaver support!"
msgstr ""
"Π‘-Π‘ΠΈΡΡΠ΅ΠΌ Π΅ ΡΠΈΠΌΡΠ»Π°ΡΠΎΡ Π½Π° ΡΠΎΠ»Π°ΡΠ½ΠΈΠΎΡ ΡΠΈΡΡΠ΅ΠΌ Π²ΠΎ GL. ΠΠΈ ΡΠΈΠΌΡΠ»ΠΈΡΠ° ΠΏΡΠ΅Π»Π΅ΡΡΠ²Π°ΡΠ°ΡΠ° Π½Π° "
"Π‘ΠΎΠ½ΡΠ΅ΡΠΎ, Π΄Π΅Π²Π΅ΡΡΠ΅ ΠΏΠ»Π°Π½Π΅ΡΠΈ ΠΈ Π½Π΅ΠΊΠΎΠ»ΠΊΡ ΠΏΠΎΠ³ΠΎΠ»Π΅ΠΌΠΈ ΡΠ°ΡΠ΅Π»ΠΈΡΠΈ, ΡΠΎ ΡΠ΅ΡΠΈΡΠΈ ΡΠ΅ΠΆΠΈΠΌΠΈ Π½Π° "
"ΠΊΠ°ΠΌΠ΅ΡΠ°. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Raul Alonso. ΠΠ²Π° Π½Π΅ Π΅ Π²ΠΊΠ»ΡΡΠ΅Π½ΠΎ Π²ΠΎ ΠΏΠ°ΠΊΠ΅ΡΠΎΡ Π½Π° XScreenSaver, "
"ΡΡΠΊΡ Π΅ ΡΠΏΠ°ΠΊΡΠ²Π°Π½ΠΎ ΠΎΠ΄Π΄Π΅Π»Π½ΠΎ. ΠΠ°Π±Π΅Π»Π΅ΡΠΊΠ°: Π‘-Π‘ΠΈΡΡΠ΅ΠΌ Π½Π΅ ΡΠ°Π±ΠΎΡΠΈ ΠΊΠ°ΠΊΠΎ Π΅ΠΊΡΠ°Π½ΡΠΊΠΈ ΡΡΠ²Π°Ρ Π½Π° "
"ΡΠΈΡΠ΅ ΡΠΈΡΡΠ΅ΠΌΠΈ Π·Π°ΡΠΎΠ° ΡΡΠΎ Π½Π΅ ΠΊΠΎΠΌΡΠ½ΠΈΡΠΈΡΠ° Π΄ΠΎΠ±ΡΠΎ ΡΠΎ xscreensaver. Π‘Π΅ ΡΠ»ΡΡΡΠ²Π° Π΄Π° "
"ΡΠ°Π±ΠΎΡΠΈ ΡΠΎ Π½Π΅ΠΊΠΎΠΈ ΠΌΠ΅Π½Π°ΡΠ΅ΡΠΈ Π½Π° ΠΏΡΠΎΠ·ΠΎΡΡΠΈ, Π½ΠΎ Π½Π΅ ΡΠΎ ΡΠΈΡΠ΅, ΡΠ°ΠΊΠ° ΡΡΠΎ Π²Π°ΡΠ΅ΡΠΎ ΠΈΡΠΊΡΡΡΠ²ΠΎ "
"ΠΌΠΎΠΆΠ΅ Π΄Π° Π²Π°ΡΠΈΡΠ°. Π‘-Π‘ΠΈΡΡΠ΅ΠΌ ΠΏΠΎΡΠ°Π½ΠΎ Π±Π΅ΡΠ΅ Π΄ΠΎΡΡΠ°ΠΏΠ΅Π½ Π½Π° "
"<http://www1.las.es/~amil/ssystem/> Π½ΠΎ ΡΠ΅Π³Π° Π½Π΅ Π΅ ΡΠ°ΠΌΡ. Π‘Ρ ΡΡΡΠ΅ ΠΌΠΎΠΆΠ΅ΡΠ΅ Π΄Π° "
"Π½Π°ΡΠ΄Π΅ΡΠ΅ Π½Π΅ΠΊΠ°Π΄Π΅ Π½Π΅Π³ΠΎΠ²ΠΈ ΠΊΠΎΠΏΠΈΠΈ. ΠΡΡΠΎΠ³Π°Ρ Π‘-Π‘ΠΈΡΡΠ΅ΠΌ ΡΠ΅ ΡΠ°Π·Π²ΠΈΠ» Π²ΠΎ Π΄Π²Π΅ ΡΠ°Π·Π»ΠΈΡΠ½ΠΈ "
"ΠΏΡΠΎΠ³ΡΠ°ΠΌΠΈ: OpenUniverse (http://openuniverse.sourceforge.net/) ΠΈ Celestia "
"(http://www.shatters.net/celestia/). ΠΠ° ΠΆΠ°Π», Π½ΠΈΡΡ Π΅Π΄Π½Π° ΠΎΠ΄ ΠΎΠ²ΠΈΠ΅ Π΄Π²Π΅ ΠΏΡΠΎΠ³ΡΠ°ΠΌΠΈ "
"Π²ΠΎΠΎΠΏΡΡΠΎ Π½Π΅ ΡΠ°Π±ΠΎΡΠ°Ρ ΡΠΎ xscreensaver. ΠΠ΅ ΠΎΡ
ΡΠ°Π±ΡΡΠ²Π°ΠΌΠ΅ Π΄Π° ΠΈΠΌ Π΄ΠΎΡΠ°Π΄ΡΠ²Π°ΡΠ΅ Π½Π° Π½ΠΈΠ²Π½ΠΈΡΠ΅ "
"Π°Π²ΡΠΎΡΠΈ Π·Π° Π΄Π° Π΄ΠΎΠ΄Π°Π΄Π°Ρ ΠΏΠΎΠ΄Π΄ΡΡΠΊΠ° Π·Π° xscreensaver!"
#: hacks/config/stairs.xml.h:6
msgid "Stairs"
msgstr "Π‘ΠΊΠ°Π»ΠΈ"
#: hacks/config/stairs.xml.h:8
msgid ""
"by Marcelo Vianna's third Escher GL hack, this one draws an ``infinite'' "
"staircase."
msgstr "Π’ΡΠ΅Ρ GL-Ρ
Π°ΠΊ Π½Π° ΠΡΠ΅Ρ ΠΎΠ΄ Marcelo Vianna, ΠΎΠ²ΠΎΡ ΡΡΡΠ° βΠ±Π΅ΡΠΊΠΎΠ½Π΅ΡΠ½ΠΈβ ΡΠΊΠ°Π»ΠΈ."
#: hacks/config/starfish.xml.h:1
msgid "Color Gradients"
msgstr "ΠΡΠ°Π΄ΠΈΠ΅Π½ΡΠΈ Π½Π° Π±ΠΎΡΠ°"
#: hacks/config/starfish.xml.h:7
msgid "Pulsating Blob"
msgstr "ΠΡΠ»ΡΠΈΡΠ°ΡΠΊΠ° Π΄Π°ΠΌΠΊΠ°"
#: hacks/config/starfish.xml.h:10
msgid "Starfish"
msgstr "ΠΠΎΡΡΠΊΠ° ΡΠ²Π΅Π·Π΄Π°"
#: hacks/config/starfish.xml.h:13
msgid ""
"This generates a sequence of undulating, throbbing, star-like patterns which "
"pulsate, rotate, and turn inside out. Another display mode uses these shapes to "
"lay down a field of colors, which are then cycled. The motion is very organic. "
"Written by Jamie Zawinski."
msgstr ""
"ΠΠ²Π° Π³Π΅Π½Π΅ΡΠΈΡΠ° Π½ΠΈΠ·Π° Π±ΡΠ°Π½ΠΎΠ²ΠΈΠ΄Π½ΠΈ, ΠΏΡΠ»ΡΠΈΡΠ°ΡΠΊΠΈ, ΡΠ²Π΅Π·Π΄Π΅ΡΡΠΈ ΡΠ΅ΠΌΠΈ ΡΡΠΎ ΠΏΡΠ»ΡΠΈΡΠ°Π°Ρ, ΡΠ΅ "
"Π²ΡΡΠ°Ρ ΠΈ ΡΠ΅ ΠΏΡΠ΅Π²ΡΡΡΠ²Π°Π°Ρ. ΠΡΡΠ³ ΡΠ΅ΠΆΠΈΠΌ Π½Π° ΠΏΡΠΈΠΊΠ°ΠΆΡΠ²Π°ΡΠ΅ Π³ΠΈ ΠΊΠΎΡΠΈΡΡΠΈ ΡΠΈΠ΅ ΠΎΠ±Π»ΠΈΡΠΈ Π·Π° Π΄Π° "
"ΠΏΠΎΡΡΠ°Π²ΠΈ ΠΏΠΎΠ»Π΅ ΠΎΠ΄ Π±ΠΎΠΈ ΡΡΠΎ ΠΏΠΎΡΠΎΠ° ΡΠ΅ Π²ΡΡΠ°Ρ. ΠΠ²ΠΈΠΆΠ΅ΡΠ΅ΡΠΎ Π΅ ΠΌΠ½ΠΎΠ³Ρ ΠΏΡΠΈΡΠΎΠ΄Π½ΠΎ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ "
"Jamie Zawinski."
#: hacks/config/starwars.xml.h:2
msgid "Anti-aliased Lines"
msgstr "ΠΠ·ΠΌΠ°Π·Π½Π΅ΡΠΈ Π»ΠΈΠ½ΠΈΠΈ"
#: hacks/config/starwars.xml.h:3
msgid "Centered Text"
msgstr "Π¦Π΅Π½ΡΡΠΈΡΠ°Π½ ΡΠ΅ΠΊΡΡ"
#: hacks/config/starwars.xml.h:4
msgid ""
"Draws a stream of text slowly scrolling into the distance at an angle, over a "
"star field, like at the beginning of the movie of the same name. Written by "
"Jamie Zawinski and Claudio Matauoka."
msgstr ""
"Π¦ΡΡΠ° ΡΠ΅ΠΊΡΡ ΡΡΠΎ ΠΏΠΎΠ»Π΅ΠΊΠ° ΡΠ΅ Π΄Π²ΠΈΠΆΠΈ Π²ΠΎ Π΄Π°Π»Π΅ΡΠΈΠ½Π°ΡΠ° ΠΏΠΎΠ΄ Π΄Π°Π΄Π΅Π½ Π°Π³ΠΎΠ», ΠΏΡΠ΅ΠΊΡ ΡΠ²Π΅Π·Π΄Π΅Π½ΠΎ "
"ΠΏΠΎΠ»Π΅, ΠΊΠ°ΠΊΠΎ ΠΏΠΎΡΠ΅ΡΠΎΠΊΠΎΡ Π½Π° ΡΠΈΠ»ΠΌΠΎΡ ΡΠΎ ΠΈΡΡΠΎΡΠΎ ΠΈΠΌΠ΅. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Jamie Zawinski ΠΈ "
"Claudio Matauoka."
#: hacks/config/starwars.xml.h:5
msgid "Fade Out"
msgstr "ΠΡΡΠ΅Π·Π½ΡΠ²Π°ΡΠ΅"
#: hacks/config/starwars.xml.h:7
msgid "Flush Left Text"
msgstr "ΠΠ΅Π²ΠΎ ΠΏΠΎΡΠ°ΠΌΠ½Π΅Ρ ΡΠ΅ΠΊΡΡ"
#: hacks/config/starwars.xml.h:8
msgid "Flush Right Text"
msgstr "ΠΠ΅ΡΠ½ΠΎ ΠΏΠΎΡΠ°ΠΌΠ½Π΅Ρ ΡΠ΅ΠΊΡΡ"
#: hacks/config/starwars.xml.h:9
msgid "Font Point Size"
msgstr "ΠΠΎΠ»Π΅ΠΌΠΈΠ½Π° Π½Π° ΡΠ΅ΠΊΡΡ Π²ΠΎ ΡΠΎΡΠΊΠΈ"
#: hacks/config/starwars.xml.h:10
msgid "Scroll Speed"
msgstr "ΠΡΠ·ΠΈΠ½Π° Π½Π° Π΄Π²ΠΈΠΆΠ΅ΡΠ΅"
#: hacks/config/starwars.xml.h:13
msgid "Star Rotation Speed"
msgstr "ΠΡΠ·ΠΈΠ½Π° Π½Π° ΡΠΎΡΠΈΡΠ°ΡΠ΅ Π½Π° ΡΠ²Π΅Π·Π΄ΠΈΡΠ΅"
#: hacks/config/starwars.xml.h:14
msgid "StarWars"
msgstr "ΠΠΎΡΠ½Π° Π½Π° ΡΠ²Π΅Π·Π΄ΠΈΡΠ΅"
#: hacks/config/starwars.xml.h:15
msgid "Text Columns"
msgstr "ΠΠΎΠ»ΠΎΠ½ΠΈ ΡΠΎ ΡΠ΅ΠΊΡΡ"
#: hacks/config/starwars.xml.h:16
msgid "Text Lines"
msgstr "ΠΠΈΠ½ΠΈΠΈ ΡΠΎ ΡΠ΅ΠΊΡΡ"
#: hacks/config/starwars.xml.h:18
msgid "Thick Lines"
msgstr "ΠΡΡΡΠΈ Π»ΠΈΠ½ΠΈΠΈ"
#: hacks/config/starwars.xml.h:19
msgid "Wrap Long Lines"
msgstr "ΠΡΠ΅Π½Π΅ΡΠΈ Π΄ΠΎΠ»Π³ΠΈ Π»ΠΈΠ½ΠΈΠΈ"
#: hacks/config/stonerview.xml.h:1
msgid ""
"Chains of colorful squares dance around each other in complex spiral patterns. "
"Written by Andrew Plotkin, based on SGI's `electropaint' screensaver."
msgstr ""
"Π‘ΠΈΠ½ΡΠΈΡΠΈ ΠΎΠ΄ ΠΆΠΈΠ²ΠΎΠΏΠΈΡΠ½ΠΈ ΠΊΠ²Π°Π΄ΡΠ°ΡΠΈ ΡΡΠΎ ΡΠ°Π½ΡΡΠ²Π°Π°Ρ Π΅Π΄Π΅Π½ ΠΎΠΊΠΎΠ»Ρ Π΄ΡΡΠ³ Π²ΠΎ ΠΊΠΎΠΌΠΏΠ»Π΅ΠΊΡΠ½ΠΈ "
"ΡΠΏΠΈΡΠ°Π»Π½ΠΈ ΡΠ΅ΠΌΠΈ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Andrew Plotkin, Π±Π°Π·ΠΈΡΠ°Π½ΠΎ Π½Π° Π΅ΠΊΡΠ°Π½ΡΠΊΠΈΠΎΡ ΡΡΠ²Π°Ρ Π½Π° SGI "
"βelectropaintβ."
#: hacks/config/stonerview.xml.h:3
msgid "StonerView"
msgstr "ΠΠΈΠ²ΠΎΠΏΠΈΡΠ΅Π½ ΠΏΠΎΠ³Π»Π΅Π΄"
#: hacks/config/strange.xml.h:1
msgid "Curviness"
msgstr "ΠΠ°ΠΊΡΠΈΠ²Π΅Π½ΠΎΡΡ"
#: hacks/config/strange.xml.h:9
msgid "Strange"
msgstr "Π§ΡΠ΄Π½ΠΈ Π°ΡΡΠ°ΠΊΡΠΎΡΠΈ"
#: hacks/config/strange.xml.h:10
msgid ""
"This draws strange attractors: it's a colorful, unpredictably-animating field "
"of dots that swoops and twists around. The motion is very nice. Written by "
"Massimino Pascal."
msgstr ""
"ΠΠ²Π° ΡΡΡΠ° ΡΡΠ΄Π½ΠΈ Π°ΡΡΠ°ΠΊΡΠΎΡΠΈ: ΡΠΎΠ° Π΅ ΠΆΠΈΠ²ΠΎΠΏΠΈΡΠ½ΠΎ, Π½Π΅ΠΏΡΠ΅Π΄Π²ΠΈΠ΄Π»ΠΈΠ²ΠΎ ΠΏΠΎΠ΄Π²ΠΈΠΆΠ½ΠΎ ΠΏΠΎΠ»Π΅ ΡΠΎΡΠΊΠΈ "
"ΡΡΠΎ ΡΠ΅ ΡΠΏΡΡΡΠ° ΠΈ ΡΠ΅ Π²ΡΡΠΈ Π½Π°ΠΎΠΊΠΎΠ»Ρ. ΠΠ²ΠΈΠΆΠ΅ΡΠ°ΡΠ° ΡΠ΅ ΠΌΠ½ΠΎΠ³Ρ ΠΏΡΠΈΡΠ°ΡΠ½ΠΈ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ "
"Massimino Pascal."
#: hacks/config/superquadrics.xml.h:2
msgid ""
"Ed Mackey reports that he wrote the first version of this program in BASIC on a "
"Commodore 64 in 1987, as a 320x200 black and white wireframe. Now it is GL and "
"has specular reflections."
msgstr ""
"Ed Mackey ΠΈΠ·Π²Π΅ΡΡΡΠ²Π° Π΄Π΅ΠΊΠ° ΡΠ° Π½Π°ΠΏΠΈΡΠ°Π» ΠΏΡΠ²Π°ΡΠ° Π²Π΅ΡΠ·ΠΈΡΠ° Π½Π° ΠΎΠ²Π°Π° ΠΏΡΠΎΠ³ΡΠ°ΠΌΠ° Π²ΠΎ BASIC Π½Π° "
"Commodore 64 Π²ΠΎ 1987, ΠΊΠ°ΠΊΠΎ ΡΡΠ½ΠΎ-Π±Π΅Π»Π° ΠΌΡΠ΅ΠΆΠ½Π° ΠΊΠΎΠ½ΡΡΡΡΠΊΡΠΈΡΠ° Π²ΠΎ 320x200. Π‘Π΅Π³Π° Π΅ GL "
"ΠΈ ΠΈΠΌΠ° ΡΠΏΠ΅ΠΊΡΠ°ΠΊΡΠ»Π°ΡΠ½ΠΈ ΡΠ΅ΡΠ»Π΅ΠΊΡΠΈΠΈ."
#: hacks/config/superquadrics.xml.h:10
#, fuzzy
msgid "Superquadrics"
msgstr "Π‘ΡΠΏΠ΅ΡΠΊΠ²Π°Π΄ΡΠ°ΡΠΈ"
#: hacks/config/swirl.xml.h:4
msgid ""
"More flowing, swirly patterns. This version is by M. Dobie and R. Taylor, but "
"you might have seen a Mac program similar to this called FlowFazer. There is "
"also a cool Java applet of a similar concept."
msgstr ""
"Π£ΡΡΠ΅ ΠΏΠΎΠ΄Π²ΠΈΠΆΠ½ΠΈ Π²ΡΡΠ»ΠΈΠ²ΠΈ ΡΠ΅ΠΌΠΈ. ΠΠ²Π°Π° Π²Π΅ΡΠ·ΠΈΡΠ° Π΅ ΠΎΠ΄ M. Dobie ΠΈ R. Taylor, Π½ΠΎ ΠΌΠΎΠΆΠ΅Π±ΠΈ "
"ΡΡΠ΅ Π²ΠΈΠ΄Π΅Π»Π΅ ΠΏΡΠΎΠ³ΡΠ°ΠΌΠ° Π²ΠΎ ΠΠ΅ΠΊΠΈΠ½ΡΠΎΡ ΡΠ»ΠΈΡΠ½Π° Π½Π° ΠΎΠ²Π°Π°, Π½Π°ΡΠ΅ΡΠ΅Π½Π° FlowFazer. ΠΠΎΡΡΠΎΠΈ ΠΈ "
"ΠΎΠ΄Π»ΠΈΡΠ΅Π½ Π°ΠΏΠ»Π΅Ρ Π²ΠΎ Java ΡΠΎ ΡΠ»ΠΈΡΠ΅Π½ ΠΊΠΎΠ½ΡΠ΅ΠΏΡ."
#: hacks/config/swirl.xml.h:8
msgid "Swirl"
msgstr "ΠΠΈΡΠ΅Π»"
#: hacks/config/t3d.xml.h:1
msgid "0Β°"
msgstr "0Β°"
#: hacks/config/t3d.xml.h:2
msgid "5 Minute Tick Marks"
msgstr "ΠΠ·Π½Π°ΠΊΠΈ Π·Π° 5 ΠΌΠΈΠ½ΡΡΠΈ"
#: hacks/config/t3d.xml.h:3
msgid "90Β°"
msgstr "90Β°"
#: hacks/config/t3d.xml.h:4
msgid "Bigger"
msgstr "ΠΠΎΠ³ΠΎΠ»Π΅ΠΌΠΎ"
#: hacks/config/t3d.xml.h:5
#, fuzzy
msgid "Cycle Seconds"
msgstr "ΠΡΡΠΆΠ½ΠΈ ΡΠ΅ΠΊΡΠ½Π΄ΠΈ"
#: hacks/config/t3d.xml.h:10
msgid "Minute Tick Marks"
msgstr "ΠΠ·Π½Π°ΠΊΠΈ Π·Π° ΠΌΠΈΠ½ΡΡΠΈ"
#: hacks/config/t3d.xml.h:12
msgid "Smaller"
msgstr "ΠΠΎΠΌΠ°Π»ΠΎ"
#: hacks/config/t3d.xml.h:14
msgid "T3D"
msgstr "Π’3Π"
#: hacks/config/t3d.xml.h:15
msgid ""
"This draws a working analog clock composed of floating, throbbing bubbles. "
"Written by Bernd Paysan."
msgstr ""
"ΠΠ²Π° ΡΡΡΠ° Π°ΠΊΡΠΈΠ²Π΅Π½ Π°Π½Π°Π»ΠΎΠ³Π΅Π½ ΡΠ°ΡΠΎΠ²Π½ΠΈΠΊ Π½Π°ΠΏΡΠ°Π²Π΅Π½ ΠΎΠ΄ ΠΏΡΠ»ΡΠΈΡΠ°ΡΠΊΠΈ ΠΌΠ΅ΡΡΡΠΈΡΠ° ΡΡΠΎ ΠΏΠ»ΠΎΠ²Π°Ρ. "
"ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Bernd Paysan."
#: hacks/config/t3d.xml.h:16
msgid "Turn Side-to-Side"
msgstr "ΠΡΡΠ΅ΡΠ΅ ΠΎΠ΄ ΡΡΡΠ°Π½Π° Π΄ΠΎ ΡΡΡΠ°Π½Π°"
#: hacks/config/t3d.xml.h:17
msgid "Wobbliness"
msgstr "ΠΡΠ»ΡΠΈΡΠ°ΡΠ΅"
#: hacks/config/thornbird.xml.h:1
msgid ""
"Displays a view of the ``Bird in a Thornbush'' fractal. Written by Tim "
"Auckland."
msgstr "ΠΠ°Π²Π° ΠΏΡΠΈΠΊΠ°Π· Π½Π° ΡΡΠ°ΠΊΡΠ°Π»ΠΎΡ βΠΡΠΈΡΠ° Π½Π° ΡΡΠ½β. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Tim Auckland."
#: hacks/config/thornbird.xml.h:6
msgid "Points"
msgstr "Π’ΠΎΡΠΊΠΈ"
#: hacks/config/thornbird.xml.h:12
msgid "Thornbird"
msgstr "ΠΡΠΈΡΠ° Π½Π° ΡΡΠ½"
#: hacks/config/triangle.xml.h:2
msgid ""
"Generates random mountain ranges using iterative subdivision of triangles. "
"Written by Tobias Gloth."
msgstr ""
"ΠΠ΅Π½Π΅ΡΠΈΡΠ° ΡΠ»ΡΡΠ°ΡΠ½ΠΈ ΠΏΠ»Π°Π½ΠΈΠ½ΡΠΊΠΈ ΠΎΠ±Π»Π°ΡΡΠΈ ΡΠΎ ΠΊΠΎΡΠΈΡΡΠ΅ΡΠ΅ ΠΈΡΠ΅ΡΠ°ΡΠΈΠ²Π½ΠΎ Π΄Π΅Π»Π΅ΡΠ΅ Π½Π° "
"ΡΡΠΈΠ°Π³ΠΎΠ»Π½ΠΈΡΠΈ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Tobias Gloth."
#: hacks/config/triangle.xml.h:7
msgid "Triangle"
msgstr "Π’ΡΠΈΠ°Π³ΠΎΠ»Π½ΠΈΠΊ"
#: hacks/config/truchet.xml.h:4
msgid ""
"This draws line- and arc-based Truchet patterns that tile the screen. Written "
"by Adrian Likins."
msgstr ""
"ΠΠ²Π° ΡΡΡΠ° Π’ΡΡΡΠ΅ΠΎΠ²ΠΈ ΡΠ΅ΠΌΠΈ ΠΎΠ΄ ΠΏΡΠ°Π²ΠΈ ΠΈ Π»Π°ΠΊΠΎΠ²ΠΈ ΡΡΠΎ Π³ΠΎ ΠΏΠΎΠΏΠ»ΠΎΡΡΠ²Π°Π°Ρ Π΅ΠΊΡΠ°Π½ΠΎΡ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ "
"ΠΎΠ΄ Adrian Likins."
#: hacks/config/truchet.xml.h:5
msgid "Truchet"
msgstr "Π’ΡΡΡΠ΅"
#: hacks/config/twang.xml.h:2
msgid ""
"Divides the screen into a grid, and plucks them. Written by Dan Bornstein."
msgstr ""
"ΠΠΎ Π΄Π΅Π»ΠΈ Π΅ΠΊΡΠ°Π½ΠΎΡ Π½Π° ΠΌΡΠ΅ΠΆΠ°, ΠΈ ΠΏΠΎΡΠΎΠ° Π³ΠΎ ΠΈΡΠΊΠΈΠ½ΡΠ²Π°. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Dan Bornstein."
#: hacks/config/twang.xml.h:6
msgid "Jumpy"
msgstr "ΠΠ΅ΡΠ²ΠΎΠ·Π½ΠΎ"
#: hacks/config/twang.xml.h:11
msgid "Springiness"
msgstr "ΠΡΡΠΊΠΎΠΊΠ½ΡΠ²Π°ΡΠ΅"
#: hacks/config/twang.xml.h:13
msgid "Transference"
msgstr "ΠΡΠ΅Π½Π΅ΡΡΠ²Π°ΡΠ΅"
#: hacks/config/twang.xml.h:14
msgid "Twang"
msgstr "Π’Π²Π°Π½Π³"
#: hacks/config/vermiculate.xml.h:1
msgid "Draws squiggly worm-like paths. Written by Tyler Pierce."
msgstr "Π¦ΡΡΠ° ΠΊΡΠΈΠ²ΡΠ»Π΅ΡΡΠΈ ΡΡΠ²ΠΎΠ»ΠΈΠΊΠΈ ΠΏΠ°ΡΠ΅ΠΊΠΈ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Tyler Pierce."
#: hacks/config/vermiculate.xml.h:2
msgid "Vermiculate"
msgstr "Π¦ΡΠ²ΡΠΈΡΠ°"
#: hacks/config/vidwhacker.xml.h:2 hacks/config/webcollage.xml.h:2
msgid "2 seconds"
msgstr "2 ΡΠ΅ΠΊΡΠ½Π΄ΠΈ"
#: hacks/config/vidwhacker.xml.h:4
msgid "Image Directory"
msgstr "ΠΠ°ΠΏΠΊΠ° ΡΠΎ ΡΠ»ΠΈΠΊΠΈ"
#: hacks/config/vidwhacker.xml.h:5
msgid ""
"This is actually just a shell script that grabs a frame of video from the "
"system's video input, and then uses some PBM filters (chosen at random) to "
"manipulate and recombine the video frame in various ways (edge detection, "
"subtracting the image from a rotated version of itself, etc.) Then it displays "
"that image for a few seconds, and does it again. This works really well if you "
"just feed broadcast television into it."
msgstr ""
"ΠΠ²Π° Π΅ Π²ΡΡΡΠ½ΠΎΡΡ ΡΠΊΡΠΈΠΏΡΠ° Π·Π° ΡΠΊΠΎΠ»ΠΊΠ° ΡΡΠΎ Π·Π΅ΠΌΠ° Π²ΠΈΠ΄Π΅ΠΎΡΠ°ΠΌΠΊΠ° ΠΎΠ΄ Π²ΠΈΠ΄Π΅ΠΎΠ²Π»Π΅Π·ΠΎΡ Π½Π° "
"ΡΠΈΡΡΠ΅ΠΌΠΎΡ, ΠΈ ΠΏΠΎΡΠΎΠ° ΠΊΠΎΡΠΈΡΡΠΈ Π½Π΅ΠΊΠΎΠΈ PBM-ΡΠΈΠ»ΡΡΠΈ (ΠΈΠ·Π±ΡΠ°Π½ΠΈ ΡΠ»ΡΡΠ°ΡΠ½ΠΎ) Π·Π° Π΄Π° Π³ΠΈ "
"ΠΌΠ°Π½ΠΈΠΏΡΠ»ΠΈΡΠ° ΠΈ ΡΠ΅ΠΊΠΎΠΌΠ±ΠΈΠ½ΠΈΡΠ° Π²ΠΈΠ΄Π΅ΠΎΡΠ°ΠΌΠΊΠΈΡΠ΅ Π½Π° ΡΠ°Π·Π»ΠΈΡΠ½ΠΈ Π½Π°ΡΠΈΠ½ΠΈ (Π΄Π΅ΡΠ΅ΠΊΡΠΈΡΠ°ΡΠ΅ ΡΠ°Π±ΠΎΠ²ΠΈ, "
"ΠΎΠ΄Π·Π΅ΠΌΠ°ΡΠ΅ Π½Π° ΡΠ»ΠΈΠΊΠ°ΡΠ° ΠΎΠ΄ Π½Π΅ΡΠ·ΠΈΠ½Π° ΡΠΎΡΠΈΡΠ°Π½Π° Π²Π΅ΡΠ·ΠΈΡΠ°, ΠΈΡΠ½.) ΠΠΎΡΠΎΠ° ΡΠ° ΠΏΡΠΈΠΊΠ°ΠΆΡΠ²Π° ΡΠ°Π° "
"ΡΠ»ΠΈΠΊΠ° Π½Π΅ΠΊΠΎΠ»ΠΊΡ ΡΠ΅ΠΊΡΠ½Π΄ΠΈ, ΠΈ ΠΏΠΎΠ²ΡΠΎΡΠ½ΠΎ Π³ΠΎ ΠΏΡΠ°Π²ΠΈ ΠΈΡΡΠΎΡΠΎ. ΠΠ²Π° ΡΠ°Π±ΠΎΡΠΈ Π½Π°Π²ΠΈΡΡΠΈΠ½Π° Π΄ΠΎΠ±ΡΠΎ "
"Π°ΠΊΠΎ ΡΠ°ΠΌΠΎ Π΄ΠΎΠ²Π΅Π΄Π΅ΡΠ΅ ΡΠ΅Π»Π΅Π²ΠΈΠ·ΠΈΡΠΊΠΎ Π΅ΠΌΠΈΡΡΠ²Π°ΡΠ΅."
#: hacks/config/vidwhacker.xml.h:6
msgid "VidWhacker"
msgstr "ΠΠΈΠ΄Π΅ΠΎΡ
Π°ΠΊΠ΅Ρ"
#: hacks/config/vines.xml.h:6
msgid ""
"This one generates a continuous sequence of small, curvy geometric patterns. It "
"scatters them around your screen until it fills up, then it clears the screen "
"and starts over. Written by Tracy Camp and David Hansen."
msgstr ""
"ΠΠ²Π° Π³Π΅Π½Π΅ΡΠΈΡΠ° Π½Π΅ΠΏΡΠ΅ΠΊΠΈΠ½Π°ΡΠΈ Π½ΠΈΠ·ΠΈ ΠΎΠ΄ ΠΌΠ°Π»ΠΈ, ΠΊΡΠΈΠ²ΡΠ»Π΅ΡΡΠΈ Π³Π΅ΠΎΠΌΠ΅ΡΡΠΈΡΠΊΠΈ ΡΠ΅ΠΌΠΈ. ΠΠΈ ΡΠ°ΡΡΡΠ»Π° "
"ΠΏΠΎ Π²Π°ΡΠΈΠΎΡ Π΅ΠΊΡΠ°Π½ Π΄ΠΎΠ΄Π΅ΠΊΠ° Π½Π΅ Π³ΠΎ ΠΈΡΠΏΠΎΠ»Π½ΠΈ, ΠΏΠΎΡΠΎΠ° Π³ΠΎ ΠΈΡΡΠΈΡΡΡΠ²Π° Π΅ΠΊΡΠ°Π½ΠΎΡ ΠΈ ΠΏΠΎΡΠ½ΡΠ²Π° ΠΎΠ΄ "
"ΠΏΠΎΡΠ΅ΡΠΎΠΊ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Tracy Camp ΠΈ David Hansen."
#: hacks/config/vines.xml.h:8
msgid "Vines"
msgstr "ΠΠΎΠ»Π·Π°Π²ΡΠΈ"
#: hacks/config/wander.xml.h:5
msgid "Draw Spots"
msgstr "Π¦ΡΡΠ°Ρ ΡΠΎΡΠΊΠΈ"
#: hacks/config/wander.xml.h:6
msgid ""
"Draws a colorful random-walk, in various forms. Written by Rick Campbell."
msgstr ""
"Π¦ΡΡΠ° ΠΆΠΈΠ²ΠΎΠΏΠΈΡΠ½Π° ΡΠ»ΡΡΠ°ΡΠ½Π° ΠΏΡΠΎΡΠ΅ΡΠΊΠ°, Π²ΠΎ Π½Π°ΡΡΠ°Π·Π»ΠΈΡΠ½ΠΈ ΠΎΠ±Π»ΠΈΡΠΈ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Rick "
"Campbell."
#: hacks/config/wander.xml.h:14
msgid "Sustain"
msgstr "ΠΠ°Π΄ΡΠΆΡΠ²Π°ΡΠ΅"
#: hacks/config/webcollage.xml.h:3
msgid "Dictionary File"
msgstr "ΠΠ°ΡΠΎΡΠ΅ΠΊΠ° Π·Π° ΡΠ΅ΡΠ½ΠΈΠΊ"
#: hacks/config/webcollage.xml.h:5
msgid "Overall Filter Program"
msgstr "ΠΡΠΎΠ³ΡΠ°ΠΌΠ° Π·Π° ΠΎΠΏΡΡΠΎ ΡΠΈΠ»ΡΡΠΈΡΠ°ΡΠ΅"
#: hacks/config/webcollage.xml.h:6
msgid "Per-Image Filter Program"
msgstr "ΠΡΠΎΠ³ΡΠ°ΠΌΠ° Π·Π° ΡΠΈΠ»ΡΡΠΈΡΠ°ΡΠ΅ ΠΏΠΎ ΡΠ»ΠΈΠΊΠ°"
#: hacks/config/webcollage.xml.h:9
msgid ""
"This program makes collages out of random images pulled off of the World Wide "
"Web. It finds these images by doing random web searches, and then extracting "
"images from the returned pages. It can also be set up to filter the images "
"through the `VidWhacker' program, above, which looks really great. (Note that "
"most of the images it finds are text, and not pictures. This is because most of "
"the web is pictures of text. Which is pretty sad.) Written by Jamie Zawinski."
msgstr ""
"ΠΠ²Π°Π° ΠΏΡΠΎΠ³ΡΠ°ΠΌΠ° ΠΏΡΠ°Π²ΠΈ ΠΊΠΎΠ»Π°ΠΆΠΈ ΠΎΠ΄ ΡΠ»ΡΡΠ°ΡΠ½ΠΈ ΡΠ»ΠΈΠΊΠΈ ΠΈΠ·Π²Π»Π΅ΡΠ΅Π½ΠΈ ΠΎΠ΄ ΠΠ½ΡΠ΅ΡΠ½Π΅Ρ. Π’ΠΈΠ΅ ΡΠ»ΠΈΠΊΠΈ "
"Π³ΠΈ Π½Π°ΠΎΡΠ° ΡΠΎ ΡΠ»ΡΡΠ°ΡΠ½ΠΈ ΠΏΡΠ΅Π±Π°ΡΡΠ²Π°ΡΠ° Π½Π° ΠΌΡΠ΅ΠΆΠ°ΡΠ° ΠΈ ΠΈΠ·Π²Π»Π΅ΠΊΡΠ²Π°ΡΠ΅ Π½Π° ΡΠ»ΠΈΠΊΠΈΡΠ΅ ΠΎΠ΄ "
"Π²ΡΠ°ΡΠ΅Π½ΠΈΡΠ΅ ΡΡΡΠ°Π½ΠΈΡΠΈ. ΠΡΡΠΎ ΡΠ°ΠΊΠ°, ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΠΈΠ΄Π΅ ΠΏΠΎΡΡΠ°Π²Π΅Π½Π° Π΄Π° Π³ΠΈ ΡΠΈΠ»ΡΡΠΈΡΠ° ΡΠ»ΠΈΠΊΠΈΡΠ΅ "
"ΠΏΡΠ΅ΠΊΡ ΠΏΡΠΎΠ³ΡΠ°ΠΌΠ°ΡΠ° βΠΠΈΠ΄Π΅ΠΎΡ
Π°ΠΊΠ΅Ρβ, ΠΎΠ΄ ΠΏΠΎΠ³ΠΎΡΠ΅, ΡΡΠΎ ΠΈΠ·Π³Π»Π΅Π΄Π° Π½Π°Π²ΠΈΡΡΠΈΠ½Π° ΠΎΠ΄Π»ΠΈΡΠ½ΠΎ. "
"(ΠΠ°Π±Π΅Π»Π΅ΠΆΠ΅ΡΠ΅ Π΄Π΅ΠΊΠ° Π½Π°ΡΠ³ΠΎΠ»Π΅ΠΌΠΈΠΎΡ Π΄Π΅Π» ΠΎΠ΄ ΡΠ»ΠΈΠΊΠΈΡΠ΅ ΡΡΠΈ Π³ΠΈ Π½Π°ΠΎΡΠ° ΡΠ΅ ΡΠ΅ΠΊΡΡ, Π° Π½Π΅ ΡΠ»ΠΈΠΊΠΈ. "
"Π’ΠΎΠ° Π΅ Π·Π°ΡΠ°Π΄ΠΈ ΡΠΎΠ° ΡΡΠΎ Π½Π° ΠΠ½ΡΠ΅ΡΠ½Π΅Ρ Π½Π°ΡΠΌΠ½ΠΎΠ³Ρ ΠΎΠ΄ ΡΠ»ΠΈΠΊΠΈΡΠ΅ ΡΠ΅ ΡΠ΅ΠΊΡΡ. Π¨ΡΠΎ Π΅ ΠΌΠ½ΠΎΠ³Ρ "
"ΠΆΠ°Π»Π½ΠΎ.) ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Jamie Zawinski."
#: hacks/config/webcollage.xml.h:10
msgid "URL Timeout"
msgstr "ΠΡΡΠ΅ΠΊ Π½Π° Π²ΡΠ΅ΠΌΠ΅ Π½Π° URL"
#: hacks/config/webcollage.xml.h:11
msgid "WebCollage"
msgstr "ΠΠ΅Π±-ΠΊΠΎΠ»Π°ΠΆ"
#: hacks/config/whirlwindwarp.xml.h:2
msgid ""
"Floating stars are acted upon by a mixture of simple 2D forcefields. The "
"strength of each forcefield changes continuously, and it is also switched on "
"and off at random. By Paul 'Joey' Clark."
msgstr ""
"ΠΡΠ· ΡΠ²Π΅Π·Π΄ΠΈ ΡΡΠΎ Π»Π΅Π±Π΄Π°Ρ ΡΠ΅ Π²Π»ΠΈΡΠ°Π΅ ΡΠΎ ΠΌΠ΅ΡΠ°Π²ΠΈΠ½Π° ΠΎΠ΄ Π΅Π΄Π½ΠΎΡΡΠ°Π²Π½ΠΈ 2Π-Π³ΡΠ°Π²ΠΈΡΠ°ΡΠΈΠΎΠ½ΠΈ "
"ΠΏΠΎΠ»ΠΈΡΠ°. Π‘ΠΈΠ»Π°ΡΠ° Π½Π° ΡΠ΅ΠΊΠΎΠ΅ Π³ΡΠ°Π²ΠΈΡΠ°ΡΠΈΠΎΠ½ΠΎ ΠΏΠΎΠ»Π΅ ΠΏΠΎΡΡΠΎΡΠ°Π½ΠΎ ΡΠ΅ ΠΌΠ΅Π½ΡΠ²Π°, ΠΈ ΠΈΡΡΠΎ ΡΠ°ΠΊΠ° "
"ΠΏΡΠΎΠΈΠ·Π²ΠΎΠ»Π½ΠΎ ΡΠ΅ Π²ΠΊΠ»ΡΡΡΠ²Π° ΠΈ ΠΈΡΠΊΠ»ΡΡΡΠ²Π°. ΠΠ΄ Paul βJoeyβ Clark."
#: hacks/config/whirlwindwarp.xml.h:7
msgid "Trail Size"
msgstr "ΠΠΎΠ»Π΅ΠΌΠΈΠ½Π° Π½Π° ΡΡΠ°Π³Π°ΡΠ°"
#: hacks/config/whirlwindwarp.xml.h:8
msgid "WhirlwindWarp"
msgstr "ΠΠΈΠΎΡΠ½ΠΈ ΡΠ²Π΅Π·Π΄ΠΈ"
#: hacks/config/whirlygig.xml.h:1
msgid "Amplitude"
msgstr "ΠΠΌΠΏΠ»ΠΈΡΡΠ΄Π°"
#: hacks/config/whirlygig.xml.h:2
msgid "Draws zooming chains of sinusoidal spots. Written by Ashton Trey Belew."
msgstr ""
"Π¦ΡΡΠ° ΡΠ°ΡΡΠ΅ΡΠΊΠΈ ΡΠΈΠ½ΡΠΈΡΠΈ ΠΎΠ΄ ΡΠΈΠ½ΡΡΠΎΠΈΠ΄Π½ΠΈ ΡΠΎΡΠΊΠΈ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Ashton Trey Belew."
#: hacks/config/whirlygig.xml.h:5
msgid "Whirlies"
msgstr "ΠΠΈΡΠ»ΠΈ"
#: hacks/config/whirlygig.xml.h:6
msgid "WhirlyGig"
msgstr "ΠΡΡΠ»ΠΈΠ²Π° Π·Π°Π±Π°Π²Π°"
#: hacks/config/worm.xml.h:1
msgid ""
"An ancient xlock hack that draws multicolored worms that crawl around the "
"screen. Written by Brad Taylor, Dave Lemke, Boris Putanec, and Henrik Theiling."
msgstr ""
"Π‘ΡΠ°Ρ Ρ
Π°ΠΊ ΠΎΠ΄ xlock ΡΡΠΎ ΡΡΡΠ° ΠΏΠΎΠ²Π΅ΡΠ΅Π±ΠΎΡΠ½ΠΈ ΡΡΠ²ΠΈ ΡΡΠΎ ΡΠ΅ Π΄Π²ΠΈΠΆΠ°Ρ ΠΏΠΎ Π΅ΠΊΡΠ°Π½ΠΎΡ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ "
"ΠΎΠ΄ Brad Taylor, Dave Lemke, Boris Putanec ΠΈ Henrik Theiling."
#: hacks/config/xaos.xml.h:1
msgid "XaoS"
msgstr "Π₯Π°ΠΎΠ‘"
#: hacks/config/xaos.xml.h:2
msgid ""
"XaoS generates fast fly-through animations of the Mandelbrot and other fractal "
"sets. Written by Thomas Marsh and Jan Hubicka. This is not included with the "
"XScreenSaver package, but if you don't have it already, you can find it at "
"<http://limax.paru.cas.cz/~hubicka/XaoS/>."
msgstr ""
"Π₯Π°ΠΎΠ‘ Π³Π΅Π½Π΅ΡΠΈΡΠ° Π±ΡΠ·ΠΈ Π»Π΅ΡΠ΅ΡΠΊΠΈ Π°Π½ΠΈΠΌΠ°ΡΠΈΠΈ Π½Π° ΠΠ°Π½Π΄Π΅Π»Π±ΡΠΎΡ ΠΈ Π΄ΡΡΠ³ΠΈ ΡΡΠ°ΠΊΡΠ°Π»Π½ΠΈ ΠΌΠ½ΠΎΠΆΠ΅ΡΡΠ²Π°. "
"ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Thomas Marsh ΠΈ Jan Hubicka. ΠΠ²Π° Π½Π΅ Π΅ Π²ΠΊΠ»ΡΡΠ΅Π½ΠΎ Π²ΠΎ ΠΏΠ°ΠΊΠ΅ΡΠΎΡ Π½Π° "
"XScreenSaver ΠΈ Π°ΠΊΠΎ ΡΡ ΡΡΡΠ΅ Π³ΠΎ Π½Π΅ΠΌΠ°ΡΠ΅, ΠΌΠΎΠΆΠ΅ Π΄Π° Π³ΠΎ Π½Π°ΡΠ΄Π΅ΡΠ΅ Π½Π° "
"<http://limax.paru.cas.cz/~hubicka/XaoS/>."
#: hacks/config/xdaliclock.xml.h:1
msgid "12-Hour Time"
msgstr "12-ΡΠ°ΡΠΎΠ²Π½ΠΎ Π²ΡΠ΅ΠΌΠ΅"
#: hacks/config/xdaliclock.xml.h:2
msgid "24-Hour Time"
msgstr "24-ΡΠ°ΡΠΎΠ²Π½ΠΎ Π²ΡΠ΅ΠΌΠ΅"
#: hacks/config/xdaliclock.xml.h:3
msgid "Cycle Colors"
msgstr "ΠΠ΅Π½ΡΠ²Π°Ρ Π±ΠΎΠΈ"
#: hacks/config/xdaliclock.xml.h:4
msgid "Display Seconds"
msgstr "ΠΡΠΈΠΊΠ°ΠΆΠΈ ΡΠ΅ΠΊΡΠ½Π΄ΠΈ"
#: hacks/config/xdaliclock.xml.h:5
msgid "Huge Font"
msgstr "ΠΠ³ΡΠΎΠΌΠ΅Π½ ΡΠΎΠ½Ρ"
#: hacks/config/xdaliclock.xml.h:6 hacks/config/xmatrix.xml.h:8
msgid "Large Font"
msgstr "ΠΠΎΠ»Π΅ΠΌ ΡΠΎΠ½Ρ"
#: hacks/config/xdaliclock.xml.h:7
msgid "Medium Font"
msgstr "Π‘ΡΠ΅Π΄Π΅Π½ ΡΠΎΠ½Ρ"
#: hacks/config/xdaliclock.xml.h:8 hacks/config/xmatrix.xml.h:14
msgid "Small Font"
msgstr "ΠΠ°Π» ΡΠΎΠ½Ρ"
#: hacks/config/xdaliclock.xml.h:9
msgid "XDaliClock"
msgstr "X-ΠΠ°Π»ΠΈΠ§Π°ΡΠΎΠ²Π½ΠΈΠΊ"
#: hacks/config/xdaliclock.xml.h:10
msgid ""
"XDaliClock draws a large digital clock, the numbers of which change by "
"``melting'' into their new shapes. Written by Jamie Zawinski. This is not "
"included with the XScreenSaver package, but if you don't have it already, you "
"can find it at <http://www.jwz.org/xdaliclock/>."
msgstr ""
"X-ΠΠ°Π»ΠΈΠ§Π°ΡΠΎΠ²Π½ΠΈΠΊ ΡΡΡΠ° Π³ΠΎΠ»Π΅ΠΌ Π΄ΠΈΠ³ΠΈΡΠ°Π»Π΅Π½ ΡΠ°ΡΠΎΠ²Π½ΠΈΠΊ ΡΠΈΠΈ ΡΡΠΎ ΡΠΈΡΡΠΈ ΡΠ΅ ΠΌΠ΅Π½ΡΠ²Π°Π°Ρ ΡΠΎ "
"βΠΏΡΠ΅ΡΠΎΠΏΡΠ²Π°ΡΠ΅β Π²ΠΎ Π½ΠΈΠ²Π½ΠΈΠΎΡ Π½ΠΎΠ² ΠΎΠ±Π»ΠΈΠΊ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Jamie Zawinski. ΠΠ²Π° Π½Π΅ Π΅ "
"Π²ΠΊΠ»ΡΡΠ΅Π½ΠΎ Π²ΠΎ ΠΏΠ°ΠΊΠ΅ΡΠΎΡ Π½Π° XScreenSaver ΠΈ Π°ΠΊΠΎ ΡΡ ΡΡΡΠ΅ Π³ΠΎ Π½Π΅ΠΌΠ°ΡΠ΅, ΠΌΠΎΠΆΠ΅ Π΄Π° Π³ΠΎ Π½Π°ΡΠ΄Π΅ΡΠ΅ "
"Π½Π° <http://www.jwz.org/xdaliclock/>."
#: hacks/config/xearth.xml.h:1
msgid "Bright"
msgstr "Π‘ΡΠ°ΡΠ½ΠΎ"
#: hacks/config/xearth.xml.h:2
msgid "Date/Time Stamp"
msgstr "ΠΠ·Π½Π°ΠΊΠ° Π·Π° Π΄Π°ΡΡΠΌ/Π²ΡΠ΅ΠΌΠ΅"
#: hacks/config/xearth.xml.h:3
msgid "Day Dim"
msgstr "ΠΠ΅Π½ ΠΠ»Π΅Π΄ΠΎ"
#: hacks/config/xearth.xml.h:5
msgid "Display Stars"
msgstr "ΠΡΠΈΠΊΠ°ΠΆΠΈ ΡΠ²Π΅Π·Π΄ΠΈ"
#: hacks/config/xearth.xml.h:8
msgid "Label Cities"
msgstr "ΠΠ·Π½Π°ΡΠΈ Π³ΡΠ°Π΄ΠΎΠ²ΠΈ"
#: hacks/config/xearth.xml.h:9
msgid "Lower Left"
msgstr "ΠΠΎΠ»Ρ Π»Π΅Π²ΠΎ"
#: hacks/config/xearth.xml.h:10
msgid "Lower Right"
msgstr "ΠΠΎΠ»Ρ Π΄Π΅ΡΠ½ΠΎ"
#: hacks/config/xearth.xml.h:13
msgid "Mercator Projection"
msgstr "ΠΠ΅ΡΠΊΠ°ΡΠΎΡΠΎΠ²Π° ΠΏΡΠΎΠ΅ΠΊΡΠΈΡΠ°"
#: hacks/config/xearth.xml.h:14
msgid "Night Dim"
msgstr "ΠΠΎΡ ΠΠ»Π΅Π΄ΠΎ"
#: hacks/config/xearth.xml.h:15
msgid "No Stars"
msgstr "ΠΠ΅Π· ΡΠ²Π΅Π·Π΄ΠΈ"
#: hacks/config/xearth.xml.h:16
msgid "North/South Rotation"
msgstr "Π ΠΎΡΠ°ΡΠΈΡΠ° ΡΠ΅Π²Π΅Ρ/ΡΡΠ³"
#: hacks/config/xearth.xml.h:18
msgid "Orthographic Projection"
msgstr "ΠΡΡΠΎΠ³ΡΠ°ΡΡΠΊΠ° ΠΏΡΠΎΠ΅ΠΊΡΠΈΡΠ°"
#: hacks/config/xearth.xml.h:19
msgid "Real Time"
msgstr "Π Π΅Π°Π»Π½ΠΎ Π²ΡΠ΅ΠΌΠ΅"
#: hacks/config/xearth.xml.h:20
msgid "Shaded Image"
msgstr "ΠΠ°ΡΠ΅Π½Π΅ΡΠ° ΡΠ»ΠΈΠΊΠ°"
#: hacks/config/xearth.xml.h:21
msgid "Sharp"
msgstr "ΠΡΡΡΠΎ"
#: hacks/config/xearth.xml.h:23
msgid "Spacing"
msgstr "Π Π°ΡΡΠΎΡΠ°Π½ΠΈΠ΅"
#: hacks/config/xearth.xml.h:26
msgid "Terminator Blurry"
msgstr "Π’Π΅ΡΠΌΠΈΠ½Π°ΡΠΎΡ ΠΠ΅ΡΠ°ΡΠ½ΠΎ"
#: hacks/config/xearth.xml.h:27
msgid "Time Warp"
msgstr "ΠΡΠΊΡΠΈΠ²ΡΠ²Π°ΡΠ΅ Π½Π° Π²ΡΠ΅ΠΌΠ΅ΡΠΎ"
#: hacks/config/xearth.xml.h:29
msgid "Upper Left"
msgstr "ΠΠΎΡΠ΅ Π»Π΅Π²ΠΎ"
#: hacks/config/xearth.xml.h:30
msgid "Upper Right"
msgstr "ΠΠΎΡΠ΅ Π΄Π΅ΡΠ½ΠΎ"
#: hacks/config/xearth.xml.h:31
msgid ""
"XEarth draws an image of the Earth, as seen from your favorite vantage point in "
"space, correctly shaded for the current position of the Sun. Written by Kirk "
"Johnson. This is not included with the XScreenSaver package, but if you don't "
"have it already, you can find it at "
"<http://www.cs.colorado.edu/~tuna/xearth/>."
msgstr ""
"X-ΠΠ΅ΠΌΡΠ° ΡΡΡΠ° ΡΠ»ΠΈΠΊΠ° Π½Π° ΠΠ΅ΠΌΡΠ°ΡΠ°, Π²ΠΈΠ΄Π΅Π½Π° ΠΎΠ΄ Π²Π°ΡΠ°ΡΠ° ΠΎΠΌΠΈΠ»Π΅Π½Π° ΡΡΡΠ°ΡΠ΅ΡΠΊΠ° ΡΠΎΡΠΊΠ° Π²ΠΎ "
"Π²ΡΠ΅Π»Π΅Π½Π°ΡΠ°, ΡΠΎΡΠ½ΠΎ Π·Π°ΡΠ΅Π½Π΅ΡΠ° ΡΠΏΠΎΡΠ΅Π΄ ΡΠ΅ΠΊΠΎΠ²Π½Π°ΡΠ° ΠΌΠ΅ΡΡΠΎΠΏΠΎΠ»ΠΎΠΆΠ±Π° Π½Π° Π‘ΠΎΠ½ΡΠ΅ΡΠΎ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ "
"Kirk Johnson. ΠΠ²Π° Π½Π΅ Π΅ Π²ΠΊΠ»ΡΡΠ΅Π½ΠΎ Π²ΠΎ ΠΏΠ°ΠΊΠ΅ΡΠΎΡ Π½Π° XScreenSaver ΠΈ Π°ΠΊΠΎ ΡΡ ΡΡΡΠ΅ Π³ΠΎ "
"Π½Π΅ΠΌΠ°ΡΠ΅, ΠΌΠΎΠΆΠ΅ Π΄Π° Π³ΠΎ Π½Π°ΡΠ΄Π΅ΡΠ΅ Π½Π° <http://www.cs.colorado.edu/~tuna/xearth/>."
#: hacks/config/xearth.xml.h:32
msgid "Xearth"
msgstr "X-ΠΠ΅ΠΌΡΠ°"
#: hacks/config/xfishtank.xml.h:5
msgid "Fish"
msgstr "Π ΠΈΠ±Π°"
#: hacks/config/xfishtank.xml.h:6
msgid "Fish Speed"
msgstr "ΠΡΠ·ΠΈΠ½Π° Π½Π° ΡΠΈΠ±Π°ΡΠ°"
#: hacks/config/xfishtank.xml.h:7
msgid ""
"Fish! This is not included with the XScreenSaver package, but if you don't have "
"it already, you can find it at "
"<http://metalab.unc.edu/pub/Linux/X11/demos/>."
msgstr ""
"Π ΠΈΠ±Π°! ΠΠ²Π° Π½Π΅ Π΅ Π²ΠΊΠ»ΡΡΠ΅Π½ΠΎ Π²ΠΎ ΠΏΠ°ΠΊΠ΅ΡΠΎΡ Π½Π° XScreenSaver ΠΈ Π°ΠΊΠΎ ΡΡ ΡΡΡΠ΅ Π³ΠΎ Π½Π΅ΠΌΠ°ΡΠ΅, "
"ΠΌΠΎΠΆΠ΅ Π΄Π° Π³ΠΎ Π½Π°ΡΠ΄Π΅ΡΠ΅ Π½Π° <http://metalab.unc.edu/pub/Linux/X11/demos/>."
#: hacks/config/xfishtank.xml.h:12
msgid "XFishTank"
msgstr "X-Π ΠΈΠ±Π½ΠΈΠΊ"
#: hacks/config/xflame.xml.h:1
msgid "Bitmap File"
msgstr "ΠΠΈΡΠΌΠ°ΠΏ. ΡΠ»ΠΈΠΊΠ°"
#: hacks/config/xflame.xml.h:2
msgid ""
"Draws a simulation of pulsing fire. It can also take an arbitrary image and set "
"it on fire too. Written by Carsten Haitzler, hacked on by many others."
msgstr ""
"Π¦ΡΡΠ° ΡΠΈΠΌΡΠ»Π°ΡΠΈΡΠ° Π½Π° ΠΏΡΠ»ΡΠΈΡΠ°ΡΠΊΠΈ ΠΎΠ³Π°Π½. ΠΡΡΠΎ ΡΠ°ΠΊΠ°, ΠΌΠΎΠΆΠ΅ Π΄Π° ΠΏΡΠ΅Π·Π΅ΠΌΠ΅ ΠΏΡΠΎΠΈΠ·Π²ΠΎΠ»Π½Π° ΡΠ»ΠΈΠΊΠ° "
"ΠΈ Π΄Π° ΡΠ° ΠΏΠΎΡΡΠ°Π²ΠΈ Π΄Π° Π³ΠΎΡΠΈ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Carsten Haitzler, Ρ
Π°ΠΊΡΠ²Π°Π½ΠΎ ΠΎΠ΄ ΠΌΠ½ΠΎΠ³Ρ Π΄ΡΡΠ³ΠΈ."
#: hacks/config/xflame.xml.h:3
msgid "Enable Blooming"
msgstr "ΠΠ²ΠΎΠ·ΠΌΠΎΠΆΠΈ ΡΠ°Π·Π³ΠΎΡΡΠ²Π°ΡΠ΅"
#: hacks/config/xflame.xml.h:8
msgid "Xflame"
msgstr "X-ΠΠ³Π°Π½"
#: hacks/config/xjack.xml.h:4
msgid ""
"This program behaves schizophrenically and makes a lot of typos. Written by "
"Jamie Zawinski. If you haven't seen Stanley Kubrick's masterpiece, ``The "
"Shining,'' you won't get it. Those who have describe this hack as ``inspired.''"
msgstr ""
"ΠΠ²Π°Π° ΠΏΡΠΎΠ³ΡΠ°ΠΌΠ° ΡΠ΅ ΠΎΠ΄Π½Π΅ΡΡΠ²Π° ΡΠΈΠ·ΠΎΡΡΠ΅Π½ΠΈΡΠ½ΠΎ ΠΈ ΠΏΡΠ°Π²ΠΈ ΠΌΠ½ΠΎΠ³Ρ Π³ΡΠ΅ΡΠΊΠΈ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Jamie "
"Zawinski. ΠΠΊΠΎ Π½Π΅ ΡΡΠ΅ Π³ΠΎ Π³Π»Π΅Π΄Π°Π»Π΅ ΡΠ΅ΠΌΠ΅ΠΊ-Π΄Π΅Π»ΠΎΡΠΎ Π½Π° Π‘ΡΠ΅Π½Π»ΠΈ ΠΡΡΠ±ΡΠΈΠΊ βΠ‘ΡΠ°Π΅ΡΠ΅β Π½Π΅ΠΌΠ° Π΄Π° "
"ΡΠ°Π·Π±Π΅ΡΠ΅ΡΠ΅. ΠΠ½ΠΈΠ΅ ΡΡΠΎ Π³ΠΎ Π³Π»Π΅Π΄Π°Π»Π΅ Π³ΠΎ ΠΎΠΏΠΈΡΡΠ²Π°Π°Ρ ΠΎΠ²ΠΎΡ Ρ
Π°ΠΊ ΠΊΠ°ΠΊΠΎ βΠΈΠ½ΡΠΏΠΈΡΠ°ΡΠΈΠ²Π΅Π½β."
#: hacks/config/xjack.xml.h:5
msgid "Xjack"
msgstr "X-ΠΠ΅ΠΊ"
#: hacks/config/xlyap.xml.h:1
msgid ""
"This generates pretty fractal pictures by doing funky math involving the "
"``Lyapunov exponent.'' It has a cool interactive mode, too. Written by Ron "
"Record."
msgstr ""
"ΠΠ²Π° Π³Π΅Π½Π΅ΡΠΈΡΠ° ΡΠ±Π°Π²ΠΈ ΡΡΠ°ΠΊΡΠ°Π»Π½ΠΈ ΡΠ»ΠΈΠΊΠΈ ΡΠΎ ΠΊΠΎΡΠΈΡΡΠ΅ΡΠ΅ Π·Π°Π±Π°Π²Π½Π° ΠΌΠ°ΡΠ΅ΠΌΠ°ΡΠΈΠΊΠ° ΠΊΠΎΡΠ° Π³ΠΎ "
"Π²ΠΊΠ»ΡΡΡΠ²Π° βΠ΅ΠΊΡΠΏΠΎΠ½Π΅Π½ΡΠΎΡ Π½Π° ΠΠ°ΠΏΡΠ½ΠΎΠ²β. ΠΠΌΠ° ΠΈ ΠΈΠ½ΡΠ΅ΡΠ΅ΡΠ΅Π½ ΠΈΠ½ΡΠ΅ΡΠ°ΠΊΡΠΈΠ²Π΅Π½ ΡΠ΅ΠΆΠΈΠΌ. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ "
"ΠΎΠ΄ Ron Record."
#: hacks/config/xlyap.xml.h:2
msgid "Xlyap"
msgstr "X-ΠΠ°ΠΏΡΠ½ΠΎΠ²"
#: hacks/config/xmatrix.xml.h:1
msgid ""
"A rendition of the text scrolls seen in the movie ``The Matrix.'' Written by "
"Jamie Zawinski."
msgstr ""
"ΠΡΡΡΡΡΠ²Π°ΡΠ΅ Π½Π° ΠΏΠΎΠ΄Π²ΠΈΠΆΠ½ΠΈΠΎΡ ΡΠ΅ΠΊΡΡ Π²ΠΈΠ΄Π΅Π½ Π²ΠΎ ΡΠΈΠ»ΠΌΠΎΡ βΠΠ°ΡΡΠΈΠΊΡβ. ΠΠ°ΠΏΠΈΡΠ°Π½ ΠΎΠ΄ Jamie "
"Zawinski."
#: hacks/config/xmatrix.xml.h:2
msgid "Binary Encoding"
msgstr "ΠΠΈΠ½Π°ΡΠ½ΠΎ ΠΊΠΎΠ΄ΠΈΡΠ°ΡΠ΅"
#: hacks/config/xmatrix.xml.h:3
msgid "Expansion Algorithm"
msgstr "ΠΠ»Π³ΠΎΡΠΈΡΠ°ΠΌ Π½Π° Π΅ΠΊΡΠΏΠ°Π½Π·ΠΈΡΠ°"
#: hacks/config/xmatrix.xml.h:5
msgid "Full"
msgstr "ΠΠΎΠ»Π½ΠΎ"
#: hacks/config/xmatrix.xml.h:6
msgid "Genetic Encoding"
msgstr "ΠΠ΅Π½Π΅ΡΡΠΊΠΎ ΠΊΠΎΠ΄ΠΈΡΠ°ΡΠ΅"
#: hacks/config/xmatrix.xml.h:7
msgid "Hexadecimal Encoding"
msgstr "Π₯Π΅ΠΊΡΠ°Π΄Π΅ΡΠΈΠΌΠ°Π»Π½ΠΎ ΠΊΠΎΠ΄ΠΈΡΠ°ΡΠ΅"
#: hacks/config/xmatrix.xml.h:9
msgid "Matrix Encoding"
msgstr "ΠΠΎΠ΄ΠΈΡΠ°ΡΠ΅ Π½Π° ΠΌΠ°ΡΡΠΈΡΠ°ΡΠ°"
#: hacks/config/xmatrix.xml.h:10
msgid "Phone Number"
msgstr "Π’Π΅Π»Π΅ΡΠΎΠ½ΡΠΊΠΈ Π±ΡΠΎΡ"
#: hacks/config/xmatrix.xml.h:11
msgid "Run Trace Program"
msgstr "ΠΠ·Π²ΡΡΠΈ ΠΏΡΠΎΠ³ΡΠ°ΠΌΠ° Π·Π° ΡΠ»Π΅Π΄Π΅ΡΠ΅"
#: hacks/config/xmatrix.xml.h:12
msgid "Slider Algorithm"
msgstr "ΠΠ»Π³ΠΎΡΠΈΡΠ°ΠΌ Π½Π° Π»ΠΈΠ·Π³Π°Ρ"
#: hacks/config/xmatrix.xml.h:17
msgid "Synergistic Algorithm"
msgstr "ΠΠ»Π³ΠΎΡΠΈΡΠ°ΠΌ Π½Π° ΡΠΈΠ½Π΅ΡΠ³ΠΈΡΠ°"
#: hacks/config/xmatrix.xml.h:18
msgid "Xmatrix"
msgstr "ΠΠ°ΡΡΠΈΠΊΡ"
#: hacks/config/xmountains.xml.h:2
msgid "Reflections"
msgstr "Π Π΅ΡΠ»Π΅ΠΊΡΠΈΠΈ"
#: hacks/config/xmountains.xml.h:3
msgid "Side View"
msgstr "ΠΡΠΈΠΊΠ°Π· ΠΎΠ΄ ΡΡΡΠ°Π½Π°"
#: hacks/config/xmountains.xml.h:6
msgid "Top View"
msgstr "ΠΡΠΈΠΊΠ°Π· ΠΎΠ΄ Π³ΠΎΡΠ΅"
#: hacks/config/xmountains.xml.h:7
msgid ""
"XMountains generates realistic-looking fractal terrains of snow-capped "
"mountains near water, with either a top view or a side view. Written by Stephen "
"Booth. This is not included with the XScreenSaver package, but if you don't "
"have it already, you can find it at "
"<http://www.epcc.ed.ac.uk/~spb/xmountains/>. Be sure to compile it with "
"-DVROOT or it won't work right when launched by the xscreensaver daemon."
msgstr ""
"XMountains Π³Π΅Π½Π΅ΡΠΈΡΠ° ΡΡΠ°ΠΊΡΠ°Π»Π½ΠΈ ΡΠ΅ΡΠ΅Π½ΠΈ Π½Π° ΠΏΠ»Π°Π½ΠΈΠ½ΠΈ ΡΠΎ ΡΠ½Π΅ΠΆΠ½ΠΈ Π²ΡΠ²ΠΎΠ²ΠΈ ΠΏΠΎΠΊΡΠ°Ρ Π²ΠΎΠ΄Π°, "
"ΡΡΠΎ ΠΈΠ·Π³Π»Π΅Π΄Π°Π°Ρ ΡΠ΅Π°Π»Π½ΠΎ ΠΈ ΠΌΠΎΠΆΠ°Ρ Π΄Π° ΡΠ΅ Π³Π»Π΅Π΄Π°Π°Ρ ΠΎΠ΄ ΡΡΡΠ°Π½Π° ΠΈΠ»ΠΈ ΠΎΠ΄ Π³ΠΎΡΠ΅. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ "
"Stephen Booth. ΠΠ²Π° Π½Π΅ Π΅ Π²ΠΊΠ»ΡΡΠ΅Π½ΠΎ Π²ΠΎ ΠΏΠ°ΠΊΠ΅ΡΠΎΡ Π½Π° XScreenSaver ΠΈ Π°ΠΊΠΎ ΡΡ ΡΡΡΠ΅ Π³ΠΎ "
"Π½Π΅ΠΌΠ°ΡΠ΅, ΠΌΠΎΠΆΠ΅ Π΄Π° Π³ΠΎ Π½Π°ΡΠ΄Π΅ΡΠ΅ Π½Π° "
"<http://www.epcc.ed.ac.uk/~spb/xmountains/>. ΠΠΎΠΌΠΏΠΈΠ»ΠΈΡΠ°ΡΡΠ΅ Π³ΠΎ ΡΠΎ -DVROOT "
"ΠΈΠ»ΠΈ Π½Π΅ΠΌΠ° ΠΏΡΠ°Π²ΠΈΠ»Π½ΠΎ Π΄Π° ΡΠ°Π±ΠΎΡΠΈ ΠΊΠΎΠ³Π° ΡΠ΅ ΡΠ΅ ΠΏΡΡΡΠΈ ΠΎΠ΄ Π΄Π°Π΅ΠΌΠΎΠ½ΠΎΡ Π½Π° xscreensaver."
#: hacks/config/xmountains.xml.h:8
msgid "Xmountains"
msgstr "X-ΠΠ»Π°Π½ΠΈΠ½ΠΈ"
#: hacks/config/xrayswarm.xml.h:1
msgid ""
"Draws a few swarms of critters flying around the screen, with nicely faded "
"color trails behind them. Written by Chris Leger."
msgstr ""
"Π¦ΡΡΠ° Π½Π΅ΠΊΠΎΠ»ΠΊΡ ΡΠΎΠ΅Π²ΠΈ ΡΡΡΡΠ΅ΡΡΠ²Π° ΡΡΠΎ Π»Π΅ΡΠ°Π°Ρ ΠΏΠΎ Π΅ΠΊΡΠ°Π½ΠΎΡ, ΡΠΎ ΡΡΠ°Π³ΠΈ Π²ΠΎ Π±ΠΎΡΠ° ΠΊΠΎΠΈ "
"ΠΏΡΠΈΡΠ°ΡΠ½ΠΎ ΠΈΡΡΠ΅Π·Π½ΡΠ²Π°Π°Ρ Π·Π°Π΄ Π½ΠΈΠ². ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ Chris Leger."
#: hacks/config/xrayswarm.xml.h:5
msgid "XRaySwarm"
msgstr "X-Π ΠΎΠ΅Π²ΠΈ"
#: hacks/config/xsnow.xml.h:1
msgid ""
"Draws falling snow and the occasional tiny Santa. By Rick Jansen. You can find "
"it at <http://www.euronet.nl/~rja/Xsnow/>."
msgstr ""
"Π¦ΡΡΠ° ΡΠ½Π΅Π³ ΡΡΠΎ ΠΏΠ°ΡΠ° ΠΈ ΠΏΠΎΠ²ΡΠ΅ΠΌΠ΅Π½ ΠΌΠ°Π» ΠΠ΅Π΄ΠΎ ΠΡΠ°Π·. ΠΠ΄ Rick Jansen. ΠΠΎΠΆΠ΅ Π΄Π° Π³ΠΎ Π½Π°ΡΠ΄Π΅ΡΠ΅ "
"Π½Π° <http://www.euronet.nl/~rja/Xsnow/>."
#: hacks/config/xsnow.xml.h:2
msgid "Xsnow"
msgstr "X-Π‘Π½Π΅Π³"
#: hacks/config/xspirograph.xml.h:4
msgid "Layers"
msgstr "Π‘Π»ΠΎΠ΅Π²ΠΈ"
#: hacks/config/xspirograph.xml.h:5
msgid ""
"Simulates that pen-in-nested-plastic-gears toy from your childhood. By Rohit "
"Singh."
msgstr ""
"ΠΠ° ΡΠΈΠΌΡΠ»ΠΈΡΠ° ΠΈΠ³ΡΠ°ΡΠΊΠ°ΡΠ° ΠΎΠ΄ Π²Π°ΡΠ΅ΡΠΎ Π΄Π΅ΡΡΡΠ²ΠΎ, ΡΠΎ ΠΏΠ΅Π½ΠΊΠ°Π»ΠΎ ΡΡΠ°Π²Π΅Π½ΠΎ Π²ΠΎ ΠΏΠ»Π°ΡΡΠΈΡΠ½ΠΈ "
"Π·Π°ΠΏΡΠ°Π½ΠΈΡΠΈ. ΠΠ΄ Rohit Singh."
#: hacks/config/xspirograph.xml.h:6
msgid "XSpiroGraph"
msgstr "X-Π‘ΠΏΠΈΡΠΎΠ³ΡΠ°Ρ"
#: hacks/config/xteevee.xml.h:1
msgid "Color Bars Enabled"
msgstr "ΠΠ²ΠΎΠ·ΠΌΠΎΠΆΠ΅Π½ΠΈ Π»Π΅Π½ΡΠΈ Π²ΠΎ Π±ΠΎΡΠ°"
#: hacks/config/xteevee.xml.h:2
msgid "Cycle Through Modes"
msgstr "ΠΡΡΠΆΠΈ Π½ΠΈΠ· ΡΠ΅ΠΆΠΈΠΌΠΈ"
#: hacks/config/xteevee.xml.h:3
msgid "Rolling Enabled"
msgstr "ΠΠ²ΠΎΠ·ΠΌΠΎΠΆΠ΅Π½ΠΎ Π²ΡΡΠ΅ΡΠ΅"
#: hacks/config/xteevee.xml.h:4
msgid "Static Enabled"
msgstr "ΠΠ²ΠΎΠ·ΠΌΠΎΠΆΠ΅Π½ ΡΠ½Π΅Π³"
#: hacks/config/xteevee.xml.h:5
msgid "XTeeVee"
msgstr "X-Π’Π΅ΠΠ΅"
#: hacks/config/xteevee.xml.h:6
msgid ""
"XTeeVee simulates various television problems, including static, loss of "
"vertical hold, and a test pattern. By Greg Knauss."
msgstr ""
"X-Π’Π΅ΠΠ΅ ΡΠΈΠΌΡΠ»ΠΈΡΠ° ΡΠ°Π·Π½ΠΎΠ²ΠΈΠ΄Π½ΠΈ ΠΏΡΠΎΠ±Π»Π΅ΠΌΠΈ ΡΠΎ ΡΠ΅Π»Π΅Π²ΠΈΠ·ΠΎΡΠΎΡ, Π²ΠΊΠ»ΡΡΡΠ²Π°ΡΡΠΈ ΡΠ½Π΅Π³, Π³ΡΠ±Π΅ΡΠ΅ Π½Π° "
"Π²Π΅ΡΡΠΈΠΊΠ°Π»Π½ΠΎΡΠΎ Π·Π°Π΄ΡΠΆΡΠ²Π°ΡΠ΅, ΠΈ ΡΠ΅ΠΌΠ°ΡΠ° Π·Π° ΡΠ΅ΡΡΠΈΡΠ°ΡΠ΅. ΠΠ΄ Greg Knauss."
#: hacks/config/zoom.xml.h:3
msgid "Lens Offset"
msgstr ""
"Π Π°ΡΡΠΎΡΠ°Π½ΠΈΠ΅\n"
"Π½Π° Π»Π΅ΡΠ°ΡΠ°"
#: hacks/config/zoom.xml.h:4
msgid "Lenses"
msgstr "ΠΠ΅ΡΠΈ"
#: hacks/config/zoom.xml.h:9
msgid ""
"Zooms in on a part of the screen and then moves around. With the -lenses option "
"the result is like looking through many overlapping lenses rather than just a "
"simple zoom. Written by James Macnicol."
msgstr ""
"ΠΡΠΌΠΈΡΠ° Π΄Π΅Π» ΠΎΠ΄ Π΅ΠΊΡΠ°Π½ΠΎΡ ΠΈ ΠΏΠΎΡΠΎΠ° Π³ΠΎ Π΄Π²ΠΈΠΆΠΈ Π½Π°ΠΎΠΊΠΎΠ»Ρ. Π‘ΠΎ ΠΎΠΏΡΠΈΡΠ°ΡΠ° -lenses ΡΠ΅Π·ΡΠ»ΡΠ°ΡΠΎΡ "
"Π΅ ΠΊΠ°ΠΊΠΎ Π΄Π° Π³Π»Π΅Π΄Π°ΡΠ΅ Π½ΠΈΠ· ΠΌΠ½ΠΎΠ³Ρ Π»Π΅ΡΠΈ ΡΡΠΎ ΡΠ΅ ΠΏΡΠ΅ΠΊΠ»ΠΎΠΏΡΠ²Π°Π°Ρ, Π½Π°ΠΌΠ΅ΡΡΠΎ Π΅Π΄Π½ΠΎΡΡΠ°Π²Π½ΠΎ "
"Π·ΡΠΌΠΈΡΠ°ΡΠ΅. ΠΠ°ΠΏΠΈΡΠ°Π½ΠΎ ΠΎΠ΄ James Macnicol."
|