-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlang_ru.ts
More file actions
1184 lines (1183 loc) · 63.3 KB
/
Copy pathlang_ru.ts
File metadata and controls
1184 lines (1183 loc) · 63.3 KB
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
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.0" language="ru" sourcelanguage="en">
<context>
<name>MainWindow</name>
<message>
<source>Simplify</source>
<translation>Упростить</translation>
</message>
<message>
<source>Tasks</source>
<translation>Задачи</translation>
</message>
<message>
<source>Equalities</source>
<translation>Уравнения</translation>
</message>
<message>
<source>Inequalities</source>
<translation>Неравенства</translation>
</message>
<message>
<source>Systems of inequalities</source>
<translation>Системы неравенств</translation>
</message>
<message>
<source>Derivatives</source>
<translation>Производные</translation>
</message>
<message>
<source>Saved</source>
<translation type="obsolete">Сохранённые</translation>
</message>
<message>
<source>Solve</source>
<translation>Решить</translation>
</message>
<message>
<source>Export to PDF</source>
<translation type="obsolete">Экспорт в PDF</translation>
</message>
<message>
<source>Zoom In</source>
<translation type="obsolete">Увеличить</translation>
</message>
<message>
<source>Zoom Out</source>
<translation type="obsolete">Уменьшить</translation>
</message>
<message>
<source>Save</source>
<translation>Сохранить</translation>
</message>
<message>
<source>Open</source>
<translation>Открыть</translation>
</message>
<message>
<source>Register program!</source>
<translation>Зарегистрировать программу!</translation>
</message>
<message>
<source>File</source>
<translation>Файл</translation>
</message>
<message>
<source>Options</source>
<translation>Настройки</translation>
</message>
<message>
<source>Help</source>
<translation>Помощь</translation>
</message>
<message>
<source>Save as...</source>
<translation>Сохранить как...</translation>
</message>
<message>
<source>Exit</source>
<translation>Выход</translation>
</message>
<message>
<source>About...</source>
<translation>О программе...</translation>
</message>
<message>
<source>Check update</source>
<translation>Проверить обновления</translation>
</message>
<message>
<source>Visit site</source>
<translation>Посетить сайт</translation>
</message>
<message>
<source>Support</source>
<translation>Поддержка</translation>
</message>
<message>
<source>Preferences...</source>
<translation>Настройки...</translation>
</message>
<message>
<source>Export to PDF...</source>
<translation>Экспорт в PDF...</translation>
</message>
<message>
<source>Register program</source>
<translation>Зарегистрировать программу</translation>
</message>
<message>
<source>EULA</source>
<translation>Пользовательское соглашение</translation>
</message>
<message>
<source>Polynomial</source>
<translation>Полиномиальные</translation>
</message>
<message>
<source>Rational</source>
<translation>Рациональные</translation>
</message>
<message>
<source>Others</source>
<translation>Другие</translation>
</message>
<message>
<source>Trigonometric</source>
<translation>Тригонометрические</translation>
</message>
<message>
<source>Homogeneous trigonometric</source>
<translation>Однородные тригонометрические</translation>
</message>
<message>
<source>Linear square</source>
<translation>Линейные квадратные</translation>
</message>
<message>
<source>Single</source>
<translation>Одиночные</translation>
</message>
<message>
<source>Systems</source>
<translation>Системы</translation>
</message>
<message>
<source>Sets</source>
<translation>Совокупности</translation>
</message>
<message>
<source>Incorrect serial number. Program will be terminated.</source>
<translation>Неверный серийный номер. Программа будет завершена.</translation>
</message>
<message>
<source>Open...</source>
<translation>Открыть...</translation>
</message>
<message>
<source>Can not open file for reading.</source>
<translation>Не могу открыть файл для чтения.</translation>
</message>
<message>
<source>Loaded tasks</source>
<translation type="obsolete">Сохранённые задания</translation>
</message>
<message>
<source>Can not open file.</source>
<translation>Не могу открыть файл.</translation>
</message>
<message>
<source>Can not open file for writing.</source>
<translation>Не могу открыть файл для записи.</translation>
</message>
<message>
<source>Can not save to file</source>
<translation>Не могу сохранить в файл</translation>
</message>
<message>
<source>Unregistered copy!</source>
<translation type="obsolete">Незарегистрированная копия!</translation>
</message>
<message>
<source>Registered copy is faster!</source>
<translation type="obsolete">Зарегистрированная копия работает быстрее!</translation>
</message>
<message>
<source>Can not solve using selected method</source>
<translation>Не могу решить задачу выбранным методом</translation>
</message>
<message>
<source>Export as Pdf..</source>
<translation type="obsolete">Экспорт в PDF..</translation>
</message>
<message>
<source>PDF files (*.pdf)</source>
<translation type="obsolete">PDF файлы (*.pdf)</translation>
</message>
<message>
<source>Creates system with custom number of variables and equations</source>
<translation>Создает новую систему с произвольным количеством неизвестных и уравнений</translation>
</message>
<message>
<source>Create new</source>
<translation>Создать</translation>
</message>
<message>
<source>Deletes selected custom system</source>
<translation>Удаляет выбранную систему уравнений</translation>
</message>
<message>
<source>Delete</source>
<translation>Удалить</translation>
</message>
<message>
<source>Loads saved problem</source>
<translation>Загружает ранее сохраненную задачу</translation>
</message>
<message>
<source>Load</source>
<translation>Открыть</translation>
</message>
<message>
<source>Deletes problem from the tree</source>
<translation>Удаляет задачу из дерева</translation>
</message>
<message>
<source>The dimensions must be less then </source>
<translation>Размерность системы должна быть меньше </translation>
</message>
<message>
<source>Creating custom size systems is only available in full version</source>
<translation type="obsolete">Создание систем произвольных размерностей доступно только в полной версии</translation>
</message>
<message>
<source>Custom size</source>
<translation>Другие размерности</translation>
</message>
<message>
<source>Error</source>
<translation>Ошибка</translation>
</message>
<message>
<source>Please, install full version to solve this type of problems</source>
<translation type="obsolete">Пожалуйста, установите полную версию программы для решения задач этого типа</translation>
</message>
<message>
<source>MathStyle (C) Pro</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Favorites</source>
<translation>Мои задачи</translation>
</message>
<message>
<source>Selected</source>
<translation>Выбранные</translation>
</message>
<message>
<source>Derivatives, Integrals, series</source>
<translation>Производные, интегралы, ряды</translation>
</message>
<message>
<source>Keywords</source>
<translation type="obsolete">Ключевые слова</translation>
</message>
<message>
<source>-</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Upgrade to full version</source>
<translation>Обновить до полной версии</translation>
</message>
<message>
<source>Integrals</source>
<translation>Интегралы</translation>
</message>
<message>
<source>Maclaurin polynomial</source>
<translation>многочлен Маклорена</translation>
</message>
<message>
<source>This version does not support this kind of problems.</source>
<translation>В этой версии не поддерживаюся такие задачи.</translation>
</message>
<message>
<source> (elapsed </source>
<translation>(прошло </translation>
</message>
<message>
<source> secs)</source>
<translation> секунд)</translation>
</message>
<message>
<source>Creating custom size systems is only available in light and full versions.</source>
<translation>Создание СЛАУ произвольных размерностей доступно только в облегченной и полной версиях.</translation>
</message>
<message>
<source>Generate new task of this type</source>
<translation>Сгенерировать новую задачу этого типа</translation>
</message>
<message>
<source>New task of this type</source>
<translation>Новая задача этого типа</translation>
</message>
<message>
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;">
<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Keywords:</span></p></body></html></source>
<translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;">
<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Ключевые слова:</span></p></body></html></translation>
</message>
<message>
<source>This version does not work any more without registration.</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Error. Сan't solve.</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Test fonts</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Error. Can't solve. Check if the problem is typed correctly.</source>
<translation type="unfinished">Ошибка. Проверьте правильность коэффициентов в условии задачи.</translation>
</message>
</context>
<context>
<name>QFormulaArea</name>
<message>
<source>Can not simplify. The selected equation is incomplete.</source>
<translation type="obsolete">Не могу упростить. Выбранное выражение задано не полностью.</translation>
</message>
<message>
<source>The equation to simplify is not selected or can not simplify selected equation.</source>
<translation>Выражение не выбрано или не могу упростить выбранное выражение</translation>
</message>
<message>
<source>Can not simplify</source>
<translation>Не могу упростить</translation>
</message>
<message>
<source>New value</source>
<translation>Новое значение</translation>
</message>
<message>
<source>Enter value</source>
<translation>Введите число</translation>
</message>
</context>
<context>
<name>QFormulaEditor</name>
<message>
<source>Sum</source>
<translation type="obsolete">Сумма</translation>
</message>
<message>
<source>Difference</source>
<translation type="obsolete">Разность</translation>
</message>
<message>
<source>product</source>
<translation>произведение</translation>
</message>
<message>
<source>Fraction</source>
<translation type="obsolete">Дробь</translation>
</message>
<message>
<source>power</source>
<translation>степень</translation>
</message>
<message>
<source>square root</source>
<translation>квадратный корень</translation>
</message>
<message>
<source>Clear</source>
<translation type="obsolete">очистить</translation>
</message>
<message>
<source>Simpify</source>
<translation type="obsolete">упростить</translation>
</message>
<message>
<source>Product</source>
<translation type="obsolete">Произведение</translation>
</message>
<message>
<source>Power</source>
<translation>Степень</translation>
</message>
<message>
<source>Simplify</source>
<translation type="obsolete">Упростить</translation>
</message>
<message>
<source>sine</source>
<translation>синус</translation>
</message>
<message>
<source>cosine</source>
<translation>косинус</translation>
</message>
<message>
<source>tangent</source>
<translation>тангенс</translation>
</message>
<message>
<source>arcsine</source>
<translation>арксинус</translation>
</message>
<message>
<source>arccosine</source>
<translation>арккосинус</translation>
</message>
<message>
<source>arctangent</source>
<translation>арктангенс</translation>
</message>
<message>
<source>decimal logarithm</source>
<translation>десятичный логарифм</translation>
</message>
<message>
<source>natural logarithm</source>
<translation>натуральный логарифм</translation>
</message>
<message>
<source>variable x</source>
<translation>переменная x</translation>
</message>
<message>
<source>undo</source>
<translation>отменить</translation>
</message>
<message>
<source>redo</source>
<translation>повторить</translation>
</message>
<message>
<source>natutal logarithm</source>
<translation type="obsolete">натуральный логарифм</translation>
</message>
<message>
<source>X</source>
<translation>X</translation>
</message>
<message>
<source>sum</source>
<translation>сумма</translation>
</message>
<message>
<source>difference</source>
<translation>разность</translation>
</message>
<message>
<source>fraction</source>
<translation>дробь</translation>
</message>
<message>
<source>clear</source>
<translation>очистить</translation>
</message>
<message>
<source>simplify</source>
<translation>упростить</translation>
</message>
<message>
<source>simpify</source>
<translation>упростить</translation>
</message>
<message>
<source>exponent</source>
<translation>экспонента</translation>
</message>
<message>
<source>chosinus</source>
<translation>гиперболический косинус</translation>
</message>
<message>
<source>shinus</source>
<translation>гиперболический синус</translation>
</message>
<message>
<source>edit</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>erase</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>RegisterDialog</name>
<message>
<source>Registration</source>
<translation>Регистрация</translation>
</message>
<message>
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;">
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Contact us to obtain serial number or visit our site: </span><a href="http://mathstyle.pro"><span style=" font-size:12pt; text-decoration: underline; color:#0057ae;">mathstyle.pro</span></a></p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Enter serial number below.</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If you allready have serial number but it does not work mail to sales@mathstyle.pro</span></p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p></body></html></source>
<translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;">
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Для получения серийного номера свяжитесь с нами или посетите наш сайт: </span><a href="http://mathstyle.pro"><span style=" font-size:12pt; text-decoration: underline; color:#0057ae;">mathstyle.pro</span></a></p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Введите серийный номер ниже.</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Если у вас уже есть серийный номер, но он почему-то не работает, напишите нам на почту sales@mathstyle.pro</span></p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p></body></html>
</translation>
</message>
<message>
<source>Serial number:</source>
<translation>Серийный номер:</translation>
</message>
</context>
<context>
<name>TAboutDialog</name>
<message>
<source>About</source>
<translation>О программе</translation>
</message>
<message utf8="true">
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;">
<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14pt; color:#00c000;">MathStyle (C) </span><span style=" font-size:14pt; color:#000000;">Pro</span></p>
<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Version 1.60</p>
<p align="right" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">(C) mathstyle.pro, 2011-2012</p>
<p align="right" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved.</p>
<p align="right" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://mathstyle.pro"><span style=" text-decoration: underline; color:#0057ae;">mathstyle.pro</span></a></p>
<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">There is no warranty for this program. The author provides the program “AS IS” without warranty of any kind either expressed or implied.</p>
<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights belong to author of this program. </p>
<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Graphical User Interface (GUI) uses QT framework.</p>
<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Free icons used in this application can be downloaded at </p>
<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://wefunction.com/2008/07/function-free-icon-set"><span style=" text-decoration: underline; color:#0057ae;">http://wefunction.com/2008/07/function-free-icon-set</span></a></p>
<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://www.visualpharm.com"><span style=" text-decoration: underline; color:#0057ae;">http://www.visualpharm.com</span></a></p>
<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://addictedtocoffee.de"><span style=" text-decoration: underline; color:#0057ae;">http://addictedtocoffee.de</span></a></p></body></html></source>
<translation></translation>
</message>
<message>
<source>Ok</source>
<translation></translation>
</message>
</context>
<context>
<name>TDerivativeProblem</name>
<message>
<source>derivative</source>
<translation></translation>
</message>
<message>
<source>Find derivative of the function</source>
<translation></translation>
</message>
<message>
<source>Derivative</source>
<translation></translation>
</message>
</context>
<context>
<name>TEulaDialog</name>
<message>
<source>EULA</source>
<translation type="unfinished">Пользовательское соглашение</translation>
</message>
<message utf8="true">
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;">
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">ЛИЦЕНЗИОННОЕ СОГЛАШЕНИЕ (ДОГОВОР) ПОЛЬЗОВАТЕЛЯ</span></p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Настоящее Лицензионное соглашение (договор) является предложением (публичной офертой) и содержит порядок и все существенные условия использования Вами (далее – «Пользователь») программы для ЭВМ Mathstyle Pro (далее «Программа»). </p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">В соответствии с настоящим соглашением Автор – физическое лицо, гражданин РФ Цветков Егор Александрович (ИНН 7718171679) (далее «Правообладатель») – обладатель исключительных имущественных авторских прав на программу для ЭВМ Mathstyle Pro, включая Руководство пользователя к ней в печатном и/или электронном виде – обязуется предоставить Пользователю (напрямую либо через третьих лиц) неисключительное право на использование Программы, ограниченное правом инсталляции и запуска Программы в соответствии с установленными настоящим Соглашением (договором) правилами и условиями (простая неисключительная лицензия).</p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Порядок акцепта оферты (лицензионного соглашения)</p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Настоящая оферта (лицензионное соглашение/договор) считается акцептованной Пользователем в случае соблюдения одного из двух следующих условий:</p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">1) Выбор Пользователем пункта «Я принимаю условия Лицензионного соглашения» при установке Программы и нажатие на кнопку «Далее» означает безоговорочное согласие Пользователя с условиями настоящего соглашения. </p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">2) Факт оформления заказа, оплаты или получения Пользователем от Правообладателя или уполномоченных третьих лиц неисключительных прав на использование Программы на основании (на условиях) настоящего договора (соглашения) означает безоговорочное согласие Пользователя с условиями настоящего соглашения.</p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Порядок передачи и стоимость прав</p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">В соответствии с настоящим Лицензионным соглашением Пользователь обязан в срок до 30 (тридцати) календарных дней с момента акцепта оферты получить от Правообладателя (напрямую или от уполномоченных третьих лиц) неисключительные права на использование Программы. Моментом передачи прав Пользователю считается момент подписания Правообладателем (или третьим лицом осуществляющим передачу прав) соответствующего Акта приемки-передачи. За полученные права Пользователь обязан уплатить фиксированное вознаграждение, размер которого определяется условиями соглашения Пользователя со стороной, осуществляющей передачу прав. В случае отказа Пользователя от получения прав (неполучение прав в указанный срок) настоящее Лицензионное соглашение считается не вступившим в силу.</p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Правила использования Программы</p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Пользователь имеет право использовать Программу на территории всех стран мира в соответствии с условиями настоящего Лицензионного соглашения (договора) при соблюдении следующих правил:</p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">1. Запрещается производить декомпиляцию и/или модификацию Программы.</p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">2. Запрещается сдавать Программу в аренду, прокат или во временное пользование.</p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">3. Запрещается разделять Программу на составляющие части для использования их на разных компьютерах.</p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">4. Запрещается использовать Программу с целью создания данных или кода вредоносных программ.</p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Пользователь имеет право</p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Использовать Программу для ознакомительных целей в течение 30 (тридцати) дней с момента ее первого запуска (инсталляции). </p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Изготовить копию Программы при условии, что эта копия предназначена только для архивных целей и для замены правомерно приобретенного дистрибутива в случаях, когда оригинал утерян, уничтожен или стал непригоден для использования. Указанная в настоящем пункте копия не может быть использована для иных целей и должна быть уничтожена в случае, если использование программы Пользователем перестанет быть правомерным. </p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Отказ от гарантий</p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Правообладатель не гарантирует работоспособность Программы при нарушении условий, описанных в Руководстве пользователя, а также в случае нарушения Пользователем условий настоящего лицензионного соглашения.</p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Правообладатель не предоставляет никаких гарантий в отношении безошибочной и бесперебойной работы Программы или отдельных её компонентов и/или функций, соответствия Программы конкретным целям и ожиданиям Пользователя, сохранности файлов и/или данных Пользователя, а также не предоставляет никаких иных гарантий, прямо не указанных в настоящем Лицензионном соглашении.</p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Пользователь сам несет риск соответствия Программы его желаниям и потребностям, а также риск соответствия условий и объема предоставляемых прав своим желаниям и потребностям. </p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Правообладатель и/или его партнеры не несут ответственность за какие-либо убытки или ущерб, не зависимо от причин их возникновения, (включая, но не ограничиваясь этим, особый, случайный или косвенный ущерб, убытки связанные с недополученной прибылью, прерыванием коммерческой или производственной деятельности, утратой деловой информации, небрежностью, или какие-либо иные убытки), возникшие вследствие использования или невозможности использования Программы.</p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Заключительные положения</p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">За нарушение авторских прав на Программу нарушитель несет гражданскую, административную или уголовную ответственность в соответствии с законодательством Российской Федерации. </p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html></source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Russian</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>English</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Ok</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>TFreeAboutDialog</name>
<message>
<source>About Free Demo Version</source>
<translation type="unfinished"></translation>
</message>
<message utf8="true">
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;">
<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14pt; color:#00c000;">MathStyle (C) </span><span style=" font-size:14pt; color:#000000;">Pro</span></p>
<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Version 1.41, Free</p>
<p align="right" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">(C) 2011-2012</p>
<p align="right" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved.</p>
<p align="right" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://mathstyle.pro"><span style=" text-decoration: underline; color:#0057ae;">mathstyle.pro</span></a></p>
<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This is a Free Demo Version. To obtain fully functional version visit our site.</p>
<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">There is no warranty for this program. The author provides the program “AS IS” without warranty of any kind either expressed or implied.</p>
<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights belong to author of this program. </p>
<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Graphical User Interface (GUI) uses QT framework.</p>
<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Free icons used in this application can be downloaded at </p>
<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://wefunction.com/2008/07/function-free-icon-set"><span style=" text-decoration: underline; color:#0057ae;">http://wefunction.com/2008/07/function-free-icon-set</span></a></p>
<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://www.visualpharm.com"><span style=" text-decoration: underline; color:#0057ae;">http://www.visualpharm.com</span></a></p>
<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://addictedtocoffee.de"><span style=" text-decoration: underline; color:#0057ae;">http://addictedtocoffee.de</span></a></p></body></html></source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Ok</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>THomogeneousTrigEquality</name>
<message>
<source>Solve homogeneous trigonometric equation of %d power</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>homogeneous of %d power</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>equality</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>homogeneous</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>trigonometric</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>TIntegralProblem</name>
<message>
<source>Find integral of the function</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>integral</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>TLicenseChecker</name>
<message>
<source>Serial number is accepted. Restart the application.</source>
<translation type="unfinished">Серийный номер принят. Перезагрузить программу.</translation>
</message>
<message>
<source>Incorrect serial number.</source>
<translation type="unfinished">Неверный серийный номер.</translation>
</message>
</context>
<context>
<name>TLinearEquality</name>
<message>
<source>equality</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>linear</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Solve linear equality</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>linear equality</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>TLinearInequality</name>
<message>
<source>inequality</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>linear</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Solve strict linear inequality</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Solve unstrict linear inequality</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Solve linear inequality</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>TLinearTrigEquality</name>
<message>
<source>equality</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>trigonometric</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>linear</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Solve linear trigonometric equality</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>TMaclaurinSeriesProblem</name>
<message>
<source>Maclaurin</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>polynom</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Find the Maclaurin polynomial of degree %d</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Maclaurin polynomial of degree %d</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>TOptionsWindow</name>
<message>
<source>Text</source>
<translation type="unfinished">Текст</translation>
</message>
<message>
<source>Font</source>
<translation type="unfinished">Шрифт</translation>
</message>
<message>
<source>Color</source>
<translation type="unfinished">Цвет</translation>
</message>
<message>
<source>Formula</source>
<translation type="unfinished">Формулы</translation>
</message>
<message>
<source>Color 2</source>
<translation type="unfinished">Цвет 2</translation>
</message>
<message>
<source>Background</source>
<translation type="unfinished">Фон</translation>
</message>
<message>
<source>Language</source>
<translation type="unfinished">Язык</translation>
</message>
<message>
<source>Default</source>
<translation type="unfinished">По умолчанию</translation>
</message>
<message>
<source>Preferences</source>
<translation type="unfinished">Настройки</translation>
</message>
<message>
<source>Ok</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>TPolynomDerivative</name>
<message>
<source>derivative</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>polynom</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Find derivative of polynom of degree %d</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>polynom of degree %d</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>TPolynomIntegralProblem</name>
<message>
<source>integral</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>polynom</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Find indefinite integral of polynom</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>TPolynomialEquality</name>
<message>
<source>equality</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>polynom</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Find roots of polynom of %d power</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>polynom of %d power</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>TPolynomialInequality</name>
<message>
<source>inequality</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>polynom</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Solve polynomial inequality of %d power</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>%d power</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>TPowerEquality</name>
<message>
<source>equality</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>power</source>
<translation type="unfinished">степень</translation>
</message>
<message>
<source>Solve exponential equality with polynom of %d power</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>exponential with %d power polynom</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>TRationalFunctionDerivative</name>
<message>
<source>derivative</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>rational</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Find derivative of rational function</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>rational function of %d/%d powers</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>TRationalIntegralProblem</name>
<message>
<source>integral</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>rational</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Find indefinite integral of rational function.</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>rational function</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>TRationalIntegralProblem2</name>
<message>
<source>integral</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>rational</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Find indefinite integral of rational function.</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>rational function</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>TRationalSumEquality</name>
<message>
<source>Solve rational equality with polynoms of %d power</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>rational equality of %d power</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>rational</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>equality</source>