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
|
+
* French
|
|
35
|
+
*/
|
|
36
|
+
|
|
37
|
+
$.FE.LANGUAGE['fr'] = {
|
|
38
|
+
translation: {
|
|
39
|
+
// Place holder
|
|
40
|
+
"Type something": "Tapez quelque chose",
|
|
41
|
+
|
|
42
|
+
// Basic formatting
|
|
43
|
+
"Bold": "Gras",
|
|
44
|
+
"Italic": "Italique",
|
|
45
|
+
"Underline": "Soulign\u00e9",
|
|
46
|
+
"Strikethrough": "Barr\u00e9",
|
|
47
|
+
|
|
48
|
+
// Main buttons
|
|
49
|
+
"Insert": "Ins\u00e9rer",
|
|
50
|
+
"Delete": "Supprimer",
|
|
51
|
+
"Cancel": "Annuler",
|
|
52
|
+
"OK": "Ok",
|
|
53
|
+
"Back": "Retour",
|
|
54
|
+
"Remove": "Supprimer",
|
|
55
|
+
"More": "Plus",
|
|
56
|
+
"Update": "Actualiser",
|
|
57
|
+
"Style": "Style",
|
|
58
|
+
|
|
59
|
+
// Font
|
|
60
|
+
"Font Family": "Polices de caract\u00e8res",
|
|
61
|
+
"Font Size": "Taille de police",
|
|
62
|
+
|
|
63
|
+
// Colors
|
|
64
|
+
"Colors": "Couleurs",
|
|
65
|
+
"Background": "Arri\u00e8re-plan",
|
|
66
|
+
"Text": "Texte",
|
|
67
|
+
"HEX Color": "Couleur hexad\u00e9cimale",
|
|
68
|
+
|
|
69
|
+
// Paragraphs
|
|
70
|
+
"Paragraph Format": "Format de paragraphe",
|
|
71
|
+
"Normal": "Normal",
|
|
72
|
+
"Code": "Code",
|
|
73
|
+
"Heading 1": "Titre 1",
|
|
74
|
+
"Heading 2": "Titre 2",
|
|
75
|
+
"Heading 3": "Titre 3",
|
|
76
|
+
"Heading 4": "Titre 4",
|
|
77
|
+
|
|
78
|
+
// Style
|
|
79
|
+
"Paragraph Style": "Style de paragraphe",
|
|
80
|
+
"Inline Style": "Style en ligne",
|
|
81
|
+
|
|
82
|
+
// Alignment
|
|
83
|
+
"Align": "Aligner",
|
|
84
|
+
"Align Left": "Aligner \u00e0 gauche",
|
|
85
|
+
"Align Center": "Aligner au centre",
|
|
86
|
+
"Align Right": "Aligner \u00e0 droite",
|
|
87
|
+
"Align Justify": "Justifier",
|
|
88
|
+
"None": "Aucun",
|
|
89
|
+
|
|
90
|
+
// Lists
|
|
91
|
+
"Ordered List": "Liste ordonn\u00e9e",
|
|
92
|
+
"Unordered List": "Liste non ordonn\u00e9e",
|
|
93
|
+
|
|
94
|
+
// Indent
|
|
95
|
+
"Decrease Indent": "Diminuer le retrait",
|
|
96
|
+
"Increase Indent": "Augmenter le retrait",
|
|
97
|
+
|
|
98
|
+
// Links
|
|
99
|
+
"Insert Link": "Ins\u00e9rer un lien",
|
|
100
|
+
"Open in new tab": "Ouvrir dans un nouvel onglet",
|
|
101
|
+
"Open Link": "Ouvrir le lien",
|
|
102
|
+
"Edit Link": "Modifier le lien",
|
|
103
|
+
"Unlink": "Enlever le lien",
|
|
104
|
+
"Choose Link": "Choisir le lien",
|
|
105
|
+
|
|
106
|
+
// Images
|
|
107
|
+
"Insert Image": "Ins\u00e9rer une image",
|
|
108
|
+
"Upload Image": "T\u00e9l\u00e9verser une image",
|
|
109
|
+
"By URL": "Par URL",
|
|
110
|
+
"Browse": "Parcourir",
|
|
111
|
+
"Drop image": "D\u00e9poser une image",
|
|
112
|
+
"or click": "ou cliquer",
|
|
113
|
+
"Manage Images": "G\u00e9rer les images",
|
|
114
|
+
"Loading": "Chargement",
|
|
115
|
+
"Deleting": "Suppression",
|
|
116
|
+
"Tags": "\u00c9tiquettes",
|
|
117
|
+
"Are you sure? Image will be deleted.": "Etes-vous certain? L'image sera supprim\u00e9e.",
|
|
118
|
+
"Replace": "Remplacer",
|
|
119
|
+
"Uploading": "En t\u00e9l\u00e9versement d'images",
|
|
120
|
+
"Loading image": "En chargement d'images",
|
|
121
|
+
"Display": "Afficher",
|
|
122
|
+
"Inline": "En ligne",
|
|
123
|
+
"Break Text": "Rompre le texte",
|
|
124
|
+
"Alternate Text": "Texte alternatif",
|
|
125
|
+
"Change Size": "Changer la dimension",
|
|
126
|
+
"Width": "Largeur",
|
|
127
|
+
"Height": "Hauteur",
|
|
128
|
+
"Something went wrong. Please try again.": "Quelque chose a mal tourn\u00e9. Veuillez r\u00e9essayer.",
|
|
129
|
+
"Image Caption": "L\u00e9gende de l'image",
|
|
130
|
+
"Advanced Edit": "\u00c9dition avanc\u00e9e",
|
|
131
|
+
|
|
132
|
+
// Video
|
|
133
|
+
"Insert Video": "Ins\u00e9rer une vid\u00e9o",
|
|
134
|
+
"Embedded Code": "Code int\u00e9gr\u00e9",
|
|
135
|
+
"Paste in a video URL": "Coller l'URL d'une vid\u00e9o",
|
|
136
|
+
"Drop video": "D\u00e9poser une vid\u00e9o",
|
|
137
|
+
"Your browser does not support HTML5 video.": "Votre navigateur ne supporte pas les vid\u00e9os en format HTML5.",
|
|
138
|
+
"Upload Video": "T\u00e9l\u00e9verser une vid\u00e9o",
|
|
139
|
+
|
|
140
|
+
// Tables
|
|
141
|
+
"Insert Table": "Ins\u00e9rer un tableau",
|
|
142
|
+
"Table Header": "Ent\u00eate de tableau",
|
|
143
|
+
"Remove Table": "Supprimer le tableau",
|
|
144
|
+
"Table Style": "Style de tableau",
|
|
145
|
+
"Horizontal Align": "Alignement horizontal",
|
|
146
|
+
"Row": "Ligne",
|
|
147
|
+
"Insert row above": "Ins\u00e9rer une ligne au-dessus",
|
|
148
|
+
"Insert row below": "Ins\u00e9rer une ligne en-dessous",
|
|
149
|
+
"Delete row": "Supprimer la ligne",
|
|
150
|
+
"Column": "Colonne",
|
|
151
|
+
"Insert column before": "Ins\u00e9rer une colonne avant",
|
|
152
|
+
"Insert column after": "Ins\u00e9rer une colonne apr\u00e8s",
|
|
153
|
+
"Delete column": "Supprimer la colonne",
|
|
154
|
+
"Cell": "Cellule",
|
|
155
|
+
"Merge cells": "Fusionner les cellules",
|
|
156
|
+
"Horizontal split": "Diviser horizontalement",
|
|
157
|
+
"Vertical split": "Diviser verticalement",
|
|
158
|
+
"Cell Background": "Arri\u00e8re-plan de la cellule",
|
|
159
|
+
"Vertical Align": "Alignement vertical",
|
|
160
|
+
"Top": "En haut",
|
|
161
|
+
"Middle": "Au centre",
|
|
162
|
+
"Bottom": "En bas",
|
|
163
|
+
"Align Top": "Aligner en haut",
|
|
164
|
+
"Align Middle": "Aligner au centre",
|
|
165
|
+
"Align Bottom": "Aligner en bas",
|
|
166
|
+
"Cell Style": "Style de cellule",
|
|
167
|
+
|
|
168
|
+
// Files
|
|
169
|
+
"Upload File": "T\u00e9l\u00e9verser un fichier",
|
|
170
|
+
"Drop file": "D\u00e9poser un fichier",
|
|
171
|
+
|
|
172
|
+
// Emoticons
|
|
173
|
+
"Emoticons": "\u00c9motic\u00f4nes",
|
|
174
|
+
"Grinning face": "Souriant visage",
|
|
175
|
+
"Grinning face with smiling eyes": "Souriant visage aux yeux souriants",
|
|
176
|
+
"Face with tears of joy": "Visage \u00e0 des larmes de joie",
|
|
177
|
+
"Smiling face with open mouth": "Visage souriant avec la bouche ouverte",
|
|
178
|
+
"Smiling face with open mouth and smiling eyes": "Visage souriant avec la bouche ouverte et les yeux en souriant",
|
|
179
|
+
"Smiling face with open mouth and cold sweat": "Visage souriant avec la bouche ouverte et la sueur froide",
|
|
180
|
+
"Smiling face with open mouth and tightly-closed eyes": "Visage souriant avec la bouche ouverte et les yeux herm\u00e9tiquement clos",
|
|
181
|
+
"Smiling face with halo": "Sourire visage avec halo",
|
|
182
|
+
"Smiling face with horns": "Visage souriant avec des cornes",
|
|
183
|
+
"Winking face": "Clin d'oeil visage",
|
|
184
|
+
"Smiling face with smiling eyes": "Sourire visage aux yeux souriants",
|
|
185
|
+
"Face savoring delicious food": "Visage savourant de d\u00e9licieux plats",
|
|
186
|
+
"Relieved face": "Soulag\u00e9 visage",
|
|
187
|
+
"Smiling face with heart-shaped eyes": "Visage souriant avec des yeux en forme de coeur",
|
|
188
|
+
"Smiling face with sunglasses": "Sourire visage avec des lunettes de soleil",
|
|
189
|
+
"Smirking face": "Souriant visage",
|
|
190
|
+
"Neutral face": "Visage neutre",
|
|
191
|
+
"Expressionless face": "Visage sans expression",
|
|
192
|
+
"Unamused face": "Visage pas amus\u00e9",
|
|
193
|
+
"Face with cold sweat": "Face \u00e0 la sueur froide",
|
|
194
|
+
"Pensive face": "pensif visage",
|
|
195
|
+
"Confused face": "Visage confus",
|
|
196
|
+
"Confounded face": "visage maudit",
|
|
197
|
+
"Kissing face": "Embrasser le visage",
|
|
198
|
+
"Face throwing a kiss": "Visage jetant un baiser",
|
|
199
|
+
"Kissing face with smiling eyes": "Embrasser le visage avec les yeux souriants",
|
|
200
|
+
"Kissing face with closed eyes": "Embrasser le visage avec les yeux ferm\u00e9s",
|
|
201
|
+
"Face with stuck out tongue": "Visage avec sortait de la langue",
|
|
202
|
+
"Face with stuck out tongue and winking eye": "Visage avec sortait de la langue et des yeux clignotante",
|
|
203
|
+
"Face with stuck out tongue and tightly-closed eyes": "Visage avec sortait de la langue et les yeux ferm\u00e9s herm\u00e9tiquement",
|
|
204
|
+
"Disappointed face": "Visage d\u00e9\u00e7u",
|
|
205
|
+
"Worried face": "Visage inquiet",
|
|
206
|
+
"Angry face": "Visage en col\u00e9re",
|
|
207
|
+
"Pouting face": "Faire la moue face",
|
|
208
|
+
"Crying face": "Pleurer visage",
|
|
209
|
+
"Persevering face": "Pers\u00e9v\u00e9rer face",
|
|
210
|
+
"Face with look of triumph": "Visage avec le regard de triomphe",
|
|
211
|
+
"Disappointed but relieved face": "D\u00e9\u00e7u, mais le visage soulag\u00e9",
|
|
212
|
+
"Frowning face with open mouth": "Les sourcils fronc\u00e9s visage avec la bouche ouverte",
|
|
213
|
+
"Anguished face": "Visage angoiss\u00e9",
|
|
214
|
+
"Fearful face": "Craignant visage",
|
|
215
|
+
"Weary face": "Visage las",
|
|
216
|
+
"Sleepy face": "Visage endormi",
|
|
217
|
+
"Tired face": "Visage fatigu\u00e9",
|
|
218
|
+
"Grimacing face": "Visage grima\u00e7ante",
|
|
219
|
+
"Loudly crying face": "Pleurer bruyamment visage",
|
|
220
|
+
"Face with open mouth": "Visage \u00e0 la bouche ouverte",
|
|
221
|
+
"Hushed face": "Visage feutr\u00e9e",
|
|
222
|
+
"Face with open mouth and cold sweat": "Visage \u00e0 la bouche ouverte et la sueur froide",
|
|
223
|
+
"Face screaming in fear": "Visage hurlant de peur",
|
|
224
|
+
"Astonished face": "Visage \u00e9tonn\u00e9",
|
|
225
|
+
"Flushed face": "Visage congestionn\u00e9",
|
|
226
|
+
"Sleeping face": "Visage au bois dormant",
|
|
227
|
+
"Dizzy face": "Visage vertige",
|
|
228
|
+
"Face without mouth": "Visage sans bouche",
|
|
229
|
+
"Face with medical mask": "Visage avec un masque m\u00e9dical",
|
|
230
|
+
|
|
231
|
+
// Line breaker
|
|
232
|
+
"Break": "Rompre",
|
|
233
|
+
|
|
234
|
+
// Math
|
|
235
|
+
"Subscript": "Indice",
|
|
236
|
+
"Superscript": "Exposant",
|
|
237
|
+
|
|
238
|
+
// Full screen
|
|
239
|
+
"Fullscreen": "Plein \u00e9cran",
|
|
240
|
+
|
|
241
|
+
// Horizontal line
|
|
242
|
+
"Insert Horizontal Line": "Ins\u00e9rer une ligne horizontale",
|
|
243
|
+
|
|
244
|
+
// Clear formatting
|
|
245
|
+
"Clear Formatting": "Effacer le formatage",
|
|
246
|
+
|
|
247
|
+
// Undo, redo
|
|
248
|
+
"Undo": "Annuler",
|
|
249
|
+
"Redo": "R\u00e9tablir",
|
|
250
|
+
|
|
251
|
+
// Select all
|
|
252
|
+
"Select All": "Tout s\u00e9lectionner",
|
|
253
|
+
|
|
254
|
+
// Code view
|
|
255
|
+
"Code View": "Mode HTML",
|
|
256
|
+
|
|
257
|
+
// Quote
|
|
258
|
+
"Quote": "Citation",
|
|
259
|
+
"Increase": "Augmenter",
|
|
260
|
+
"Decrease": "Diminuer",
|
|
261
|
+
|
|
262
|
+
// Quick Insert
|
|
263
|
+
"Quick Insert": "Insertion rapide",
|
|
264
|
+
|
|
265
|
+
// Spcial Characters
|
|
266
|
+
"Special Characters": "Caract\u00e8res sp\u00e9ciaux",
|
|
267
|
+
"Latin": "Latin",
|
|
268
|
+
"Greek": "Grec",
|
|
269
|
+
"Cyrillic": "Cyrillique",
|
|
270
|
+
"Punctuation": "Ponctuation",
|
|
271
|
+
"Currency": "Devise",
|
|
272
|
+
"Arrows": "Fl\u00e8ches",
|
|
273
|
+
"Math": "Math",
|
|
274
|
+
"Misc": "Divers",
|
|
275
|
+
|
|
276
|
+
// Print.
|
|
277
|
+
"Print": "Imprimer",
|
|
278
|
+
|
|
279
|
+
// Spell Checker.
|
|
280
|
+
"Spell Checker": "Correcteur orthographique",
|
|
281
|
+
|
|
282
|
+
// Help
|
|
283
|
+
"Help": "Aide",
|
|
284
|
+
"Shortcuts": "Raccourcis",
|
|
285
|
+
"Inline Editor": "\u00c9diteur en ligne",
|
|
286
|
+
"Show the editor": "Montrer l'\u00e9diteur",
|
|
287
|
+
"Common actions": "Actions communes",
|
|
288
|
+
"Copy": "Copier",
|
|
289
|
+
"Cut": "Couper",
|
|
290
|
+
"Paste": "Coller",
|
|
291
|
+
"Basic Formatting": "Formatage de base",
|
|
292
|
+
"Increase quote level": "Augmenter le niveau de citation",
|
|
293
|
+
"Decrease quote level": "Diminuer le niveau de citation",
|
|
294
|
+
"Image / Video": "Image / vid\u00e9o",
|
|
295
|
+
"Resize larger": "Redimensionner plus grand",
|
|
296
|
+
"Resize smaller": "Redimensionner plus petit",
|
|
297
|
+
"Table": "Table",
|
|
298
|
+
"Select table cell": "S\u00e9lectionner la cellule du tableau",
|
|
299
|
+
"Extend selection one cell": "\u00c9tendre la s\u00e9lection d'une cellule",
|
|
300
|
+
"Extend selection one row": "\u00c9tendre la s\u00e9lection d'une ligne",
|
|
301
|
+
"Navigation": "Navigation",
|
|
302
|
+
"Focus popup / toolbar": "Focus popup / toolbar",
|
|
303
|
+
"Return focus to previous position": "Retourner l'accent sur le poste pr\u00e9c\u00e9dent",
|
|
304
|
+
|
|
305
|
+
// Embed.ly
|
|
306
|
+
"Embed URL": "URL int\u00e9gr\u00e9e",
|
|
307
|
+
"Paste in a URL to embed": "Coller une URL int\u00e9gr\u00e9e",
|
|
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?": "Le contenu coll\u00e9 provient d'un document Microsoft Word. Voulez-vous conserver le format ou le nettoyer?",
|
|
311
|
+
"Keep": "Conserver",
|
|
312
|
+
"Clean": "Nettoyer",
|
|
313
|
+
"Word Paste Detected": "Copiage de mots d\u00e9tect\u00e9"
|
|
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
|
+
* Hebrew
|
|
35
|
+
*/
|
|
36
|
+
|
|
37
|
+
$.FE.LANGUAGE['he'] = {
|
|
38
|
+
translation: {
|
|
39
|
+
// Place holder
|
|
40
|
+
"Type something": "\u05d4\u05e7\u05dc\u05d3 \u05db\u05d0\u05df",
|
|
41
|
+
|
|
42
|
+
// Basic formatting
|
|
43
|
+
"Bold": "\u05de\u05d5\u05d3\u05d2\u05e9",
|
|
44
|
+
"Italic": "\u05de\u05d5\u05d8\u05d4",
|
|
45
|
+
"Underline": "\u05e7\u05d5 \u05ea\u05d7\u05ea\u05d9",
|
|
46
|
+
"Strikethrough": "\u05e7\u05d5 \u05d0\u05de\u05e6\u05e2\u05d9",
|
|
47
|
+
|
|
48
|
+
// Main buttons
|
|
49
|
+
"Insert": "\u05d4\u05d5\u05e1\u05e4\u05ea",
|
|
50
|
+
"Delete": "\u05de\u05d7\u05d9\u05e7\u05d4",
|
|
51
|
+
"Cancel": "\u05d1\u05d9\u05d8\u05d5\u05dc",
|
|
52
|
+
"OK": "\u05d1\u05e6\u05e2",
|
|
53
|
+
"Back": "\u05d1\u05d7\u05d6\u05e8\u05d4",
|
|
54
|
+
"Remove": "\u05d4\u05e1\u05e8",
|
|
55
|
+
"More": "\u05d9\u05d5\u05ea\u05e8",
|
|
56
|
+
"Update": "\u05e2\u05d3\u05db\u05d5\u05df",
|
|
57
|
+
"Style": "\u05e1\u05d2\u05e0\u05d5\u05df",
|
|
58
|
+
|
|
59
|
+
// Font
|
|
60
|
+
"Font Family": "\u05d2\u05d5\u05e4\u05df",
|
|
61
|
+
"Font Size": "\u05d2\u05d5\u05d3\u05dc \u05d4\u05d2\u05d5\u05e4\u05df",
|
|
62
|
+
|
|
63
|
+
// Colors
|
|
64
|
+
"Colors": "\u05e6\u05d1\u05e2\u05d9\u05dd",
|
|
65
|
+
"Background": "\u05e8\u05e7\u05e2",
|
|
66
|
+
"Text": "\u05d4\u05d8\u05e1\u05d8",
|
|
67
|
+
"HEX Color": "צבע הקס",
|
|
68
|
+
|
|
69
|
+
// Paragraphs
|
|
70
|
+
"Paragraph Format": "\u05e4\u05d5\u05e8\u05de\u05d8",
|
|
71
|
+
"Normal": "\u05e8\u05d2\u05d9\u05dc",
|
|
72
|
+
"Code": "\u05e7\u05d5\u05d3",
|
|
73
|
+
"Heading 1": "1 \u05db\u05d5\u05ea\u05e8\u05ea",
|
|
74
|
+
"Heading 2": "2 \u05db\u05d5\u05ea\u05e8\u05ea",
|
|
75
|
+
"Heading 3": "3 \u05db\u05d5\u05ea\u05e8\u05ea",
|
|
76
|
+
"Heading 4": "4 \u05db\u05d5\u05ea\u05e8\u05ea",
|
|
77
|
+
|
|
78
|
+
// Style
|
|
79
|
+
"Paragraph Style": "\u05e1\u05d2\u05e0\u05d5\u05df \u05e4\u05e1\u05e7\u05d4",
|
|
80
|
+
"Inline Style": "\u05e1\u05d2\u05e0\u05d5\u05df \u05de\u05d5\u05d1\u05e0\u05d4",
|
|
81
|
+
|
|
82
|
+
// Alignment
|
|
83
|
+
"Align": "\u05d9\u05d9\u05e9\u05d5\u05e8",
|
|
84
|
+
"Align Left": "\u05d9\u05d9\u05e9\u05d5\u05e8 \u05dc\u05e9\u05de\u05d0\u05dc",
|
|
85
|
+
"Align Center": "\u05d9\u05d9\u05e9\u05d5\u05e8 \u05dc\u05de\u05e8\u05db\u05d6",
|
|
86
|
+
"Align Right": "\u05d9\u05d9\u05e9\u05d5\u05e8 \u05dc\u05d9\u05de\u05d9\u05df",
|
|
87
|
+
"Align Justify": "\u05d9\u05d9\u05e9\u05d5\u05e8 \u05de\u05dc\u05d0",
|
|
88
|
+
"None": "\u05d0\u05e3 \u05d0\u05d7\u05d3",
|
|
89
|
+
|
|
90
|
+
// Lists
|
|
91
|
+
"Ordered List": "\u05d4\u05d5\u05e1\u05e4\u05ea \u05e8\u05e9\u05d9\u05de\u05d4 \u05de\u05de\u05d5\u05e1\u05e4\u05e8\u05ea",
|
|
92
|
+
"Unordered List": "\u05d4\u05d5\u05e1\u05e4\u05ea \u05e8\u05e9\u05d9\u05de\u05d4",
|
|
93
|
+
|
|
94
|
+
// Indent
|
|
95
|
+
"Decrease Indent": "\u05d4\u05e7\u05d8\u05e0\u05ea \u05db\u05e0\u05d9\u05e1\u05d4",
|
|
96
|
+
"Increase Indent": "\u05d4\u05d2\u05d3\u05dc\u05ea \u05db\u05e0\u05d9\u05e1\u05d4",
|
|
97
|
+
|
|
98
|
+
// Links
|
|
99
|
+
"Insert Link": "\u05d4\u05d5\u05e1\u05e4\u05ea \u05e7\u05d9\u05e9\u05d5\u05e8",
|
|
100
|
+
"Open in new tab": "\u05dc\u05e4\u05ea\u05d5\u05d7 \u05d1\u05d8\u05d0\u05d1 \u05d7\u05d3\u05e9",
|
|
101
|
+
"Open Link": "\u05e7\u05d9\u05e9\u05d5\u05e8 \u05e4\u05ea\u05d5\u05d7",
|
|
102
|
+
"Edit Link": "\u05e7\u05d9\u05e9\u05d5\u05e8 \u05e2\u05e8\u05d9\u05db\u05d4",
|
|
103
|
+
"Unlink": "\u05d4\u05e1\u05e8\u05ea \u05d4\u05e7\u05d9\u05e9\u05d5\u05e8",
|
|
104
|
+
"Choose Link": "\u05dc\u05d1\u05d7\u05d5\u05e8 \u05e7\u05d9\u05e9\u05d5\u05e8",
|
|
105
|
+
|
|
106
|
+
// Images
|
|
107
|
+
"Insert Image": "\u05d4\u05d5\u05e1\u05e4\u05ea \u05ea\u05de\u05d5\u05e0\u05d4",
|
|
108
|
+
"Upload Image": "\u05ea\u05de\u05d5\u05e0\u05ea \u05d4\u05e2\u05dc\u05d0\u05d4",
|
|
109
|
+
"By URL": "URL \u05e2\u05dc \u05d9\u05d3\u05d9",
|
|
110
|
+
"Browse": "\u05dc\u05d2\u05dc\u05d5\u05e9",
|
|
111
|
+
"Drop image": "\u05e9\u05d7\u05e8\u05e8 \u05d0\u05ea \u05d4\u05ea\u05de\u05d5\u05e0\u05d4 \u05db\u05d0\u05df",
|
|
112
|
+
"or click": "\u05d0\u05d5 \u05dc\u05d7\u05e5",
|
|
113
|
+
"Manage Images": "\u05e0\u05d9\u05d4\u05d5\u05dc \u05d4\u05ea\u05de\u05d5\u05e0\u05d5\u05ea",
|
|
114
|
+
"Loading": "\u05d8\u05e2\u05d9\u05e0\u05d4",
|
|
115
|
+
"Deleting": "\u05de\u05d7\u05d9\u05e7\u05d4",
|
|
116
|
+
"Tags": "\u05ea\u05d2\u05d9\u05dd",
|
|
117
|
+
"Are you sure? Image will be deleted.": "\u05d4\u05d0\u05dd \u05d0\u05ea\u05d4 \u05d1\u05d8\u05d5\u05d7\u003f \u05d4\u05ea\u05de\u05d5\u05e0\u05d4 \u05ea\u05de\u05d7\u05e7\u002e",
|
|
118
|
+
"Replace": "\u05dc\u05d4\u05d7\u05dc\u05d9\u05e3",
|
|
119
|
+
"Uploading": "\u05d4\u05e2\u05dc\u05d0\u05d4",
|
|
120
|
+
"Loading image": "\u05ea\u05de\u05d5\u05e0\u05ea \u05d8\u05e2\u05d9\u05e0\u05d4",
|
|
121
|
+
"Display": "\u05ea\u05e6\u05d5\u05d2\u05d4",
|
|
122
|
+
"Inline": "\u05d1\u05e9\u05d5\u05e8\u05d4",
|
|
123
|
+
"Break Text": "\u05d8\u05e7\u05e1\u05d8 \u05d4\u05e4\u05e1\u05e7\u05d4",
|
|
124
|
+
"Alternate Text": "\u05d8\u05e7\u05e1\u05d8 \u05d7\u05dc\u05d5\u05e4\u05d9",
|
|
125
|
+
"Change Size": "\u05d2\u05d5\u05d3\u05dc \u05e9\u05d9\u05e0\u05d5\u05d9",
|
|
126
|
+
"Width": "\u05e8\u05d5\u05d7\u05d1",
|
|
127
|
+
"Height": "\u05d2\u05d5\u05d1\u05d4",
|
|
128
|
+
"Something went wrong. Please try again.": "\u05de\u05e9\u05d4\u05d5 \u05d4\u05e9\u05ea\u05d1\u05e9. \u05d1\u05d1\u05e7\u05e9\u05d4 \u05e0\u05e1\u05d4 \u05e9\u05d5\u05d1.",
|
|
129
|
+
"Image Caption": "כיתוב תמונה",
|
|
130
|
+
"Advanced Edit": "עריכה מתקדמת",
|
|
131
|
+
|
|
132
|
+
// Video
|
|
133
|
+
"Insert Video": "\u05d4\u05d5\u05e1\u05e4\u05ea \u05d5\u05d9\u05d3\u05d9\u05d0\u05d5",
|
|
134
|
+
"Embedded Code": "\u05e7\u05d5\u05d3 \u05de\u05d5\u05d8\u05d1\u05e2",
|
|
135
|
+
"Paste in a video URL": "הדבק בכתובת אתר של סרטון",
|
|
136
|
+
"Drop video": "ירידה וידאו",
|
|
137
|
+
"Your browser does not support HTML5 video.": "הדפדפן שלך אינו תומך וידאו html5.",
|
|
138
|
+
"Upload Video": "להעלות וידאו",
|
|
139
|
+
|
|
140
|
+
// Tables
|
|
141
|
+
"Insert Table": "\u05d4\u05db\u05e0\u05e1 \u05d8\u05d1\u05dc\u05d4",
|
|
142
|
+
"Table Header": "\u05db\u05d5\u05ea\u05e8\u05ea \u05d8\u05d1\u05dc\u05d4",
|
|
143
|
+
"Remove Table": "\u05d4\u05e1\u05e8 \u05e9\u05d5\u05dc\u05d7\u05df",
|
|
144
|
+
"Table Style": "\u05e1\u05d2\u05e0\u05d5\u05df \u05d8\u05d1\u05dc\u05d4",
|
|
145
|
+
"Horizontal Align": "\u05d0\u05d5\u05e4\u05e7\u05d9\u05ea \u05dc\u05d9\u05d9\u05e9\u05e8",
|
|
146
|
+
"Row": "\u05e9\u05d5\u05e8\u05d4",
|
|
147
|
+
"Insert row above": "\u05d4\u05d5\u05e1\u05e4\u05ea \u05e9\u05d5\u05e8\u05d4 \u05dc\u05e4\u05e0\u05d9",
|
|
148
|
+
"Insert row below": "\u05d4\u05d5\u05e1\u05e4\u05ea \u05e9\u05d5\u05e8\u05d4 \u05d0\u05d7\u05e8\u05d9",
|
|
149
|
+
"Delete row": "\u05de\u05d7\u05d9\u05e7\u05ea \u05e9\u05d5\u05e8\u05d4",
|
|
150
|
+
"Column": "\u05d8\u05d5\u05e8",
|
|
151
|
+
"Insert column before": "\u05d4\u05d5\u05e1\u05e4\u05ea \u05d8\u05d5\u05e8 \u05dc\u05e4\u05e0\u05d9",
|
|
152
|
+
"Insert column after": "\u05d4\u05d5\u05e1\u05e4\u05ea \u05d8\u05d5\u05e8 \u05d0\u05d7\u05e8\u05d9",
|
|
153
|
+
"Delete column": "\u05de\u05d7\u05d9\u05e7\u05ea \u05d8\u05d5\u05e8",
|
|
154
|
+
"Cell": "\u05ea\u05d0",
|
|
155
|
+
"Merge cells": "\u05de\u05d6\u05d2 \u05ea\u05d0\u05d9\u05dd",
|
|
156
|
+
"Horizontal split": "\u05e4\u05e6\u05dc \u05d0\u05d5\u05e4\u05e7\u05d9",
|
|
157
|
+
"Vertical split": "\u05e4\u05e6\u05dc \u05d0\u05e0\u05db\u05d9",
|
|
158
|
+
"Cell Background": "\u05e8\u05e7\u05e2 \u05ea\u05d0",
|
|
159
|
+
"Vertical Align": "\u05d9\u05d9\u05e9\u05d5\u05e8 \u05d0\u05e0\u05db\u05d9",
|
|
160
|
+
"Top": "\u05e2\u05b6\u05dc\u05b4\u05d9\u05d5\u05b9\u05df",
|
|
161
|
+
"Middle": "\u05ea\u05b4\u05d9\u05db\u05d5\u05b9\u05e0\u05b4\u05d9",
|
|
162
|
+
"Bottom": "\u05ea\u05d7\u05ea\u05d5\u05df",
|
|
163
|
+
"Align Top": "\u05dc\u05d9\u05d9\u05e9\u05e8 \u05e2\u05b6\u05dc\u05b4\u05d9\u05d5\u05b9\u05df",
|
|
164
|
+
"Align Middle": "\u05dc\u05d9\u05d9\u05e9\u05e8 \u05ea\u05b4\u05d9\u05db\u05d5\u05b9\u05e0\u05b4\u05d9",
|
|
165
|
+
"Align Bottom": "\u05dc\u05d9\u05d9\u05e9\u05e8 \u05ea\u05d7\u05ea\u05d5\u05df",
|
|
166
|
+
"Cell Style": "\u05e1\u05d2\u05e0\u05d5\u05df \u05ea\u05d0",
|
|
167
|
+
|
|
168
|
+
// Files
|
|
169
|
+
"Upload File": "\u05d4\u05e2\u05dc\u05d0\u05ea \u05e7\u05d5\u05d1\u05e5",
|
|
170
|
+
"Drop file": "\u05d6\u05e8\u05d5\u05e7 \u05e7\u05d5\u05d1\u05e5 \u05db\u05d0\u05df",
|
|
171
|
+
|
|
172
|
+
// Emoticons
|
|
173
|
+
"Emoticons": "\u05e1\u05de\u05d9\u05d9\u05dc\u05d9\u05dd",
|
|
174
|
+
"Grinning face": "\u05d7\u05d9\u05d9\u05da \u05e4\u05e0\u05d9\u05dd",
|
|
175
|
+
"Grinning face with smiling eyes": "\u05d7\u05d9\u05d9\u05da \u05e4\u05e0\u05d9\u05dd \u05e2\u05dd \u05e2\u05d9\u05e0\u05d9\u05d9\u05dd \u05de\u05d7\u05d9\u05d9\u05db\u05d5\u05ea",
|
|
176
|
+
"Face with tears of joy": "\u05e4\u05e0\u05d9\u05dd \u05e2\u05dd \u05d3\u05de\u05e2\u05d5\u05ea \u05e9\u05dc \u05e9\u05de\u05d7\u05d4",
|
|
177
|
+
"Smiling face with open mouth": "\u05d7\u05d9\u05d5\u05da \u05e4\u05e0\u05d9\u05dd \u05e2\u05dd \u05e4\u05d4 \u05e4\u05ea\u05d5\u05d7",
|
|
178
|
+
"Smiling face with open mouth and smiling eyes": "\u05d7\u05d9\u05d5\u05da \u05e4\u05e0\u05d9\u05dd \u05e2\u05dd \u05e4\u05d4 \u05e4\u05ea\u05d5\u05d7 \u05d5\u05de\u05d7\u05d9\u05d9\u05da \u05e2\u05d9\u05e0\u05d9\u05d9\u05dd",
|
|
179
|
+
"Smiling face with open mouth and cold sweat": "\u05d7\u05d9\u05d5\u05da \u05e4\u05e0\u05d9\u05dd \u05e2\u05dd \u05e4\u05d4 \u05e4\u05ea\u05d5\u05d7 \u05d5\u05d6\u05d9\u05e2\u05d4 \u05e7\u05e8\u05d4",
|
|
180
|
+
"Smiling face with open mouth and tightly-closed eyes": "\u05d7\u05d9\u05d5\u05da \u05e4\u05e0\u05d9\u05dd \u05e2\u05dd \u05e4\u05d4 \u05e4\u05ea\u05d5\u05d7 \u05d5\u05e2\u05d9\u05e0\u05d9\u05d9\u05dd \u05d1\u05d7\u05d5\u05d6\u05e7\u05d4\u002d\u05e1\u05d2\u05d5\u05e8\u05d5\u05ea",
|
|
181
|
+
"Smiling face with halo": "\u05d7\u05d9\u05d5\u05da \u05e4\u05e0\u05d9\u05dd \u05e2\u05dd \u05d4\u05d9\u05dc\u05d4",
|
|
182
|
+
"Smiling face with horns": "\u05d7\u05d9\u05d5\u05da \u05e4\u05e0\u05d9\u05dd \u05e2\u05dd \u05e7\u05e8\u05e0\u05d5\u05ea",
|
|
183
|
+
"Winking face": "\u05e7\u05e8\u05d9\u05e6\u05d4 \u05e4\u05e0\u05d9\u05dd",
|
|
184
|
+
"Smiling face with smiling eyes": "\u05d7\u05d9\u05d5\u05da \u05e4\u05e0\u05d9\u05dd \u05e2\u05dd \u05e2\u05d9\u05e0\u05d9\u05d9\u05dd \u05de\u05d7\u05d9\u05d9\u05db\u05d5\u05ea",
|
|
185
|
+
"Face savoring delicious food": "\u05e4\u05e0\u05d9\u05dd \u05de\u05ea\u05e2\u05e0\u05d2 \u05d0\u05d5\u05db\u05dc \u05d8\u05e2\u05d9\u05dd",
|
|
186
|
+
"Relieved face": "\u05e4\u05e0\u05d9\u05dd \u05e9\u05dc \u05d4\u05e7\u05dc\u05d4",
|
|
187
|
+
"Smiling face with heart-shaped eyes": "\u05d7\u05d9\u05d5\u05da \u05e4\u05e0\u05d9\u05dd \u05e2\u05dd \u05e2\u05d9\u05e0\u05d9\u05d9\u05dd \u05d1\u05e6\u05d5\u05e8\u05ea \u05dc\u05d1",
|
|
188
|
+
"Smiling face with sunglasses": "\u05d7\u05d9\u05d5\u05da \u05e4\u05e0\u05d9\u05dd \u05e2\u05dd \u05de\u05e9\u05e7\u05e4\u05d9 \u05e9\u05de\u05e9",
|
|
189
|
+
"Smirking face": "\u05d4\u05d9\u05d0 \u05d7\u05d9\u05d9\u05db\u05d4 \u05d7\u05d9\u05d5\u05da \u05e0\u05d1\u05d6\u05d4 \u05e4\u05e0\u05d9\u05dd",
|
|
190
|
+
"Neutral face": "\u05e4\u05e0\u05d9\u05dd \u05e0\u05d9\u05d8\u05e8\u05dc\u05d9",
|
|
191
|
+
"Expressionless face": "\u05d1\u05e4\u05e0\u05d9\u05dd \u05d7\u05ea\u05d5\u05dd",
|
|
192
|
+
"Unamused face": "\u05e4\u05e0\u05d9\u05dd \u05dc\u05d0 \u05de\u05e9\u05d5\u05e2\u05e9\u05e2\u05d9\u05dd",
|
|
193
|
+
"Face with cold sweat": "\u05e4\u05e0\u05d9\u05dd \u05e2\u05dd \u05d6\u05d9\u05e2\u05d4 \u05e7\u05e8\u05d4",
|
|
194
|
+
"Pensive face": "\u05d1\u05e4\u05e0\u05d9\u05dd \u05de\u05d4\u05d5\u05e8\u05d4\u05e8",
|
|
195
|
+
"Confused face": "\u05e4\u05e0\u05d9\u05dd \u05de\u05d1\u05d5\u05dc\u05d1\u05dc\u05d9\u05dd",
|
|
196
|
+
"Confounded face": "\u05e4\u05e0\u05d9\u05dd \u05de\u05d1\u05d5\u05dc\u05d1\u05dc",
|
|
197
|
+
"Kissing face": "\u05e0\u05e9\u05d9\u05e7\u05d5\u05ea \u05e4\u05e0\u05d9\u05dd",
|
|
198
|
+
"Face throwing a kiss": "\u05e4\u05e0\u05d9\u05dd \u05dc\u05d6\u05e8\u05d5\u05e7 \u05e0\u05e9\u05d9\u05e7\u05d4",
|
|
199
|
+
"Kissing face with smiling eyes": "\u05e0\u05e9\u05d9\u05e7\u05d5\u05ea \u05e4\u05e0\u05d9\u05dd \u05e2\u05dd \u05e2\u05d9\u05e0\u05d9\u05d9\u05dd \u05de\u05d7\u05d9\u05d9\u05db\u05d5\u05ea",
|
|
200
|
+
"Kissing face with closed eyes": "\u05e0\u05e9\u05d9\u05e7\u05d5\u05ea \u05e4\u05e0\u05d9\u05dd \u05e2\u05dd \u05e2\u05d9\u05e0\u05d9\u05d9\u05dd \u05e1\u05d2\u05d5\u05e8\u05d5\u05ea",
|
|
201
|
+
"Face with stuck out tongue": "\u05e4\u05e0\u05d9\u05dd \u05e2\u05dd \u05dc\u05e9\u05d5\u05df \u05d1\u05dc\u05d8\u05d5",
|
|
202
|
+
"Face with stuck out tongue and winking eye": "\u05e4\u05e0\u05d9\u05dd \u05e2\u05dd \u05dc\u05e9\u05d5\u05df \u05ea\u05e7\u05d5\u05e2\u05d4 \u05d4\u05d7\u05d5\u05e6\u05d4 \u05d5\u05e2\u05d9\u05df \u05e7\u05d5\u05e8\u05e6\u05ea",
|
|
203
|
+
"Face with stuck out tongue and tightly-closed eyes": "\u05e4\u05e0\u05d9\u05dd \u05e2\u05dd \u05dc\u05e9\u05d5\u05df \u05ea\u05e7\u05d5\u05e2\u05d4 \u05d4\u05d7\u05d5\u05e6\u05d4 \u05d5\u05e2\u05d9\u05e0\u05d9\u05d9\u05dd \u05d1\u05d7\u05d5\u05d6\u05e7\u05d4\u002d\u05e1\u05d2\u05d5\u05e8\u05d5\u05ea",
|
|
204
|
+
"Disappointed face": "\u05e4\u05e0\u05d9\u05dd \u05de\u05d0\u05d5\u05db\u05d6\u05d1\u05d9\u05dd",
|
|
205
|
+
"Worried face": "\u05e4\u05e0\u05d9\u05dd \u05de\u05d5\u05d3\u05d0\u05d2\u05d9\u05dd",
|
|
206
|
+
"Angry face": "\u05e4\u05e0\u05d9\u05dd \u05db\u05d5\u05e2\u05e1\u05d9\u05dd",
|
|
207
|
+
"Pouting face": "\u05de\u05e9\u05d5\u05e8\u05d1\u05d1 \u05e4\u05e0\u05d9\u05dd",
|
|
208
|
+
"Crying face": "\u05d1\u05db\u05d9 \u05e4\u05e0\u05d9\u05dd",
|
|
209
|
+
"Persevering face": "\u05d4\u05ea\u05de\u05d3\u05ea \u05e4\u05e0\u05d9\u05dd",
|
|
210
|
+
"Face with look of triumph": "\u05e4\u05e0\u05d9\u05dd \u05e2\u05dd \u05de\u05d1\u05d8 \u05e9\u05dc \u05e0\u05e6\u05d7\u05d5\u05df",
|
|
211
|
+
"Disappointed but relieved face": "\u05de\u05d0\u05d5\u05db\u05d6\u05d1 \u05d0\u05d1\u05dc \u05d4\u05d5\u05e7\u05dc \u05e4\u05e0\u05d9\u05dd",
|
|
212
|
+
"Frowning face with open mouth": "\u05e7\u05de\u05d8 \u05d0\u05ea \u05de\u05e6\u05d7 \u05e4\u05e0\u05d9\u05dd \u05e2\u05dd \u05e4\u05d4 \u05e4\u05ea\u05d5\u05d7",
|
|
213
|
+
"Anguished face": "\u05e4\u05e0\u05d9\u05dd \u05de\u05d9\u05d5\u05e1\u05e8\u05d9\u05dd",
|
|
214
|
+
"Fearful face": "\u05e4\u05e0\u05d9\u05dd \u05e9\u05d7\u05e9\u05e9\u05d5",
|
|
215
|
+
"Weary face": "\u05e4\u05e0\u05d9\u05dd \u05d5\u05d9\u05e8\u05d9",
|
|
216
|
+
"Sleepy face": "\u05e4\u05e0\u05d9\u05dd \u05e9\u05dc \u05e1\u05dc\u05d9\u05e4\u05d9",
|
|
217
|
+
"Tired face": "\u05e4\u05e0\u05d9\u05dd \u05e2\u05d9\u05d9\u05e4\u05d9\u05dd",
|
|
218
|
+
"Grimacing face": "\u05d4\u05d5\u05d0 \u05d4\u05e2\u05d5\u05d5\u05d4 \u05d0\u05ea \u05e4\u05e0\u05d9 \u05e4\u05e0\u05d9\u05dd",
|
|
219
|
+
"Loudly crying face": "\u05d1\u05e7\u05d5\u05dc \u05e8\u05dd \u05d1\u05d5\u05db\u05d4 \u05e4\u05e0\u05d9\u05dd",
|
|
220
|
+
"Face with open mouth": "\u05e4\u05e0\u05d9\u05dd \u05e2\u05dd \u05e4\u05d4 \u05e4\u05ea\u05d5\u05d7",
|
|
221
|
+
"Hushed face": "\u05e4\u05e0\u05d9\u05dd \u05e9\u05d5\u05e7\u05d8\u05d9\u05dd",
|
|
222
|
+
"Face with open mouth and cold sweat": "\u05e4\u05e0\u05d9\u05dd \u05e2\u05dd \u05e4\u05d4 \u05e4\u05ea\u05d5\u05d7 \u05d5\u05d6\u05d9\u05e2\u05d4 \u05e7\u05e8\u05d4\u0022",
|
|
223
|
+
"Face screaming in fear": "\u05e4\u05e0\u05d9\u05dd \u05e6\u05d5\u05e8\u05d7\u05d9\u05dd \u05d1\u05e4\u05d7\u05d3",
|
|
224
|
+
"Astonished face": "\u05e4\u05e0\u05d9\u05d5 \u05e0\u05d3\u05d4\u05de\u05d5\u05ea",
|
|
225
|
+
"Flushed face": "\u05e4\u05e0\u05d9\u05d5 \u05e1\u05de\u05d5\u05e7\u05d5\u05ea",
|
|
226
|
+
"Sleeping face": "\u05e9\u05d9\u05e0\u05d4 \u05e4\u05e0\u05d9\u05dd",
|
|
227
|
+
"Dizzy face": "\u05e4\u05e0\u05d9\u05dd \u05e9\u05dc \u05d3\u05d9\u05d6\u05d9",
|
|
228
|
+
"Face without mouth": "\u05e4\u05e0\u05d9\u05dd \u05dc\u05dc\u05d0 \u05e4\u05d4",
|
|
229
|
+
"Face with medical mask": "\u05e4\u05e0\u05d9\u05dd \u05e2\u05dd \u05de\u05e1\u05db\u05d4 \u05e8\u05e4\u05d5\u05d0\u05d9\u05ea",
|
|
230
|
+
|
|
231
|
+
// Line breaker
|
|
232
|
+
"Break": "\u05d4\u05e4\u05e1\u05e7\u05d4",
|
|
233
|
+
|
|
234
|
+
// Math
|
|
235
|
+
"Subscript": "\u05db\u05ea\u05d1 \u05ea\u05d7\u05ea\u05d9",
|
|
236
|
+
"Superscript": "\u05e2\u05d9\u05dc\u05d9",
|
|
237
|
+
|
|
238
|
+
// Full screen
|
|
239
|
+
"Fullscreen": "\u05de\u05e1\u05da \u05de\u05dc\u05d0",
|
|
240
|
+
|
|
241
|
+
// Horizontal line
|
|
242
|
+
"Insert Horizontal Line": "\u05d4\u05d5\u05e1\u05e4\u05ea \u05e7\u05d5 \u05d0\u05d5\u05e4\u05e7\u05d9",
|
|
243
|
+
|
|
244
|
+
// Clear formatting
|
|
245
|
+
"Clear Formatting": "\u05dc\u05d4\u05e1\u05d9\u05e8 \u05e2\u05d9\u05e6\u05d5\u05d1",
|
|
246
|
+
|
|
247
|
+
// Undo, redo
|
|
248
|
+
"Undo": "\u05d1\u05d9\u05d8\u05d5\u05dc",
|
|
249
|
+
"Redo": "\u05d1\u05e6\u05e2 \u05e9\u05d5\u05d1",
|
|
250
|
+
|
|
251
|
+
// Select all
|
|
252
|
+
"Select All": "\u05d1\u05d7\u05e8 \u05d4\u05db\u05dc",
|
|
253
|
+
|
|
254
|
+
// Code view
|
|
255
|
+
"Code View": "\u05ea\u05e6\u05d5\u05d2\u05ea \u05e7\u05d5\u05d3",
|
|
256
|
+
|
|
257
|
+
// Quote
|
|
258
|
+
"Quote": "\u05e6\u05d9\u05d8\u05d5\u05d8",
|
|
259
|
+
"Increase": "\u05dc\u05d4\u05d2\u05d1\u05d9\u05e8",
|
|
260
|
+
"Decrease": "\u05d9\u05e8\u05d9\u05d3\u05d4",
|
|
261
|
+
|
|
262
|
+
// Quick Insert
|
|
263
|
+
"Quick Insert": "\u05db\u05e0\u05e1 \u05de\u05d4\u05d9\u05e8",
|
|
264
|
+
|
|
265
|
+
// Spcial Characters
|
|
266
|
+
"Special Characters": "תווים מיוחדים",
|
|
267
|
+
"Latin": "לָטִינִית",
|
|
268
|
+
"Greek": "יווני",
|
|
269
|
+
"Cyrillic": "קירילית",
|
|
270
|
+
"Punctuation": "פיסוק",
|
|
271
|
+
"Currency": "מַטְבֵּעַ",
|
|
272
|
+
"Arrows": "חצים",
|
|
273
|
+
"Math": "מתמטיקה",
|
|
274
|
+
"Misc": "שונות",
|
|
275
|
+
|
|
276
|
+
// Print.
|
|
277
|
+
"Print": "הדפס",
|
|
278
|
+
|
|
279
|
+
// Spell Checker.
|
|
280
|
+
"Spell Checker": "בודק איות",
|
|
281
|
+
|
|
282
|
+
// Help
|
|
283
|
+
"Help": "עֶזרָה",
|
|
284
|
+
"Shortcuts": "קיצורי דרך",
|
|
285
|
+
"Inline Editor": "עורך מוטבע",
|
|
286
|
+
"Show the editor": "להראות את העורך",
|
|
287
|
+
"Common actions": "פעולות נפוצות",
|
|
288
|
+
"Copy": "עותק",
|
|
289
|
+
"Cut": "גזירה",
|
|
290
|
+
"Paste": "לְהַדבִּיק",
|
|
291
|
+
"Basic Formatting": "עיצוב בסיסי",
|
|
292
|
+
"Increase quote level": "רמת ציטוט",
|
|
293
|
+
"Decrease quote level": "רמת ציטוט ירידה",
|
|
294
|
+
"Image / Video": "תמונה / וידאו",
|
|
295
|
+
"Resize larger": "גודל גדול יותר",
|
|
296
|
+
"Resize smaller": "גודל קטן יותר",
|
|
297
|
+
"Table": "שולחן",
|
|
298
|
+
"Select table cell": "בחר תא תא - -",
|
|
299
|
+
"Extend selection one cell": "להאריך את הבחירה תא אחד",
|
|
300
|
+
"Extend selection one row": "להאריך את הבחירה שורה אחת",
|
|
301
|
+
"Navigation": "ניווט",
|
|
302
|
+
"Focus popup / toolbar": "מוקד קופץ / סרגל הכלים",
|
|
303
|
+
"Return focus to previous position": "חזרה להתמקד קודם",
|
|
304
|
+
|
|
305
|
+
// Embed.ly
|
|
306
|
+
"Embed URL": "כתובת אתר להטביע",
|
|
307
|
+
"Paste in a URL to embed": "הדבק כתובת אתר להטביע",
|
|
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?": "התוכן המודבק מגיע ממסמך Word של Microsoft. האם ברצונך לשמור את הפורמט או לנקות אותו?",
|
|
311
|
+
"Keep": "לִשְׁמוֹר",
|
|
312
|
+
"Clean": "לְנַקוֹת",
|
|
313
|
+
"Word Paste Detected": "הדבק מילה זוהתה"
|
|
314
|
+
},
|
|
315
|
+
direction: "rtl"
|
|
316
|
+
};
|
|
317
|
+
|
|
318
|
+
}));
|