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,319 @@
|
|
|
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
|
+
* Indonesian
|
|
35
|
+
*/
|
|
36
|
+
|
|
37
|
+
$.FE.LANGUAGE['id'] = {
|
|
38
|
+
translation: {
|
|
39
|
+
// Place holder
|
|
40
|
+
"Type something": "Ketik sesuatu",
|
|
41
|
+
|
|
42
|
+
// Basic formatting
|
|
43
|
+
"Bold": "Tebal",
|
|
44
|
+
"Italic": "Miring",
|
|
45
|
+
"Underline": "Garis bawah",
|
|
46
|
+
"Strikethrough": "Coret",
|
|
47
|
+
|
|
48
|
+
// Main buttons
|
|
49
|
+
"Insert": "Memasukkan",
|
|
50
|
+
"Delete": "Hapus",
|
|
51
|
+
"Cancel": "Batal",
|
|
52
|
+
"OK": "Ok",
|
|
53
|
+
"Back": "Kembali",
|
|
54
|
+
"Remove": "Hapus",
|
|
55
|
+
"More": "Lebih",
|
|
56
|
+
"Update": "Memperbarui",
|
|
57
|
+
"Style": "Gaya",
|
|
58
|
+
|
|
59
|
+
// Font
|
|
60
|
+
"Font Family": "Jenis Huruf",
|
|
61
|
+
"Font Size": "Ukuran leter",
|
|
62
|
+
|
|
63
|
+
// Colors
|
|
64
|
+
"Colors": "Warna",
|
|
65
|
+
"Background": "Latar belakang",
|
|
66
|
+
"Text": "Teks",
|
|
67
|
+
"HEX Color": "Warna hex",
|
|
68
|
+
|
|
69
|
+
// Paragraphs
|
|
70
|
+
"Paragraph Format": "Format",
|
|
71
|
+
"Normal": "Normal",
|
|
72
|
+
"Code": "Kode",
|
|
73
|
+
"Heading 1": "Header 1",
|
|
74
|
+
"Heading 2": "Header 2",
|
|
75
|
+
"Heading 3": "Header 3",
|
|
76
|
+
"Heading 4": "Header 4",
|
|
77
|
+
|
|
78
|
+
// Style
|
|
79
|
+
"Paragraph Style": "Paragraf gaya",
|
|
80
|
+
"Inline Style": "Di barisan gaya",
|
|
81
|
+
|
|
82
|
+
// Alignment
|
|
83
|
+
"Align": "Rate",
|
|
84
|
+
"Align Left": "Rate kiri",
|
|
85
|
+
"Align Center": "Rate tengah",
|
|
86
|
+
"Align Right": "Rata kanan",
|
|
87
|
+
"Align Justify": "Justifi",
|
|
88
|
+
"None": "Tak satupun",
|
|
89
|
+
|
|
90
|
+
// Lists
|
|
91
|
+
"Ordered List": "List nomor",
|
|
92
|
+
"Unordered List": "List simbol",
|
|
93
|
+
|
|
94
|
+
// Indent
|
|
95
|
+
"Decrease Indent": "Turunkan inden",
|
|
96
|
+
"Increase Indent": "Tambah inden",
|
|
97
|
+
|
|
98
|
+
// Links
|
|
99
|
+
"Insert Link": "Memasukkan link",
|
|
100
|
+
"Open in new tab": "Buka di tab baru",
|
|
101
|
+
"Open Link": "Buka tautan",
|
|
102
|
+
"Edit Link": "Mengedit link",
|
|
103
|
+
"Unlink": "Menghapus link",
|
|
104
|
+
"Choose Link": "Memilih link",
|
|
105
|
+
|
|
106
|
+
// Images
|
|
107
|
+
"Insert Image": "Memasukkan gambar",
|
|
108
|
+
"Upload Image": "Meng-upload gambar",
|
|
109
|
+
"By URL": "Oleh URL",
|
|
110
|
+
"Browse": "Melihat-lihat",
|
|
111
|
+
"Drop image": "Jatuhkan gambar",
|
|
112
|
+
"or click": "atau klik",
|
|
113
|
+
"Manage Images": "Mengelola gambar",
|
|
114
|
+
"Loading": "Pemuatan",
|
|
115
|
+
"Deleting": "Menghapus",
|
|
116
|
+
"Tags": "Label",
|
|
117
|
+
"Are you sure? Image will be deleted.": "Apakah Anda yakin? Gambar akan dihapus.",
|
|
118
|
+
"Replace": "Mengganti",
|
|
119
|
+
"Uploading": "Gambar upload",
|
|
120
|
+
"Loading image": "Pemuatan gambar",
|
|
121
|
+
"Display": "Pameran",
|
|
122
|
+
"Inline": "Di barisan",
|
|
123
|
+
"Break Text": "Memecah teks",
|
|
124
|
+
"Alternate Text": "Teks alternatif",
|
|
125
|
+
"Change Size": "Ukuran perubahan",
|
|
126
|
+
"Width": "Lebar",
|
|
127
|
+
"Height": "Tinggi",
|
|
128
|
+
"Something went wrong. Please try again.": "Ada yang salah. Silakan coba lagi.",
|
|
129
|
+
"Image Caption": "Keterangan gambar",
|
|
130
|
+
"Advanced Edit": "Edit lanjutan",
|
|
131
|
+
|
|
132
|
+
// Video
|
|
133
|
+
"Insert Video": "Memasukkan video",
|
|
134
|
+
"Embedded Code": "Kode tertanam",
|
|
135
|
+
"Paste in a video URL": "Paste di url video",
|
|
136
|
+
"Drop video": "Jatuhkan video",
|
|
137
|
+
"Your browser does not support HTML5 video.": "Browser Anda tidak mendukung video html5.",
|
|
138
|
+
"Upload Video": "Mengunggah video",
|
|
139
|
+
|
|
140
|
+
// Tables
|
|
141
|
+
"Insert Table": "Sisipkan tabel",
|
|
142
|
+
"Table Header": "Header tabel",
|
|
143
|
+
"Remove Table": "Hapus tabel",
|
|
144
|
+
"Table Style": "Gaya tabel",
|
|
145
|
+
"Horizontal Align": "Menyelaraskan horisontal",
|
|
146
|
+
|
|
147
|
+
"Row": "Baris",
|
|
148
|
+
"Insert row above": "Sisipkan baris di atas",
|
|
149
|
+
"Insert row below": "Sisipkan baris di bawah",
|
|
150
|
+
"Delete row": "Hapus baris",
|
|
151
|
+
"Column": "Kolom",
|
|
152
|
+
"Insert column before": "Sisipkan kolom sebelumSisipkan kolom sebelum",
|
|
153
|
+
"Insert column after": "Sisipkan kolom setelah",
|
|
154
|
+
"Delete column": "Hapus kolom",
|
|
155
|
+
"Cell": "Sel",
|
|
156
|
+
"Merge cells": "Menggabungkan sel",
|
|
157
|
+
"Horizontal split": "Perpecahan horisontal",
|
|
158
|
+
"Vertical split": "Perpecahan vertikal",
|
|
159
|
+
"Cell Background": "Latar belakang sel",
|
|
160
|
+
"Vertical Align": "Menyelaraskan vertikal",
|
|
161
|
+
"Top": "Teratas",
|
|
162
|
+
"Middle": "Tengah",
|
|
163
|
+
"Bottom": "Bagian bawah",
|
|
164
|
+
"Align Top": "Menyelaraskan atas",
|
|
165
|
+
"Align Middle": "Menyelaraskan tengah",
|
|
166
|
+
"Align Bottom": "Menyelaraskan bawah",
|
|
167
|
+
"Cell Style": "Gaya sel",
|
|
168
|
+
|
|
169
|
+
// Files
|
|
170
|
+
"Upload File": "Meng-upload berkas",
|
|
171
|
+
"Drop file": "Jatuhkan berkas",
|
|
172
|
+
|
|
173
|
+
// Emoticons
|
|
174
|
+
"Emoticons": "Emoticon",
|
|
175
|
+
"Grinning face": "Sambil tersenyum wajah",
|
|
176
|
+
"Grinning face with smiling eyes": "Sambil tersenyum wajah dengan mata tersenyum",
|
|
177
|
+
"Face with tears of joy": "Hadapi dengan air mata sukacita",
|
|
178
|
+
"Smiling face with open mouth": "Tersenyum wajah dengan mulut terbuka",
|
|
179
|
+
"Smiling face with open mouth and smiling eyes": "Tersenyum wajah dengan mulut terbuka dan tersenyum mata",
|
|
180
|
+
"Smiling face with open mouth and cold sweat": "Tersenyum wajah dengan mulut terbuka dan keringat dingin",
|
|
181
|
+
"Smiling face with open mouth and tightly-closed eyes": "Tersenyum wajah dengan mulut terbuka dan mata tertutup rapat",
|
|
182
|
+
"Smiling face with halo": "Tersenyum wajah dengan halo",
|
|
183
|
+
"Smiling face with horns": "Tersenyum wajah dengan tanduk",
|
|
184
|
+
"Winking face": "Mengedip wajah",
|
|
185
|
+
"Smiling face with smiling eyes": "Tersenyum wajah dengan mata tersenyum",
|
|
186
|
+
"Face savoring delicious food": "Wajah menikmati makanan lezat",
|
|
187
|
+
"Relieved face": "Wajah Lega",
|
|
188
|
+
"Smiling face with heart-shaped eyes": "Tersenyum wajah dengan mata berbentuk hati",
|
|
189
|
+
"Smiling face with sunglasses": "Tersenyum wajah dengan kacamata hitam",
|
|
190
|
+
"Smirking face": "Menyeringai wajah",
|
|
191
|
+
"Neutral face": "Wajah Netral",
|
|
192
|
+
"Expressionless face": "Wajah tanpa ekspresi",
|
|
193
|
+
"Unamused face": "Wajah tidak senang",
|
|
194
|
+
"Face with cold sweat": "Muka dengan keringat dingin",
|
|
195
|
+
"Pensive face": "Wajah termenung",
|
|
196
|
+
"Confused face": "Wajah Bingung",
|
|
197
|
+
"Confounded face": "Wajah kesal",
|
|
198
|
+
"Kissing face": "wajah mencium",
|
|
199
|
+
"Face throwing a kiss": "Wajah melempar ciuman",
|
|
200
|
+
"Kissing face with smiling eyes": "Berciuman wajah dengan mata tersenyum",
|
|
201
|
+
"Kissing face with closed eyes": "Berciuman wajah dengan mata tertutup",
|
|
202
|
+
"Face with stuck out tongue": "Muka dengan menjulurkan lidah",
|
|
203
|
+
"Face with stuck out tongue and winking eye": "Muka dengan menjulurkan lidah dan mengedip mata",
|
|
204
|
+
"Face with stuck out tongue and tightly-closed eyes": "Wajah dengan lidah terjebak dan mata erat-tertutup",
|
|
205
|
+
"Disappointed face": "Wajah kecewa",
|
|
206
|
+
"Worried face": "Wajah Khawatir",
|
|
207
|
+
"Angry face": "Wajah Marah",
|
|
208
|
+
"Pouting face": "Cemberut wajah",
|
|
209
|
+
"Crying face": "Menangis wajah",
|
|
210
|
+
"Persevering face": "Tekun wajah",
|
|
211
|
+
"Face with look of triumph": "Hadapi dengan tampilan kemenangan",
|
|
212
|
+
"Disappointed but relieved face": "Kecewa tapi lega wajah",
|
|
213
|
+
"Frowning face with open mouth": "Sambil mengerutkan kening wajah dengan mulut terbuka",
|
|
214
|
+
"Anguished face": "Wajah sedih",
|
|
215
|
+
"Fearful face": "Wajah Takut",
|
|
216
|
+
"Weary face": "Wajah lelah",
|
|
217
|
+
"Sleepy face": "wajah mengantuk",
|
|
218
|
+
"Tired face": "Wajah Lelah",
|
|
219
|
+
"Grimacing face": "Sambil meringis wajah",
|
|
220
|
+
"Loudly crying face": "Keras menangis wajah",
|
|
221
|
+
"Face with open mouth": "Hadapi dengan mulut terbuka",
|
|
222
|
+
"Hushed face": "Wajah dipetieskan",
|
|
223
|
+
"Face with open mouth and cold sweat": "Hadapi dengan mulut terbuka dan keringat dingin",
|
|
224
|
+
"Face screaming in fear": "Hadapi berteriak dalam ketakutan",
|
|
225
|
+
"Astonished face": "Wajah Kaget",
|
|
226
|
+
"Flushed face": "Wajah memerah",
|
|
227
|
+
"Sleeping face": "Tidur face",
|
|
228
|
+
"Dizzy face": "Wajah pusing",
|
|
229
|
+
"Face without mouth": "Wajah tanpa mulut",
|
|
230
|
+
"Face with medical mask": "Hadapi dengan masker medis",
|
|
231
|
+
|
|
232
|
+
// Line breaker
|
|
233
|
+
"Break": "Memecah",
|
|
234
|
+
|
|
235
|
+
// Math
|
|
236
|
+
"Subscript": "Subskrip",
|
|
237
|
+
"Superscript": "Superskrip",
|
|
238
|
+
|
|
239
|
+
// Full screen
|
|
240
|
+
"Fullscreen": "Layar penuh",
|
|
241
|
+
|
|
242
|
+
// Horizontal line
|
|
243
|
+
"Insert Horizontal Line": "Sisipkan Garis Horizontal",
|
|
244
|
+
|
|
245
|
+
// Clear formatting
|
|
246
|
+
"Clear Formatting": "Menghapus format",
|
|
247
|
+
|
|
248
|
+
// Undo, redo
|
|
249
|
+
"Undo": "Batal",
|
|
250
|
+
"Redo": "Ulang",
|
|
251
|
+
|
|
252
|
+
// Select all
|
|
253
|
+
"Select All": "Pilih semua",
|
|
254
|
+
|
|
255
|
+
// Code view
|
|
256
|
+
"Code View": "Melihat kode",
|
|
257
|
+
|
|
258
|
+
// Quote
|
|
259
|
+
"Quote": "Kutipan",
|
|
260
|
+
"Increase": "Meningkat",
|
|
261
|
+
"Decrease": "Penurunan",
|
|
262
|
+
|
|
263
|
+
// Quick Insert
|
|
264
|
+
"Quick Insert": "Memasukkan cepat",
|
|
265
|
+
|
|
266
|
+
// Spcial Characters
|
|
267
|
+
"Special Characters": "Karakter spesial",
|
|
268
|
+
"Latin": "Latin",
|
|
269
|
+
"Greek": "Yunani",
|
|
270
|
+
"Cyrillic": "Kyrillic",
|
|
271
|
+
"Punctuation": "Tanda baca",
|
|
272
|
+
"Currency": "Mata uang",
|
|
273
|
+
"Arrows": "Panah",
|
|
274
|
+
"Math": "Matematika",
|
|
275
|
+
"Misc": "Misc",
|
|
276
|
+
|
|
277
|
+
// Print.
|
|
278
|
+
"Print": "Mencetak",
|
|
279
|
+
|
|
280
|
+
// Spell Checker.
|
|
281
|
+
"Spell Checker": "Pemeriksa ejaan",
|
|
282
|
+
|
|
283
|
+
// Help
|
|
284
|
+
"Help": "Membantu",
|
|
285
|
+
"Shortcuts": "Jalan pintas",
|
|
286
|
+
"Inline Editor": "Editor inline",
|
|
287
|
+
"Show the editor": "Tunjukkan editornya",
|
|
288
|
+
"Common actions": "Tindakan umum",
|
|
289
|
+
"Copy": "Salinan",
|
|
290
|
+
"Cut": "Memotong",
|
|
291
|
+
"Paste": "Pasta",
|
|
292
|
+
"Basic Formatting": "Format dasar",
|
|
293
|
+
"Increase quote level": "Meningkatkan tingkat kutipan",
|
|
294
|
+
"Decrease quote level": "Menurunkan tingkat kutipan",
|
|
295
|
+
"Image / Video": "Gambar / video",
|
|
296
|
+
"Resize larger": "Mengubah ukuran lebih besar",
|
|
297
|
+
"Resize smaller": "Mengubah ukuran lebih kecil",
|
|
298
|
+
"Table": "Meja",
|
|
299
|
+
"Select table cell": "Pilih sel tabel",
|
|
300
|
+
"Extend selection one cell": "Memperpanjang seleksi satu sel",
|
|
301
|
+
"Extend selection one row": "Perpanjang pilihan satu baris",
|
|
302
|
+
"Navigation": "Navigasi",
|
|
303
|
+
"Focus popup / toolbar": "Fokus popup / toolbar",
|
|
304
|
+
"Return focus to previous position": "Kembali fokus ke posisi sebelumnya",
|
|
305
|
+
|
|
306
|
+
// Embed.ly
|
|
307
|
+
"Embed URL": "Embed url",
|
|
308
|
+
"Paste in a URL to embed": "Paste di url untuk menanamkan",
|
|
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?": "Konten yang disisipkan berasal dari dokumen kata microsoft. apakah Anda ingin menyimpan format atau membersihkannya?",
|
|
312
|
+
"Keep": "Menjaga",
|
|
313
|
+
"Clean": "Bersih",
|
|
314
|
+
"Word Paste Detected": "Kata paste terdeteksi"
|
|
315
|
+
},
|
|
316
|
+
direction: "ltr"
|
|
317
|
+
};
|
|
318
|
+
|
|
319
|
+
}));
|
|
@@ -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
|
+
* Italian
|
|
35
|
+
*/
|
|
36
|
+
|
|
37
|
+
$.FE.LANGUAGE['it'] = {
|
|
38
|
+
translation: {
|
|
39
|
+
// Place holder
|
|
40
|
+
"Type something": "Digita qualcosa",
|
|
41
|
+
|
|
42
|
+
// Basic formatting
|
|
43
|
+
"Bold": "Grassetto",
|
|
44
|
+
"Italic": "Corsivo",
|
|
45
|
+
"Underline": "Sottolineato",
|
|
46
|
+
"Strikethrough": "Barrato",
|
|
47
|
+
|
|
48
|
+
// Main buttons
|
|
49
|
+
"Insert": "Inserisci",
|
|
50
|
+
"Delete": "Cancella",
|
|
51
|
+
"Cancel": "Cancella",
|
|
52
|
+
"OK": "OK",
|
|
53
|
+
"Back": "Indietro",
|
|
54
|
+
"Remove": "Rimuovi",
|
|
55
|
+
"More": "Di pi\u00f9",
|
|
56
|
+
"Update": "Aggiorna",
|
|
57
|
+
"Style": "Stile",
|
|
58
|
+
|
|
59
|
+
// Font
|
|
60
|
+
"Font Family": "Carattere",
|
|
61
|
+
"Font Size": "Dimensione Carattere",
|
|
62
|
+
|
|
63
|
+
// Colors
|
|
64
|
+
"Colors": "Colori",
|
|
65
|
+
"Background": "Sfondo",
|
|
66
|
+
"Text": "Testo",
|
|
67
|
+
"HEX Color": "Colore Esadecimale",
|
|
68
|
+
|
|
69
|
+
// Paragraphs
|
|
70
|
+
"Paragraph Format": "Formattazione",
|
|
71
|
+
"Normal": "Normale",
|
|
72
|
+
"Code": "Codice",
|
|
73
|
+
"Heading 1": "Intestazione 1",
|
|
74
|
+
"Heading 2": "Intestazione 2",
|
|
75
|
+
"Heading 3": "Intestazione 3",
|
|
76
|
+
"Heading 4": "Intestazione 4",
|
|
77
|
+
|
|
78
|
+
// Style
|
|
79
|
+
"Paragraph Style": "Stile Paragrafo",
|
|
80
|
+
"Inline Style": "Stile in Linea",
|
|
81
|
+
|
|
82
|
+
// Alignment
|
|
83
|
+
"Align": "Allinea",
|
|
84
|
+
"Align Left": "Allinea a Sinistra",
|
|
85
|
+
"Align Center": "Allinea al Cento",
|
|
86
|
+
"Align Right": "Allinea a Destra",
|
|
87
|
+
"Align Justify": "Giustifica",
|
|
88
|
+
"None": "Nessuno",
|
|
89
|
+
|
|
90
|
+
// Lists
|
|
91
|
+
"Ordered List": "Elenchi Numerati",
|
|
92
|
+
"Unordered List": "Elenchi Puntati",
|
|
93
|
+
|
|
94
|
+
// Indent
|
|
95
|
+
"Decrease Indent": "Riduci Rientro",
|
|
96
|
+
"Increase Indent": "Aumenta Rientro",
|
|
97
|
+
|
|
98
|
+
// Links
|
|
99
|
+
"Insert Link": "Inserisci Link",
|
|
100
|
+
"Open in new tab": "Apri in nuova scheda",
|
|
101
|
+
"Open Link": "Apri Link",
|
|
102
|
+
"Edit Link": "Modifica Link",
|
|
103
|
+
"Unlink": "Rimuovi Link",
|
|
104
|
+
"Choose Link": "Scegli Link",
|
|
105
|
+
|
|
106
|
+
// Images
|
|
107
|
+
"Insert Image": "Inserisci Immagine",
|
|
108
|
+
"Upload Image": "Carica Immagine",
|
|
109
|
+
"By URL": "Inserisci URL",
|
|
110
|
+
"Browse": "Sfoglia",
|
|
111
|
+
"Drop image": "Rilascia immagine",
|
|
112
|
+
"or click": "oppure clicca qui",
|
|
113
|
+
"Manage Images": "Gestione Immagini",
|
|
114
|
+
"Loading": "Caricamento",
|
|
115
|
+
"Deleting": "Eliminazione",
|
|
116
|
+
"Tags": "Etichetta",
|
|
117
|
+
"Are you sure? Image will be deleted.": "Sei sicuro? L\'immagine verr\u00e0 cancellata.",
|
|
118
|
+
"Replace": "Sostituisci",
|
|
119
|
+
"Uploading": "Caricamento",
|
|
120
|
+
"Loading image": "Caricamento immagine",
|
|
121
|
+
"Display": "Visualizzazione",
|
|
122
|
+
"Inline": "In Linea",
|
|
123
|
+
"Break Text": "Separa dal Testo",
|
|
124
|
+
"Alternate Text": "Testo Alternativo",
|
|
125
|
+
"Change Size": "Cambia Dimensioni",
|
|
126
|
+
"Width": "Larghezza",
|
|
127
|
+
"Height": "Altezza",
|
|
128
|
+
"Something went wrong. Please try again.": "Qualcosa non ha funzionato. Riprova, per favore.",
|
|
129
|
+
"Image Caption": "Didascalia",
|
|
130
|
+
"Advanced Edit": "Avanzato",
|
|
131
|
+
|
|
132
|
+
// Video
|
|
133
|
+
"Insert Video": "Inserisci Video",
|
|
134
|
+
"Embedded Code": "Codice Incorporato",
|
|
135
|
+
"Paste in a video URL": "Incolla l'URL del video",
|
|
136
|
+
"Drop video": "Rilascia video",
|
|
137
|
+
"Your browser does not support HTML5 video.": "Il tuo browser non supporta i video html5.",
|
|
138
|
+
"Upload Video": "Carica Video",
|
|
139
|
+
|
|
140
|
+
// Tables
|
|
141
|
+
"Insert Table": "Inserisci Tabella",
|
|
142
|
+
"Table Header": "Intestazione Tabella",
|
|
143
|
+
"Remove Table": "Rimuovi Tabella",
|
|
144
|
+
"Table Style": "Stile Tabella",
|
|
145
|
+
"Horizontal Align": "Allineamento Orizzontale",
|
|
146
|
+
"Row": "Riga",
|
|
147
|
+
"Insert row above": "Inserisci una riga prima",
|
|
148
|
+
"Insert row below": "Inserisci una riga dopo",
|
|
149
|
+
"Delete row": "Cancella riga",
|
|
150
|
+
"Column": "Colonna",
|
|
151
|
+
"Insert column before": "Inserisci una colonna prima",
|
|
152
|
+
"Insert column after": "Inserisci una colonna dopo",
|
|
153
|
+
"Delete column": "Cancella colonna",
|
|
154
|
+
"Cell": "Cella",
|
|
155
|
+
"Merge cells": "Unisci celle",
|
|
156
|
+
"Horizontal split": "Dividi in orizzontale",
|
|
157
|
+
"Vertical split": "Dividi in verticale",
|
|
158
|
+
"Cell Background": "Sfondo Cella",
|
|
159
|
+
"Vertical Align": "Allineamento Verticale",
|
|
160
|
+
"Top": "Alto",
|
|
161
|
+
"Middle": "Centro",
|
|
162
|
+
"Bottom": "Basso",
|
|
163
|
+
"Align Top": "Allinea in Alto",
|
|
164
|
+
"Align Middle": "Allinea al Centro",
|
|
165
|
+
"Align Bottom": "Allinea in Basso",
|
|
166
|
+
"Cell Style": "Stile Cella",
|
|
167
|
+
|
|
168
|
+
// Files
|
|
169
|
+
"Upload File": "Carica File",
|
|
170
|
+
"Drop file": "Rilascia file",
|
|
171
|
+
|
|
172
|
+
// Emoticons
|
|
173
|
+
"Emoticons": "Emoticon",
|
|
174
|
+
"Grinning face": "Sorridente",
|
|
175
|
+
"Grinning face with smiling eyes": "Sorridente con gli occhi sorridenti",
|
|
176
|
+
"Face with tears of joy": "Con lacrime di gioia",
|
|
177
|
+
"Smiling face with open mouth": "Sorridente con la bocca aperta",
|
|
178
|
+
"Smiling face with open mouth and smiling eyes": "Sorridente con la bocca aperta e gli occhi sorridenti",
|
|
179
|
+
"Smiling face with open mouth and cold sweat": "Sorridente con la bocca aperta e sudore freddo",
|
|
180
|
+
"Smiling face with open mouth and tightly-closed eyes": "Sorridente con la bocca aperta e gli occhi stretti",
|
|
181
|
+
"Smiling face with halo": "Sorridente con aureola",
|
|
182
|
+
"Smiling face with horns": "Diavolo sorridente",
|
|
183
|
+
"Winking face": "Ammiccante",
|
|
184
|
+
"Smiling face with smiling eyes": "Sorridente imbarazzato",
|
|
185
|
+
"Face savoring delicious food": "Goloso",
|
|
186
|
+
"Relieved face": "Rassicurato",
|
|
187
|
+
"Smiling face with heart-shaped eyes": "Sorridente con gli occhi a forma di cuore",
|
|
188
|
+
"Smiling face with sunglasses": "Sorridente con gli occhiali da sole",
|
|
189
|
+
"Smirking face": "Compiaciuto",
|
|
190
|
+
"Neutral face": "Neutro",
|
|
191
|
+
"Expressionless face": "Inespressivo",
|
|
192
|
+
"Unamused face": "Annoiato",
|
|
193
|
+
"Face with cold sweat": "Sudare freddo",
|
|
194
|
+
"Pensive face": "Pensieroso",
|
|
195
|
+
"Confused face": "Perplesso",
|
|
196
|
+
"Confounded face": "Confuso",
|
|
197
|
+
"Kissing face": "Bacio",
|
|
198
|
+
"Face throwing a kiss": "Manda un bacio",
|
|
199
|
+
"Kissing face with smiling eyes": "Bacio con gli occhi sorridenti",
|
|
200
|
+
"Kissing face with closed eyes": "Bacio con gli occhi chiusi",
|
|
201
|
+
"Face with stuck out tongue": "Linguaccia",
|
|
202
|
+
"Face with stuck out tongue and winking eye": "Linguaccia ammiccante",
|
|
203
|
+
"Face with stuck out tongue and tightly-closed eyes": "Linguaccia con occhi stretti",
|
|
204
|
+
"Disappointed face": "Deluso",
|
|
205
|
+
"Worried face": "Preoccupato",
|
|
206
|
+
"Angry face": "Arrabbiato",
|
|
207
|
+
"Pouting face": "Imbronciato",
|
|
208
|
+
"Crying face": "Pianto",
|
|
209
|
+
"Persevering face": "Perseverante",
|
|
210
|
+
"Face with look of triumph": "Trionfante",
|
|
211
|
+
"Disappointed but relieved face": "Deluso ma rassicurato",
|
|
212
|
+
"Frowning face with open mouth": "Accigliato con la bocca aperta",
|
|
213
|
+
"Anguished face": "Angosciato",
|
|
214
|
+
"Fearful face": "Pauroso",
|
|
215
|
+
"Weary face": "Stanco",
|
|
216
|
+
"Sleepy face": "Assonnato",
|
|
217
|
+
"Tired face": "Snervato",
|
|
218
|
+
"Grimacing face": "Smorfia",
|
|
219
|
+
"Loudly crying face": "Pianto a gran voce",
|
|
220
|
+
"Face with open mouth": "Bocca aperta",
|
|
221
|
+
"Hushed face": "Silenzioso",
|
|
222
|
+
"Face with open mouth and cold sweat": "Bocca aperta e sudore freddo",
|
|
223
|
+
"Face screaming in fear": "Urlante dalla paura",
|
|
224
|
+
"Astonished face": "Stupito",
|
|
225
|
+
"Flushed face": "Arrossito",
|
|
226
|
+
"Sleeping face": "Addormentato",
|
|
227
|
+
"Dizzy face": "Stordito",
|
|
228
|
+
"Face without mouth": "Senza parole",
|
|
229
|
+
"Face with medical mask": "Malattia infettiva",
|
|
230
|
+
|
|
231
|
+
// Line breaker
|
|
232
|
+
"Break": "Separatore",
|
|
233
|
+
|
|
234
|
+
// Math
|
|
235
|
+
"Subscript": "Pedice",
|
|
236
|
+
"Superscript": "Apice",
|
|
237
|
+
|
|
238
|
+
// Full screen
|
|
239
|
+
"Fullscreen": "Schermo intero",
|
|
240
|
+
|
|
241
|
+
// Horizontal line
|
|
242
|
+
"Insert Horizontal Line": "Inserisci Divisore Orizzontale",
|
|
243
|
+
|
|
244
|
+
// Clear formatting
|
|
245
|
+
"Clear Formatting": "Cancella Formattazione",
|
|
246
|
+
|
|
247
|
+
// Undo, redo
|
|
248
|
+
"Undo": "Annulla",
|
|
249
|
+
"Redo": "Ripeti",
|
|
250
|
+
|
|
251
|
+
// Select all
|
|
252
|
+
"Select All": "Seleziona Tutto",
|
|
253
|
+
|
|
254
|
+
// Code view
|
|
255
|
+
"Code View": "Visualizza Codice",
|
|
256
|
+
|
|
257
|
+
// Quote
|
|
258
|
+
"Quote": "Citazione",
|
|
259
|
+
"Increase": "Aumenta",
|
|
260
|
+
"Decrease": "Diminuisci",
|
|
261
|
+
|
|
262
|
+
// Quick Insert
|
|
263
|
+
"Quick Insert": "Inserimento Rapido",
|
|
264
|
+
|
|
265
|
+
// Spcial Characters
|
|
266
|
+
"Special Characters": "Caratteri Speciali",
|
|
267
|
+
"Latin": "Latino",
|
|
268
|
+
"Greek": "Greco",
|
|
269
|
+
"Cyrillic": "Cirillico",
|
|
270
|
+
"Punctuation": "Punteggiatura",
|
|
271
|
+
"Currency": "Valuta",
|
|
272
|
+
"Arrows": "Frecce",
|
|
273
|
+
"Math": "Matematica",
|
|
274
|
+
"Misc": "Misc",
|
|
275
|
+
|
|
276
|
+
// Print.
|
|
277
|
+
"Print": "Stampa",
|
|
278
|
+
|
|
279
|
+
// Spell Checker.
|
|
280
|
+
"Spell Checker": "Correttore Ortografico",
|
|
281
|
+
|
|
282
|
+
// Help
|
|
283
|
+
"Help": "Aiuto",
|
|
284
|
+
"Shortcuts": "Scorciatoie",
|
|
285
|
+
"Inline Editor": "Editor in Linea",
|
|
286
|
+
"Show the editor": "Mostra Editor",
|
|
287
|
+
"Common actions": "Azioni comuni",
|
|
288
|
+
"Copy": "Copia",
|
|
289
|
+
"Cut": "Taglia",
|
|
290
|
+
"Paste": "Incolla",
|
|
291
|
+
"Basic Formatting": "Formattazione di base",
|
|
292
|
+
"Increase quote level": "Aumenta il livello di citazione",
|
|
293
|
+
"Decrease quote level": "Diminuisci il livello di citazione",
|
|
294
|
+
"Image / Video": "Immagine / Video",
|
|
295
|
+
"Resize larger": "Pi\u00f9 grande",
|
|
296
|
+
"Resize smaller": "Pi\u00f9 piccolo",
|
|
297
|
+
"Table": "Tabella",
|
|
298
|
+
"Select table cell": "Seleziona la cella della tabella",
|
|
299
|
+
"Extend selection one cell": "Estendi la selezione di una cella",
|
|
300
|
+
"Extend selection one row": "Estendi la selezione una riga",
|
|
301
|
+
"Navigation": "Navigazione",
|
|
302
|
+
"Focus popup / toolbar": "Metti a fuoco la barra degli strumenti",
|
|
303
|
+
"Return focus to previous position": "Rimetti il fuoco sulla posizione precedente",
|
|
304
|
+
|
|
305
|
+
// Embed.ly
|
|
306
|
+
"Embed URL": "Incorpora URL",
|
|
307
|
+
"Paste in a URL to embed": "Incolla un URL da incorporare",
|
|
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?": "Il contenuto incollato proviene da un documento di Microsoft Word. Vuoi mantenere la formattazione di Word o pulirlo?",
|
|
311
|
+
"Keep": "Mantieni",
|
|
312
|
+
"Clean": "Pulisci",
|
|
313
|
+
"Word Paste Detected": "\u00c8 stato rilevato un incolla da Word"
|
|
314
|
+
},
|
|
315
|
+
direction: "ltr"
|
|
316
|
+
};
|
|
317
|
+
|
|
318
|
+
}));
|