xmt_froala 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +28 -0
- data/Rakefile +2 -0
- data/app/assets/javascripts/xmt_froala.js +31 -0
- data/app/assets/stylesheets/xmt_froala.css +17 -0
- data/app/controllers/xmt_froala/application_controller.rb +5 -0
- data/app/controllers/xmt_froala/assets_controller.rb +94 -0
- data/app/models/xmt_froala/asset_uploader.rb +107 -0
- data/app/models/xmt_froala/file_uploader.rb +10 -0
- data/app/models/xmt_froala/flash_uploader.rb +10 -0
- data/app/models/xmt_froala/image_uploader.rb +10 -0
- data/app/models/xmt_froala/media_uploader.rb +10 -0
- data/config/routes.rb +6 -0
- data/lib/generators/xmt_froala/install/USAGE +10 -0
- data/lib/generators/xmt_froala/install/install_generator.rb +23 -0
- data/lib/generators/xmt_froala/install/templates/application.js +17 -0
- data/lib/generators/xmt_froala/install/templates/xmt_froala.rb +29 -0
- data/lib/generators/xmt_froala/migration/USAGE +14 -0
- data/lib/generators/xmt_froala/migration/migration_generator.rb +36 -0
- data/lib/generators/xmt_froala/migration/templates/migration/migration.rb +18 -0
- data/lib/generators/xmt_froala/migration/templates/models/active_record/xmt_froala/asset.rb +14 -0
- data/lib/generators/xmt_froala/migration/templates/models/active_record/xmt_froala/file.rb +3 -0
- data/lib/generators/xmt_froala/migration/templates/models/active_record/xmt_froala/flash.rb +3 -0
- data/lib/generators/xmt_froala/migration/templates/models/active_record/xmt_froala/image.rb +3 -0
- data/lib/generators/xmt_froala/migration/templates/models/active_record/xmt_froala/media.rb +3 -0
- data/lib/generators/xmt_froala/migration/templates/models/mongoid/xmt_froala/asset.rb +27 -0
- data/lib/generators/xmt_froala/migration/templates/models/mongoid/xmt_froala/file.rb +3 -0
- data/lib/generators/xmt_froala/migration/templates/models/mongoid/xmt_froala/flash.rb +3 -0
- data/lib/generators/xmt_froala/migration/templates/models/mongoid/xmt_froala/image.rb +3 -0
- data/lib/generators/xmt_froala/migration/templates/models/mongoid/xmt_froala/media.rb +3 -0
- data/lib/tasks/xmt_froala_tasks.rake +9 -0
- data/lib/xmt_froala.rb +65 -0
- data/lib/xmt_froala/active_record.rb +14 -0
- data/lib/xmt_froala/engine.rb +32 -0
- data/lib/xmt_froala/formtastic.rb +12 -0
- data/lib/xmt_froala/helper.rb +105 -0
- data/lib/xmt_froala/simple_form.rb +11 -0
- data/lib/xmt_froala/version.rb +3 -0
- data/vendor/assets/javascripts/xmt_froala/froala_editor.js +0 -0
- data/vendor/assets/javascripts/xmt_froala/languages/ar.js +318 -0
- data/vendor/assets/javascripts/xmt_froala/languages/bs.js +318 -0
- data/vendor/assets/javascripts/xmt_froala/languages/cs.js +318 -0
- data/vendor/assets/javascripts/xmt_froala/languages/da.js +318 -0
- data/vendor/assets/javascripts/xmt_froala/languages/de.js +318 -0
- data/vendor/assets/javascripts/xmt_froala/languages/en_ca.js +262 -0
- data/vendor/assets/javascripts/xmt_froala/languages/en_gb.js +262 -0
- data/vendor/assets/javascripts/xmt_froala/languages/es.js +318 -0
- data/vendor/assets/javascripts/xmt_froala/languages/et.js +318 -0
- data/vendor/assets/javascripts/xmt_froala/languages/fa.js +318 -0
- data/vendor/assets/javascripts/xmt_froala/languages/fi.js +318 -0
- data/vendor/assets/javascripts/xmt_froala/languages/fr.js +318 -0
- data/vendor/assets/javascripts/xmt_froala/languages/he.js +318 -0
- data/vendor/assets/javascripts/xmt_froala/languages/hr.js +318 -0
- data/vendor/assets/javascripts/xmt_froala/languages/hu.js +318 -0
- data/vendor/assets/javascripts/xmt_froala/languages/id.js +319 -0
- data/vendor/assets/javascripts/xmt_froala/languages/it.js +318 -0
- data/vendor/assets/javascripts/xmt_froala/languages/ja.js +318 -0
- data/vendor/assets/javascripts/xmt_froala/languages/ko.js +318 -0
- data/vendor/assets/javascripts/xmt_froala/languages/me.js +318 -0
- data/vendor/assets/javascripts/xmt_froala/languages/nb.js +318 -0
- data/vendor/assets/javascripts/xmt_froala/languages/nl.js +318 -0
- data/vendor/assets/javascripts/xmt_froala/languages/pl.js +318 -0
- data/vendor/assets/javascripts/xmt_froala/languages/pt_br.js +318 -0
- data/vendor/assets/javascripts/xmt_froala/languages/pt_pt.js +318 -0
- data/vendor/assets/javascripts/xmt_froala/languages/ro.js +319 -0
- data/vendor/assets/javascripts/xmt_froala/languages/ru.js +318 -0
- data/vendor/assets/javascripts/xmt_froala/languages/sk.js +318 -0
- data/vendor/assets/javascripts/xmt_froala/languages/sr.js +318 -0
- data/vendor/assets/javascripts/xmt_froala/languages/sv.js +318 -0
- data/vendor/assets/javascripts/xmt_froala/languages/th.js +318 -0
- data/vendor/assets/javascripts/xmt_froala/languages/tr.js +318 -0
- data/vendor/assets/javascripts/xmt_froala/languages/uk.js +318 -0
- data/vendor/assets/javascripts/xmt_froala/languages/vi.js +258 -0
- data/vendor/assets/javascripts/xmt_froala/languages/zh_cn.js +320 -0
- data/vendor/assets/javascripts/xmt_froala/languages/zh_tw.js +318 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/align.js +139 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/align.min.js +7 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/char_counter.js +154 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/char_counter.min.js +7 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/code_beautifier.js +3270 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/code_beautifier.min.js +7 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/code_view.js +393 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/code_view.min.js +7 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/colors.js +492 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/colors.min.js +7 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/draggable.js +459 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/draggable.min.js +7 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/emoticons.js +509 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/emoticons.min.js +7 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/entities.js +121 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/entities.min.js +7 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/file.js +736 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/file.min.js +239 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/font_family.js +182 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/font_family.min.js +7 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/font_size.js +118 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/font_size.min.js +7 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/forms.js +430 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/forms.min.js +7 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/fullscreen.js +274 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/fullscreen.min.js +7 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/help.js +216 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/help.min.js +7 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/image.js +3323 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/image.min.js +7 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/image_manager.js +1056 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/image_manager.min.js +7 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/inline_style.js +94 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/inline_style.min.js +7 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/line_breaker.js +537 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/line_breaker.min.js +7 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/link.js +1157 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/link.min.js +7 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/lists.js +462 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/lists.min.js +7 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/paragraph_format.js +290 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/paragraph_format.min.js +7 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/paragraph_style.js +144 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/paragraph_style.min.js +7 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/plain_paste.js +96 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/print.js +137 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/print.min.js +7 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/quick_format.js +89 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/quick_insert.js +478 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/quick_insert.min.js +7 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/quote.js +141 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/quote.min.js +7 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/save.js +189 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/save.min.js +7 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/special_characters.js +781 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/special_characters.min.js +7 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/table.js +4194 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/table.min.js +7 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/url.js +194 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/url.min.js +7 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/video.js +2342 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/video.min.js +7 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/word_paste.js +1403 -0
- data/vendor/assets/javascripts/xmt_froala/plugins/word_paste.min.js +7 -0
- data/vendor/assets/javascripts/xmt_froala/third_party/embedly.js +543 -0
- data/vendor/assets/javascripts/xmt_froala/third_party/embedly.min.js +7 -0
- data/vendor/assets/javascripts/xmt_froala/third_party/image_aviary.js +163 -0
- data/vendor/assets/javascripts/xmt_froala/third_party/image_aviary.min.js +7 -0
- data/vendor/assets/javascripts/xmt_froala/third_party/spell_checker.js +222 -0
- data/vendor/assets/javascripts/xmt_froala/third_party/spell_checker.min.js +7 -0
- data/vendor/assets/javascripts/xmt_froala/xmt_froala.js +15172 -0
- data/vendor/assets/stylesheets/xmt_froala/css/font-awesome.css +2546 -0
- data/vendor/assets/stylesheets/xmt_froala/css/froala_editor.min.css +7 -0
- data/vendor/assets/stylesheets/xmt_froala/css/froala_editor.pkgd.css +2902 -0
- data/vendor/assets/stylesheets/xmt_froala/css/froala_editor.pkgd.min.css +7 -0
- data/vendor/assets/stylesheets/xmt_froala/css/froala_style.css +413 -0
- data/vendor/assets/stylesheets/xmt_froala/css/froala_style.min.css +7 -0
- data/vendor/assets/stylesheets/xmt_froala/css/plugins/char_counter.css +57 -0
- data/vendor/assets/stylesheets/xmt_froala/css/plugins/char_counter.min.css +7 -0
- data/vendor/assets/stylesheets/xmt_froala/css/plugins/code_view.css +112 -0
- data/vendor/assets/stylesheets/xmt_froala/css/plugins/code_view.min.css +7 -0
- data/vendor/assets/stylesheets/xmt_froala/css/plugins/colors.css +155 -0
- data/vendor/assets/stylesheets/xmt_froala/css/plugins/colors.min.css +7 -0
- data/vendor/assets/stylesheets/xmt_froala/css/plugins/draggable.css +43 -0
- data/vendor/assets/stylesheets/xmt_froala/css/plugins/draggable.min.css +7 -0
- data/vendor/assets/stylesheets/xmt_froala/css/plugins/emoticons.css +42 -0
- data/vendor/assets/stylesheets/xmt_froala/css/plugins/emoticons.min.css +7 -0
- data/vendor/assets/stylesheets/xmt_froala/css/plugins/file.css +146 -0
- data/vendor/assets/stylesheets/xmt_froala/css/plugins/file.min.css +7 -0
- data/vendor/assets/stylesheets/xmt_froala/css/plugins/fullscreen.css +28 -0
- data/vendor/assets/stylesheets/xmt_froala/css/plugins/fullscreen.min.css +7 -0
- data/vendor/assets/stylesheets/xmt_froala/css/plugins/help.css +52 -0
- data/vendor/assets/stylesheets/xmt_froala/css/plugins/help.min.css +7 -0
- data/vendor/assets/stylesheets/xmt_froala/css/plugins/image.css +244 -0
- data/vendor/assets/stylesheets/xmt_froala/css/plugins/image.min.css +7 -0
- data/vendor/assets/stylesheets/xmt_froala/css/plugins/image_manager.css +266 -0
- data/vendor/assets/stylesheets/xmt_froala/css/plugins/image_manager.min.css +7 -0
- data/vendor/assets/stylesheets/xmt_froala/css/plugins/line_breaker.css +37 -0
- data/vendor/assets/stylesheets/xmt_froala/css/plugins/line_breaker.min.css +7 -0
- data/vendor/assets/stylesheets/xmt_froala/css/plugins/quick_insert.css +70 -0
- data/vendor/assets/stylesheets/xmt_froala/css/plugins/quick_insert.min.css +7 -0
- data/vendor/assets/stylesheets/xmt_froala/css/plugins/special_characters.css +51 -0
- data/vendor/assets/stylesheets/xmt_froala/css/plugins/special_characters.min.css +7 -0
- data/vendor/assets/stylesheets/xmt_froala/css/plugins/table.css +181 -0
- data/vendor/assets/stylesheets/xmt_froala/css/plugins/table.min.css +7 -0
- data/vendor/assets/stylesheets/xmt_froala/css/plugins/video.css +231 -0
- data/vendor/assets/stylesheets/xmt_froala/css/plugins/video.min.css +7 -0
- data/vendor/assets/stylesheets/xmt_froala/css/themes/dark.css +1281 -0
- data/vendor/assets/stylesheets/xmt_froala/css/themes/dark.min.css +7 -0
- data/vendor/assets/stylesheets/xmt_froala/css/themes/gray.css +1281 -0
- data/vendor/assets/stylesheets/xmt_froala/css/themes/gray.min.css +7 -0
- data/vendor/assets/stylesheets/xmt_froala/css/themes/red.css +1281 -0
- data/vendor/assets/stylesheets/xmt_froala/css/themes/red.min.css +7 -0
- data/vendor/assets/stylesheets/xmt_froala/css/themes/royal.css +1281 -0
- data/vendor/assets/stylesheets/xmt_froala/css/themes/royal.min.css +7 -0
- data/vendor/assets/stylesheets/xmt_froala/css/third_party/embedly.css +64 -0
- data/vendor/assets/stylesheets/xmt_froala/css/third_party/embedly.min.css +7 -0
- data/vendor/assets/stylesheets/xmt_froala/css/third_party/spell_checker.css +72 -0
- data/vendor/assets/stylesheets/xmt_froala/css/third_party/spell_checker.min.css +7 -0
- data/vendor/assets/stylesheets/xmt_froala/css/xmt_froala.css +1423 -0
- data/vendor/assets/stylesheets/xmt_froala/fonts/FontAwesome.otf +0 -0
- data/vendor/assets/stylesheets/xmt_froala/fonts/fontawesome-webfont.eot +0 -0
- data/vendor/assets/stylesheets/xmt_froala/fonts/fontawesome-webfont.svg +2671 -0
- data/vendor/assets/stylesheets/xmt_froala/fonts/fontawesome-webfont.ttf +0 -0
- data/vendor/assets/stylesheets/xmt_froala/fonts/fontawesome-webfont.woff +0 -0
- data/vendor/assets/stylesheets/xmt_froala/fonts/fontawesome-webfont.woff2 +0 -0
- metadata +273 -0
|
@@ -0,0 +1,318 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* froala_editor v2.8.1 (https://www.froala.com/wysiwyg-editor)
|
|
3
|
+
* License https://froala.com/wysiwyg-editor/terms/
|
|
4
|
+
* Copyright 2014-2018 Froala Labs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
(function (factory) {
|
|
8
|
+
if (typeof define === 'function' && define.amd) {
|
|
9
|
+
// AMD. Register as an anonymous module.
|
|
10
|
+
define(['jquery'], factory);
|
|
11
|
+
} else if (typeof module === 'object' && module.exports) {
|
|
12
|
+
// Node/CommonJS
|
|
13
|
+
module.exports = function( root, jQuery ) {
|
|
14
|
+
if ( jQuery === undefined ) {
|
|
15
|
+
// require('jQuery') returns a factory that requires window to
|
|
16
|
+
// build a jQuery instance, we normalize how we use modules
|
|
17
|
+
// that require this pattern but the window provided is a noop
|
|
18
|
+
// if it's defined (how jquery works)
|
|
19
|
+
if ( typeof window !== 'undefined' ) {
|
|
20
|
+
jQuery = require('jquery');
|
|
21
|
+
}
|
|
22
|
+
else {
|
|
23
|
+
jQuery = require('jquery')(root);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
return factory(jQuery);
|
|
27
|
+
};
|
|
28
|
+
} else {
|
|
29
|
+
// Browser globals
|
|
30
|
+
factory(window.jQuery);
|
|
31
|
+
}
|
|
32
|
+
}(function ($) {
|
|
33
|
+
/**
|
|
34
|
+
* Turkish
|
|
35
|
+
*/
|
|
36
|
+
|
|
37
|
+
$.FE.LANGUAGE['tr'] = {
|
|
38
|
+
translation: {
|
|
39
|
+
// Place holder
|
|
40
|
+
"Type something": "Bir \u015fey yaz\u0131n",
|
|
41
|
+
|
|
42
|
+
// Basic formatting
|
|
43
|
+
"Bold": "Kal\u0131n",
|
|
44
|
+
"Italic": "\u0130talik",
|
|
45
|
+
"Underline": "Alt\u0131 \u00e7izili",
|
|
46
|
+
"Strikethrough": "\u00dcst\u00fc \u00e7izili",
|
|
47
|
+
|
|
48
|
+
// Main buttons
|
|
49
|
+
"Insert": "Ekle",
|
|
50
|
+
"Delete": "Silmek",
|
|
51
|
+
"Cancel": "\u0130ptal",
|
|
52
|
+
"OK": "Tamam",
|
|
53
|
+
"Back": "Geri",
|
|
54
|
+
"Remove": "Kald\u0131r",
|
|
55
|
+
"More": "Daha",
|
|
56
|
+
"Update": "G\u00fcncelle\u015ftirme",
|
|
57
|
+
"Style": "Stil",
|
|
58
|
+
|
|
59
|
+
// Font
|
|
60
|
+
"Font Family": "Yaz\u0131tipi Ailesi",
|
|
61
|
+
"Font Size": "Yaz\u0131tipi B\u00fcy\u00fckl\u00fc\u011f\u00fc",
|
|
62
|
+
|
|
63
|
+
// Colors
|
|
64
|
+
"Colors": "Renkler",
|
|
65
|
+
"Background": "Arkaplan",
|
|
66
|
+
"Text": "Metin",
|
|
67
|
+
"HEX Color": "Altı renkli",
|
|
68
|
+
|
|
69
|
+
// Paragraphs
|
|
70
|
+
"Paragraph Format": "Bi\u00e7imler",
|
|
71
|
+
"Normal": "Normal",
|
|
72
|
+
"Code": "Kod",
|
|
73
|
+
"Heading 1": "Ba\u015fl\u0131k 1",
|
|
74
|
+
"Heading 2": "Ba\u015fl\u0131k 2",
|
|
75
|
+
"Heading 3": "Ba\u015fl\u0131k 3",
|
|
76
|
+
"Heading 4": "Ba\u015fl\u0131k 4",
|
|
77
|
+
|
|
78
|
+
// Style
|
|
79
|
+
"Paragraph Style": "Paragraf stili",
|
|
80
|
+
"Inline Style": "\u00c7izgide stili",
|
|
81
|
+
|
|
82
|
+
// Alignment
|
|
83
|
+
"Align": "Hizalama",
|
|
84
|
+
"Align Left": "Sola hizala",
|
|
85
|
+
"Align Center": "Ortala",
|
|
86
|
+
"Align Right": "Sa\u011fa hizala",
|
|
87
|
+
"Align Justify": "\u0130ki yana yasla",
|
|
88
|
+
"None": "Hi\u00e7biri",
|
|
89
|
+
|
|
90
|
+
// Lists
|
|
91
|
+
"Ordered List": "S\u0131ral\u0131 liste",
|
|
92
|
+
"Unordered List": "S\u0131ras\u0131z liste",
|
|
93
|
+
|
|
94
|
+
// Indent
|
|
95
|
+
"Decrease Indent": "Girintiyi azalt",
|
|
96
|
+
"Increase Indent": "Girintiyi art\u0131r",
|
|
97
|
+
|
|
98
|
+
// Links
|
|
99
|
+
"Insert Link": "Ba\u011flant\u0131 ekle",
|
|
100
|
+
"Open in new tab": "Yeni sekmede a\u00e7",
|
|
101
|
+
"Open Link": "Linki a\u00e7",
|
|
102
|
+
"Edit Link": "D\u00fczenleme ba\u011flant\u0131s\u0131",
|
|
103
|
+
"Unlink": "Ba\u011flant\u0131y\u0131 kald\u0131r",
|
|
104
|
+
"Choose Link": "Ba\u011flant\u0131y\u0131 se\u00e7in",
|
|
105
|
+
|
|
106
|
+
// Images
|
|
107
|
+
"Insert Image": "Resim ekle",
|
|
108
|
+
"Upload Image": "Y\u00fckleme g\u00f6r\u00fcnt\u00fcs\u00fc",
|
|
109
|
+
"By URL": "URL'ye g\u00f6re",
|
|
110
|
+
"Browse": "G\u00f6zat",
|
|
111
|
+
"Drop image": "B\u0131rak resim",
|
|
112
|
+
"or click": "ya da t\u0131klay\u0131n",
|
|
113
|
+
"Manage Images": "G\u00f6r\u00fcnt\u00fcleri y\u00f6netin",
|
|
114
|
+
"Loading": "Y\u00fckleniyor",
|
|
115
|
+
"Deleting": "Silme",
|
|
116
|
+
"Tags": "Etiketler",
|
|
117
|
+
"Are you sure? Image will be deleted.": "Emin misin? Resim silinecektir.",
|
|
118
|
+
"Replace": "De\u011fi\u015ftirmek",
|
|
119
|
+
"Uploading": "Y\u00fckleme",
|
|
120
|
+
"Loading image": "Y\u00fckleme g\u00f6r\u00fcnt\u00fcs\u00fc",
|
|
121
|
+
"Display": "G\u00f6stermek",
|
|
122
|
+
"Inline": "\u00c7izgide",
|
|
123
|
+
"Break Text": "K\u0131r\u0131lma metni",
|
|
124
|
+
"Alternate Text": "Alternatif metin",
|
|
125
|
+
"Change Size": "De\u011fi\u015fim boyutu",
|
|
126
|
+
"Width": "Geni\u015flik",
|
|
127
|
+
"Height": "Y\u00fckseklik",
|
|
128
|
+
"Something went wrong. Please try again.": "Bir \u015feyler yanl\u0131\u015f gitti. L\u00fctfen tekrar deneyin.",
|
|
129
|
+
"Image Caption": "Resim yazısı",
|
|
130
|
+
"Advanced Edit": "Ileri düzey düzenleme",
|
|
131
|
+
|
|
132
|
+
// Video
|
|
133
|
+
"Insert Video": "Video ekle",
|
|
134
|
+
"Embedded Code": "G\u00f6m\u00fcl\u00fc kod",
|
|
135
|
+
"Paste in a video URL": "Bir video URL'sine yapıştırın",
|
|
136
|
+
"Drop video": "Video bırak",
|
|
137
|
+
"Your browser does not support HTML5 video.": "Tarayıcınız html5 videoyu desteklemez.",
|
|
138
|
+
"Upload Video": "Video yükle",
|
|
139
|
+
|
|
140
|
+
// Tables
|
|
141
|
+
"Insert Table": "Tablo ekle",
|
|
142
|
+
"Table Header": "Tablo \u00fcstbilgisi",
|
|
143
|
+
"Remove Table": "Tablo kald\u0131rma",
|
|
144
|
+
"Table Style": "Tablo stili",
|
|
145
|
+
"Horizontal Align": "Yatay hizalama",
|
|
146
|
+
"Row": "Sat\u0131r",
|
|
147
|
+
"Insert row above": "\u00d6ncesine yeni sat\u0131r ekle",
|
|
148
|
+
"Insert row below": "Sonras\u0131na yeni sat\u0131r ekle",
|
|
149
|
+
"Delete row": "Sat\u0131r\u0131 sil",
|
|
150
|
+
"Column": "S\u00fctun",
|
|
151
|
+
"Insert column before": "\u00d6ncesine yeni s\u00fctun ekle",
|
|
152
|
+
"Insert column after": "Sonras\u0131na yeni s\u00fctun ekle",
|
|
153
|
+
"Delete column": "S\u00fctunu sil",
|
|
154
|
+
"Cell": "H\u00fccre",
|
|
155
|
+
"Merge cells": "H\u00fccreleri birle\u015ftir",
|
|
156
|
+
"Horizontal split": "Yatay b\u00f6l\u00fcnm\u00fc\u015f",
|
|
157
|
+
"Vertical split": "Dikey b\u00f6l\u00fcnm\u00fc\u015f",
|
|
158
|
+
"Cell Background": "H\u00fccre arka plan\u0131",
|
|
159
|
+
"Vertical Align": "Dikey hizalama",
|
|
160
|
+
"Top": "\u00dcst",
|
|
161
|
+
"Middle": "Orta",
|
|
162
|
+
"Bottom": "Alt",
|
|
163
|
+
"Align Top": "\u00dcst hizalama",
|
|
164
|
+
"Align Middle": "Orta hizalama",
|
|
165
|
+
"Align Bottom": "Dibe hizalama",
|
|
166
|
+
"Cell Style": "H\u00fccre stili",
|
|
167
|
+
|
|
168
|
+
// Files
|
|
169
|
+
"Upload File": "Dosya Y\u00fckle",
|
|
170
|
+
"Drop file": "B\u0131rak dosya",
|
|
171
|
+
|
|
172
|
+
// Emoticons
|
|
173
|
+
"Emoticons": "\u0130fadeler",
|
|
174
|
+
"Grinning face": "S\u0131r\u0131tan y\u00fcz",
|
|
175
|
+
"Grinning face with smiling eyes": "G\u00fclen g\u00f6zlerle y\u00fcz s\u0131r\u0131tarak",
|
|
176
|
+
"Face with tears of joy": "Sevin\u00e7 g\u00f6zya\u015flar\u0131yla Y\u00fcz",
|
|
177
|
+
"Smiling face with open mouth": "A\u00e7\u0131k a\u011fz\u0131 ile g\u00fcl\u00fcmseyen y\u00fcz\u00fc",
|
|
178
|
+
"Smiling face with open mouth and smiling eyes": "A\u00e7\u0131k a\u011fzı ve g\u00fcl\u00fcmseyen g\u00f6zlerle g\u00fcler y\u00fcz",
|
|
179
|
+
"Smiling face with open mouth and cold sweat": "A\u00e7\u0131k a\u011fz\u0131 ve so\u011fuk ter ile g\u00fclen y\u00fcz\u00fc",
|
|
180
|
+
"Smiling face with open mouth and tightly-closed eyes": "A\u00e7\u0131k a\u011fz\u0131 s\u0131k\u0131ca kapal\u0131 g\u00f6zlerle g\u00fclen y\u00fcz\u00fc",
|
|
181
|
+
"Smiling face with halo": "Halo ile y\u00fcz g\u00fclen",
|
|
182
|
+
"Smiling face with horns": "Boynuzlar\u0131 ile g\u00fcler y\u00fcz",
|
|
183
|
+
"Winking face": "G\u00f6z a\u00e7\u0131p kapay\u0131ncaya y\u00fcz\u00fc",
|
|
184
|
+
"Smiling face with smiling eyes": "G\u00fclen g\u00f6zlerle g\u00fcler Y\u00fcz",
|
|
185
|
+
"Face savoring delicious food": "Lezzetli yemekler tad\u0131n\u0131 Y\u00fcz",
|
|
186
|
+
"Relieved face": "Rahatlad\u0131m y\u00fcz\u00fc",
|
|
187
|
+
"Smiling face with heart-shaped eyes": "Kalp \u015feklinde g\u00f6zlerle g\u00fcler y\u00fcz",
|
|
188
|
+
"Smiling face with sunglasses": "Kalp \u015feklinde g\u00f6zlerle g\u00fcler y\u00fcz",
|
|
189
|
+
"Smirking face": "S\u0131r\u0131tan y\u00fcz",
|
|
190
|
+
"Neutral face": "N\u00f6tr y\u00fcz",
|
|
191
|
+
"Expressionless face": "Ifadesiz y\u00fcz\u00fc",
|
|
192
|
+
"Unamused face": "Kay\u0131ts\u0131z y\u00fcz\u00fc",
|
|
193
|
+
"Face with cold sweat": "So\u011fuk terler Y\u00fcz",
|
|
194
|
+
"Pensive face": "dalg\u0131n bir y\u00fcz",
|
|
195
|
+
"Confused face": "\u015fa\u015fk\u0131n bir y\u00fcz",
|
|
196
|
+
"Confounded face": "Ele\u015ftirilmi\u015ftir y\u00fcz\u00fc",
|
|
197
|
+
"Kissing face": "\u00f6p\u00fc\u015fme y\u00fcz\u00fc",
|
|
198
|
+
"Face throwing a kiss": "Bir \u00f6p\u00fcc\u00fck atma Y\u00fcz",
|
|
199
|
+
"Kissing face with smiling eyes": "G\u00fclen g\u00f6zlerle y\u00fcz \u00f6p\u00fc\u015fme",
|
|
200
|
+
"Kissing face with closed eyes": "Kapal\u0131 g\u00f6zlerle \u00f6p\u00f6\u015fme y\u00fcz",
|
|
201
|
+
"Face with stuck out tongue": "Dilini y\u00fcz ile s\u0131k\u0131\u015fm\u0131\u015f",
|
|
202
|
+
"Face with stuck out tongue and winking eye": "\u015ea\u015f\u0131r\u0131p kalm\u0131\u015f d\u0131\u015far\u0131 dil ve g\u00f6z k\u0131rpan y\u00fcz",
|
|
203
|
+
"Face with stuck out tongue and tightly-closed eyes": "Y\u00fcz ile dil ve s\u0131k\u0131ca kapal\u0131 g\u00f6zleri s\u0131k\u0131\u015fm\u0131\u015f",
|
|
204
|
+
"Disappointed face": "Hayal k\u0131r\u0131kl\u0131\u011f\u0131na y\u00fcz\u00fc",
|
|
205
|
+
"Worried face": "Endi\u015feli bir y\u00fcz",
|
|
206
|
+
"Angry face": "K\u0131zg\u0131n y\u00fcz",
|
|
207
|
+
"Pouting face": "Somurtarak y\u00fcz\u00fc",
|
|
208
|
+
"Crying face": "A\u011flayan y\u00fcz",
|
|
209
|
+
"Persevering face": "Azmeden y\u00fcz\u00fc",
|
|
210
|
+
"Face with look of triumph": "Zafer bak\u0131\u015fla Y\u00fcz",
|
|
211
|
+
"Disappointed but relieved face": "Hayal k\u0131r\u0131kl\u0131\u011f\u0131 ama rahatlad\u0131m y\u00fcz",
|
|
212
|
+
"Frowning face with open mouth": "A\u00e7\u0131k a\u011fz\u0131 ile \u00e7at\u0131k y\u00fcz\u00fc",
|
|
213
|
+
"Anguished face": "Kederli y\u00fcz",
|
|
214
|
+
"Fearful face": "Korkulu y\u00fcz\u00fc",
|
|
215
|
+
"Weary face": "Yorgun y\u00fcz\u00fc",
|
|
216
|
+
"Sleepy face": "Uykulu y\u00fcz\u00fc",
|
|
217
|
+
"Tired face": "Yorgun y\u00fcz\u00fc",
|
|
218
|
+
"Grimacing face": "Y\u00fcz\u00fcn\u00fc buru\u015fturarak y\u00fcz\u00fc",
|
|
219
|
+
"Loudly crying face": "Y\u00fcksek sesle y\u00fcz\u00fc a\u011fl\u0131yor",
|
|
220
|
+
"Face with open mouth": "A\u00e7\u0131k a\u011fz\u0131 ile Y\u00fcz",
|
|
221
|
+
"Hushed face": "Dingin y\u00fcz\u00fc",
|
|
222
|
+
"Face with open mouth and cold sweat": "A\u00e7\u0131k a\u011fz\u0131 ve so\u011fuk ter ile Y\u00fcz",
|
|
223
|
+
"Face screaming in fear": "Korku i\u00e7inde \u00e7ı\u011fl\u0131k Y\u00fcz",
|
|
224
|
+
"Astonished face": "\u015fa\u015fk\u0131n bir y\u00fcz",
|
|
225
|
+
"Flushed face": "K\u0131zarm\u0131\u015f y\u00fcz\u00fc",
|
|
226
|
+
"Sleeping face": "Uyuyan y\u00fcz\u00fc",
|
|
227
|
+
"Dizzy face": "Ba\u015f\u0131m d\u00f6nd\u00fc y\u00fcz",
|
|
228
|
+
"Face without mouth": "A\u011f\u0131z olmadan Y\u00fcz",
|
|
229
|
+
"Face with medical mask": "T\u0131bbi maske ile y\u00fcz",
|
|
230
|
+
|
|
231
|
+
// Line breaker
|
|
232
|
+
"Break": "K\u0131r\u0131lma",
|
|
233
|
+
|
|
234
|
+
// Math
|
|
235
|
+
"Subscript": "Alt simge",
|
|
236
|
+
"Superscript": "\u00dcst simge",
|
|
237
|
+
|
|
238
|
+
// Full screen
|
|
239
|
+
"Fullscreen": "Tam ekran",
|
|
240
|
+
|
|
241
|
+
// Horizontal line
|
|
242
|
+
"Insert Horizontal Line": "Yatay \u00e7izgi ekleme",
|
|
243
|
+
|
|
244
|
+
// Clear formatting
|
|
245
|
+
"Clear Formatting": "Bi\u00e7imlendirme kald\u0131r",
|
|
246
|
+
|
|
247
|
+
// Undo, redo
|
|
248
|
+
"Undo": "Geri Al",
|
|
249
|
+
"Redo": "Yinele",
|
|
250
|
+
|
|
251
|
+
// Select all
|
|
252
|
+
"Select All": "T\u00fcm\u00fcn\u00fc se\u00e7",
|
|
253
|
+
|
|
254
|
+
// Code view
|
|
255
|
+
"Code View": "Kod g\u00f6r\u00fcn\u00fcm\u00fc",
|
|
256
|
+
|
|
257
|
+
// Quote
|
|
258
|
+
"Quote": "Al\u0131nt\u0131",
|
|
259
|
+
"Increase": "Art\u0131rmak",
|
|
260
|
+
"Decrease": "Azal\u0131\u015f",
|
|
261
|
+
|
|
262
|
+
// Quick Insert
|
|
263
|
+
"Quick Insert": "H\u0131zl\u0131 insert",
|
|
264
|
+
|
|
265
|
+
// Spcial Characters
|
|
266
|
+
"Special Characters": "Özel karakterler",
|
|
267
|
+
"Latin": "Latince",
|
|
268
|
+
"Greek": "Yunan",
|
|
269
|
+
"Cyrillic": "Kiril",
|
|
270
|
+
"Punctuation": "Noktalama",
|
|
271
|
+
"Currency": "Para birimi",
|
|
272
|
+
"Arrows": "Oklar",
|
|
273
|
+
"Math": "Matematik",
|
|
274
|
+
"Misc": "Misc",
|
|
275
|
+
|
|
276
|
+
// Print.
|
|
277
|
+
"Print": "Baskı",
|
|
278
|
+
|
|
279
|
+
// Spell Checker.
|
|
280
|
+
"Spell Checker": "Yazım denetleyicisi",
|
|
281
|
+
|
|
282
|
+
// Help
|
|
283
|
+
"Help": "Yardım et",
|
|
284
|
+
"Shortcuts": "Kısayollar",
|
|
285
|
+
"Inline Editor": "Satır içi düzenleyici",
|
|
286
|
+
"Show the editor": "Editörü gösterin",
|
|
287
|
+
"Common actions": "Ortak eylemler",
|
|
288
|
+
"Copy": "Kopya",
|
|
289
|
+
"Cut": "Kesim",
|
|
290
|
+
"Paste": "Yapıştırmak",
|
|
291
|
+
"Basic Formatting": "Temel biçimlendirme",
|
|
292
|
+
"Increase quote level": "Teklif seviyesini yükselt",
|
|
293
|
+
"Decrease quote level": "Teklif seviyesini azalt",
|
|
294
|
+
"Image / Video": "Resim / video",
|
|
295
|
+
"Resize larger": "Daha büyük yeniden boyutlandır",
|
|
296
|
+
"Resize smaller": "Daha küçük boyuta getir",
|
|
297
|
+
"Table": "Tablo",
|
|
298
|
+
"Select table cell": "Tablo hücresi seç",
|
|
299
|
+
"Extend selection one cell": "Seçimi bir hücre genişlet",
|
|
300
|
+
"Extend selection one row": "Seçimi bir sıra genişlet",
|
|
301
|
+
"Navigation": "Navigasyon",
|
|
302
|
+
"Focus popup / toolbar": "Odaklanma açılır penceresi / araç çubuğu",
|
|
303
|
+
"Return focus to previous position": "Odaklamaya önceki konumuna geri dönün",
|
|
304
|
+
|
|
305
|
+
// Embed.ly
|
|
306
|
+
"Embed URL": "URL göm",
|
|
307
|
+
"Paste in a URL to embed": "Yerleştirmek için bir URL'ye yapıştırın",
|
|
308
|
+
|
|
309
|
+
// Word Paste.
|
|
310
|
+
"The pasted content is coming from a Microsoft Word document. Do you want to keep the format or clean it up?": "Yapıştırılan içerik bir Microsoft Word belgesinden geliyor. Biçimi saklamaya mı yoksa temizlemeyi mi istiyor musun?",
|
|
311
|
+
"Keep": "Tutmak",
|
|
312
|
+
"Clean": "Temiz",
|
|
313
|
+
"Word Paste Detected": "Kelime yapıştırması algılandı"
|
|
314
|
+
},
|
|
315
|
+
direction: "ltr"
|
|
316
|
+
};
|
|
317
|
+
|
|
318
|
+
}));
|
|
@@ -0,0 +1,318 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* froala_editor v2.8.1 (https://www.froala.com/wysiwyg-editor)
|
|
3
|
+
* License https://froala.com/wysiwyg-editor/terms/
|
|
4
|
+
* Copyright 2014-2018 Froala Labs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
(function (factory) {
|
|
8
|
+
if (typeof define === 'function' && define.amd) {
|
|
9
|
+
// AMD. Register as an anonymous module.
|
|
10
|
+
define(['jquery'], factory);
|
|
11
|
+
} else if (typeof module === 'object' && module.exports) {
|
|
12
|
+
// Node/CommonJS
|
|
13
|
+
module.exports = function( root, jQuery ) {
|
|
14
|
+
if ( jQuery === undefined ) {
|
|
15
|
+
// require('jQuery') returns a factory that requires window to
|
|
16
|
+
// build a jQuery instance, we normalize how we use modules
|
|
17
|
+
// that require this pattern but the window provided is a noop
|
|
18
|
+
// if it's defined (how jquery works)
|
|
19
|
+
if ( typeof window !== 'undefined' ) {
|
|
20
|
+
jQuery = require('jquery');
|
|
21
|
+
}
|
|
22
|
+
else {
|
|
23
|
+
jQuery = require('jquery')(root);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
return factory(jQuery);
|
|
27
|
+
};
|
|
28
|
+
} else {
|
|
29
|
+
// Browser globals
|
|
30
|
+
factory(window.jQuery);
|
|
31
|
+
}
|
|
32
|
+
}(function ($) {
|
|
33
|
+
/**
|
|
34
|
+
* Ukrainian
|
|
35
|
+
*/
|
|
36
|
+
|
|
37
|
+
$.FE.LANGUAGE['uk'] = {
|
|
38
|
+
translation: {
|
|
39
|
+
// Place holder
|
|
40
|
+
"Type something": "\u041d\u0430\u043f\u0438\u0448\u0456\u0442\u044c \u0431\u0443\u0434\u044c-\u0449\u043e",
|
|
41
|
+
|
|
42
|
+
// Basic formatting
|
|
43
|
+
"Bold": "\u0416\u0438\u0440\u043d\u0438\u0439",
|
|
44
|
+
"Italic": "\u041a\u0443\u0440\u0441\u0438\u0432",
|
|
45
|
+
"Underline": "\u041f\u0456\u0434\u043a\u0440\u0435\u0441\u043b\u0435\u043d\u0438\u0439",
|
|
46
|
+
"Strikethrough": "\u0417\u0430\u043a\u0440\u0435\u0441\u043b\u0435\u043d\u0438\u0439",
|
|
47
|
+
|
|
48
|
+
// Main buttons
|
|
49
|
+
"Insert": "\u0432\u0441\u0442\u0430\u0432\u0438\u0442\u0438",
|
|
50
|
+
"Delete": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438",
|
|
51
|
+
"Cancel": "\u0421\u043a\u0430\u0441\u0443\u0432\u0430\u0442\u0438",
|
|
52
|
+
"OK": "OK",
|
|
53
|
+
"Back": "\u043d\u0430\u0437\u0430\u0434",
|
|
54
|
+
"Remove": "\u0432\u0438\u0434\u0430\u043b\u0438\u0442\u0438",
|
|
55
|
+
"More": "\u0431\u0456\u043b\u044c\u0448\u0435",
|
|
56
|
+
"Update": "\u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f",
|
|
57
|
+
"Style": "\u0441\u0442\u0438\u043b\u044c",
|
|
58
|
+
|
|
59
|
+
// Font
|
|
60
|
+
"Font Family": "\u0428\u0440\u0438\u0444\u0442",
|
|
61
|
+
"Font Size": "\u0420\u043e\u0437\u043c\u0456\u0440 \u0448\u0440\u0438\u0444\u0442\u0443",
|
|
62
|
+
|
|
63
|
+
// Colors
|
|
64
|
+
"Colors": "\u043a\u043e\u043b\u044c\u043e\u0440\u0438",
|
|
65
|
+
"Background": "\u0424\u043e\u043d",
|
|
66
|
+
"Text": "\u0422\u0435\u043a\u0441\u0442",
|
|
67
|
+
"HEX Color": "Шістнадцятковий колір",
|
|
68
|
+
|
|
69
|
+
// Paragraphs
|
|
70
|
+
"Paragraph Format": "\u0424\u043e\u0440\u043c\u0430\u0442",
|
|
71
|
+
"Normal": "\u041d\u043e\u0440\u043c\u0430\u043b\u044c\u043d\u0438\u0439",
|
|
72
|
+
"Code": "\u041a\u043e\u0434",
|
|
73
|
+
"Heading 1": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 1",
|
|
74
|
+
"Heading 2": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 2",
|
|
75
|
+
"Heading 3": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 3",
|
|
76
|
+
"Heading 4": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 4",
|
|
77
|
+
|
|
78
|
+
// Style
|
|
79
|
+
"Paragraph Style": "\u043f\u0443\u043d\u043a\u0442 \u0441\u0442\u0438\u043b\u044c",
|
|
80
|
+
"Inline Style": "\u0432\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0438\u0439 \u0441\u0442\u0438\u043b\u044c",
|
|
81
|
+
|
|
82
|
+
// Alignment
|
|
83
|
+
"Align": "\u0412\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f",
|
|
84
|
+
"Align Left": "\u041f\u043e \u043b\u0456\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
|
|
85
|
+
"Align Center": "\u041f\u043e \u0446\u0435\u043d\u0442\u0440\u0443",
|
|
86
|
+
"Align Right": "\u041f\u043e \u043f\u0440\u0430\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
|
|
87
|
+
"Align Justify": "\u041f\u043e \u0448\u0438\u0440\u0438\u043d\u0456",
|
|
88
|
+
"None": "\u043d\u0456",
|
|
89
|
+
|
|
90
|
+
// Lists
|
|
91
|
+
"Ordered List": "\u041d\u0443\u043c\u0435\u0440\u043e\u0432\u0430\u043d\u0438\u0439 \u0441\u043f\u0438\u0441\u043e\u043a",
|
|
92
|
+
"Unordered List": "\u041c\u0430\u0440\u043a\u043e\u0432\u0430\u043d\u0438\u0439 \u0441\u043f\u0438\u0441\u043e\u043a",
|
|
93
|
+
|
|
94
|
+
// Indent
|
|
95
|
+
"Decrease Indent": "\u0417\u043c\u0435\u043d\u0448\u0438\u0442\u0438 \u0432\u0456\u0434\u0441\u0442\u0443\u043f",
|
|
96
|
+
"Increase Indent": "\u0417\u0431\u0456\u043b\u044c\u0448\u0438\u0442\u0438 \u0432\u0456\u0434\u0441\u0442\u0443\u043f",
|
|
97
|
+
|
|
98
|
+
// Links
|
|
99
|
+
"Insert Link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f",
|
|
100
|
+
"Open in new tab": "\u0412\u0456\u0434\u043a\u0440\u0438\u0442\u0438 \u0432 \u043d\u043e\u0432\u0456\u0439 \u0432\u043a\u043b\u0430\u0434\u0446\u0456",
|
|
101
|
+
"Open Link": "\u0432\u0456\u0434\u043a\u0440\u0438\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f",
|
|
102
|
+
"Edit Link": "\u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f",
|
|
103
|
+
"Unlink": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f",
|
|
104
|
+
"Choose Link": "\u0412\u0438\u0431\u0435\u0440\u0456\u0442\u044c \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f",
|
|
105
|
+
|
|
106
|
+
// Images
|
|
107
|
+
"Insert Image": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
|
108
|
+
"Upload Image": "\u0417\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0438\u0442\u0438 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
|
109
|
+
"By URL": "\u0437\u0430 URL",
|
|
110
|
+
"Browse": "\u043f\u0435\u0440\u0435\u0433\u043b\u044f\u0434\u0430\u0442\u0438",
|
|
111
|
+
"Drop image": "\u041f\u0435\u0440\u0435\u043c\u0456\u0441\u0442\u0456\u0442\u044c \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f \u0441\u044e\u0434\u0438",
|
|
112
|
+
"or click": "\u0430\u0431\u043e \u043d\u0430\u0442\u0438\u0441\u043d\u0456\u0442\u044c",
|
|
113
|
+
"Manage Images": "\u041a\u0435\u0440\u0443\u0432\u0430\u043d\u043d\u044f \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f\u043c\u0438",
|
|
114
|
+
"Loading": "\u0417\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f",
|
|
115
|
+
"Deleting": "\u0432\u0438\u0434\u0430\u043b\u0435\u043d\u043d\u044f",
|
|
116
|
+
"Tags": "\u043a\u043b\u044e\u0447\u043e\u0432\u0456 \u0441\u043b\u043e\u0432\u0430",
|
|
117
|
+
"Are you sure? Image will be deleted.": "\u0412\u0438 \u0432\u043f\u0435\u0432\u043d\u0435\u043d\u0456? \u0417\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f \u0431\u0443\u0434\u0435 \u0432\u0438\u0434\u0430\u043b\u0435\u043d\u043e.",
|
|
118
|
+
"Replace": "\u0437\u0430\u043c\u0456\u043d\u044e\u0432\u0430\u0442\u0438",
|
|
119
|
+
"Uploading": "\u0417\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f",
|
|
120
|
+
"Loading image": "\u0417\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u044c",
|
|
121
|
+
"Display": "\u0434\u0438\u0441\u043f\u043b\u0435\u0439",
|
|
122
|
+
"Inline": "\u0412 \u043b\u0456\u043d\u0456\u044e",
|
|
123
|
+
"Break Text": "\u043f\u0435\u0440\u0435\u0440\u0432\u0430 \u0442\u0435\u043a\u0441\u0442",
|
|
124
|
+
"Alternate Text": "\u0430\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u043d\u0438\u0439 \u0442\u0435\u043a\u0441\u0442",
|
|
125
|
+
"Change Size": "\u0437\u043c\u0456\u043d\u0438\u0442\u0438 \u0440\u043e\u0437\u043c\u0456\u0440",
|
|
126
|
+
"Width": "\u0428\u0438\u0440\u0438\u043d\u0430",
|
|
127
|
+
"Height": "\u0412\u0438\u0441\u043e\u0442\u0430",
|
|
128
|
+
"Something went wrong. Please try again.": "\u0429\u043e\u0441\u044c \u043f\u0456\u0448\u043b\u043e \u043d\u0435 \u0442\u0430\u043a. \u0411\u0443\u0434\u044c \u043b\u0430\u0441\u043a\u0430 \u0441\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0449\u0435 \u0440\u0430\u0437.",
|
|
129
|
+
"Image Caption": "Заголовок зображення",
|
|
130
|
+
"Advanced Edit": "Розширений редагування",
|
|
131
|
+
|
|
132
|
+
// Video
|
|
133
|
+
"Insert Video": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0432\u0456\u0434\u0435\u043e",
|
|
134
|
+
"Embedded Code": "\u0432\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0438\u0439 \u043a\u043e\u0434",
|
|
135
|
+
"Paste in a video URL": "Вставте в відео-URL",
|
|
136
|
+
"Drop video": "Перетягніть відео",
|
|
137
|
+
"Your browser does not support HTML5 video.": "Ваш браузер не підтримує відео html5.",
|
|
138
|
+
"Upload Video": "Завантажити відео",
|
|
139
|
+
|
|
140
|
+
// Tables
|
|
141
|
+
"Insert Table": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0442\u0430\u0431\u043b\u0438\u0446\u044e",
|
|
142
|
+
"Table Header": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a \u0442\u0430\u0431\u043b\u0438\u0446\u0456",
|
|
143
|
+
"Remove Table": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0442\u0430\u0431\u043b\u0438\u0446\u0456",
|
|
144
|
+
"Table Style": "\u0421\u0442\u0438\u043b\u044c \u0442\u0430\u0431\u043b\u0438\u0446\u0456",
|
|
145
|
+
"Horizontal Align": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0435 \u0432\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f",
|
|
146
|
+
"Row": "\u0420\u044f\u0434\u043e\u043a",
|
|
147
|
+
"Insert row above": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043f\u043e\u0440\u043e\u0436\u043d\u0456\u0439 \u0440\u044f\u0434\u043e\u043a \u0437\u0432\u0435\u0440\u0445\u0443",
|
|
148
|
+
"Insert row below": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043f\u043e\u0440\u043e\u0436\u043d\u0456\u0439 \u0440\u044f\u0434\u043e\u043a \u0437\u043d\u0438\u0437\u0443",
|
|
149
|
+
"Delete row": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0440\u044f\u0434\u043e\u043a",
|
|
150
|
+
"Column": "\u0421\u0442\u043e\u0432\u043f\u0435\u0446\u044c",
|
|
151
|
+
"Insert column before": "\u0414\u043e\u0434\u0430\u0442\u0438 \u0441\u0442\u043e\u0432\u043f\u0435\u0446\u044c \u043b\u0456\u0432\u043e\u0440\u0443\u0447",
|
|
152
|
+
"Insert column after": "\u0414\u043e\u0434\u0430\u0442\u0438 \u0441\u0442\u043e\u0432\u043f\u0435\u0446\u044c \u043f\u0440\u0430\u0432\u043e\u0440\u0443\u0447",
|
|
153
|
+
"Delete column": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0441\u0442\u043e\u0432\u043f\u0435\u0446\u044c",
|
|
154
|
+
"Cell": "\u041a\u043e\u043c\u0456\u0440\u043a\u0430",
|
|
155
|
+
"Merge cells": "\u041e\u0431'\u0454\u0434\u043d\u0430\u0442\u0438 \u043a\u043e\u043c\u0456\u0440\u043a\u0438",
|
|
156
|
+
"Horizontal split": "\u0420\u043e\u0437\u0434\u0456\u043b\u0438\u0442\u0438 \u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u043e",
|
|
157
|
+
"Vertical split": "\u0420\u043e\u0437\u0434\u0456\u043b\u0438\u0442\u0438 \u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u043e",
|
|
158
|
+
"Cell Background": "\u0441\u0442\u0456\u043b\u044c\u043d\u0438\u043a\u043e\u0432\u0438\u0439 \u0444\u043e\u043d",
|
|
159
|
+
"Vertical Align": "\u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u0430 \u0432\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f",
|
|
160
|
+
"Top": "\u0422\u043e\u043f",
|
|
161
|
+
"Middle": "\u0441\u0435\u0440\u0435\u0434\u043d\u0456\u0439",
|
|
162
|
+
"Bottom": "\u0434\u043d\u043e",
|
|
163
|
+
"Align Top": "\u0417\u0456\u0441\u0442\u0430\u0432\u0442\u0435 \u0432\u0435\u0440\u0445\u043d\u044e",
|
|
164
|
+
"Align Middle": "\u0432\u0438\u0440\u0456\u0432\u043d\u044f\u0442\u0438 \u043f\u043e \u0441\u0435\u0440\u0435\u0434\u0438\u043d\u0456",
|
|
165
|
+
"Align Bottom": "\u0417\u0456\u0441\u0442\u0430\u0432\u0442\u0435 \u043d\u0438\u0436\u043d\u044e",
|
|
166
|
+
"Cell Style": "\u0441\u0442\u0438\u043b\u044c \u043a\u043e\u043c\u0456\u0440\u043a\u0438",
|
|
167
|
+
|
|
168
|
+
// Files
|
|
169
|
+
"Upload File": "\u0417\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0438\u0442\u0438 \u0444\u0430\u0439\u043b",
|
|
170
|
+
"Drop file": "\u041f\u0435\u0440\u0435\u043c\u0456\u0441\u0442\u0456\u0442\u044c \u0444\u0430\u0439\u043b \u0441\u044e\u0434\u0438",
|
|
171
|
+
|
|
172
|
+
// Emoticons
|
|
173
|
+
"Emoticons": "\u0441\u043c\u0430\u0439\u043b\u0438",
|
|
174
|
+
"Grinning face": "\u043f\u043e\u0441\u043c\u0456\u0445\u043d\u0443\u0432\u0448\u0438\u0441\u044c \u043e\u0441\u043e\u0431\u0430",
|
|
175
|
+
"Grinning face with smiling eyes": "\u041f\u043e\u0441\u043c\u0456\u0445\u043d\u0443\u0432\u0448\u0438\u0441\u044c \u043e\u0441\u043e\u0431\u0430 \u0437 \u0443\u0441\u043c\u0456\u0445\u043d\u0435\u043d\u0438\u043c\u0438 \u043e\u0447\u0438\u043c\u0430",
|
|
176
|
+
"Face with tears of joy": "\u041e\u0431\u043b\u0438\u0447\u0447\u044f \u0437\u0456 \u0441\u043b\u044c\u043e\u0437\u0430\u043c\u0438 \u0440\u0430\u0434\u043e\u0441\u0442\u0456",
|
|
177
|
+
"Smiling face with open mouth": "\u0423\u0441\u043c\u0456\u0445\u043d\u0435\u043d\u0435 \u043e\u0431\u043b\u0438\u0447\u0447\u044f \u0437 \u0432\u0456\u0434\u043a\u0440\u0438\u0442\u0438\u043c \u0440\u043e\u0442\u043e\u043c",
|
|
178
|
+
"Smiling face with open mouth and smiling eyes": "\u041f\u043e\u0441\u043c\u0456\u0445\u0430\u044e\u0447\u0438\u0441\u044c \u043e\u0441\u043e\u0431\u0430 \u0437 \u0432\u0456\u0434\u043a\u0440\u0438\u0442\u0438\u043c \u0440\u043e\u0442\u043e\u043c \u0456 ",
|
|
179
|
+
"Smiling face with open mouth and cold sweat": "\u041f\u043e\u0441\u043c\u0456\u0445\u0430\u044e\u0447\u0438\u0441\u044c \u043e\u0441\u043e\u0431\u0430 \u0437 \u0432\u0456\u0434\u043a\u0440\u0438\u0442\u0438\u043c \u0440\u043e\u0442\u043e\u043c \u0456 ",
|
|
180
|
+
"Smiling face with open mouth and tightly-closed eyes": "\u041f\u043e\u0441\u043c\u0456\u0445\u0430\u044e\u0447\u0438\u0441\u044c \u043e\u0441\u043e\u0431\u0430 \u0437 \u0432\u0456\u0434\u043a\u0440\u0438\u0442\u0438\u043c \u0440\u043e\u0442\u043e\u043c \u0456 \u0449\u0456\u043b\u044c\u043d\u043e \u0437\u0430\u043a\u0440\u0438\u0442\u0438\u043c\u0438 \u043e\u0447\u0438\u043c\u0430",
|
|
181
|
+
"Smiling face with halo": "\u041f\u043e\u0441\u043c\u0456\u0445\u0430\u044e\u0447\u0438\u0441\u044c \u043e\u0441\u043e\u0431\u0430 \u0433\u0430\u043b\u043e",
|
|
182
|
+
"Smiling face with horns": "\u041f\u043e\u0441\u043c\u0456\u0445\u0430\u044e\u0447\u0438\u0441\u044c \u043e\u0441\u043e\u0431\u0430 \u0437 \u0440\u043e\u0433\u0430\u043c\u0438",
|
|
183
|
+
"Winking face": "\u043f\u0456\u0434\u043c\u043e\u0440\u0433\u0443\u044e\u0447\u0438 \u043e\u0441\u043e\u0431\u0430",
|
|
184
|
+
"Smiling face with smiling eyes": "\u041f\u043e\u0441\u043c\u0456\u0445\u0430\u044e\u0447\u0438\u0441\u044c \u043e\u0441\u043e\u0431\u0430 \u0437 \u0443\u0441\u043c\u0456\u0445\u043d\u0435\u043d\u0438\u043c\u0438 \u043e\u0447\u0438\u043c\u0430",
|
|
185
|
+
"Face savoring delicious food": "\u041e\u0441\u043e\u0431\u0430 \u0441\u043c\u0430\u043a\u0443\u044e\u0447\u0438 \u0441\u043c\u0430\u0447\u043d\u0443 \u0457\u0436\u0443",
|
|
186
|
+
"Relieved face": "\u0437\u0432\u0456\u043b\u044c\u043d\u0435\u043d\u043e \u043e\u0441\u043e\u0431\u0430",
|
|
187
|
+
"Smiling face with heart-shaped eyes": "\u041f\u043e\u0441\u043c\u0456\u0445\u0430\u044e\u0447\u0438\u0441\u044c \u043e\u0441\u043e\u0431\u0430 \u0443 \u0444\u043e\u0440\u043c\u0456 \u0441\u0435\u0440\u0446\u044f \u043e\u0447\u0438\u043c\u0430",
|
|
188
|
+
"Smiling face with sunglasses": "\u0053\u006d\u0069\u006c\u0069\u006e\u0067 \u0066\u0061\u0063\u0065 \u0077\u0069\u0074\u0068 \u0073\u0075\u006e\u0067\u006c\u0061\u0073\u0073\u0065\u0073",
|
|
189
|
+
"Smirking face": "\u043f\u043e\u0441\u043c\u0456\u0445\u043d\u0443\u0432\u0448\u0438\u0441\u044c \u043e\u0441\u043e\u0431\u0430",
|
|
190
|
+
"Neutral face": "\u0437\u0432\u0438\u0447\u0430\u0439\u043d\u0438\u0439 \u043e\u0441\u043e\u0431\u0430",
|
|
191
|
+
"Expressionless face": "\u043d\u0435\u0432\u0438\u0440\u0430\u0437\u043d\u0456 \u043e\u0431\u043b\u0438\u0447\u0447\u044f",
|
|
192
|
+
"Unamused face": "\u0055\u006e\u0061\u006d\u0075\u0073\u0065\u0064 \u043e\u0441\u043e\u0431\u0430",
|
|
193
|
+
"Face with cold sweat": "\u041e\u0441\u043e\u0431\u0430 \u0437 \u0445\u043e\u043b\u043e\u0434\u043d\u043e\u0433\u043e \u043f\u043e\u0442\u0443",
|
|
194
|
+
"Pensive face": "\u0437\u0430\u043c\u0438\u0441\u043b\u0435\u043d\u0438\u0439 \u043e\u0441\u043e\u0431\u0430",
|
|
195
|
+
"Confused face": "\u043f\u043b\u0443\u0442\u0430\u0442\u0438 \u043e\u0441\u043e\u0431\u0430",
|
|
196
|
+
"Confounded face": "\u043d\u0435\u0445\u0430\u0439 \u043f\u043e\u0441\u043e\u0440\u043e\u043c\u043b\u044f\u0442\u044c\u0441\u044f \u043e\u0441\u043e\u0431\u0430",
|
|
197
|
+
"Kissing face": "\u043f\u043e\u0446\u0456\u043b\u0443\u043d\u043a\u0438 \u043e\u0441\u043e\u0431\u0430",
|
|
198
|
+
"Face throwing a kiss": "\u041e\u0441\u043e\u0431\u0430 \u043a\u0438\u0434\u0430\u043b\u0438 \u043f\u043e\u0446\u0456\u043b\u0443\u043d\u043e\u043a",
|
|
199
|
+
"Kissing face with smiling eyes": "\u041f\u043e\u0446\u0456\u043b\u0443\u043d\u043a\u0438 \u043e\u0441\u043e\u0431\u0430 \u0437 \u0443\u0441\u043c\u0456\u0445\u043d\u0435\u043d\u0438\u043c\u0438 \u043e\u0447\u0438\u043c\u0430",
|
|
200
|
+
"Kissing face with closed eyes": "\u041f\u043e\u0446\u0456\u043b\u0443\u043d\u043a\u0438 \u043e\u0431\u043b\u0438\u0447\u0447\u044f \u0437 \u0437\u0430\u043f\u043b\u044e\u0449\u0435\u043d\u0438\u043c\u0438 \u043e\u0447\u0438\u043c\u0430",
|
|
201
|
+
"Face with stuck out tongue": "\u041e\u0431\u043b\u0438\u0447\u0447\u044f \u0437 \u0441\u0442\u0438\u0440\u0447\u0430\u043b\u0438 \u044f\u0437\u0438\u043a",
|
|
202
|
+
"Face with stuck out tongue and winking eye": "\u041e\u0431\u043b\u0438\u0447\u0447\u044f \u0437 \u0441\u0442\u0438\u0440\u0447\u0430\u043b\u0438 \u044f\u0437\u0438\u043a\u0430 \u0456 \u0410\u043d\u0456\u043c\u043e\u0432\u0430\u043d\u0435 \u043e\u0447\u0435\u0439",
|
|
203
|
+
"Face with stuck out tongue and tightly-closed eyes": "\u041e\u0431\u043b\u0438\u0447\u0447\u044f \u0437 \u0441\u0442\u0438\u0440\u0447\u0430\u043b\u0438 \u044f\u0437\u0438\u043a\u0430 \u0456 \u0449\u0456\u043b\u044c\u043d\u043e \u0437\u0430\u043a\u0440\u0438\u0442\u0456 \u043e\u0447\u0456",
|
|
204
|
+
"Disappointed face": "\u0440\u043e\u0437\u0447\u0430\u0440\u043e\u0432\u0430\u043d\u0438\u0439 \u043e\u0441\u043e\u0431\u0430",
|
|
205
|
+
"Worried face": "\u0441\u0442\u0443\u0440\u0431\u043e\u0432\u0430\u043d\u0438\u0439 \u043e\u0441\u043e\u0431\u0430",
|
|
206
|
+
"Angry face": "\u0437\u043b\u0438\u0439 \u043e\u0441\u043e\u0431\u0430",
|
|
207
|
+
"Pouting face": "\u043f\u0443\u0445\u043a\u0456 \u043e\u0441\u043e\u0431\u0430",
|
|
208
|
+
"Crying face": "\u043f\u043b\u0430\u0447 \u043e\u0441\u043e\u0431\u0430",
|
|
209
|
+
"Persevering face": "\u043d\u0430\u043f\u043e\u043b\u0435\u0433\u043b\u0438\u0432\u0430 \u043e\u0441\u043e\u0431\u0430",
|
|
210
|
+
"Face with look of triumph": "\u041e\u0441\u043e\u0431\u0430 \u0437 \u0432\u0438\u0434\u043e\u043c \u0442\u0440\u0456\u0443\u043c\u0444\u0443",
|
|
211
|
+
"Disappointed but relieved face": "\u0420\u043e\u0437\u0447\u0430\u0440\u043e\u0432\u0430\u043d\u0438\u0439\u002c \u0430\u043b\u0435 \u0437\u0432\u0456\u043b\u044c\u043d\u0435\u043d\u0438\u0439 \u043e\u0441\u043e\u0431\u0430",
|
|
212
|
+
"Frowning face with open mouth": "\u041d\u0430\u0441\u0443\u043f\u0438\u0432\u0448\u0438\u0441\u044c \u043e\u0441\u043e\u0431\u0430 \u0437 \u0432\u0456\u0434\u043a\u0440\u0438\u0442\u0438\u043c \u0440\u043e\u0442\u043e\u043c",
|
|
213
|
+
"Anguished face": "\u0431\u043e\u043b\u0456\u0441\u043d\u0438\u0439 \u043e\u0441\u043e\u0431\u0430",
|
|
214
|
+
"Fearful face": "\u043f\u043e\u0431\u043e\u044e\u044e\u0447\u0438\u0441\u044c \u043e\u0441\u043e\u0431\u0430",
|
|
215
|
+
"Weary face": "\u0432\u0442\u043e\u043c\u043b\u0435\u043d\u0438\u0439 \u043e\u0441\u043e\u0431\u0430",
|
|
216
|
+
"Sleepy face": "сонне обличчя",
|
|
217
|
+
"Tired face": "\u0432\u0442\u043e\u043c\u0438\u043b\u0438\u0441\u044f \u043e\u0441\u043e\u0431\u0430",
|
|
218
|
+
"Grimacing face": "\u0433\u0440\u0438\u043c\u0430\u0441\u0443\u044e\u0447\u0438 \u043e\u0441\u043e\u0431\u0430",
|
|
219
|
+
"Loudly crying face": "\u004c\u006f\u0075\u0064\u006c\u0079 \u0063\u0072\u0079\u0069\u006e\u0067 \u0066\u0061\u0063\u0065",
|
|
220
|
+
"Face with open mouth": "\u041e\u0441\u043e\u0431\u0430 \u0437 \u0432\u0456\u0434\u043a\u0440\u0438\u0442\u0438\u043c \u0440\u043e\u0442\u043e\u043c",
|
|
221
|
+
"Hushed face": "\u0437\u0430\u0442\u0438\u0445 \u043e\u0441\u043e\u0431\u0430",
|
|
222
|
+
"Face with open mouth and cold sweat": "\u041e\u0441\u043e\u0431\u0430 \u0437 \u0432\u0456\u0434\u043a\u0440\u0438\u0442\u0438\u043c \u0440\u043e\u0442\u043e\u043c \u0456 \u0445\u043e\u043b\u043e\u0434\u043d\u0438\u0439 \u043f\u0456\u0442",
|
|
223
|
+
"Face screaming in fear": "\u041e\u0441\u043e\u0431\u0430 \u043a\u0440\u0438\u0447\u0430\u0442\u0438 \u0432 \u0441\u0442\u0440\u0430\u0445\u0443",
|
|
224
|
+
"Astonished face": "\u0437\u0434\u0438\u0432\u043e\u0432\u0430\u043d\u0438\u0439 \u043e\u0441\u043e\u0431\u0430",
|
|
225
|
+
"Flushed face": "\u043f\u0440\u0438\u043f\u043b\u0438\u0432 \u043a\u0440\u043e\u0432\u0456 \u0434\u043e \u043e\u0431\u043b\u0438\u0447\u0447\u044f",
|
|
226
|
+
"Sleeping face": "\u0421\u043f\u043b\u044f\u0447\u0430 \u043e\u0441\u043e\u0431\u0430",
|
|
227
|
+
"Dizzy face": "\u0414\u0456\u0437\u0437\u0456 \u043e\u0441\u043e\u0431\u0430",
|
|
228
|
+
"Face without mouth": "\u041e\u0441\u043e\u0431\u0430 \u0431\u0435\u0437 \u0440\u043e\u0442\u0430",
|
|
229
|
+
"Face with medical mask": "\u041e\u0441\u043e\u0431\u0430 \u0437 \u043c\u0435\u0434\u0438\u0447\u043d\u043e\u044e \u043c\u0430\u0441\u043a\u043e\u044e",
|
|
230
|
+
|
|
231
|
+
// Line breaker
|
|
232
|
+
"Break": "\u0437\u043b\u043e\u043c\u0438\u0442\u0438",
|
|
233
|
+
|
|
234
|
+
// Math
|
|
235
|
+
"Subscript": "\u043f\u0456\u0434\u0440\u044f\u0434\u043a\u043e\u0432\u0438\u0439",
|
|
236
|
+
"Superscript": "\u043d\u0430\u0434\u0440\u044f\u0434\u043a\u043e\u0432\u0438\u0439 \u0441\u0438\u043c\u0432\u043e\u043b",
|
|
237
|
+
|
|
238
|
+
// Full screen
|
|
239
|
+
"Fullscreen": "\u043f\u043e\u0432\u043d\u043e\u0435\u043a\u0440\u0430\u043d\u043d\u0438\u0439 \u0440\u0435\u0436\u0438\u043c",
|
|
240
|
+
|
|
241
|
+
// Horizontal line
|
|
242
|
+
"Insert Horizontal Line": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0443 \u043b\u0456\u043d\u0456\u044e",
|
|
243
|
+
|
|
244
|
+
// Clear formatting
|
|
245
|
+
"Clear Formatting": "\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u0438 \u0444\u043e\u0440\u043c\u0430\u0442\u0443\u0432\u0430\u043d\u043d\u044f",
|
|
246
|
+
|
|
247
|
+
// Undo, redo
|
|
248
|
+
"Undo": "\u0421\u043a\u0430\u0441\u0443\u0432\u0430\u0442\u0438",
|
|
249
|
+
"Redo": "\u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0438",
|
|
250
|
+
|
|
251
|
+
// Select all
|
|
252
|
+
"Select All": "\u0412\u0438\u0431\u0440\u0430\u0442\u0438 \u0432\u0441\u0435",
|
|
253
|
+
|
|
254
|
+
// Code view
|
|
255
|
+
"Code View": "\u041f\u0435\u0440\u0435\u0433\u043b\u044f\u0434 \u043a\u043e\u0434\u0443",
|
|
256
|
+
|
|
257
|
+
// Quote
|
|
258
|
+
"Quote": "\u0426\u0438\u0442\u0430\u0442\u0430",
|
|
259
|
+
"Increase": "\u0417\u0431\u0456\u043b\u044c\u0448\u0438\u0442\u0438",
|
|
260
|
+
"Decrease": "\u0437\u043d\u0438\u0436\u0435\u043d\u043d\u044f",
|
|
261
|
+
|
|
262
|
+
// Quick Insert
|
|
263
|
+
"Quick Insert": "\u0428\u0432\u0438\u0434\u043a\u0438\u0439 \u0432\u0441\u0442\u0430\u0432\u043a\u0430",
|
|
264
|
+
|
|
265
|
+
// Spcial Characters
|
|
266
|
+
"Special Characters": "Спеціальні символи",
|
|
267
|
+
"Latin": "Латинський",
|
|
268
|
+
"Greek": "Грецький",
|
|
269
|
+
"Cyrillic": "Кирилиця",
|
|
270
|
+
"Punctuation": "Пунктуація",
|
|
271
|
+
"Currency": "Валюта",
|
|
272
|
+
"Arrows": "Стріли",
|
|
273
|
+
"Math": "Математика",
|
|
274
|
+
"Misc": "Різне",
|
|
275
|
+
|
|
276
|
+
// Print.
|
|
277
|
+
"Print": "Друкувати",
|
|
278
|
+
|
|
279
|
+
// Spell Checker.
|
|
280
|
+
"Spell Checker": "Перевірка орфографії",
|
|
281
|
+
|
|
282
|
+
// Help
|
|
283
|
+
"Help": "Допомогти",
|
|
284
|
+
"Shortcuts": "Ярлики",
|
|
285
|
+
"Inline Editor": "Вбудований редактор",
|
|
286
|
+
"Show the editor": "Показати редактору",
|
|
287
|
+
"Common actions": "Спільні дії",
|
|
288
|
+
"Copy": "Скопіювати",
|
|
289
|
+
"Cut": "Вирізати",
|
|
290
|
+
"Paste": "Вставити",
|
|
291
|
+
"Basic Formatting": "Основне форматування",
|
|
292
|
+
"Increase quote level": "Збільшити рівень цитування",
|
|
293
|
+
"Decrease quote level": "Знизити рівень цитування",
|
|
294
|
+
"Image / Video": "Зображення / відео",
|
|
295
|
+
"Resize larger": "Змінити розмір більше",
|
|
296
|
+
"Resize smaller": "Змінити розмір менше",
|
|
297
|
+
"Table": "Стіл",
|
|
298
|
+
"Select table cell": "Виберіть комірку таблиці",
|
|
299
|
+
"Extend selection one cell": "Продовжити виділення однієї комірки",
|
|
300
|
+
"Extend selection one row": "Продовжити виділення одного рядка",
|
|
301
|
+
"Navigation": "Навігація",
|
|
302
|
+
"Focus popup / toolbar": "Фокус спливаюче / панель інструментів",
|
|
303
|
+
"Return focus to previous position": "Поверніть фокус на попередню позицію",
|
|
304
|
+
|
|
305
|
+
// Embed.ly
|
|
306
|
+
"Embed URL": "Вставити URL-адресу",
|
|
307
|
+
"Paste in a URL to embed": "Вставте в url, щоб вставити",
|
|
308
|
+
|
|
309
|
+
// Word Paste.
|
|
310
|
+
"The pasted content is coming from a Microsoft Word document. Do you want to keep the format or clean it up?": "Вставлений вміст надходить з документу Microsoft Word. ви хочете зберегти формат чи очистити його?",
|
|
311
|
+
"Keep": "Тримати",
|
|
312
|
+
"Clean": "Чистий",
|
|
313
|
+
"Word Paste Detected": "Слово паста виявлено"
|
|
314
|
+
},
|
|
315
|
+
direction: "ltr"
|
|
316
|
+
};
|
|
317
|
+
|
|
318
|
+
}));
|