-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNotePad_ua_UA.ts
1235 lines (1233 loc) · 69.3 KB
/
NotePad_ua_UA.ts
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"?>
<!-- ########################################################################## -->
<!-- -->
<!-- Copyright © 2021 Kalynovsky Valentin. All rights reserved. -->
<!-- Licensed under the Apache License, Version 2.0 -->
<!-- -->
<!-- Licensed under the Apache License, Version 2.0 (the "License"); -->
<!-- you may not use this file except in compliance with the License. -->
<!-- You may obtain a copy of the License at -->
<!-- -->
<!-- http://www.apache.org/licenses/LICENSE-2.0 -->
<!-- -->
<!-- Unless required by applicable law or agreed to in writing, software -->
<!-- distributed under the License is distributed on an "AS IS" BASIS, -->
<!-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -->
<!-- See the License for the specific language governing permissions and -->
<!-- limitations under the License. -->
<!-- -->
<!-- ########################################################################## -->
<!DOCTYPE TS>
<TS version="2.1" language="uk_UA">
<context>
<name>SheetOfNotes</name>
<message>
<location filename="sheetofnotes.ui" line="1829"/>
<source>Файл</source>
<translation>Файл</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="77"/>
<source>Шрифт</source>
<translation>Шрифт</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1743"/>
<source>Справка</source>
<translation>Довідка</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1762"/>
<source>Язык</source>
<translation>Мова</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1874"/>
<source>Ctrl+O</source>
<translation>Ctrl+O</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1886"/>
<source>Сохранить</source>
<translation>Зберегти</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1913"/>
<source>Создать текстовый файл</source>
<translation>Створити текстовий файл</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2156"/>
<source>Ctrl+Shift+S</source>
<translation>Ctrl+Shift+S</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1901"/>
<source>Выход</source>
<translation>Вихід</translation>
</message>
<message>
<source><html><head/><body><p>Шрифт текста</p><p>Влияет на весь текст без исключения. Шрифт можно выбрать только один.</p></body></html></source>
<translation type="vanished"><html><head/><body><p>Шрифт текста</p><p>Влияет на весь текст без исключения. Шрифт можно выбрать только один.</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="141"/>
<source><html><head/><body><p>Размер текста</p><p>Стандарт - 20</p></body></html></source>
<translation><html><head/><body><p>Розмір текста</p><p>Стандарт - 20</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="292"/>
<source>Формат</source>
<translation>Формат</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="311"/>
<source><html><head/><body><p>Жирный формат текста</p></body></html></source>
<translation><html><head/><body><p>Жирний формат текста</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="314"/>
<source>Жирный</source>
<translation>Жирний</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="331"/>
<source><html><head/><body><p>Курсивный формат текста</p></body></html></source>
<translation><html><head/><body><p>Курсивний формат текста</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="334"/>
<source>Курсив</source>
<translation>Курсив</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="351"/>
<source><html><head/><body><p>Подчёркнутый формат текста</p></body></html></source>
<translation><html><head/><body><p>Підкреслений формат текста</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="354"/>
<source>Подчёркнутый</source>
<translation>Підкреслений</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="238"/>
<source><html><head/><body><p>Выравнивание по правой стороне</p></body></html></source>
<translation><html><head/><body><p>Вирівнювання по правій стороні</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="212"/>
<source><html><head/><body><p>Выравнивание по центру</p></body></html></source>
<translation><html><head/><body><p>Вирівнювання по центру</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="186"/>
<source><html><head/><body><p>Выравнивание по левой стороне</p></body></html></source>
<translation><html><head/><body><p>Вирівнювання по лівій стороні</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1065"/>
<source>Таблица</source>
<translation>Таблиця</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1084"/>
<source><html><head/><body><p>Количество строк</p></body></html></source>
<translation><html><head/><body><p>Кількість строк</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1097"/>
<source><html><head/><body><p>Количество столбцов</p></body></html></source>
<translation><html><head/><body><p>Кількість колонок</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1796"/>
<source>Правка</source>
<translation>Правка</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1889"/>
<source>Ctrl+Alt+S</source>
<translation>Ctrl+Alt+S</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1904"/>
<source>Ctrl+Q</source>
<translation>Ctrl+Q</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1916"/>
<source>Ctrl+N</source>
<translation>Ctrl+N</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1928"/>
<source>Закрыть, сохраняя текст</source>
<translation>Закрити, зберігаючи текст</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1931"/>
<source>Закрыть сохраняя</source>
<translation>Закрити, зберігаючи</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1934"/>
<source>Ctrl+Alt+Shift+S</source>
<translation>Ctrl+Alt+Shift+S</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1976"/>
<source>Русский (ru_RU)</source>
<oldsource>Русский (Россия)</oldsource>
<translation>Російська (ru_RU)</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1985"/>
<source>Английский (en_US)</source>
<oldsource>Английский (США)</oldsource>
<translation>Англійська (en_US)</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1994"/>
<source>Удалить текущую заметку</source>
<translation>Видалити поточну нотатку</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1997"/>
<source>Ctrl+W</source>
<translation>Ctrl+W</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2006"/>
<source>Удалить заметки</source>
<translation>Видалити нотатки</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2009"/>
<source>Ctrl+Shift+W</source>
<translation>Ctrl+Shift+W</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2024"/>
<source>F5</source>
<translation>F5</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2033"/>
<source>Отменить</source>
<translation>Відмінити</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2036"/>
<source>Ctrl+Z</source>
<translation>Ctrl+Z</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2045"/>
<source>Вырезать</source>
<translation>Вирізати</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2048"/>
<source>Ctrl+X</source>
<translation>Ctrl+X</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2057"/>
<source>Копировать</source>
<translation>Копіювати</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2060"/>
<source>Ctrl+C</source>
<translation>Ctrl+C</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2069"/>
<source>Вставить</source>
<translation>Вставити</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2072"/>
<source>Ctrl+V</source>
<translation>Ctrl+V</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2081"/>
<source>Вернуть</source>
<translation>Повернути</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2084"/>
<source>Ctrl+Shift+Z</source>
<translation>Ctrl+Shift+Z</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2093"/>
<source>Очистить</source>
<translation>Очистити</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2096"/>
<source>Del</source>
<translation>Del</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2105"/>
<source>Сгенерировать .doc</source>
<translation>Згенерувати .doc</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2117"/>
<source>Сгенерировать .odt</source>
<translation>Згенерувати .odt</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2120"/>
<source>Alt+Shift+O</source>
<translation>Alt+Shift+O</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2132"/>
<source>Alt+Shift+P</source>
<translation>Alt+Shift+P</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2189"/>
<source>Добавить текстовый файл</source>
<translation>Додати текстовий файл</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2258"/>
<source>Выделить всё</source>
<translation>Виділити все</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2270"/>
<location filename="sheetofnotes.cpp" line="179"/>
<source>Открыть код</source>
<translation>Відкрити код</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2273"/>
<source>Alt+O</source>
<translation>Alt+O</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2129"/>
<source>Сгенерировать .pdf</source>
<translation>Згенерувати .pdf</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2141"/>
<source>Сохранить в HTML</source>
<translation>Зберегти в HTML</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2144"/>
<source>Ctrl+S</source>
<translation>Ctrl+S</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2153"/>
<source>Закрыть, сохраняя в HTML</source>
<translation>Закрити, зберігаючи в HTML</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2165"/>
<source>Показать в файловом менеджере</source>
<translation>Показати у файловому менеджері</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2168"/>
<source>Alt+F</source>
<translation>Alt+F</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2177"/>
<source>Вставить картинки</source>
<translation>Вставити зображення</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2180"/>
<source>F6</source>
<translation>F6</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2192"/>
<location filename="sheetofnotes.ui" line="2261"/>
<source>Ctrl+A</source>
<translation>Ctrl+A</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2201"/>
<source>Исходники</source>
<translatorcomment>Сирець - жаргонне слово, офіційне - Початковий/вихідний код</translatorcomment>
<translation>Сирці</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2210"/>
<source>Заархивировать</source>
<translation>Архівувати</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2213"/>
<source>Alt+Shift+Z</source>
<translation>Alt+Shift+Z</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2222"/>
<source>Вывести бинарный код</source>
<translation>Вивести бінарний код</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2225"/>
<source>Alt+Shift+B</source>
<translation>Alt+Shift+B</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2234"/>
<location filename="sheetofnotes.cpp" line="201"/>
<source>Открыть бинарный файл</source>
<translation>Відкрити бінарний файл</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2237"/>
<source>Ctrl+B</source>
<translation>Ctrl+B</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2246"/>
<source>Показать файловую директорию</source>
<translation>Показати файлову директорію</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="2249"/>
<source>Alt+E</source>
<translation>Alt+E</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1943"/>
<location filename="sheetofnotes.ui" line="1946"/>
<source>Закрыть не сохраняя</source>
<translation>Закрыти не зберігаючи</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="20"/>
<location filename="sheetofnotes.cpp" line="1490"/>
<source>Блокнот</source>
<translation>Нотатник</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="83"/>
<source><html><head/><body><p>Шрифт</p></body></html></source>
<translation><html><head/><body><p>Шрифт</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="105"/>
<source><html><head/><body><p>Шрифт текста</p></body></html></source>
<translation><html><head/><body><p>Шрифт текста</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="122"/>
<source><html><head/><body><p>Размер шрифта</p></body></html></source>
<translation><html><head/><body><p>Розмір шрифта</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="167"/>
<source><html><head/><body><p>Выравнивание</p></body></html></source>
<translation><html><head/><body><p>Вирівнювання</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="189"/>
<source>Выравнивание по левой стороне</source>
<translation>Вирівнювання по лівій стороні</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="215"/>
<source>Выравнивание по центру</source>
<translation>Вирівнювання по центру</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="241"/>
<source>Выравнивание по правой стороне</source>
<translation>Вирівнювання по правій стороні</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="264"/>
<source><html><head/><body><p>Выравнивание по ширине</p></body></html></source>
<translation><html><head/><body><p>Вирівнювання по ширині</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="267"/>
<source>Выравнивание по ширине</source>
<translation>Вирівнювання по ширині</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="298"/>
<source><html><head/><body><p>Форматирование</p></body></html></source>
<translation><html><head/><body><p>Форматування</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="371"/>
<source><html><head/><body><p>Зачёркнутый формат текста</p></body></html></source>
<translation><html><head/><body><p>Закреслений формат текста</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="374"/>
<source>Зачёркнутый</source>
<translation>Закреслений</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="391"/>
<source><html><head/><body><p>Надчёркнутый формат текста</p></body></html></source>
<translation><html><head/><body><p>Надкреслений формат текста</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="394"/>
<source>Надчёркнутый</source>
<translation>Надкреслений</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="412"/>
<source><html><head/><body><p>Индекс</p></body></html></source>
<translation><html><head/><body><p>Індекс</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="425"/>
<source><html><head/><body><p>Верхний индекс</p></body></html></source>
<translation><html><head/><body><p>Верхній індекс</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="428"/>
<source>Верхний индекс</source>
<translation>Верхній індекс</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="445"/>
<source><html><head/><body><p>Нижний индекс</p></body></html></source>
<translation><html><head/><body><p>Нижній індекс</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="448"/>
<source>Нижний индекс</source>
<translation>Нижній індекс</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="466"/>
<source><html><head/><body><p>Цвет</p></body></html></source>
<translation><html><head/><body><p>Колір</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="485"/>
<source><html><head/><body><p>Цвет текста</p></body></html></source>
<translation><html><head/><body><p>Колір текста</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="488"/>
<source>Цвет текста</source>
<translation>Колір текста</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="511"/>
<source><html><head/><body><p>Цвет фона</p></body></html></source>
<translation><html><head/><body><p>Колір фона</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="514"/>
<source>Цвет фона</source>
<translation>Колір фона</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="532"/>
<source><html><head/><body><p>Список</p></body></html></source>
<translation><html><head/><body><p>Список</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="545"/>
<source><html><head/><body><p>Нумерованный список</p><p>Удаляется список вручную</p></body></html></source>
<translation><html><head/><body><p>Нумерованний список</p><p>Видаляється список власноруч</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="548"/>
<source>Нумерованный список</source>
<translation>Нумерованний список</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="565"/>
<source><html><head/><body><p>Маркированный список</p><p>Удаляется список вручную</p></body></html></source>
<translation><html><head/><body><p>Маркований список</p><p>Видаляється список власноруч</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="568"/>
<source>Маркированный список</source>
<translation>Маркований список</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="585"/>
<source><html><head/><body><p>Отметить элемент списка</p><p>Отмечивание действует только на маркированный список</p></body></html></source>
<translation><html><head/><body><p>Відмітити елемент списка</p><p>Відмічування діє тільки на маркований список</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="588"/>
<source>Отметить элемент списка</source>
<translation>Відмітити елемент списка</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="605"/>
<source><html><head/><body><p>Убрать отмечивание</p><p>Отмечивание действует только на маркированный список</p></body></html></source>
<translation><html><head/><body><p>Убрати відмічування</p><p>Відмічування діє тільки на маркований список</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="608"/>
<source>Убрать отмечивание</source>
<translation>Убрати відмічування</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="633"/>
<source>Регистр</source>
<translation>Регістр</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="639"/>
<source><html><head/><body><p>Регистр текста</p></body></html></source>
<translation><html><head/><body><p>Регістр текста</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="652"/>
<source><html><head/><body><p>Регистр</p></body></html></source>
<translation><html><head/><body><p>Регістр</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="656"/>
<source>Пользовательский</source>
<translation>Користувацький</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="661"/>
<source>Как в предложениях.</source>
<translation>Как у реченнях.</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="666"/>
<source>все строчные</source>
<translation>усі малі літери</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="671"/>
<source>ВСЕ ПРОПИСНЫЕ</source>
<translation>УСІ ВЕЛИКІ ЛІТЕРИ</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="676"/>
<source>Начинать С Прописных</source>
<oldsource>Начинать С прописных</oldsource>
<translation>Починати З Великих Літер</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="681"/>
<source>иЗМЕНИТЬ РЕГИСТР</source>
<translation>зМІНИТИ РЕГІСТР</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="703"/>
<source>Абзац</source>
<translation>Параграф</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="709"/>
<source><html><head/><body><p>Отступы абзаца</p></body></html></source>
<translation><html><head/><body><p>Відступи параграфа</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="722"/>
<source><html><head/><body><p>Левый отступ</p></body></html></source>
<translation><html><head/><body><p>Лівий відступ</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="735"/>
<source><html><head/><body><p>Верхний отступ</p><p>(на первый абзац не влияет)</p></body></html></source>
<translation><html><head/><body><p>Верхниій відступ</p><p>(на перший параграф не впливає)</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="748"/>
<source><html><head/><body><p>Правый отступ</p></body></html></source>
<translation><html><head/><body><p>Правий відступ</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="761"/>
<source><html><head/><body><p>Нижний отступ</p></body></html></source>
<translation><html><head/><body><p>Нижній відступ</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="780"/>
<source><html><head/><body><p>Увеличить межабзацный интервал</p></body></html></source>
<translation><html><head/><body><p>Збільшити міжпараграфний інтервал</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="783"/>
<source>Увеличить межабзацный интервал</source>
<translation>Збільшити міжпараграфний інтервал</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="806"/>
<source><html><head/><body><p>Уменьшить межабзацный интервал</p></body></html></source>
<translation><html><head/><body><p>Зменшити міжпараграфний інтервал</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="809"/>
<source>Уменьшить межабзацный интервал</source>
<translation>Зменшити міжпараграфний інтервал</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="826"/>
<source><html><head/><body><p>Отменить отступы</p></body></html></source>
<translation><html><head/><body><p>Відмінити відступи</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="829"/>
<source>Отменить отступы</source>
<translation>Відмінити відступи</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="847"/>
<source><html><head/><body><p>Отступ первой строки</p></body></html></source>
<translation><html><head/><body><p>Відступ першої строчки</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="860"/>
<source><html><head/><body><p>Указать конкретный отступ первой строки абзаца</p></body></html></source>
<translation><html><head/><body><p>Указати певний відступ першої строчки абзаца</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="879"/>
<source><html><head/><body><p>Увеличить отступ</p><p>Максимально - 30</p></body></html></source>
<translation><html><head/><body><p>Збільшити відступ</p><p>Максимально - 30</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="882"/>
<source>Увеличить отступ</source>
<translation>Збільшити відступ</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="905"/>
<source><html><head/><body><p>Уменьшить отступ</p><p>Минимально - 0</p></body></html></source>
<translation><html><head/><body><p>Зменшити відступ</p><p>Мінімально - 0</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="908"/>
<source>Уменьшить отступ</source>
<translation>Зменшити відступ</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="933"/>
<source>Межстрочный интервал</source>
<translation>Міжстроковий інтервал</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="939"/>
<source><html><head/><body><p>Межстрочный интервал</p></body></html></source>
<translation><html><head/><body><p>Міжстроковий інтервал</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="958"/>
<source><html><head/><body><p>Указать конкретный межстрочный интервал</p></body></html></source>
<translation><html><head/><body><p>Указати певний міжстроковий інтервал</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="971"/>
<source><html><head/><body><p>Увеличить межстрочный интервал</p></body></html></source>
<translation><html><head/><body><p>Збільшити міжстроковий інтервал</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="974"/>
<source>Увеличить межстрочный интервал</source>
<translation>Збільшити міжстроковий інтервал</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="991"/>
<source><html><head/><body><p>Уменьшить межстрочный интервал</p></body></html></source>
<translation><html><head/><body><p>Зменшити міжстроковий інтервал</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="994"/>
<source>Уменьшить межстрочный интервал</source>
<translation>Зменшити міжстроковий інтервал</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1019"/>
<source>Поля</source>
<translation>Поля</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1025"/>
<source><html><head/><body><p>Поля документа</p></body></html></source>
<translation><html><head/><body><p>Поля документа</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1044"/>
<source><html><head/><body><p>Устанавливает поля со всех сторон</p><p>В HTML не сохраняется, поэтому этот функционал используется только при экспортах в другие файлы. При следующей загрузке сбрасывается</p></body></html></source>
<translation><html><head/><body><p>Установлює поля зі всіх сторін</p><p>У HTML не зберігається, тому цей функціонал використовується тільки при експортах в інші файли. При наступній загрузці скидається</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1071"/>
<location filename="sheetofnotes.ui" line="1116"/>
<source><html><head/><body><p>Создать таблицу</p></body></html></source>
<translation><html><head/><body><p>Створити таблицю</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1119"/>
<source>Создать таблицу</source>
<translation>Створити таблицю</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1137"/>
<source><html><head/><body><p>Объединить ячейки</p></body></html></source>
<translation><html><head/><body><p>Об'єднати елементи таблиці</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1156"/>
<source><html><head/><body><p>Объединить выбранные ячейки</p></body></html></source>
<translation><html><head/><body><p>Об'єднати вибрані елементи таблиці</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1159"/>
<source>Объединить выбранные ячейки</source>
<translation>Об'єднати вибрані елементи таблиці</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1177"/>
<source><html><head/><body><p>Разбить ячейки</p></body></html></source>
<translation><html><head/><body><p>Розбити елементи таблиці</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1190"/>
<source><html><head/><body><p>Количество, на которое поделится ячейка</p></body></html></source>
<translation><html><head/><body><p>Кількість, на котру поділиться елемент таблиці</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1203"/>
<source><html><head/><body><p>Разбить ячейку по горизонтали</p></body></html></source>
<translation><html><head/><body><p>Розбити елемент таблиці по горизонталі</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1206"/>
<source>Разбить ячейку по горизонтали</source>
<translation>Розбити елемент таблиці по горизонталі</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1223"/>
<source><html><head/><body><p>Разбить ячейку по вертикали</p></body></html></source>
<translation><html><head/><body><p>Розбити елемент таблиці по вертикалі</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1226"/>
<source>Разбить ячейку по вертикали</source>
<translation>Розбити елемент таблиці по вертикалі</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1244"/>
<source><html><head/><body><p>Вставить ряд</p></body></html></source>
<translation><html><head/><body><p>Вставити ряд</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1257"/>
<source><html><head/><body><p>Вставить столбец слева</p></body></html></source>
<translation><html><head/><body><p>Вставити колонку зліва</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1260"/>
<source>Вставить столбец слева</source>
<translation>Вставити колонку зліва</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1277"/>
<source><html><head/><body><p>Вставить столбец справа</p></body></html></source>
<translation><html><head/><body><p>Вставити колонку зправа</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1280"/>
<source>Вставить столбец справа</source>
<translation>Вставити колонку зправа</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1297"/>
<source><html><head/><body><p>Вставить строку сверху</p></body></html></source>
<translation><html><head/><body><p>Вставити строчку зверху</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1300"/>
<source>Вставить строку сверху</source>
<translation>Вставити строчку зверху</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1317"/>
<source><html><head/><body><p>Вставить строку снизу</p></body></html></source>
<translation><html><head/><body><p>Вставити строчку знизу</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1320"/>
<source>Вставить строку снизу</source>
<translation>Вставити строчку знизу</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1338"/>
<source><html><head/><body><p>Удалить ряд</p></body></html></source>
<translation><html><head/><body><p>Видалити ряд</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1351"/>
<source><html><head/><body><p>Удалить колонку слева</p></body></html></source>
<translation><html><head/><body><p>Видалити колонку зліва</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1354"/>
<source>Удалить колонку слева</source>
<translation>Видалити колонку зліва</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1371"/>
<source><html><head/><body><p>Удалить колонку справа</p></body></html></source>
<translation><html><head/><body><p>Видалити колонку зправа</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1374"/>
<source>Удалить колонку справа</source>
<translation>Видалити колонку зправа</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1391"/>
<source><html><head/><body><p>Удалить строку сверху</p></body></html></source>
<translation><html><head/><body><p>Видалити строчку зверху</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1394"/>
<source>Удалить строку сверху</source>
<translation>Видалити строчку зверху</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1411"/>
<source><html><head/><body><p>Удалить строку снизу</p></body></html></source>
<translation><html><head/><body><p>Видалити строчку знизу</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1414"/>
<source>Удалить строку снизу</source>
<translation>Видалити строчку знизу</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1432"/>
<location filename="sheetofnotes.ui" line="1445"/>
<source><html><head/><body><p>Удалить таблицу</p></body></html></source>
<translation><html><head/><body><p>Видалити таблицю</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1448"/>
<source>Удалить таблицу</source>
<translation>Видалити таблицю</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1473"/>
<source><html><head/><body><p>Поиск</p></body></html></source>
<translation><html><head/><body><p>Пошук</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1476"/>
<source>Поиск</source>
<translation>Пошук</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1494"/>
<source>Введите текст для поиска</source>
<translation>Уведіть текст для пошука</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1515"/>
<source>Вид редактора</source>
<translation>Вид редактора</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1532"/>
<source><html><head/><body><p>Заметка</p></body></html></source>
<translation><html><head/><body><p>Нотатка</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1535"/>
<source>Заметка</source>
<translation>Нотатка</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1561"/>
<source><html><head/><body><p>Документ</p></body></html></source>
<translation><html><head/><body><p>Документ</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1564"/>
<source>Документ</source>
<translation>Документ</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1587"/>
<source><html><head/><body><p>Код</p></body></html></source>
<translation><html><head/><body><p>Код</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1590"/>
<source>Код</source>
<translation>Код</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1621"/>
<source>Вид редактора:</source>
<translation>Вид редактора:</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1634"/>
<source><html><head/><body><p>*</p></body></html></source>
<translation><html><head/><body><p>*</p></body></html></translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1779"/>
<source>Экспорт</source>
<comment>v1.0.0.1 - "Генератор"</comment>
<translation>Експорт</translation>
</message>
<message>
<location filename="sheetofnotes.ui" line="1818"/>
<source>Вставка</source>
<translation>Вставка</translation>