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
|
+
* Croatian
|
|
35
|
+
*/
|
|
36
|
+
|
|
37
|
+
$.FE.LANGUAGE['hr'] = {
|
|
38
|
+
translation: {
|
|
39
|
+
// Place holder
|
|
40
|
+
"Type something": "Napi\u0161i ne\u0161to",
|
|
41
|
+
|
|
42
|
+
// Basic formatting
|
|
43
|
+
"Bold": "Podebljaj",
|
|
44
|
+
"Italic": "Kurziv",
|
|
45
|
+
"Underline": "Podcrtano",
|
|
46
|
+
"Strikethrough": "Precrtano",
|
|
47
|
+
|
|
48
|
+
// Main buttons
|
|
49
|
+
"Insert": "Umetni",
|
|
50
|
+
"Delete": "Obri\u0161i",
|
|
51
|
+
"Cancel": "Otka\u017ei",
|
|
52
|
+
"OK": "U redu",
|
|
53
|
+
"Back": "Natrag",
|
|
54
|
+
"Remove": "Ukloni",
|
|
55
|
+
"More": "Vi\u0161e",
|
|
56
|
+
"Update": "A\u017euriraj",
|
|
57
|
+
"Style": "Stil",
|
|
58
|
+
|
|
59
|
+
// Font
|
|
60
|
+
"Font Family": "Odaberi font",
|
|
61
|
+
"Font Size": "Veli\u010dina fonta",
|
|
62
|
+
|
|
63
|
+
// Colors
|
|
64
|
+
"Colors": "Boje",
|
|
65
|
+
"Background": "Pozadina",
|
|
66
|
+
"Text": "Tekst",
|
|
67
|
+
"HEX Color": "Heksadecimalne boje",
|
|
68
|
+
|
|
69
|
+
// Paragraphs
|
|
70
|
+
"Paragraph Format": "Format odlomka",
|
|
71
|
+
"Normal": "Normalno",
|
|
72
|
+
"Code": "Izvorni kod",
|
|
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 odlomka",
|
|
80
|
+
"Inline Style": "Stil u liniji",
|
|
81
|
+
|
|
82
|
+
// Alignment
|
|
83
|
+
"Align": "Poravnaj",
|
|
84
|
+
"Align Left": "Poravnaj lijevo",
|
|
85
|
+
"Align Center": "Poravnaj po sredini",
|
|
86
|
+
"Align Right": "Poravnaj desno",
|
|
87
|
+
"Align Justify": "Obostrano poravnanje",
|
|
88
|
+
"None": "Nijedan",
|
|
89
|
+
|
|
90
|
+
// Lists
|
|
91
|
+
"Ordered List": "Ure\u0111ena lista",
|
|
92
|
+
"Unordered List": "Neure\u0111ena lista",
|
|
93
|
+
|
|
94
|
+
// Indent
|
|
95
|
+
"Decrease Indent": "Uvuci odlomak",
|
|
96
|
+
"Increase Indent": "Izvuci odlomak",
|
|
97
|
+
|
|
98
|
+
// Links
|
|
99
|
+
"Insert Link": "Umetni link",
|
|
100
|
+
"Open in new tab": "Otvori u novom prozoru",
|
|
101
|
+
"Open Link": "Otvori link",
|
|
102
|
+
"Edit Link": "Uredi link",
|
|
103
|
+
"Unlink": "Ukloni link",
|
|
104
|
+
"Choose Link": "Odaberi link",
|
|
105
|
+
|
|
106
|
+
// Images
|
|
107
|
+
"Insert Image": "Umetni sliku",
|
|
108
|
+
"Upload Image": "Prijenos slike",
|
|
109
|
+
"By URL": "Prema URL",
|
|
110
|
+
"Browse": "Odabir",
|
|
111
|
+
"Drop image": "Ispusti sliku",
|
|
112
|
+
"or click": "ili odaberi",
|
|
113
|
+
"Manage Images": "Upravljanje slikama",
|
|
114
|
+
"Loading": "U\u010ditavanje",
|
|
115
|
+
"Deleting": "Brisanje",
|
|
116
|
+
"Tags": "Oznake",
|
|
117
|
+
"Are you sure? Image will be deleted.": "Da li ste sigurni da \u017eelite obrisati ovu sliku?",
|
|
118
|
+
"Replace": "Zamijeni",
|
|
119
|
+
"Uploading": "Prijenos",
|
|
120
|
+
"Loading image": "Otvaram sliku",
|
|
121
|
+
"Display": "Prika\u017ei",
|
|
122
|
+
"Inline": "U liniji",
|
|
123
|
+
"Break Text": "Odvojeni tekst",
|
|
124
|
+
"Alternate Text": "Alternativni tekst",
|
|
125
|
+
"Change Size": "Promjena veli\u010dine",
|
|
126
|
+
"Width": "\u0160irina",
|
|
127
|
+
"Height": "Visina",
|
|
128
|
+
"Something went wrong. Please try again.": "Ne\u0161to je po\u0161lo po zlu. Molimo poku\u0161ajte ponovno.",
|
|
129
|
+
"Image Caption": "Opis slike",
|
|
130
|
+
"Advanced Edit": "Napredno uređivanje",
|
|
131
|
+
|
|
132
|
+
// Video
|
|
133
|
+
"Insert Video": "Umetni video",
|
|
134
|
+
"Embedded Code": "Ugra\u0111eni kod",
|
|
135
|
+
"Paste in a video URL": "Zalijepite u URL videozapisa",
|
|
136
|
+
"Drop video": "Ispusti video",
|
|
137
|
+
"Your browser does not support HTML5 video.": "Vaš preglednik ne podržava HTML video.",
|
|
138
|
+
"Upload Video": "Prenesi videozapis",
|
|
139
|
+
|
|
140
|
+
// Tables
|
|
141
|
+
"Insert Table": "Umetni tablicu",
|
|
142
|
+
"Table Header": "Zaglavlje tablice",
|
|
143
|
+
"Remove Table": "Izbri\u0161i tablicu",
|
|
144
|
+
"Table Style": "Tablica stil",
|
|
145
|
+
"Horizontal Align": "Horizontalna poravnanje",
|
|
146
|
+
"Row": "Red",
|
|
147
|
+
"Insert row above": "Umetni red iznad",
|
|
148
|
+
"Insert row below": "Umetni red ispod",
|
|
149
|
+
"Delete row": "Obri\u0161i red",
|
|
150
|
+
"Column": "Stupac",
|
|
151
|
+
"Insert column before": "Umetni stupac prije",
|
|
152
|
+
"Insert column after": "Umetni stupac poslije",
|
|
153
|
+
"Delete column": "Obri\u0161i stupac",
|
|
154
|
+
"Cell": "Polje",
|
|
155
|
+
"Merge cells": "Spoji polja",
|
|
156
|
+
"Horizontal split": "Horizontalno razdvajanje polja",
|
|
157
|
+
"Vertical split": "Vertikalno razdvajanje polja",
|
|
158
|
+
"Cell Background": "Polje pozadine",
|
|
159
|
+
"Vertical Align": "Vertikalno poravnanje",
|
|
160
|
+
"Top": "Vrh",
|
|
161
|
+
"Middle": "Sredina",
|
|
162
|
+
"Bottom": "Dno",
|
|
163
|
+
"Align Top": "Poravnaj na vrh",
|
|
164
|
+
"Align Middle": "Poravnaj po sredini",
|
|
165
|
+
"Align Bottom": "Poravnaj na dno",
|
|
166
|
+
"Cell Style": "Stil polja",
|
|
167
|
+
|
|
168
|
+
// Files
|
|
169
|
+
"Upload File": "Prijenos datoteke",
|
|
170
|
+
"Drop file": "Ispusti datoteku",
|
|
171
|
+
|
|
172
|
+
// Emoticons
|
|
173
|
+
"Emoticons": "Emotikoni",
|
|
174
|
+
"Grinning face": "Nacereno lice",
|
|
175
|
+
"Grinning face with smiling eyes": "Nacereno lice s nasmije\u0161enim o\u010dima",
|
|
176
|
+
"Face with tears of joy": "Lice sa suzama radosnicama",
|
|
177
|
+
"Smiling face with open mouth": "Nasmijano lice s otvorenim ustima",
|
|
178
|
+
"Smiling face with open mouth and smiling eyes": "Nasmijano lice s otvorenim ustima i nasmijanim o\u010dima",
|
|
179
|
+
"Smiling face with open mouth and cold sweat": "Nasmijano lice s otvorenim ustima i hladnim znojem",
|
|
180
|
+
"Smiling face with open mouth and tightly-closed eyes": "Nasmijano lice s otvorenim ustima i \u010dvrsto zatvorenih o\u010diju",
|
|
181
|
+
"Smiling face with halo": "Nasmijano lice sa aureolom",
|
|
182
|
+
"Smiling face with horns": "Nasmijano lice s rogovima",
|
|
183
|
+
"Winking face": "Lice koje namiguje",
|
|
184
|
+
"Smiling face with smiling eyes": "Nasmijano lice s nasmiješenim o\u010dima",
|
|
185
|
+
"Face savoring delicious food": "Lice koje u\u017eiva ukusnu hranu",
|
|
186
|
+
"Relieved face": "Lice s olak\u0161anjem",
|
|
187
|
+
"Smiling face with heart-shaped eyes": "Nasmijano lice sa o\u010dima u obliku srca",
|
|
188
|
+
"Smiling face with sunglasses": "Nasmijano lice sa sun\u010danim nao\u010dalama",
|
|
189
|
+
"Smirking face": "Zlokobno nasmije\u0161eno lice",
|
|
190
|
+
"Neutral face": "Neutralno lice",
|
|
191
|
+
"Expressionless face": "Bezizra\u017eajno lice",
|
|
192
|
+
"Unamused face": "Nezainteresirano lice",
|
|
193
|
+
"Face with cold sweat": "Lice s hladnim znojem",
|
|
194
|
+
"Pensive face": "Zami\u0161ljeno lice",
|
|
195
|
+
"Confused face": "Zbunjeno lice",
|
|
196
|
+
"Confounded face": "Zbunjeno lice",
|
|
197
|
+
"Kissing face": "Lice s poljupcem",
|
|
198
|
+
"Face throwing a kiss": "Lice koje baca poljubac",
|
|
199
|
+
"Kissing face with smiling eyes": "Lice s poljupcem s nasmije\u0161enim o\u010dima",
|
|
200
|
+
"Kissing face with closed eyes": "Lice s poljupcem zatvorenih o\u010diju",
|
|
201
|
+
"Face with stuck out tongue": "Lice s ispru\u017eenim jezikom",
|
|
202
|
+
"Face with stuck out tongue and winking eye": "Lice s ispru\u017eenim jezikom koje namiguje",
|
|
203
|
+
"Face with stuck out tongue and tightly-closed eyes": "Lice s ispru\u017eenim jezikom i \u010dvrsto zatvorenih o\u010diju",
|
|
204
|
+
"Disappointed face": "Razo\u010darano lice",
|
|
205
|
+
"Worried face": "Zabrinuto lice",
|
|
206
|
+
"Angry face": "Ljutito lice",
|
|
207
|
+
"Pouting face": "Nadureno lice",
|
|
208
|
+
"Crying face": "Uplakano lice",
|
|
209
|
+
"Persevering face": "Lice s negodovanjem",
|
|
210
|
+
"Face with look of triumph": "Trijumfalno lice",
|
|
211
|
+
"Disappointed but relieved face": "Razo\u010darano ali olakšano lice",
|
|
212
|
+
"Frowning face with open mouth": "Namrgo\u0111eno lice s otvorenim ustima",
|
|
213
|
+
"Anguished face": "Tjeskobno lice",
|
|
214
|
+
"Fearful face": "Prestra\u0161eno lice",
|
|
215
|
+
"Weary face": "Umorno lice",
|
|
216
|
+
"Sleepy face": "Pospano lice",
|
|
217
|
+
"Tired face": "Umorno lice",
|
|
218
|
+
"Grimacing face": "Lice sa grimasama",
|
|
219
|
+
"Loudly crying face": "Glasno pla\u010du\u0107e lice",
|
|
220
|
+
"Face with open mouth": "Lice s otvorenim ustima",
|
|
221
|
+
"Hushed face": "Tiho lice",
|
|
222
|
+
"Face with open mouth and cold sweat": "Lice s otvorenim ustima i hladnim znojem",
|
|
223
|
+
"Face screaming in fear": "Lice koje vri\u0161ti u strahu",
|
|
224
|
+
"Astonished face": "Zaprepa\u0161teno lice",
|
|
225
|
+
"Flushed face": "Zajapureno lice",
|
|
226
|
+
"Sleeping face": "Spava\u0107e lice",
|
|
227
|
+
"Dizzy face": "Lice sa vrtoglavicom",
|
|
228
|
+
"Face without mouth": "Lice bez usta",
|
|
229
|
+
"Face with medical mask": "Lice s medicinskom maskom",
|
|
230
|
+
|
|
231
|
+
// Line breaker
|
|
232
|
+
"Break": "Odvojeno",
|
|
233
|
+
|
|
234
|
+
// Math
|
|
235
|
+
"Subscript": "Indeks",
|
|
236
|
+
"Superscript": "Eksponent",
|
|
237
|
+
|
|
238
|
+
// Full screen
|
|
239
|
+
"Fullscreen": "Puni zaslon",
|
|
240
|
+
|
|
241
|
+
// Horizontal line
|
|
242
|
+
"Insert Horizontal Line": "Umetni liniju",
|
|
243
|
+
|
|
244
|
+
// Clear formatting
|
|
245
|
+
"Clear Formatting": "Ukloni oblikovanje",
|
|
246
|
+
|
|
247
|
+
// Undo, redo
|
|
248
|
+
"Undo": "Korak natrag",
|
|
249
|
+
"Redo": "Korak naprijed",
|
|
250
|
+
|
|
251
|
+
// Select all
|
|
252
|
+
"Select All": "Odaberi sve",
|
|
253
|
+
|
|
254
|
+
// Code view
|
|
255
|
+
"Code View": "Pregled koda",
|
|
256
|
+
|
|
257
|
+
// Quote
|
|
258
|
+
"Quote": "Citat",
|
|
259
|
+
"Increase": "Pove\u0107aj",
|
|
260
|
+
"Decrease": "Smanji",
|
|
261
|
+
|
|
262
|
+
// Quick Insert
|
|
263
|
+
"Quick Insert": "Brzo umetak",
|
|
264
|
+
|
|
265
|
+
// Spcial Characters
|
|
266
|
+
"Special Characters": "Posebni znakovi",
|
|
267
|
+
"Latin": "Latinski",
|
|
268
|
+
"Greek": "Grčki",
|
|
269
|
+
"Cyrillic": "Ćirilica",
|
|
270
|
+
"Punctuation": "Interpunkcija",
|
|
271
|
+
"Currency": "Valuta",
|
|
272
|
+
"Arrows": "Strelice",
|
|
273
|
+
"Math": "Matematika",
|
|
274
|
+
"Misc": "Razno",
|
|
275
|
+
|
|
276
|
+
// Print.
|
|
277
|
+
"Print": "Otisak",
|
|
278
|
+
|
|
279
|
+
// Spell Checker.
|
|
280
|
+
"Spell Checker": "Provjeritelj pravopisa",
|
|
281
|
+
|
|
282
|
+
// Help
|
|
283
|
+
"Help": "Pomoć",
|
|
284
|
+
"Shortcuts": "Prečaci",
|
|
285
|
+
"Inline Editor": "Inline editor",
|
|
286
|
+
"Show the editor": "Prikaži urednika",
|
|
287
|
+
"Common actions": "Zajedničke radnje",
|
|
288
|
+
"Copy": "Kopirati",
|
|
289
|
+
"Cut": "Rez",
|
|
290
|
+
"Paste": "Zalijepiti",
|
|
291
|
+
"Basic Formatting": "Osnovno oblikovanje",
|
|
292
|
+
"Increase quote level": "Povećati razinu citata",
|
|
293
|
+
"Decrease quote level": "Smanjite razinu citata",
|
|
294
|
+
"Image / Video": "Slika / video",
|
|
295
|
+
"Resize larger": "Promijenite veličinu većeg",
|
|
296
|
+
"Resize smaller": "Promijenite veličinu manju",
|
|
297
|
+
"Table": "Stol",
|
|
298
|
+
"Select table cell": "Odaberite stolnu ćeliju",
|
|
299
|
+
"Extend selection one cell": "Proširiti odabir jedne ćelije",
|
|
300
|
+
"Extend selection one row": "Proširite odabir jednog retka",
|
|
301
|
+
"Navigation": "Navigacija",
|
|
302
|
+
"Focus popup / toolbar": "Fokus popup / alatnoj traci",
|
|
303
|
+
"Return focus to previous position": "Vratiti fokus na prethodnu poziciju",
|
|
304
|
+
|
|
305
|
+
// Embed.ly
|
|
306
|
+
"Embed URL": "Uredi url",
|
|
307
|
+
"Paste in a URL to embed": "Zalijepite URL da biste ga 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?": "Zalijepi sadržaj dolazi iz Microsoft Word dokumenta. Želite li zadržati format ili očistiti?",
|
|
311
|
+
"Keep": "Zadržati",
|
|
312
|
+
"Clean": "Čist",
|
|
313
|
+
"Word Paste Detected": "Otkrivena je zastavica riječi"
|
|
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
|
+
* Hungarian
|
|
35
|
+
*/
|
|
36
|
+
|
|
37
|
+
$.FE.LANGUAGE['hu'] = {
|
|
38
|
+
translation: {
|
|
39
|
+
// Place holder
|
|
40
|
+
"Type something": "Sz\u00f6veg...",
|
|
41
|
+
|
|
42
|
+
// Basic formatting
|
|
43
|
+
"Bold": "F\u00e9lk\u00f6v\u00e9r",
|
|
44
|
+
"Italic": "D\u0151lt",
|
|
45
|
+
"Underline": "Al\u00e1h\u00fazott",
|
|
46
|
+
"Strikethrough": "\u00c1th\u00fazott",
|
|
47
|
+
|
|
48
|
+
// Main buttons
|
|
49
|
+
"Insert": "Beilleszt\u00e9s",
|
|
50
|
+
"Delete": "T\u00f6rl\u00e9s",
|
|
51
|
+
"Cancel": "M\u00e9gse",
|
|
52
|
+
"OK": "Rendben",
|
|
53
|
+
"Back": "Vissza",
|
|
54
|
+
"Remove": "Elt\u00e1vol\u00edt\u00e1s",
|
|
55
|
+
"More": "T\u00f6bb",
|
|
56
|
+
"Update": "Friss\u00edt\u00e9s",
|
|
57
|
+
"Style": "St\u00edlus",
|
|
58
|
+
|
|
59
|
+
// Font
|
|
60
|
+
"Font Family": "Bet\u0171t\u00edpus",
|
|
61
|
+
"Font Size": "Bet\u0171m\u00e9ret",
|
|
62
|
+
|
|
63
|
+
// Colors
|
|
64
|
+
"Colors": "Sz\u00ednek",
|
|
65
|
+
"Background": "H\u00e1tt\u00e9r",
|
|
66
|
+
"Text": "Sz\u00f6veg",
|
|
67
|
+
"HEX Color": "Hex színű",
|
|
68
|
+
|
|
69
|
+
// Paragraphs
|
|
70
|
+
"Paragraph Format": "Form\u00e1tumok",
|
|
71
|
+
"Normal": "Norm\u00e1l",
|
|
72
|
+
"Code": "K\u00f3d",
|
|
73
|
+
"Heading 1": "C\u00edmsor 1",
|
|
74
|
+
"Heading 2": "C\u00edmsor 2",
|
|
75
|
+
"Heading 3": "C\u00edmsor 3",
|
|
76
|
+
"Heading 4": "C\u00edmsor 4",
|
|
77
|
+
|
|
78
|
+
// Style
|
|
79
|
+
"Paragraph Style": "Bekezd\u00e9s st\u00edlusa",
|
|
80
|
+
"Inline Style": " Helyi st\u00edlus",
|
|
81
|
+
|
|
82
|
+
// Alignment
|
|
83
|
+
"Align": "Igaz\u00edt\u00e1s",
|
|
84
|
+
"Align Left": "Balra igaz\u00edt",
|
|
85
|
+
"Align Center": "K\u00f6z\u00e9pre z\u00e1r",
|
|
86
|
+
"Align Right": "Jobbra igaz\u00edt",
|
|
87
|
+
"Align Justify": "Sorkiz\u00e1r\u00e1s",
|
|
88
|
+
"None": "Egyik sem",
|
|
89
|
+
|
|
90
|
+
// Lists
|
|
91
|
+
"Ordered List": "Sz\u00e1moz\u00e1s",
|
|
92
|
+
"Unordered List": "Felsorol\u00e1s",
|
|
93
|
+
|
|
94
|
+
// Indent
|
|
95
|
+
"Decrease Indent": "Beh\u00faz\u00e1s cs\u00f6kkent\u00e9se",
|
|
96
|
+
"Increase Indent": "Beh\u00faz\u00e1s n\u00f6vel\u00e9se",
|
|
97
|
+
|
|
98
|
+
// Links
|
|
99
|
+
"Insert Link": "Hivatkoz\u00e1s beilleszt\u00e9se",
|
|
100
|
+
"Open in new tab": "Megnyit\u00e1s \u00faj lapon",
|
|
101
|
+
"Open Link": "Hivatkoz\u00e1s megnyit\u00e1sa",
|
|
102
|
+
"Edit Link": "Hivatkoz\u00e1 s szerkeszt\u00e9se",
|
|
103
|
+
"Unlink": "Hivatkoz\u00e1s t\u00f6rl\u00e9se",
|
|
104
|
+
"Choose Link": "Keres\u00e9s a lapok k\u00f6z\u00f6tt",
|
|
105
|
+
|
|
106
|
+
// Images
|
|
107
|
+
"Insert Image": "K\u00e9p beilleszt\u00e9se",
|
|
108
|
+
"Upload Image": "K\u00e9p felt\u00f6lt\u00e9se",
|
|
109
|
+
"By URL": "Webc\u00edm megad\u00e1sa",
|
|
110
|
+
"Browse": "B\u00f6ng\u00e9sz\u00e9s",
|
|
111
|
+
"Drop image": "H\u00fazza ide a k\u00e9pet",
|
|
112
|
+
"or click": "vagy kattintson ide",
|
|
113
|
+
"Manage Images": "K\u00e9pek kezel\u00e9se",
|
|
114
|
+
"Loading": "Bet\u00f6lt\u00e9s...",
|
|
115
|
+
"Deleting": "T\u00f6rl\u00e9s...",
|
|
116
|
+
"Tags": "C\u00edmk\u00e9k",
|
|
117
|
+
"Are you sure? Image will be deleted.": "Biztos benne? A k\u00e9p t\u00f6rl\u00e9sre ker\u00fcl.",
|
|
118
|
+
"Replace": "Csere",
|
|
119
|
+
"Uploading": "Felt\u00f6lt\u00e9s",
|
|
120
|
+
"Loading image": "K\u00e9p bet\u00f6lt\u00e9se",
|
|
121
|
+
"Display": "Kijelz\u0151",
|
|
122
|
+
"Inline": "Sorban",
|
|
123
|
+
"Break Text": "Sz\u00f6veg t\u00f6r\u00e9se",
|
|
124
|
+
"Alternate Text": "Alternat\u00edv sz\u00f6veg",
|
|
125
|
+
"Change Size": "M\u00e9ret m\u00f3dos\u00edt\u00e1sa",
|
|
126
|
+
"Width": "Sz\u00e9less\u00e9g",
|
|
127
|
+
"Height": "Magass\u00e1g",
|
|
128
|
+
"Something went wrong. Please try again.": "Valami elromlott. K\u00e9rlek pr\u00f3b\u00e1ld \u00fajra.",
|
|
129
|
+
"Image Caption": "Képaláírás",
|
|
130
|
+
"Advanced Edit": "Fejlett szerkesztés",
|
|
131
|
+
|
|
132
|
+
// Video
|
|
133
|
+
"Insert Video": "Vide\u00f3 beilleszt\u00e9se",
|
|
134
|
+
"Embedded Code": "K\u00f3d bem\u00e1sol\u00e1sa",
|
|
135
|
+
"Paste in a video URL": "Illessze be a videó URL-címét",
|
|
136
|
+
"Drop video": "Csepp videót",
|
|
137
|
+
"Your browser does not support HTML5 video.": "A böngészője nem támogatja a html5 videót.",
|
|
138
|
+
"Upload Video": "Videó feltöltése",
|
|
139
|
+
|
|
140
|
+
// Tables
|
|
141
|
+
"Insert Table": "T\u00e1bl\u00e1zat beilleszt\u00e9se",
|
|
142
|
+
"Table Header": "T\u00e1bl\u00e1zat fejl\u00e9ce",
|
|
143
|
+
"Remove Table": "T\u00e1bla elt\u00e1vol\u00edt\u00e1sa",
|
|
144
|
+
"Table Style": "T\u00e1bl\u00e1zat st\u00edlusa",
|
|
145
|
+
"Horizontal Align": "V\u00edzszintes igaz\u00edt\u00e1s",
|
|
146
|
+
"Row": "Sor",
|
|
147
|
+
"Insert row above": "Sor besz\u00far\u00e1sa el\u00e9",
|
|
148
|
+
"Insert row below": "Sor besz\u00far\u00e1sa m\u00f6g\u00e9",
|
|
149
|
+
"Delete row": "Sor t\u00f6rl\u00e9se",
|
|
150
|
+
"Column": "Oszlop",
|
|
151
|
+
"Insert column before": "Oszlop besz\u00far\u00e1sa el\u00e9",
|
|
152
|
+
"Insert column after": "Oszlop besz\u00far\u00e1sa m\u00f6g\u00e9",
|
|
153
|
+
"Delete column": "Oszlop t\u00f6rl\u00e9se",
|
|
154
|
+
"Cell": "Cella",
|
|
155
|
+
"Merge cells": "Cell\u00e1k egyes\u00edt\u00e9se",
|
|
156
|
+
"Horizontal split": "V\u00edzszintes osztott",
|
|
157
|
+
"Vertical split": "F\u00fcgg\u0151leges osztott",
|
|
158
|
+
"Cell Background": "Cella h\u00e1ttere",
|
|
159
|
+
"Vertical Align": "F\u00fcgg\u0151leges fej\u00e1ll\u00edt\u00e1s",
|
|
160
|
+
"Top": "Fels\u0151",
|
|
161
|
+
"Middle": "K\u00f6z\u00e9ps\u0151",
|
|
162
|
+
"Bottom": "Als\u00f3",
|
|
163
|
+
"Align Top": "Igaz\u00edtsa fel\u00fclre",
|
|
164
|
+
"Align Middle": "Igaz\u00edtsa k\u00f6z\u00e9pre",
|
|
165
|
+
"Align Bottom": "Igaz\u00edtsa al\u00falra",
|
|
166
|
+
"Cell Style": "Cella st\u00edlusa",
|
|
167
|
+
|
|
168
|
+
// Files
|
|
169
|
+
"Upload File": "F\u00e1jl felt\u00f6lt\u00e9se",
|
|
170
|
+
"Drop file": "H\u00fazza ide a f\u00e1jlt",
|
|
171
|
+
|
|
172
|
+
// Emoticons
|
|
173
|
+
"Emoticons": "Hangulatjelek",
|
|
174
|
+
"Grinning face": "Vigyorg\u00f3 arc",
|
|
175
|
+
"Grinning face with smiling eyes": "Vigyorg\u00f3 arc mosolyg\u00f3 szemekkel",
|
|
176
|
+
"Face with tears of joy": "Arc \u00e1t az \u00f6r\u00f6m k\u00f6nnyei",
|
|
177
|
+
"Smiling face with open mouth": "Mosolyg\u00f3 arc t\u00e1tott sz\u00e1jjal",
|
|
178
|
+
"Smiling face with open mouth and smiling eyes": "Mosolyg\u00f3 arc t\u00e1tott sz\u00e1jjal \u00e9s mosolyg\u00f3 szemek",
|
|
179
|
+
"Smiling face with open mouth and cold sweat": "Mosolyg\u00f3 arc t\u00e1tott sz\u00e1jjal \u00e9s hideg ver\u00edt\u00e9k",
|
|
180
|
+
"Smiling face with open mouth and tightly-closed eyes": "Mosolyg\u00f3 arc t\u00e1tott sz\u00e1jjal \u00e9s szorosan lehunyt szemmel",
|
|
181
|
+
"Smiling face with halo": "Mosolyg\u00f3 arc dicsf\u00e9nyben",
|
|
182
|
+
"Smiling face with horns": "Mosolyg\u00f3 arc szarvakkal",
|
|
183
|
+
"Winking face": "Kacsint\u00f3s arc",
|
|
184
|
+
"Smiling face with smiling eyes": "Mosolyg\u00f3 arc mosolyg\u00f3 szemekkel",
|
|
185
|
+
"Face savoring delicious food": "Arc \u00edzlelgette \u00edzletes \u00e9telek",
|
|
186
|
+
"Relieved face": "Megk\u00f6nnyebb\u00fclt arc",
|
|
187
|
+
"Smiling face with heart-shaped eyes": "Mosolyg\u00f3 arc sz\u00edv alak\u00fa szemekkel",
|
|
188
|
+
"Smilin g face with sunglasses": "Mosolyg\u00f3 arc napszem\u00fcvegben",
|
|
189
|
+
"Smirking face": "Vigyorg\u00f3 arca",
|
|
190
|
+
"Neutral face": "Semleges arc",
|
|
191
|
+
"Expressionless face": "Kifejez\u00e9stelen arc",
|
|
192
|
+
"Unamused face": "Unott arc",
|
|
193
|
+
"Face with cold sweat": "Arc\u00e1n hideg verejt\u00e9kkel",
|
|
194
|
+
"Pensive face": "T\u00f6preng\u0151 arc",
|
|
195
|
+
"Confused face": "Zavaros arc",
|
|
196
|
+
"Confounded face": "R\u00e1c\u00e1folt arc",
|
|
197
|
+
"Kissing face": "Cs\u00f3kos arc",
|
|
198
|
+
"Face throwing a kiss": "Arcra dobott egy cs\u00f3kot",
|
|
199
|
+
"Kissing face with smiling eyes": "Cs\u00f3kos arc\u00e1t mosolyg\u00f3 szemek",
|
|
200
|
+
"Kissing face with closed eyes": "Cs\u00f3kos arc\u00e1t csukott szemmel",
|
|
201
|
+
"Face with stuck out tongue": "Szembe kiny\u00faj totta a nyelv\u00e9t",
|
|
202
|
+
"Face with stuck out tongue and winking eye": "Szembe kiny\u00fajtotta a nyelv\u00e9t, \u00e9s kacsint\u00f3 szem",
|
|
203
|
+
"Face with stuck out tongue and tightly-closed eyes": "Arc kiny\u00fajtotta a nyelv\u00e9t, \u00e9s szorosan lehunyt szemmel",
|
|
204
|
+
"Disappointed face": "Csal\u00f3dott arc",
|
|
205
|
+
"Worried face": "Agg\u00f3d\u00f3 arc\u00e1t",
|
|
206
|
+
"Angry face": "D\u00fch\u00f6s arc",
|
|
207
|
+
"Pouting face": "Duzzog\u00f3 arc",
|
|
208
|
+
"Crying face": "S\u00edr\u00f3 arc",
|
|
209
|
+
"Persevering face": "Kitart\u00f3 arc",
|
|
210
|
+
"Face with look of triumph": "Arc\u00e1t diadalmas pillant\u00e1st",
|
|
211
|
+
"Disappointed but relieved face": "Csal\u00f3dott, de megk\u00f6nnyebb\u00fclt arc",
|
|
212
|
+
"Frowning face with open mouth": "Komor arcb\u00f3l t\u00e1tott sz\u00e1jjal",
|
|
213
|
+
"Anguished face": "Gy\u00f6tr\u0151d\u0151 arc",
|
|
214
|
+
"Fearful face": "F\u00e9lelmetes arc",
|
|
215
|
+
"Weary face": "F\u00e1radt arc",
|
|
216
|
+
"Sleepy face": "\u00e1lmos arc",
|
|
217
|
+
"Tired face": "F\u00e1radt arc",
|
|
218
|
+
"Grimacing face": "Elfintorodott arc",
|
|
219
|
+
"Loudly crying face": "Hangosan s\u00edr\u00f3 arc",
|
|
220
|
+
"Face with open mouth": "Arc nyitott sz\u00e1jjal",
|
|
221
|
+
"Hushed face": "Csit\u00edtott arc",
|
|
222
|
+
"Face with open mouth and cold sweat": "Arc t\u00e1tott sz\u00e1jjal \u00e9s hideg ver\u00edt\u00e9k",
|
|
223
|
+
"Face screaming in fear": "Sikoltoz\u00f3 arc a f\u00e9lelemt\u0151l",
|
|
224
|
+
"Astonished face": "Meglepett arc",
|
|
225
|
+
"Flushed face": "Kipirult arc",
|
|
226
|
+
"Sleeping face": "Alv\u00f3 arc",
|
|
227
|
+
"Dizzy face": " Sz\u00e1d\u00fcl\u0151 arc",
|
|
228
|
+
"Face without mouth": "Arc n\u00e9lküli sz\u00e1j",
|
|
229
|
+
"Face with medical mask": "Arc\u00e1n orvosi maszk",
|
|
230
|
+
|
|
231
|
+
// Line breaker
|
|
232
|
+
"Break": "T\u00f6r\u00e9s",
|
|
233
|
+
|
|
234
|
+
// Math
|
|
235
|
+
"Subscript": "Als\u00f3 index",
|
|
236
|
+
"Superscript": "Fels\u0151 index",
|
|
237
|
+
|
|
238
|
+
// Full screen
|
|
239
|
+
"Fullscreen": "Teljes k\u00e9perny\u0151",
|
|
240
|
+
|
|
241
|
+
// Horizontal line
|
|
242
|
+
"Insert Horizontal Line": "V\u00edzszintes vonal",
|
|
243
|
+
|
|
244
|
+
// Clear formatting
|
|
245
|
+
"Clear Formatting": "Form\u00e1z\u00e1s elt\u00e1vol\u00edt\u00e1sa",
|
|
246
|
+
|
|
247
|
+
// Undo, redo
|
|
248
|
+
"Undo": "Visszavon\u00e1s",
|
|
249
|
+
"Redo": "Ism\u00e9t",
|
|
250
|
+
|
|
251
|
+
// Select all
|
|
252
|
+
"Select All": "Minden kijel\u00f6l\u00e9se",
|
|
253
|
+
|
|
254
|
+
// Code view
|
|
255
|
+
"Code View": "Forr\u00e1sk\u00f3d",
|
|
256
|
+
|
|
257
|
+
// Quote
|
|
258
|
+
"Quote": "Id\u00e9zet",
|
|
259
|
+
"Increase": "N\u00f6vel\u00e9s",
|
|
260
|
+
"Decrease": "Cs\u00f6kkent\u00e9s",
|
|
261
|
+
|
|
262
|
+
// Quick Insert
|
|
263
|
+
"Quick Insert": "Beilleszt\u00e9s",
|
|
264
|
+
|
|
265
|
+
// Spcial Characters
|
|
266
|
+
"Special Characters": "Speciális karakterek",
|
|
267
|
+
"Latin": "Latin",
|
|
268
|
+
"Greek": "Görög",
|
|
269
|
+
"Cyrillic": "Cirill",
|
|
270
|
+
"Punctuation": "Központozás",
|
|
271
|
+
"Currency": "Valuta",
|
|
272
|
+
"Arrows": "Nyilak",
|
|
273
|
+
"Math": "Matematikai",
|
|
274
|
+
"Misc": "Misc",
|
|
275
|
+
|
|
276
|
+
// Print.
|
|
277
|
+
"Print": "Nyomtatás",
|
|
278
|
+
|
|
279
|
+
// Spell Checker.
|
|
280
|
+
"Spell Checker": "Helyesírás-ellenőrző",
|
|
281
|
+
|
|
282
|
+
// Help
|
|
283
|
+
"Help": "Segítség",
|
|
284
|
+
"Shortcuts": "Hivatkozások",
|
|
285
|
+
"Inline Editor": "Inline szerkesztő",
|
|
286
|
+
"Show the editor": "Mutassa meg a szerkesztőt",
|
|
287
|
+
"Common actions": "Közös cselekvések",
|
|
288
|
+
"Copy": "Másolat",
|
|
289
|
+
"Cut": "Vágott",
|
|
290
|
+
"Paste": "Paszta",
|
|
291
|
+
"Basic Formatting": "Alap formázás",
|
|
292
|
+
"Increase quote level": "Növeli az idézet szintjét",
|
|
293
|
+
"Decrease quote level": "Csökkenti az árazási szintet",
|
|
294
|
+
"Image / Video": "Kép / videó",
|
|
295
|
+
"Resize larger": "Nagyobb átméretezés",
|
|
296
|
+
"Resize smaller": "Kisebb méretűek",
|
|
297
|
+
"Table": "Asztal",
|
|
298
|
+
"Select table cell": "Válasszon táblázatcellát",
|
|
299
|
+
"Extend selection one cell": "Kiterjesztheti a kiválasztást egy cellára",
|
|
300
|
+
"Extend selection one row": "Szűkítse ki az egy sort",
|
|
301
|
+
"Navigation": "Navigáció",
|
|
302
|
+
"Focus popup / toolbar": "Fókusz felugró ablak / eszköztár",
|
|
303
|
+
"Return focus to previous position": "Visszaáll az előző pozícióra",
|
|
304
|
+
|
|
305
|
+
// Embed.ly
|
|
306
|
+
"Embed URL": "Beágyazott url",
|
|
307
|
+
"Paste in a URL to embed": "Beilleszteni egy URL-t a beágyazáshoz",
|
|
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?": "A beillesztett tartalom egy microsoft szó dokumentumból származik. szeretné megtartani a formátumot vagy tisztítani?",
|
|
311
|
+
"Keep": "Tart",
|
|
312
|
+
"Clean": "Tiszta",
|
|
313
|
+
"Word Paste Detected": "Szópaszta észlelhető"
|
|
314
|
+
},
|
|
315
|
+
direction: "ltr"
|
|
316
|
+
};
|
|
317
|
+
|
|
318
|
+
}));
|