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
|
+
* Spanish
|
|
35
|
+
*/
|
|
36
|
+
|
|
37
|
+
$.FE.LANGUAGE['es'] = {
|
|
38
|
+
translation: {
|
|
39
|
+
// Place holder
|
|
40
|
+
"Type something": "Escriba algo",
|
|
41
|
+
|
|
42
|
+
// Basic formatting
|
|
43
|
+
"Bold": "Negrita",
|
|
44
|
+
"Italic": "It\u00e1lica",
|
|
45
|
+
"Underline": "Subrayado",
|
|
46
|
+
"Strikethrough": "Tachado",
|
|
47
|
+
|
|
48
|
+
// Main buttons
|
|
49
|
+
"Insert": "Insertar",
|
|
50
|
+
"Delete": "Borrar",
|
|
51
|
+
"Cancel": "Cancelar",
|
|
52
|
+
"OK": "Ok",
|
|
53
|
+
"Back": "Atr\u00e1s",
|
|
54
|
+
"Remove": "Quitar",
|
|
55
|
+
"More": "M\u00e1s",
|
|
56
|
+
"Update": "Actualizaci\u00f3n",
|
|
57
|
+
"Style": "Estilo",
|
|
58
|
+
|
|
59
|
+
// Font
|
|
60
|
+
"Font Family": "Familia de fuentes",
|
|
61
|
+
"Font Size": "Tama\u00f1o de fuente",
|
|
62
|
+
|
|
63
|
+
// Colors
|
|
64
|
+
"Colors": "Colores",
|
|
65
|
+
"Background": "Fondo",
|
|
66
|
+
"Text": "Texto",
|
|
67
|
+
"HEX Color": "Color hexadecimal",
|
|
68
|
+
|
|
69
|
+
// Paragraphs
|
|
70
|
+
"Paragraph Format": "Formato de p\u00e1rrafo",
|
|
71
|
+
"Normal": "Normal",
|
|
72
|
+
"Code": "C\u00f3digo",
|
|
73
|
+
"Heading 1": "Encabezado 1",
|
|
74
|
+
"Heading 2": "Encabezado 2",
|
|
75
|
+
"Heading 3": "Encabezado 3",
|
|
76
|
+
"Heading 4": "Encabezado 4",
|
|
77
|
+
|
|
78
|
+
// Style
|
|
79
|
+
"Paragraph Style": "Estilo de p\u00e1rrafo",
|
|
80
|
+
"Inline Style": "Estilo en l\u00ednea",
|
|
81
|
+
|
|
82
|
+
// Alignment
|
|
83
|
+
"Align": "Alinear",
|
|
84
|
+
"Align Left": "Alinear a la izquierda",
|
|
85
|
+
"Align Center": "Alinear al centro",
|
|
86
|
+
"Align Right": "Alinear a la derecha",
|
|
87
|
+
"Align Justify": "Justificar",
|
|
88
|
+
"None": "Ninguno",
|
|
89
|
+
|
|
90
|
+
// Lists
|
|
91
|
+
"Ordered List": "Lista ordenada",
|
|
92
|
+
"Unordered List": "Lista desordenada",
|
|
93
|
+
|
|
94
|
+
// Indent
|
|
95
|
+
"Decrease Indent": "Reducir sangr\u00eda",
|
|
96
|
+
"Increase Indent": "Aumentar sangr\u00eda",
|
|
97
|
+
|
|
98
|
+
// Links
|
|
99
|
+
"Insert Link": "Insertar enlace",
|
|
100
|
+
"Open in new tab": "Abrir en una nueva pesta\u00F1a",
|
|
101
|
+
"Open Link": "Abrir enlace",
|
|
102
|
+
"Edit Link": "Editar enlace",
|
|
103
|
+
"Unlink": "Quitar enlace",
|
|
104
|
+
"Choose Link": "Elegir enlace",
|
|
105
|
+
|
|
106
|
+
// Images
|
|
107
|
+
"Insert Image": "Insertar imagen",
|
|
108
|
+
"Upload Image": "Cargar imagen",
|
|
109
|
+
"By URL": "Por URL",
|
|
110
|
+
"Browse": "Examinar",
|
|
111
|
+
"Drop image": "Soltar la imagen",
|
|
112
|
+
"or click": "o haga clic en",
|
|
113
|
+
"Manage Images": "Administrar im\u00e1genes",
|
|
114
|
+
"Loading": "Cargando",
|
|
115
|
+
"Deleting": "Borrado",
|
|
116
|
+
"Tags": "Etiquetas",
|
|
117
|
+
"Are you sure? Image will be deleted.": "\u00bfEst\u00e1 seguro? Imagen ser\u00e1 borrada.",
|
|
118
|
+
"Replace": "Reemplazar",
|
|
119
|
+
"Uploading": "Carga",
|
|
120
|
+
"Loading image": "Cargando imagen",
|
|
121
|
+
"Display": "Mostrar",
|
|
122
|
+
"Inline": "En l\u00ednea",
|
|
123
|
+
"Break Text": "Romper texto",
|
|
124
|
+
"Alternate Text": "Texto alternativo",
|
|
125
|
+
"Change Size": "Cambiar tama\u00f1o",
|
|
126
|
+
"Width": "Ancho",
|
|
127
|
+
"Height": "Altura",
|
|
128
|
+
"Something went wrong. Please try again.": "Algo sali\u00f3 mal. Por favor, vuelva a intentarlo.",
|
|
129
|
+
"Image Caption": "Captura de imagen",
|
|
130
|
+
"Advanced Edit": "Edición avanzada",
|
|
131
|
+
|
|
132
|
+
// Video
|
|
133
|
+
"Insert Video": "Insertar video",
|
|
134
|
+
"Embedded Code": "C\u00f3digo incrustado",
|
|
135
|
+
"Paste in a video URL": "Pegar en una URL de video",
|
|
136
|
+
"Drop video": "Soltar video",
|
|
137
|
+
"Your browser does not support HTML5 video.": "Su navegador no es compatible con video html5.",
|
|
138
|
+
"Upload Video": "Subir video",
|
|
139
|
+
|
|
140
|
+
// Tables
|
|
141
|
+
"Insert Table": "Insertar tabla",
|
|
142
|
+
"Table Header": "Encabezado de la tabla",
|
|
143
|
+
"Remove Table": "Retire la tabla",
|
|
144
|
+
"Table Style": "Estilo de tabla",
|
|
145
|
+
"Horizontal Align": "Alinear horizontal",
|
|
146
|
+
"Row": "Fila",
|
|
147
|
+
"Insert row above": "Insertar fila antes",
|
|
148
|
+
"Insert row below": "Insertar fila despu\u00e9s",
|
|
149
|
+
"Delete row": "Eliminar fila",
|
|
150
|
+
"Column": "Columna",
|
|
151
|
+
"Insert column before": "Insertar columna antes",
|
|
152
|
+
"Insert column after": "Insertar columna despu\u00e9s",
|
|
153
|
+
"Delete column": "Eliminar columna",
|
|
154
|
+
"Cell": "Celda",
|
|
155
|
+
"Merge cells": "Combinar celdas",
|
|
156
|
+
"Horizontal split": "Divisi\u00f3n horizontal",
|
|
157
|
+
"Vertical split": "Divisi\u00f3n vertical",
|
|
158
|
+
"Cell Background": "Fondo de la celda",
|
|
159
|
+
"Vertical Align": "Alinear vertical",
|
|
160
|
+
"Top": "Cima",
|
|
161
|
+
"Middle": "Medio",
|
|
162
|
+
"Bottom": "Del fondo",
|
|
163
|
+
"Align Top": "Alinear a la parte superior",
|
|
164
|
+
"Align Middle": "Alinear media",
|
|
165
|
+
"Align Bottom": "Alinear abajo",
|
|
166
|
+
"Cell Style": "Estilo de celda",
|
|
167
|
+
|
|
168
|
+
// Files
|
|
169
|
+
"Upload File": "Subir archivo",
|
|
170
|
+
"Drop file": "Soltar archivo",
|
|
171
|
+
|
|
172
|
+
// Emoticons
|
|
173
|
+
"Emoticons": "Emoticones",
|
|
174
|
+
"Grinning face": "Sonriendo cara",
|
|
175
|
+
"Grinning face with smiling eyes": "Sonriendo cara con ojos sonrientes",
|
|
176
|
+
"Face with tears of joy": "Cara con l\u00e1grimas de alegr\u00eda",
|
|
177
|
+
"Smiling face with open mouth": "Cara sonriente con la boca abierta",
|
|
178
|
+
"Smiling face with open mouth and smiling eyes": "Cara sonriente con la boca abierta y los ojos sonrientes",
|
|
179
|
+
"Smiling face with open mouth and cold sweat": "Cara sonriente con la boca abierta y el sudor fr\u00edo",
|
|
180
|
+
"Smiling face with open mouth and tightly-closed eyes": "Cara sonriente con la boca abierta y los ojos fuertemente cerrados",
|
|
181
|
+
"Smiling face with halo": "Cara sonriente con halo",
|
|
182
|
+
"Smiling face with horns": "Cara sonriente con cuernos",
|
|
183
|
+
"Winking face": "Gui\u00f1o de la cara",
|
|
184
|
+
"Smiling face with smiling eyes": "Cara sonriente con ojos sonrientes",
|
|
185
|
+
"Face savoring delicious food": "Care saborear una deliciosa comida",
|
|
186
|
+
"Relieved face": "Cara Aliviado",
|
|
187
|
+
"Smiling face with heart-shaped eyes": "Cara sonriente con los ojos en forma de coraz\u00f3n",
|
|
188
|
+
"Smiling face with sunglasses": "Cara sonriente con gafas de sol",
|
|
189
|
+
"Smirking face": "Sonriendo cara",
|
|
190
|
+
"Neutral face": "Cara neutral",
|
|
191
|
+
"Expressionless face": "Rostro inexpresivo",
|
|
192
|
+
"Unamused face": "Cara no divertido",
|
|
193
|
+
"Face with cold sweat": "Cara con sudor fr\u00edo",
|
|
194
|
+
"Pensive face": "Rostro pensativo",
|
|
195
|
+
"Confused face": "Cara confusa",
|
|
196
|
+
"Confounded face": "Cara Averg\u00fc\u00e9ncense",
|
|
197
|
+
"Kissing face": "Besar la cara",
|
|
198
|
+
"Face throwing a kiss": "Cara lanzando un beso",
|
|
199
|
+
"Kissing face with smiling eyes": "Besar a cara con ojos sonrientes",
|
|
200
|
+
"Kissing face with closed eyes": "Besar a cara con los ojos cerrados",
|
|
201
|
+
"Face with stuck out tongue": "Cara con la lengua pegada",
|
|
202
|
+
"Face with stuck out tongue and winking eye": "Cara con pegado a la lengua y los ojos gui\u00f1o",
|
|
203
|
+
"Face with stuck out tongue and tightly-closed eyes": "Cara con la lengua pegada a y los ojos fuertemente cerrados",
|
|
204
|
+
"Disappointed face": "Cara decepcionado",
|
|
205
|
+
"Worried face": "Cara de preocupaci\u00f3n",
|
|
206
|
+
"Angry face": "Cara enojada",
|
|
207
|
+
"Pouting face": "Que pone mala cara",
|
|
208
|
+
"Crying face": "Cara llorando",
|
|
209
|
+
"Persevering face": "Perseverar cara",
|
|
210
|
+
"Face with look of triumph": "Cara con expresi\u00f3n de triunfo",
|
|
211
|
+
"Disappointed but relieved face": "Decepcionado pero el rostro aliviado",
|
|
212
|
+
"Frowning face with open mouth": "Con el ce\u00f1o fruncido la cara con la boca abierta",
|
|
213
|
+
"Anguished face": "Rostro angustiado",
|
|
214
|
+
"Fearful face": "Cara Temeroso",
|
|
215
|
+
"Weary face": "Rostro cansado",
|
|
216
|
+
"Sleepy face": "Rostro so\u00f1oliento",
|
|
217
|
+
"Tired face": "Rostro cansado",
|
|
218
|
+
"Grimacing face": "Haciendo una mueca cara",
|
|
219
|
+
"Loudly crying face": "Llorando en voz alta la cara",
|
|
220
|
+
"Face with open mouth": "Cara con la boca abierta",
|
|
221
|
+
"Hushed face": "Cara callada",
|
|
222
|
+
"Face with open mouth and cold sweat": "Cara con la boca abierta y el sudor frío",
|
|
223
|
+
"Face screaming in fear": "Cara gritando de miedo",
|
|
224
|
+
"Astonished face": "Cara asombrosa",
|
|
225
|
+
"Flushed face": "Cara enrojecida",
|
|
226
|
+
"Sleeping face": "Rostro dormido",
|
|
227
|
+
"Dizzy face": "Cara Mareado",
|
|
228
|
+
"Face without mouth": "Cara sin boca",
|
|
229
|
+
"Face with medical mask": "Cara con la m\u00e1scara m\u00e9dica",
|
|
230
|
+
|
|
231
|
+
// Line breaker
|
|
232
|
+
"Break": "Romper",
|
|
233
|
+
|
|
234
|
+
// Math
|
|
235
|
+
"Subscript": "Sub\u00edndice",
|
|
236
|
+
"Superscript": "Super\u00edndice",
|
|
237
|
+
|
|
238
|
+
// Full screen
|
|
239
|
+
"Fullscreen": "Pantalla completa",
|
|
240
|
+
|
|
241
|
+
// Horizontal line
|
|
242
|
+
"Insert Horizontal Line": "Insertar l\u00ednea horizontal",
|
|
243
|
+
|
|
244
|
+
// Clear formatting
|
|
245
|
+
"Clear Formatting": "Quitar el formato",
|
|
246
|
+
|
|
247
|
+
// Undo, redo
|
|
248
|
+
"Undo": "Deshacer",
|
|
249
|
+
"Redo": "Rehacer",
|
|
250
|
+
|
|
251
|
+
// Select all
|
|
252
|
+
"Select All": "Seleccionar todo",
|
|
253
|
+
|
|
254
|
+
// Code view
|
|
255
|
+
"Code View": "Vista de c\u00f3digo",
|
|
256
|
+
|
|
257
|
+
// Quote
|
|
258
|
+
"Quote": "Cita",
|
|
259
|
+
"Increase": "Aumentar",
|
|
260
|
+
"Decrease": "Disminuci\u00f3n",
|
|
261
|
+
|
|
262
|
+
// Quick Insert
|
|
263
|
+
"Quick Insert": "Inserci\u00f3n r\u00e1pida",
|
|
264
|
+
|
|
265
|
+
// Spcial Characters
|
|
266
|
+
"Special Characters": "Caracteres especiales",
|
|
267
|
+
"Latin": "Latín",
|
|
268
|
+
"Greek": "Griego",
|
|
269
|
+
"Cyrillic": "Cirílico",
|
|
270
|
+
"Punctuation": "Puntuación",
|
|
271
|
+
"Currency": "Moneda",
|
|
272
|
+
"Arrows": "Flechas",
|
|
273
|
+
"Math": "Mates",
|
|
274
|
+
"Misc": "Misc",
|
|
275
|
+
|
|
276
|
+
// Print.
|
|
277
|
+
"Print": "Impresión",
|
|
278
|
+
|
|
279
|
+
// Spell Checker.
|
|
280
|
+
"Spell Checker": "Corrector ortográfico",
|
|
281
|
+
|
|
282
|
+
// Help
|
|
283
|
+
"Help": "Ayuda",
|
|
284
|
+
"Shortcuts": "Atajos",
|
|
285
|
+
"Inline Editor": "Editor en línea",
|
|
286
|
+
"Show the editor": "Mostrar al editor",
|
|
287
|
+
"Common actions": "Acciones comunes",
|
|
288
|
+
"Copy": "Dupdo",
|
|
289
|
+
"Cut": "Cortar",
|
|
290
|
+
"Paste": "Pegar",
|
|
291
|
+
"Basic Formatting": "Formato básico",
|
|
292
|
+
"Increase quote level": "Aumentar el nivel de cotización",
|
|
293
|
+
"Decrease quote level": "Disminuir el nivel de cotización",
|
|
294
|
+
"Image / Video": "Imagen / video",
|
|
295
|
+
"Resize larger": "Redimensionar más grande",
|
|
296
|
+
"Resize smaller": "Redimensionar más pequeño",
|
|
297
|
+
"Table": "Mesa",
|
|
298
|
+
"Select table cell": "Celda de tabla select",
|
|
299
|
+
"Extend selection one cell": "Ampliar la selección una celda",
|
|
300
|
+
"Extend selection one row": "Ampliar la selección una fila",
|
|
301
|
+
"Navigation": "Navegación",
|
|
302
|
+
"Focus popup / toolbar": "Focus popup / toolbar",
|
|
303
|
+
"Return focus to previous position": "Volver al foco a la posición anterior",
|
|
304
|
+
|
|
305
|
+
// Embed.ly
|
|
306
|
+
"Embed URL": "URL de inserción",
|
|
307
|
+
"Paste in a URL to embed": "Pegar en una url para incrustar",
|
|
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?": "El contenido pegado viene de un documento de Microsoft Word. ¿Quieres mantener el formato o limpiarlo?",
|
|
311
|
+
"Keep": "Guardar",
|
|
312
|
+
"Clean": "Limpiar",
|
|
313
|
+
"Word Paste Detected": "Palabra detectada"
|
|
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
|
+
* Estonian
|
|
35
|
+
*/
|
|
36
|
+
|
|
37
|
+
$.FE.LANGUAGE['et'] = {
|
|
38
|
+
translation: {
|
|
39
|
+
// Place holder
|
|
40
|
+
"Type something": "Kirjuta midagi",
|
|
41
|
+
|
|
42
|
+
// Basic formatting
|
|
43
|
+
"Bold": "Rasvane",
|
|
44
|
+
"Italic": "Kursiiv",
|
|
45
|
+
"Underline": "Allajoonitud",
|
|
46
|
+
"Strikethrough": "L\u00e4bikriipsutatud",
|
|
47
|
+
|
|
48
|
+
// Main buttons
|
|
49
|
+
"Insert": "Lisa",
|
|
50
|
+
"Delete": "Kustuta",
|
|
51
|
+
"Cancel": "T\u00fchista",
|
|
52
|
+
"OK": "OK",
|
|
53
|
+
"Back": "Tagasi",
|
|
54
|
+
"Remove": "Eemaldama",
|
|
55
|
+
"More": "Rohkem",
|
|
56
|
+
"Update": "Ajakohastama",
|
|
57
|
+
"Style": "Stiil",
|
|
58
|
+
|
|
59
|
+
// Font
|
|
60
|
+
"Font Family": "Fondi perekond",
|
|
61
|
+
"Font Size": "Fondi suurus",
|
|
62
|
+
|
|
63
|
+
// Colors
|
|
64
|
+
"Colors": "V\u00e4rvid",
|
|
65
|
+
"Background": "Taust",
|
|
66
|
+
"Text": "Tekst",
|
|
67
|
+
"HEX Color": "Hex värvi",
|
|
68
|
+
|
|
69
|
+
// Paragraphs
|
|
70
|
+
"Paragraph Format": "Paragrahv formaat",
|
|
71
|
+
"Normal": "Normaalne",
|
|
72
|
+
"Code": "Kood",
|
|
73
|
+
"Heading 1": "P\u00e4is 1",
|
|
74
|
+
"Heading 2": "P\u00e4is 2",
|
|
75
|
+
"Heading 3": "P\u00e4is 3",
|
|
76
|
+
"Heading 4": "P\u00e4is 4",
|
|
77
|
+
|
|
78
|
+
// Style
|
|
79
|
+
"Paragraph Style": "Paragrahv stiil",
|
|
80
|
+
"Inline Style": "J\u00e4rjekorras stiil",
|
|
81
|
+
|
|
82
|
+
// Alignment
|
|
83
|
+
"Align": "Joonda",
|
|
84
|
+
"Align Left": "Joonda vasakule",
|
|
85
|
+
"Align Center": "Joonda keskele",
|
|
86
|
+
"Align Right": "Joonda paremale",
|
|
87
|
+
"Align Justify": "R\u00f6\u00f6pjoondus",
|
|
88
|
+
"None": "Mitte \u00fckski",
|
|
89
|
+
|
|
90
|
+
// Lists
|
|
91
|
+
"Ordered List": "Tellitud nimekirja",
|
|
92
|
+
"Unordered List": "Tavalise nimekirja",
|
|
93
|
+
|
|
94
|
+
// Indent
|
|
95
|
+
"Decrease Indent": "V\u00e4henemine taane",
|
|
96
|
+
"Increase Indent": "Suurenda taanet",
|
|
97
|
+
|
|
98
|
+
// Links
|
|
99
|
+
"Insert Link": "Lisa link",
|
|
100
|
+
"Open in new tab": "Ava uues sakis",
|
|
101
|
+
"Open Link": "Avatud link",
|
|
102
|
+
"Edit Link": "Muuda link",
|
|
103
|
+
"Unlink": "Eemalda link",
|
|
104
|
+
"Choose Link": "Vali link",
|
|
105
|
+
|
|
106
|
+
// Images
|
|
107
|
+
"Insert Image": "Lisa pilt",
|
|
108
|
+
"Upload Image": "Laadige pilt",
|
|
109
|
+
"By URL": "Poolt URL",
|
|
110
|
+
"Browse": "sirvida",
|
|
111
|
+
"Drop image": "Aseta pilt",
|
|
112
|
+
"or click": "v\u00f5i kliki",
|
|
113
|
+
"Manage Images": "Halda pilte",
|
|
114
|
+
"Loading": "Laadimine",
|
|
115
|
+
"Deleting": "Kustutamine",
|
|
116
|
+
"Tags": "Sildid",
|
|
117
|
+
"Are you sure? Image will be deleted.": "Oled sa kindel? Pilt kustutatakse.",
|
|
118
|
+
"Replace": "Asendama",
|
|
119
|
+
"Uploading": "Laadimise pilti",
|
|
120
|
+
"Loading image": "Laadimise pilti",
|
|
121
|
+
"Display": "Kuvama",
|
|
122
|
+
"Inline": "J\u00e4rjekorras",
|
|
123
|
+
"Break Text": "Murdma teksti",
|
|
124
|
+
"Alternate Text": "Asendusliikme teksti",
|
|
125
|
+
"Change Size": "Muuda suurust",
|
|
126
|
+
"Width": "Laius",
|
|
127
|
+
"Height": "K\u00f5rgus",
|
|
128
|
+
"Something went wrong. Please try again.": "Midagi l\u00e4ks valesti. Palun proovi uuesti.",
|
|
129
|
+
"Image Caption": "Pildi pealkiri",
|
|
130
|
+
"Advanced Edit": "Täiustatud redigeerimine",
|
|
131
|
+
|
|
132
|
+
// Video
|
|
133
|
+
"Insert Video": "Lisa video",
|
|
134
|
+
"Embedded Code": "Varjatud koodi",
|
|
135
|
+
"Paste in a video URL": "Kleebi video URL-i",
|
|
136
|
+
"Drop video": "Tilk videot",
|
|
137
|
+
"Your browser does not support HTML5 video.": "Teie brauser ei toeta html5-videot.",
|
|
138
|
+
"Upload Video": "Video üleslaadimine",
|
|
139
|
+
|
|
140
|
+
// Tables
|
|
141
|
+
"Insert Table": "Sisesta tabel",
|
|
142
|
+
"Table Header": "Tabel p\u00e4ise kaudu",
|
|
143
|
+
"Remove Table": "Eemalda tabel",
|
|
144
|
+
"Table Style": "Tabel stiili",
|
|
145
|
+
"Horizontal Align": "Horisontaalne joonda",
|
|
146
|
+
"Row": "Rida",
|
|
147
|
+
"Insert row above": "Sisesta rida \u00fcles",
|
|
148
|
+
"Insert row below": "Sisesta rida alla",
|
|
149
|
+
"Delete row": "Kustuta rida",
|
|
150
|
+
"Column": "Veerg",
|
|
151
|
+
"Insert column before": "Sisesta veerg ette",
|
|
152
|
+
"Insert column after": "Sisesta veerg j\u00e4rele",
|
|
153
|
+
"Delete column": "Kustuta veerg",
|
|
154
|
+
"Cell": "Lahter",
|
|
155
|
+
"Merge cells": "\u00fchenda lahtrid",
|
|
156
|
+
"Horizontal split": "Poolita horisontaalselt",
|
|
157
|
+
"Vertical split": "Poolita vertikaalselt",
|
|
158
|
+
"Cell Background": "Lahter tausta",
|
|
159
|
+
"Vertical Align": "Vertikaalne joonda",
|
|
160
|
+
"Top": "\u00fclemine",
|
|
161
|
+
"Middle": "Keskmine",
|
|
162
|
+
"Bottom": "P\u00f5hi",
|
|
163
|
+
"Align Top": "Joonda \u00fclemine",
|
|
164
|
+
"Align Middle": "Joonda keskmine",
|
|
165
|
+
"Align Bottom": "Joonda P\u00f5hi",
|
|
166
|
+
"Cell Style": "Lahter stiili",
|
|
167
|
+
|
|
168
|
+
// Files
|
|
169
|
+
"Upload File": "Lae fail \u00fcles",
|
|
170
|
+
"Drop file": "Aseta fail",
|
|
171
|
+
|
|
172
|
+
// Emoticons
|
|
173
|
+
"Emoticons": "Emotikonid",
|
|
174
|
+
"Grinning face": "Irvitas n\u00e4kku",
|
|
175
|
+
"Grinning face with smiling eyes": "Irvitas n\u00e4kku naeratavad silmad",
|
|
176
|
+
"Face with tears of joy": "N\u00e4gu r\u00f5\u00f5mupisaratega",
|
|
177
|
+
"Smiling face with open mouth": "Naeratav n\u00e4gu avatud suuga",
|
|
178
|
+
"Smiling face with open mouth and smiling eyes": "Naeratav n\u00e4gu avatud suu ja naeratavad silmad",
|
|
179
|
+
"Smiling face with open mouth and cold sweat": "Naeratav n\u00e4gu avatud suu ja k\u00fclm higi",
|
|
180
|
+
"Smiling face with open mouth and tightly-closed eyes": "Naeratav n\u00e4gu avatud suu ja tihedalt suletud silmad",
|
|
181
|
+
"Smiling face with halo": "Naeratav n\u00e4gu halo",
|
|
182
|
+
"Smiling face with horns": "Naeratav n\u00e4gu sarved",
|
|
183
|
+
"Winking face": "Pilgutab n\u00e4gu",
|
|
184
|
+
"Smiling face with smiling eyes": "Naeratav n\u00e4gu naeratab silmad",
|
|
185
|
+
"Face savoring delicious food": "N\u00e4gu nautides maitsvat toitu",
|
|
186
|
+
"Relieved face": "P\u00e4\u00e4stetud n\u00e4gu",
|
|
187
|
+
"Smiling face with heart-shaped eyes": "Naeratav n\u00e4gu s\u00fcdajas silmad",
|
|
188
|
+
"Smiling face with sunglasses": "Naeratav n\u00e4gu p\u00e4ikeseprillid",
|
|
189
|
+
"Smirking face": "Muigama n\u00e4gu ",
|
|
190
|
+
"Neutral face": "Neutraalne n\u00e4gu",
|
|
191
|
+
"Expressionless face": "Ilmetu n\u00e4gu",
|
|
192
|
+
"Unamused face": "Morn n\u00e4gu",
|
|
193
|
+
"Face with cold sweat": "N\u00e4gu k\u00fclma higiga",
|
|
194
|
+
"Pensive face": "M\u00f5tlik n\u00e4gu",
|
|
195
|
+
"Confused face": "Segaduses n\u00e4gu",
|
|
196
|
+
"Confounded face": "Segas n\u00e4gu",
|
|
197
|
+
"Kissing face": "Suudlevad n\u00e4gu",
|
|
198
|
+
"Face throwing a kiss": "N\u00e4gu viskamine suudlus",
|
|
199
|
+
"Kissing face with smiling eyes": "Suudlevad n\u00e4gu naeratab silmad",
|
|
200
|
+
"Kissing face with closed eyes": "Suudlevad n\u00e4gu, silmad kinni",
|
|
201
|
+
"Face with stuck out tongue": "N\u00e4gu ummikus v\u00e4lja keele",
|
|
202
|
+
"Face with stuck out tongue and winking eye": "N\u00e4gu ummikus v\u00e4lja keele ja silma pilgutav silma",
|
|
203
|
+
"Face with stuck out tongue and tightly-closed eyes": "N\u00e4gu ummikus v\u00e4lja keele ja silmad tihedalt suletuna",
|
|
204
|
+
"Disappointed face": "Pettunud n\u00e4gu",
|
|
205
|
+
"Worried face": "Mures n\u00e4gu",
|
|
206
|
+
"Angry face": "Vihane n\u00e4gu",
|
|
207
|
+
"Pouting face": "Tursik n\u00e4gu",
|
|
208
|
+
"Crying face": "Nutt n\u00e4gu",
|
|
209
|
+
"Persevering face": "Püsiv n\u00e4gu",
|
|
210
|
+
"Face with look of triumph": "N\u00e4gu ilme triumf",
|
|
211
|
+
"Disappointed but relieved face": "Pettunud kuid vabastati n\u00e4gu",
|
|
212
|
+
"Frowning face with open mouth": "Kulmukortsutav n\u00e4gu avatud suuga",
|
|
213
|
+
"Anguished face": "Ahastavad n\u00e4gu",
|
|
214
|
+
"Fearful face": "Hirmunult n\u00e4gu",
|
|
215
|
+
"Weary face": "Grimasse",
|
|
216
|
+
"Sleepy face": "Unine n\u00e4gu",
|
|
217
|
+
"Tired face": "V\u00e4sinud n\u00e4gu",
|
|
218
|
+
"Grimacing face": "Grimassitavaks n\u00e4gu",
|
|
219
|
+
"Loudly crying face": "Valjusti nutma n\u00e4gu",
|
|
220
|
+
"Face with open mouth": "N\u00e4gu avatud suuga",
|
|
221
|
+
"Hushed face": "Raskel n\u00e4gu",
|
|
222
|
+
"Face with open mouth and cold sweat": "N\u00e4gu avatud suu ja k\u00fclm higi",
|
|
223
|
+
"Face screaming in fear": "N\u00e4gu karjuvad hirm",
|
|
224
|
+
"Astonished face": "Lummatud n\u00e4gu",
|
|
225
|
+
"Flushed face": "Punetav n\u00e4gu",
|
|
226
|
+
"Sleeping face": "Uinuv n\u00e4gu",
|
|
227
|
+
"Dizzy face": "Uimane n\u00fcgu",
|
|
228
|
+
"Face without mouth": "N\u00e4gu ilma suu",
|
|
229
|
+
"Face with medical mask": "N\u00e4gu meditsiinilise mask",
|
|
230
|
+
|
|
231
|
+
// Line breaker
|
|
232
|
+
"Break": "Murdma",
|
|
233
|
+
|
|
234
|
+
// Math
|
|
235
|
+
"Subscript": "Allindeks",
|
|
236
|
+
"Superscript": "\u00dclaindeks",
|
|
237
|
+
|
|
238
|
+
// Full screen
|
|
239
|
+
"Fullscreen": "T\u00e4isekraanil",
|
|
240
|
+
|
|
241
|
+
// Horizontal line
|
|
242
|
+
"Insert Horizontal Line": "Sisesta horisontaalne joon",
|
|
243
|
+
|
|
244
|
+
// Clear formatting
|
|
245
|
+
"Clear Formatting": "Eemalda formaatimine",
|
|
246
|
+
|
|
247
|
+
// Undo, redo
|
|
248
|
+
"Undo": "V\u00f5ta tagasi",
|
|
249
|
+
"Redo": "Tee uuesti",
|
|
250
|
+
|
|
251
|
+
// Select all
|
|
252
|
+
"Select All": "Vali k\u00f5ik",
|
|
253
|
+
|
|
254
|
+
// Code view
|
|
255
|
+
"Code View": "Koodi vaadata",
|
|
256
|
+
|
|
257
|
+
// Quote
|
|
258
|
+
"Quote": "Tsitaat",
|
|
259
|
+
"Increase": "Suurendama",
|
|
260
|
+
"Decrease": "V\u00e4henda",
|
|
261
|
+
|
|
262
|
+
// Quick Insert
|
|
263
|
+
"Quick Insert": "Kiire sisestada",
|
|
264
|
+
|
|
265
|
+
// Spcial Characters
|
|
266
|
+
"Special Characters": "Erimärgid",
|
|
267
|
+
"Latin": "Latin",
|
|
268
|
+
"Greek": "Kreeka keel",
|
|
269
|
+
"Cyrillic": "Kirillitsa",
|
|
270
|
+
"Punctuation": "Kirjavahemärgid",
|
|
271
|
+
"Currency": "Valuuta",
|
|
272
|
+
"Arrows": "Nooled",
|
|
273
|
+
"Math": "Matemaatika",
|
|
274
|
+
"Misc": "Misc",
|
|
275
|
+
|
|
276
|
+
// Print.
|
|
277
|
+
"Print": "Printige",
|
|
278
|
+
|
|
279
|
+
// Spell Checker.
|
|
280
|
+
"Spell Checker": "Õigekirja kontrollija",
|
|
281
|
+
|
|
282
|
+
// Help
|
|
283
|
+
"Help": "Abi",
|
|
284
|
+
"Shortcuts": "Otseteed",
|
|
285
|
+
"Inline Editor": "Sisemine redaktor",
|
|
286
|
+
"Show the editor": "Näita redaktorit",
|
|
287
|
+
"Common actions": "Ühised meetmed",
|
|
288
|
+
"Copy": "Koopia",
|
|
289
|
+
"Cut": "Lõigake",
|
|
290
|
+
"Paste": "Kleepige",
|
|
291
|
+
"Basic Formatting": "Põhiline vormindamine",
|
|
292
|
+
"Increase quote level": "Suurendada tsiteerimise taset",
|
|
293
|
+
"Decrease quote level": "Langetada tsiteerimise tase",
|
|
294
|
+
"Image / Video": "Pilt / video",
|
|
295
|
+
"Resize larger": "Suuruse muutmine suurem",
|
|
296
|
+
"Resize smaller": "Väiksema suuruse muutmine",
|
|
297
|
+
"Table": "Laud",
|
|
298
|
+
"Select table cell": "Vali tabeli lahtrisse",
|
|
299
|
+
"Extend selection one cell": "Laiendage valikut üks lahtrisse",
|
|
300
|
+
"Extend selection one row": "Laiendage valikut ühe reana",
|
|
301
|
+
"Navigation": "Navigeerimine",
|
|
302
|
+
"Focus popup / toolbar": "Fookuse hüpikakna / tööriistariba",
|
|
303
|
+
"Return focus to previous position": "Tagasi pöörata tähelepanu eelmisele positsioonile",
|
|
304
|
+
|
|
305
|
+
// Embed.ly
|
|
306
|
+
"Embed URL": "Embed url",
|
|
307
|
+
"Paste in a URL to embed": "Kleepige URL-i sisestamiseks",
|
|
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?": "Kleepitud sisu pärineb Microsoft Wordi dokumendist. kas soovite vormi säilitada või puhastada?",
|
|
311
|
+
"Keep": "Pidage seda",
|
|
312
|
+
"Clean": "Puhas",
|
|
313
|
+
"Word Paste Detected": "Avastatud sõna pasta"
|
|
314
|
+
},
|
|
315
|
+
direction: "ltr"
|
|
316
|
+
};
|
|
317
|
+
|
|
318
|
+
}));
|