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
|
+
* Slovak
|
|
35
|
+
*/
|
|
36
|
+
|
|
37
|
+
$.FE.LANGUAGE['sk'] = {
|
|
38
|
+
translation: {
|
|
39
|
+
|
|
40
|
+
// Place holder
|
|
41
|
+
"Type something": "Nap\u00ed\u0161te hoci\u010do",
|
|
42
|
+
|
|
43
|
+
// Basic formatting
|
|
44
|
+
"Bold": "Tu\u010dn\u00e9",
|
|
45
|
+
"Italic": "Kurz\u00edva",
|
|
46
|
+
"Underline": "Pod\u010diarknut\u00e9",
|
|
47
|
+
"Strikethrough": "Pre\u0161krtnut\u00e9",
|
|
48
|
+
|
|
49
|
+
// Main buttons
|
|
50
|
+
"Insert": "Vlo\u017ei\u0165",
|
|
51
|
+
"Delete": "Vymaza\u0165",
|
|
52
|
+
"Cancel": "Zru\u0161i\u0165",
|
|
53
|
+
"OK": "OK",
|
|
54
|
+
"Back": "Sp\u00e4\u0165",
|
|
55
|
+
"Remove": "Odstr\u00e1ni\u0165",
|
|
56
|
+
"More": "Viac",
|
|
57
|
+
"Update": "Aktualizova\u0165",
|
|
58
|
+
"Style": "\u0165t\u00fdl",
|
|
59
|
+
|
|
60
|
+
// Font
|
|
61
|
+
"Font Family": "Typ p\u00edsma",
|
|
62
|
+
"Font Size": "Ve\u013ekos\u0165 p\u00edsma",
|
|
63
|
+
|
|
64
|
+
// Colors
|
|
65
|
+
"Colors": "Farby",
|
|
66
|
+
"Background": "Pozadie",
|
|
67
|
+
"Text": "Text",
|
|
68
|
+
"HEX Color": "Hex Farby",
|
|
69
|
+
|
|
70
|
+
// Paragraphs
|
|
71
|
+
"Paragraph Format": "Form\u00e1t odstavca",
|
|
72
|
+
"Normal": "Norm\u00e1lne",
|
|
73
|
+
"Code": "K\u00f3d",
|
|
74
|
+
"Heading 1": "Nadpis 1",
|
|
75
|
+
"Heading 2": "Nadpis 2",
|
|
76
|
+
"Heading 3": "Nadpis 3",
|
|
77
|
+
"Heading 4": "Nadpis 4",
|
|
78
|
+
|
|
79
|
+
// Style
|
|
80
|
+
"Paragraph Style": "\u0165t\u00fdl odstavca",
|
|
81
|
+
"Inline Style": "Inline \u0161t\u00fdl",
|
|
82
|
+
|
|
83
|
+
// Alignment
|
|
84
|
+
"Align": "Zarovnanie",
|
|
85
|
+
"Align Left": "Zarovna\u0165 v\u013eavo",
|
|
86
|
+
"Align Center": "Zarovna\u0165 na stred",
|
|
87
|
+
"Align Right": "Zarovna\u0165 vpravo",
|
|
88
|
+
"Align Justify": "Zarovna\u0165 do bloku",
|
|
89
|
+
"None": "\u017diadne",
|
|
90
|
+
|
|
91
|
+
// Lists
|
|
92
|
+
"Ordered List": "\u010c\u00edslovan\u00fd zoznam",
|
|
93
|
+
"Unordered List": "Ne\u010d\u00edslovan\u00fd zoznam",
|
|
94
|
+
|
|
95
|
+
// Indent
|
|
96
|
+
"Decrease Indent": "Zmen\u0161i\u0165 odsadenie",
|
|
97
|
+
"Increase Indent": "Zv\u00e4\u010d\u0161i\u0165 odsadenie",
|
|
98
|
+
|
|
99
|
+
// Links
|
|
100
|
+
"Insert Link": "Vlo\u017ei\u0165 odkaz",
|
|
101
|
+
"Open in new tab": "Otvori\u0165 v novom okne",
|
|
102
|
+
"Open Link": "Otvori\u0165 odkaz",
|
|
103
|
+
"Edit Link": "Upravi\u0165 odkaz",
|
|
104
|
+
"Unlink": "Odstr\u00e1ni\u0165 odkaz",
|
|
105
|
+
"Choose Link": "Vyberte odkaz",
|
|
106
|
+
|
|
107
|
+
// Images
|
|
108
|
+
"Insert Image": "Vlo\u017ei\u0165 obr\u00e1zok",
|
|
109
|
+
"Upload Image": "Nahra\u0165 obr\u00e1zok",
|
|
110
|
+
"By URL": "Z URL adresy",
|
|
111
|
+
"Browse": "Vybra\u0165",
|
|
112
|
+
"Drop image": "Pretiahnite obr\u00e1zok do tohto miesta",
|
|
113
|
+
"or click": "alebo kliknite a vlo\u017ete",
|
|
114
|
+
"Manage Images": "Spr\u00e1va obr\u00e1zkov",
|
|
115
|
+
"Loading": "Nahr\u00e1vam",
|
|
116
|
+
"Deleting": "Odstra\u0148ujem",
|
|
117
|
+
"Tags": "Zna\u010dky",
|
|
118
|
+
"Are you sure? Image will be deleted.": "Ste si ist\u00fd? Obr\u00e1zok bude odstranen\u00fd.",
|
|
119
|
+
"Replace": "Vymeni\u0165",
|
|
120
|
+
"Uploading": "Nahr\u00e1vam",
|
|
121
|
+
"Loading image": "Obr\u00e1zok se na\u010d\u00edtav\u00e1",
|
|
122
|
+
"Display": "Zobrazi\u0165",
|
|
123
|
+
"Inline": "Inline",
|
|
124
|
+
"Break Text": "Zalomenie textu",
|
|
125
|
+
"Alternate Text": "Alternat\u00edvny text",
|
|
126
|
+
"Change Size": "Zmeni\u0165 ve\u013ekos\u0165",
|
|
127
|
+
"Width": "\u0165\u00edrka",
|
|
128
|
+
"Height": "V\u00fd\u0161ka",
|
|
129
|
+
"Something went wrong. Please try again.": "Nie\u010do sa pokazilo. Pros\u00edm, sk\u00faste to znova.",
|
|
130
|
+
"Image Caption": "Titulok obrázka",
|
|
131
|
+
"Advanced Edit": "Pokročilá úprava",
|
|
132
|
+
|
|
133
|
+
// Video
|
|
134
|
+
"Insert Video": "Vlo\u017ei\u0165 video",
|
|
135
|
+
"Embedded Code": "Vlo\u017een\u00fd k\u00f3d",
|
|
136
|
+
"Paste in a video URL": "Vložte do adresy URL videa",
|
|
137
|
+
"Drop video": "Drop video",
|
|
138
|
+
"Your browser does not support HTML5 video.": "Váš prehliadač nepodporuje video html5.",
|
|
139
|
+
"Upload Video": "Nahrať video",
|
|
140
|
+
|
|
141
|
+
// Tables
|
|
142
|
+
"Insert Table": "Vlo\u017ei\u0165 tabu\u013eku",
|
|
143
|
+
"Table Header": "Hlavi\u010dka tabu\u013eky",
|
|
144
|
+
"Remove Table": "Odstrani\u0165 tabu\u013eku",
|
|
145
|
+
"Table Style": "\u0165t\u00fdl tabu\u013eky",
|
|
146
|
+
"Horizontal Align": "Horizont\u00e1lne zarovnanie",
|
|
147
|
+
"Row": "Riadok",
|
|
148
|
+
"Insert row above": "Vlo\u017ei\u0165 riadok nad",
|
|
149
|
+
"Insert row below": "Vlo\u017ei\u0165 riadok pod",
|
|
150
|
+
"Delete row": "Odstrani\u0165 riadok",
|
|
151
|
+
"Column": "St\u013apec",
|
|
152
|
+
"Insert column before": "Vlo\u017ei\u0165 st\u013apec v\u013eavo",
|
|
153
|
+
"Insert column after": "Vlo\u017ei\u0165 st\u013apec vpravo",
|
|
154
|
+
"Delete column": "Odstrani\u0165 st\u013apec",
|
|
155
|
+
"Cell": "Bunka",
|
|
156
|
+
"Merge cells": "Zl\u00fa\u010di\u0165 bunky",
|
|
157
|
+
"Horizontal split": "Horizont\u00e1lne rozdelenie",
|
|
158
|
+
"Vertical split": "Vertik\u00e1lne rozdelenie",
|
|
159
|
+
"Cell Background": "Bunka pozadia",
|
|
160
|
+
"Vertical Align": "Vertik\u00e1lne zarovn\u00e1n\u00ed",
|
|
161
|
+
"Top": "Vrch",
|
|
162
|
+
"Middle": "Stred",
|
|
163
|
+
"Bottom": "Spodok",
|
|
164
|
+
"Align Top": "Zarovnat na vrch",
|
|
165
|
+
"Align Middle": "Zarovnat na stred",
|
|
166
|
+
"Align Bottom": "Zarovnat na spodok",
|
|
167
|
+
"Cell Style": "\u0165t\u00fdl bunky",
|
|
168
|
+
|
|
169
|
+
// Files
|
|
170
|
+
"Upload File": "Nahra\u0165 s\u00fabor",
|
|
171
|
+
"Drop file": "Vlo\u017ete s\u00fabor sem",
|
|
172
|
+
|
|
173
|
+
// Emoticons
|
|
174
|
+
"Emoticons": "Emotikony",
|
|
175
|
+
"Grinning face": "Tv\u00e1r s \u00fasmevom",
|
|
176
|
+
"Grinning face with smiling eyes": "Tv\u00e1r s \u00fasmevom a o\u010dami",
|
|
177
|
+
"Face with tears of joy": "Tv\u00e1r so slzamy radosti",
|
|
178
|
+
"Smiling face with open mouth": "Usmievaj\u00faci sa tv\u00e1r s otvoren\u00fdmi \u00fastami",
|
|
179
|
+
"Smiling face with open mouth and smiling eyes": "Usmievaj\u00faci sa tv\u00e1r s otvoren\u00fdmi \u00fastami a o\u010dami",
|
|
180
|
+
"Smiling face with open mouth and cold sweat": "Usmievaj\u00faci sa tv\u00e1r s otvoren\u00fdmi \u00fastami a studen\u00fd pot",
|
|
181
|
+
"Smiling face with open mouth and tightly-closed eyes": "Usmievaj\u00faci sa tv\u00e1r s otvoren\u00fdmi \u00fastami a zavret\u00fdmi o\u010dami",
|
|
182
|
+
"Smiling face with halo": "Usmievaj\u00faci sa tv\u00e1r s halo",
|
|
183
|
+
"Smiling face with horns": "Usmievaj\u00faci sa tv\u00e1r s rohmi",
|
|
184
|
+
"Winking face": "Mrkaj\u00faca tv\u00e1r",
|
|
185
|
+
"Smiling face with smiling eyes": "Usmievaj\u00faci sa tv\u00e1r a o\u010dami",
|
|
186
|
+
"Face savoring delicious food": "Tv\u00e1r vychutn\u00e1vaj\u00faca si chutn\u00e9 jedlo",
|
|
187
|
+
"Relieved face": "Spokojn\u00e1 tv\u00e1r",
|
|
188
|
+
"Smiling face with heart-shaped eyes": "Usmievaj\u00faci sa tv\u00e1r s o\u010dami v tvare srdca",
|
|
189
|
+
"Smiling face with sunglasses": "Usmievaj\u00faci sa tv\u00e1r so slne\u010dn\u00fdmi okuliarmi",
|
|
190
|
+
"Smirking face": "U\u0161k\u0155\u0148aj\u00faca sa tv\u00e1r",
|
|
191
|
+
"Neutral face": "Neutr\u00e1lna tva\u0155",
|
|
192
|
+
"Expressionless face": "Bezv\u00fdrazn\u00e1 tv\u00e1r",
|
|
193
|
+
"Unamused face": "Nepobaven\u00e1 tv\u00e1r",
|
|
194
|
+
"Face with cold sweat": "Tv\u00e1r so studen\u00fdm potom",
|
|
195
|
+
"Pensive face": "Zamyslen\u00e1 tv\u00e1r",
|
|
196
|
+
"Confused face": "Zmeten\u00e1 tv\u00e1r",
|
|
197
|
+
"Confounded face": "Nahnevan\u00e1 tv\u00e1r",
|
|
198
|
+
"Kissing face": "Bozkavaj\u00faca tv\u00e1r",
|
|
199
|
+
"Face throwing a kiss": "Tv\u00e1r hadzaj\u00faca pusu",
|
|
200
|
+
"Kissing face with smiling eyes": "Bozk\u00e1vaj\u00faca tv\u00e1r s o\u010dami a \u00fasmevom",
|
|
201
|
+
"Kissing face with closed eyes": "Bozk\u00e1vaj\u00faca tv\u00e1r so zavret\u00fdmi o\u010dami",
|
|
202
|
+
"Face with stuck out tongue": "Tv\u00e1r s vyplazen\u00fdm jazykom",
|
|
203
|
+
"Face with stuck out tongue and winking eye": "Mrkaj\u00faca tv\u00e1r s vyplazen\u00fdm jazykom",
|
|
204
|
+
"Face with stuck out tongue and tightly-closed eyes": "Tv\u00e1r s vyplazen\u00fdm jazykom a privret\u00fdmi o\u010dami",
|
|
205
|
+
"Disappointed face": "Sklaman\u00e1 tv\u00e1r",
|
|
206
|
+
"Worried face": "Obavaj\u00faca se tv\u00e1r",
|
|
207
|
+
"Angry face": "Nahnevan\u00e1 tv\u00e1r",
|
|
208
|
+
"Pouting face": "Na\u0161pulen\u00e1 tv\u00e1r",
|
|
209
|
+
"Crying face": "Pla\u010d\u00faca tv\u00e1r",
|
|
210
|
+
"Persevering face": "H\u00fa\u017eevnat\u00e1 tv\u00e1r",
|
|
211
|
+
"Face with look of triumph": "Tv\u00e1r s v\u00fdrazom v\u00ed\u0165aza",
|
|
212
|
+
"Disappointed but relieved face": "Sklaman\u00e1 ale spokojn\u00e1 tv\u00e1r",
|
|
213
|
+
"Frowning face with open mouth": "Zamra\u010den\u00e1 tvar s otvoren\u00fdmi \u00fastami",
|
|
214
|
+
"Anguished face": "\u00dazkostn\u00e1 tv\u00e1r",
|
|
215
|
+
"Fearful face": "Strachuj\u00faca sa tv\u00e1r",
|
|
216
|
+
"Weary face": "Unaven\u00e1 tv\u00e1r",
|
|
217
|
+
"Sleepy face": "Ospal\u00e1 tv\u00e1r",
|
|
218
|
+
"Tired face": "Unaven\u00e1 tv\u00e1r",
|
|
219
|
+
"Grimacing face": "Sv\u00e1r s grimasou",
|
|
220
|
+
"Loudly crying face": "Nahlas pl\u00e1\u010d\u00faca tv\u00e1r",
|
|
221
|
+
"Face with open mouth": "Tv\u00e1r s otvoren\u00fdm \u00fastami",
|
|
222
|
+
"Hushed face": "Ml\u010diaca tv\u00e1r",
|
|
223
|
+
"Face with open mouth and cold sweat": "Tv\u00e1r s otvoren\u00fdmi \u00fastami a studen\u00fdm potom",
|
|
224
|
+
"Face screaming in fear": "Tv\u00e1r kri\u010diaca strachom",
|
|
225
|
+
"Astonished face": "Tv\u00e1r v \u00fa\u017ease",
|
|
226
|
+
"Flushed face": "S\u010dervenanie v tv\u00e1ri",
|
|
227
|
+
"Sleeping face": "Spiaca tv\u00e1r",
|
|
228
|
+
"Dizzy face": "Tv\u00e1r vyjadruj\u00faca z\u00e1vrat",
|
|
229
|
+
"Face without mouth": "Tv\u00e1r bez \u00fast",
|
|
230
|
+
"Face with medical mask": "Tv\u00e1r s lek\u00e1rskou maskou",
|
|
231
|
+
|
|
232
|
+
// Line breaker
|
|
233
|
+
"Break": "Zalomenie",
|
|
234
|
+
|
|
235
|
+
// Math
|
|
236
|
+
"Subscript": "Doln\u00fd index",
|
|
237
|
+
"Superscript": "Horn\u00fd index",
|
|
238
|
+
|
|
239
|
+
// Full screen
|
|
240
|
+
"Fullscreen": "Cel\u00e1 obrazovka",
|
|
241
|
+
|
|
242
|
+
// Horizontal line
|
|
243
|
+
"Insert Horizontal Line": "Vlo\u017ei\u0165 vodorovn\u00fa \u010diaru",
|
|
244
|
+
|
|
245
|
+
// Clear formatting
|
|
246
|
+
"Clear Formatting": "Vymaza\u0165 formatovanie",
|
|
247
|
+
|
|
248
|
+
// Undo, redo
|
|
249
|
+
"Undo": "Sp\u00e4\u0165",
|
|
250
|
+
"Redo": "Znova",
|
|
251
|
+
|
|
252
|
+
// Select all
|
|
253
|
+
"Select All": "Vybra\u0165 v\u0161etko",
|
|
254
|
+
|
|
255
|
+
// Code view
|
|
256
|
+
"Code View": "Zobrazi\u0165 html k\u00f3d",
|
|
257
|
+
|
|
258
|
+
// Quote
|
|
259
|
+
"Quote": "Cit\u00e1t",
|
|
260
|
+
"Increase": "Nav\u00fd\u0161i\u0165",
|
|
261
|
+
"Decrease": "Zn\u00ed\u017ei\u0165",
|
|
262
|
+
|
|
263
|
+
// Quick Insert
|
|
264
|
+
"Quick Insert": "Vlo\u017ei\u0165 zr\u00fdchlene",
|
|
265
|
+
|
|
266
|
+
// Spcial Characters
|
|
267
|
+
"Special Characters": "Špeciálne znaky",
|
|
268
|
+
"Latin": "Latinčina",
|
|
269
|
+
"Greek": "Grécky",
|
|
270
|
+
"Cyrillic": "Cyriliky",
|
|
271
|
+
"Punctuation": "Interpunkcia",
|
|
272
|
+
"Currency": "Mena",
|
|
273
|
+
"Arrows": "Šípky",
|
|
274
|
+
"Math": "Matematika",
|
|
275
|
+
"Misc": "Misc",
|
|
276
|
+
|
|
277
|
+
// Print.
|
|
278
|
+
"Print": "Vytlačiť",
|
|
279
|
+
|
|
280
|
+
// Spell Checker.
|
|
281
|
+
"Spell Checker": "Kontrola pravopisu",
|
|
282
|
+
|
|
283
|
+
// Help
|
|
284
|
+
"Help": "Pomoc",
|
|
285
|
+
"Shortcuts": "Skratky",
|
|
286
|
+
"Inline Editor": "Inline editor",
|
|
287
|
+
"Show the editor": "Zobraziť editor",
|
|
288
|
+
"Common actions": "Spoločné akcie",
|
|
289
|
+
"Copy": "Kópie",
|
|
290
|
+
"Cut": "Rez",
|
|
291
|
+
"Paste": "Pasta",
|
|
292
|
+
"Basic Formatting": "Základné formátovanie",
|
|
293
|
+
"Increase quote level": "Zvýšiť úroveň cenovej ponuky",
|
|
294
|
+
"Decrease quote level": "Znížiť úroveň cenovej ponuky",
|
|
295
|
+
"Image / Video": "Obrázok / video",
|
|
296
|
+
"Resize larger": "Zmena veľkosti",
|
|
297
|
+
"Resize smaller": "Meniť veľkosť",
|
|
298
|
+
"Table": "Stôl",
|
|
299
|
+
"Select table cell": "Vyberte bunku tabuľky",
|
|
300
|
+
"Extend selection one cell": "Rozšíriť výber jednej bunky",
|
|
301
|
+
"Extend selection one row": "Rozšíriť výber o jeden riadok",
|
|
302
|
+
"Navigation": "Navigácia",
|
|
303
|
+
"Focus popup / toolbar": "Zameranie / panel s nástrojmi",
|
|
304
|
+
"Return focus to previous position": "Vrátiť zaostrenie na predchádzajúcu pozíciu",
|
|
305
|
+
|
|
306
|
+
// Embed.ly
|
|
307
|
+
"Embed URL": "Vložiť adresu URL",
|
|
308
|
+
"Paste in a URL to embed": "Vložte do adresy URL, ktorú chcete vložiť",
|
|
309
|
+
|
|
310
|
+
// Word Paste.
|
|
311
|
+
"The pasted content is coming from a Microsoft Word document. Do you want to keep the format or clean it up?": "Vložený obsah vychádza z dokumentu Microsoft Word. chcete formát uchovať alebo ho vyčistiť?",
|
|
312
|
+
"Keep": "Zachovať",
|
|
313
|
+
"Clean": "Čistý",
|
|
314
|
+
"Word Paste Detected": "Slovná vložka bola zistená"
|
|
315
|
+
},
|
|
316
|
+
direction: "ltr"
|
|
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
|
+
* Serbian (Latin)
|
|
35
|
+
*/
|
|
36
|
+
|
|
37
|
+
$.FE.LANGUAGE['sr'] = {
|
|
38
|
+
translation: {
|
|
39
|
+
// Place holder
|
|
40
|
+
"Type something": "Ukucajte ne\u0161tp",
|
|
41
|
+
|
|
42
|
+
// Basic formatting
|
|
43
|
+
"Bold": "Podebljan",
|
|
44
|
+
"Italic": "Isko\u0161en",
|
|
45
|
+
"Underline": "Podvu\u010deno",
|
|
46
|
+
"Strikethrough": "Precrtan",
|
|
47
|
+
|
|
48
|
+
// Main buttons
|
|
49
|
+
"Insert": "Umetanje",
|
|
50
|
+
"Delete": "Izbri\u0161i",
|
|
51
|
+
"Cancel": "Otkazivanje",
|
|
52
|
+
"OK": "Ok",
|
|
53
|
+
"Back": "Nazad",
|
|
54
|
+
"Remove": "Uklonite",
|
|
55
|
+
"More": "Vi\u0161e",
|
|
56
|
+
"Update": "A\u017euriranje",
|
|
57
|
+
"Style": "Stil",
|
|
58
|
+
|
|
59
|
+
// Font
|
|
60
|
+
"Font Family": "Odaberi font",
|
|
61
|
+
"Font Size": "Veli\u010dina fontova",
|
|
62
|
+
|
|
63
|
+
// Colors
|
|
64
|
+
"Colors": "Boje",
|
|
65
|
+
"Background": "Pozadina",
|
|
66
|
+
"Text": "Tekst",
|
|
67
|
+
"HEX Color": "HEX boje",
|
|
68
|
+
|
|
69
|
+
// Paragraphs
|
|
70
|
+
"Paragraph Format": "Format pasusa",
|
|
71
|
+
"Normal": "Normalno",
|
|
72
|
+
"Code": "\u0160ifra",
|
|
73
|
+
"Heading 1": "Naslov 1",
|
|
74
|
+
"Heading 2": "Naslov 2",
|
|
75
|
+
"Heading 3": "Naslov 3",
|
|
76
|
+
"Heading 4": "Naslov 4",
|
|
77
|
+
|
|
78
|
+
// Style
|
|
79
|
+
"Paragraph Style": "Stil pasusa",
|
|
80
|
+
"Inline Style": "Umetnutih stilova",
|
|
81
|
+
|
|
82
|
+
// Alignment
|
|
83
|
+
"Align": "Poravnavanje",
|
|
84
|
+
"Align Left": "Poravnaj levo",
|
|
85
|
+
"Align Center": "Poravnaj u centru",
|
|
86
|
+
"Align Right": "Poravnaj desno",
|
|
87
|
+
"Align Justify": "Obostrano poravnavanje",
|
|
88
|
+
"None": "Niko nije",
|
|
89
|
+
|
|
90
|
+
// Lists
|
|
91
|
+
"Ordered List": "Ure\u0111enih lista",
|
|
92
|
+
"Unordered List": "Neure\u0111enu lista",
|
|
93
|
+
|
|
94
|
+
// Indent
|
|
95
|
+
"Decrease Indent": "Smanjivanje uvla\u010denja",
|
|
96
|
+
"Increase Indent": "Pove\u0107avanje uvla\u010denja",
|
|
97
|
+
|
|
98
|
+
// Links
|
|
99
|
+
"Insert Link": "Umetni vezu",
|
|
100
|
+
"Open in new tab": "Otvori na novoj kartici",
|
|
101
|
+
"Open Link": "Otvori vezu",
|
|
102
|
+
"Edit Link": "Ure\u0111ivanje veze",
|
|
103
|
+
"Unlink": "Ukloni vezu",
|
|
104
|
+
"Choose Link": "Odaberite vezu",
|
|
105
|
+
|
|
106
|
+
// Images
|
|
107
|
+
"Insert Image": "Umetanje slike",
|
|
108
|
+
"Upload Image": "Otpremanje slika",
|
|
109
|
+
"By URL": "Po URL adresi",
|
|
110
|
+
"Browse": "Potra\u017ei",
|
|
111
|
+
"Drop image": "Baci sliku",
|
|
112
|
+
"or click": "ili kliknite na dugme",
|
|
113
|
+
"Manage Images": "Upravljanje slike",
|
|
114
|
+
"Loading": "U\u010ditavanje",
|
|
115
|
+
"Deleting": "Brisanje",
|
|
116
|
+
"Tags": "Oznake",
|
|
117
|
+
"Are you sure? Image will be deleted.": "Jesi siguran? Slika \u0107e biti izbrisana.",
|
|
118
|
+
"Replace": "Zameni",
|
|
119
|
+
"Uploading": "Otpremanje",
|
|
120
|
+
"Loading image": "U\u010ditavanje slika",
|
|
121
|
+
"Display": "Prikaz",
|
|
122
|
+
"Inline": "Pri upisivanju",
|
|
123
|
+
"Break Text": "Prelom teksta",
|
|
124
|
+
"Alternate Text": "Alternativni tekst",
|
|
125
|
+
"Change Size": "Promena veli\u010dine",
|
|
126
|
+
"Width": "\u0160irina",
|
|
127
|
+
"Height": "Visina",
|
|
128
|
+
"Something went wrong. Please try again.": "Ne\u0161to krenulo naopako. Poku\u0161ajte ponovo.",
|
|
129
|
+
"Image Caption": "Slika natpisa",
|
|
130
|
+
"Advanced Edit": "Napredno uređivanje",
|
|
131
|
+
|
|
132
|
+
// Video
|
|
133
|
+
"Insert Video": "Umetanje video",
|
|
134
|
+
"Embedded Code": "Ugra\u0111eni k\u00f4d",
|
|
135
|
+
"Paste in a video URL": "Lepljenje u video URL",
|
|
136
|
+
"Drop video": "Baci snimak",
|
|
137
|
+
"Your browser does not support HTML5 video.": "Vaš pregledač ne podržava HTML5 video.",
|
|
138
|
+
"Upload Video": "Otpremanje video",
|
|
139
|
+
|
|
140
|
+
// Tables
|
|
141
|
+
"Insert Table": "Umetni tabelu",
|
|
142
|
+
"Table Header": "Zaglavlje tabele",
|
|
143
|
+
"Remove Table": "Uklanjanje tabele",
|
|
144
|
+
"Table Style": "Stil tabele",
|
|
145
|
+
"Horizontal Align": "Horizontalno poravnavanje",
|
|
146
|
+
"Row": "Red",
|
|
147
|
+
"Insert row above": "Umetni red iznad",
|
|
148
|
+
"Insert row below": "Umetni red ispod",
|
|
149
|
+
"Delete row": "Izbri\u0161i red",
|
|
150
|
+
"Column": "Kolone",
|
|
151
|
+
"Insert column before": "Umetnite kolonu pre",
|
|
152
|
+
"Insert column after": "Umetnite kolonu nakon",
|
|
153
|
+
"Delete column": "Izbri\u0161i kolone",
|
|
154
|
+
"Cell": "Mobilni",
|
|
155
|
+
"Merge cells": "Objedinjavanje \u0107elija",
|
|
156
|
+
"Horizontal split": "Horizontalna split",
|
|
157
|
+
"Vertical split": "Vertikalno razdelite",
|
|
158
|
+
"Cell Background": "Mobilni pozadina",
|
|
159
|
+
"Vertical Align": "Vertikalno poravnavanje",
|
|
160
|
+
"Top": "Top",
|
|
161
|
+
"Middle": "Srednji",
|
|
162
|
+
"Bottom": "Dno",
|
|
163
|
+
"Align Top": "Poravnaj gore",
|
|
164
|
+
"Align Middle": "Poravnaj po sredini",
|
|
165
|
+
"Align Bottom": "Poravnaj dole",
|
|
166
|
+
"Cell Style": "Mobilni stil",
|
|
167
|
+
|
|
168
|
+
// Files
|
|
169
|
+
"Upload File": "Otpremanje datoteke",
|
|
170
|
+
"Drop file": "Baci datoteku",
|
|
171
|
+
|
|
172
|
+
// Emoticons
|
|
173
|
+
"Emoticons": "Emotikona",
|
|
174
|
+
"Grinning face": "Nasmejanoj lice",
|
|
175
|
+
"Grinning face with smiling eyes": "Nasmejanoj lice sa osmehom o\u010di",
|
|
176
|
+
"Face with tears of joy": "Suo\u010davaju sa suzama radosnicama",
|
|
177
|
+
"Smiling face with open mouth": "Nasmejano lice sa otvorenim ustima",
|
|
178
|
+
"Smiling face with open mouth and smiling eyes": "Lica sa otvorenim ustima i nasmejani o\u010di",
|
|
179
|
+
"Smiling face with open mouth and cold sweat": "Nasmejano lice sa otvorenih usta i hladan znoj",
|
|
180
|
+
"Smiling face with open mouth and tightly-closed eyes": "Nasmejano lice otvorenih usta i \u010dvrsto zatvorenih o\u010diju",
|
|
181
|
+
"Smiling face with halo": "Nasmejano lice sa oreolom",
|
|
182
|
+
"Smiling face with horns": "Nasmejano lice sa rogovima",
|
|
183
|
+
"Winking face": "Namigivanje lice",
|
|
184
|
+
"Smiling face with smiling eyes": "Lica sa osmehom o\u010di",
|
|
185
|
+
"Face savoring delicious food": "Lice u\u045bivaju\u0436i u ukusnu hranu",
|
|
186
|
+
"Relieved face": "Laknulo lice",
|
|
187
|
+
"Smiling face with heart-shaped eyes": "Nasmejano lice sa o\u010dima u obliku srca",
|
|
188
|
+
"Smiling face with sunglasses": "Nasmejano lice sa nao\u010dare",
|
|
189
|
+
"Smirking face": "Rugaju\u0436i lice",
|
|
190
|
+
"Neutral face": "Neutralno lice",
|
|
191
|
+
"Expressionless face": "Bez izraza lica.",
|
|
192
|
+
"Unamused face": "Nije zapaljen lice",
|
|
193
|
+
"Face with cold sweat": "Suo\u010davaju sa hladnim znojem",
|
|
194
|
+
"Pensive face": "Nevesela lica",
|
|
195
|
+
"Confused face": "Zbunjeno lice",
|
|
196
|
+
"Confounded face": "Dosadnih lice",
|
|
197
|
+
"Kissing face": "Ljubim lice",
|
|
198
|
+
"Face throwing a kiss": "Lice baca poljubac",
|
|
199
|
+
"Kissing face with smiling eyes": "Ljubi lice sa osmehom o\u010di",
|
|
200
|
+
"Kissing face with closed eyes": "Ljubi lice sa zatvorenim o\u010dima",
|
|
201
|
+
"Face with stuck out tongue": "Lice sa zaglavio jezik",
|
|
202
|
+
"Face with stuck out tongue and winking eye": "Lice sa zaglavljen jezik i namigivanje",
|
|
203
|
+
"Face with stuck out tongue and tightly-closed eyes": "Lice sa zaglavljen jezik i cvrsto zatvorene o\u010di",
|
|
204
|
+
"Disappointed face": "Razo\u010darani lice",
|
|
205
|
+
"Worried face": "Zabrinuto lice",
|
|
206
|
+
"Angry face": "Ljut lice",
|
|
207
|
+
"Pouting face": "Zlovoljan lice",
|
|
208
|
+
"Crying face": "Plakanje lice",
|
|
209
|
+
"Persevering face": "Istrajnog lice",
|
|
210
|
+
"Face with look of triumph": "Suo\u010davaju sa izgledom trijumfa",
|
|
211
|
+
"Disappointed but relieved face": "Razo\u010daran ali laknulo lice",
|
|
212
|
+
"Frowning face with open mouth": "Namršten lice sa otvorenim ustima",
|
|
213
|
+
"Anguished face": "Enih lica",
|
|
214
|
+
"Fearful face": "Strahu lice",
|
|
215
|
+
"Weary face": "Umorna lica",
|
|
216
|
+
"Sleepy face": "Spava mi se lice",
|
|
217
|
+
"Tired face": "Umorna lica",
|
|
218
|
+
"Grimacing face": "Klupi lice",
|
|
219
|
+
"Loudly crying face": "Glasno plakanje lice",
|
|
220
|
+
"Face with open mouth": "Suo\u010davaju sa otvorenim ustima",
|
|
221
|
+
"Hushed face": "Tihim lice",
|
|
222
|
+
"Face with open mouth and cold sweat": "Suo\u010davaju sa otvorenih usta i hladan znoj",
|
|
223
|
+
"Face screaming in fear": "Lice vrisak u strahu",
|
|
224
|
+
"Astonished face": "Zadivljeni lice",
|
|
225
|
+
"Flushed face": "Uplakanu lice",
|
|
226
|
+
"Sleeping face": "Pospanog lica",
|
|
227
|
+
"Dizzy face": "Lice mi se vrti",
|
|
228
|
+
"Face without mouth": "Lice bez jezika",
|
|
229
|
+
"Face with medical mask": "Suo\u010davaju sa medicinskim masku",
|
|
230
|
+
|
|
231
|
+
// Line breaker
|
|
232
|
+
"Break": "Prelom",
|
|
233
|
+
|
|
234
|
+
// Math
|
|
235
|
+
"Subscript": "Indeksni tekst",
|
|
236
|
+
"Superscript": "Eksponentni tekst",
|
|
237
|
+
|
|
238
|
+
// Full screen
|
|
239
|
+
"Fullscreen": "Puni ekran",
|
|
240
|
+
|
|
241
|
+
// Horizontal line
|
|
242
|
+
"Insert Horizontal Line": "Umetni horizontalnu liniju",
|
|
243
|
+
|
|
244
|
+
// Clear formatting
|
|
245
|
+
"Clear Formatting": "Brisanje oblikovanja",
|
|
246
|
+
|
|
247
|
+
// Undo, redo
|
|
248
|
+
"Undo": "Opozovi radnju",
|
|
249
|
+
"Redo": "Ponavljanje",
|
|
250
|
+
|
|
251
|
+
// Select all
|
|
252
|
+
"Select All": "Izaberi sve",
|
|
253
|
+
|
|
254
|
+
// Code view
|
|
255
|
+
"Code View": "Prikaz koda",
|
|
256
|
+
|
|
257
|
+
// Quote
|
|
258
|
+
"Quote": "Ponude",
|
|
259
|
+
"Increase": "Pove\u0107anje",
|
|
260
|
+
"Decrease": "Smanjivanje",
|
|
261
|
+
|
|
262
|
+
// Quick Insert
|
|
263
|
+
"Quick Insert": "Brzo umetanje",
|
|
264
|
+
|
|
265
|
+
// Spcial Characters
|
|
266
|
+
"Special Characters": "Specijalni znakovi",
|
|
267
|
+
"Latin": "Latino",
|
|
268
|
+
"Greek": "Grk",
|
|
269
|
+
"Cyrillic": "Ćirilica",
|
|
270
|
+
"Punctuation": "Interpunkcije",
|
|
271
|
+
"Currency": "Valuta",
|
|
272
|
+
"Arrows": "Strelice",
|
|
273
|
+
"Math": "Matematika",
|
|
274
|
+
"Misc": "Misc",
|
|
275
|
+
|
|
276
|
+
// Print.
|
|
277
|
+
"Print": "Odštampaj",
|
|
278
|
+
|
|
279
|
+
// Spell Checker.
|
|
280
|
+
"Spell Checker": "Kontrolor pravopisa",
|
|
281
|
+
|
|
282
|
+
// Help
|
|
283
|
+
"Help": "Pomoć",
|
|
284
|
+
"Shortcuts": "Prečice",
|
|
285
|
+
"Inline Editor": "Pri upisivanju Editor",
|
|
286
|
+
"Show the editor": "Prikaži urednik",
|
|
287
|
+
"Common actions": "Zajedničke akcije",
|
|
288
|
+
"Copy": "Kopija",
|
|
289
|
+
"Cut": "Rez",
|
|
290
|
+
"Paste": "Nalepi",
|
|
291
|
+
"Basic Formatting": "Osnovno oblikovanje",
|
|
292
|
+
"Increase quote level": "Povećati ponudu za nivo",
|
|
293
|
+
"Decrease quote level": "Smanjenje ponude nivo",
|
|
294
|
+
"Image / Video": "Slika / Video",
|
|
295
|
+
"Resize larger": "Veće veličine",
|
|
296
|
+
"Resize smaller": "Promena veličine manji",
|
|
297
|
+
"Table": "Sto",
|
|
298
|
+
"Select table cell": "Select ćelije",
|
|
299
|
+
"Extend selection one cell": "Proširite selekciju jednu ćeliju",
|
|
300
|
+
"Extend selection one row": "Proširite selekciju jedan red",
|
|
301
|
+
"Navigation": "Navigacija",
|
|
302
|
+
"Focus popup / toolbar": "Fokus Iskačući meni / traka sa alatkama",
|
|
303
|
+
"Return focus to previous position": "Vratiti fokus na prethodnu poziciju",
|
|
304
|
+
|
|
305
|
+
// Embed.ly
|
|
306
|
+
"Embed URL": "Ugradite URL",
|
|
307
|
+
"Paste in a URL to embed": "Nalepite URL adresu da biste ugradili",
|
|
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?": "Nalepljeni sadržaj dolazi iz Microsoft Word dokument. Da li želite zadržati u formatu ili počistiti?",
|
|
311
|
+
"Keep": "Nastavi",
|
|
312
|
+
"Clean": "Oиisti",
|
|
313
|
+
"Word Paste Detected": "Word Nalepi otkriven"
|
|
314
|
+
},
|
|
315
|
+
direction: "ltr"
|
|
316
|
+
};
|
|
317
|
+
|
|
318
|
+
}));
|