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
|
+
* Dutch
|
|
35
|
+
*/
|
|
36
|
+
|
|
37
|
+
$.FE.LANGUAGE['nl'] = {
|
|
38
|
+
translation: {
|
|
39
|
+
// Place holder
|
|
40
|
+
"Type something": "Typ iets",
|
|
41
|
+
|
|
42
|
+
// Basic formatting
|
|
43
|
+
"Bold": "Vet",
|
|
44
|
+
"Italic": "Cursief",
|
|
45
|
+
"Underline": "Onderstreept",
|
|
46
|
+
"Strikethrough": "Doorhalen",
|
|
47
|
+
|
|
48
|
+
// Main buttons
|
|
49
|
+
"Insert": "Invoegen",
|
|
50
|
+
"Delete": "Verwijder",
|
|
51
|
+
"Cancel": "Annuleren",
|
|
52
|
+
"OK": "Ok\u00e9",
|
|
53
|
+
"Back": "Terug",
|
|
54
|
+
"Remove": "Verwijderen",
|
|
55
|
+
"More": "Meer",
|
|
56
|
+
"Update": "Bijwerken",
|
|
57
|
+
"Style": "Stijl",
|
|
58
|
+
|
|
59
|
+
// Font
|
|
60
|
+
"Font Family": "Lettertype",
|
|
61
|
+
"Font Size": "Lettergrootte",
|
|
62
|
+
|
|
63
|
+
// Colors
|
|
64
|
+
"Colors": "Kleuren",
|
|
65
|
+
"Background": "Achtergrond",
|
|
66
|
+
"Text": "Tekst",
|
|
67
|
+
"HEX Color": "HEX kleur",
|
|
68
|
+
|
|
69
|
+
// Paragraphs
|
|
70
|
+
"Paragraph Format": "Opmaak",
|
|
71
|
+
"Normal": "Normaal",
|
|
72
|
+
"Code": "Code",
|
|
73
|
+
"Heading 1": "Kop 1",
|
|
74
|
+
"Heading 2": "Kop 2",
|
|
75
|
+
"Heading 3": "Kop 3",
|
|
76
|
+
"Heading 4": "Kop 4",
|
|
77
|
+
|
|
78
|
+
// Style
|
|
79
|
+
"Paragraph Style": "Paragraaf stijl",
|
|
80
|
+
"Inline Style": "Inline stijl",
|
|
81
|
+
|
|
82
|
+
// Alignment
|
|
83
|
+
"Align": "Uitlijnen",
|
|
84
|
+
"Align Left": "Links uitlijnen",
|
|
85
|
+
"Align Center": "Centreren",
|
|
86
|
+
"Align Right": "Rechts uitlijnen",
|
|
87
|
+
"Align Justify": "Uitvullen",
|
|
88
|
+
"None": "Geen",
|
|
89
|
+
|
|
90
|
+
// Lists
|
|
91
|
+
"Ordered List": "Geordende lijst",
|
|
92
|
+
"Unordered List": "Ongeordende lijst",
|
|
93
|
+
|
|
94
|
+
// Indent
|
|
95
|
+
"Decrease Indent": "Inspringen verkleinen",
|
|
96
|
+
"Increase Indent": "Inspringen vergroten",
|
|
97
|
+
|
|
98
|
+
// Links
|
|
99
|
+
"Insert Link": "Link invoegen",
|
|
100
|
+
"Open in new tab": "Openen in nieuwe tab",
|
|
101
|
+
"Open Link": "Open link",
|
|
102
|
+
"Edit Link": "Link bewerken",
|
|
103
|
+
"Unlink": "Link verwijderen",
|
|
104
|
+
"Choose Link": "Link kiezen",
|
|
105
|
+
|
|
106
|
+
// Images
|
|
107
|
+
"Insert Image": "Afbeelding invoegen",
|
|
108
|
+
"Upload Image": "Afbeelding uploaden",
|
|
109
|
+
"By URL": "Via URL",
|
|
110
|
+
"Browse": "Bladeren",
|
|
111
|
+
"Drop image": "Sleep afbeelding",
|
|
112
|
+
"or click": "of klik op",
|
|
113
|
+
"Manage Images": "Afbeeldingen beheren",
|
|
114
|
+
"Loading": "Bezig met laden",
|
|
115
|
+
"Deleting": "Verwijderen",
|
|
116
|
+
"Tags": "Labels",
|
|
117
|
+
"Are you sure? Image will be deleted.": "Weet je het zeker? Afbeelding wordt verwijderd.",
|
|
118
|
+
"Replace": "Vervangen",
|
|
119
|
+
"Uploading": "Uploaden",
|
|
120
|
+
"Loading image": "Afbeelding laden",
|
|
121
|
+
"Display": "Tonen",
|
|
122
|
+
"Inline": "Inline",
|
|
123
|
+
"Break Text": "Tekst afbreken",
|
|
124
|
+
"Alternate Text": "Alternatieve tekst",
|
|
125
|
+
"Change Size": "Grootte wijzigen",
|
|
126
|
+
"Width": "Breedte",
|
|
127
|
+
"Height": "Hoogte",
|
|
128
|
+
"Something went wrong. Please try again.": "Er is iets fout gegaan. Probeer opnieuw.",
|
|
129
|
+
"Image Caption": "Afbeelding caption",
|
|
130
|
+
"Advanced Edit": "Geavanceerd bewerken",
|
|
131
|
+
|
|
132
|
+
// Video
|
|
133
|
+
"Insert Video": "Video invoegen",
|
|
134
|
+
"Embedded Code": "Ingebedde code",
|
|
135
|
+
"Paste in a video URL": "Voeg een video-URL toe",
|
|
136
|
+
"Drop video": "Sleep video",
|
|
137
|
+
"Your browser does not support HTML5 video.": "Je browser ondersteunt geen html5-video.",
|
|
138
|
+
"Upload Video": "Video uploaden",
|
|
139
|
+
|
|
140
|
+
// Tables
|
|
141
|
+
"Insert Table": "Tabel invoegen",
|
|
142
|
+
"Table Header": "Tabel hoofd",
|
|
143
|
+
"Remove Table": "Verwijder tabel",
|
|
144
|
+
"Table Style": "Tabelstijl",
|
|
145
|
+
"Horizontal Align": "Horizontale uitlijning",
|
|
146
|
+
"Row": "Rij",
|
|
147
|
+
"Insert row above": "Voeg rij boven toe",
|
|
148
|
+
"Insert row below": "Voeg rij onder toe",
|
|
149
|
+
"Delete row": "Verwijder rij",
|
|
150
|
+
"Column": "Kolom",
|
|
151
|
+
"Insert column before": "Voeg kolom in voor",
|
|
152
|
+
"Insert column after": "Voeg kolom in na",
|
|
153
|
+
"Delete column": "Verwijder kolom",
|
|
154
|
+
"Cell": "Cel",
|
|
155
|
+
"Merge cells": "Cellen samenvoegen",
|
|
156
|
+
"Horizontal split": "Horizontaal splitsen",
|
|
157
|
+
"Vertical split": "Verticaal splitsen",
|
|
158
|
+
"Cell Background": "Cel achtergrond",
|
|
159
|
+
"Vertical Align": "Verticale uitlijning",
|
|
160
|
+
"Top": "Top",
|
|
161
|
+
"Middle": "Midden",
|
|
162
|
+
"Bottom": "Onder",
|
|
163
|
+
"Align Top": "Uitlijnen top",
|
|
164
|
+
"Align Middle": "Uitlijnen midden",
|
|
165
|
+
"Align Bottom": "Onder uitlijnen",
|
|
166
|
+
"Cell Style": "Celstijl",
|
|
167
|
+
|
|
168
|
+
// Files
|
|
169
|
+
"Upload File": "Bestand uploaden",
|
|
170
|
+
"Drop file": "Sleep bestand",
|
|
171
|
+
|
|
172
|
+
// Emoticons
|
|
173
|
+
"Emoticons": "Emoticons",
|
|
174
|
+
"Grinning face": "Grijnzend gezicht",
|
|
175
|
+
"Grinning face with smiling eyes": "Grijnzend gezicht met lachende ogen",
|
|
176
|
+
"Face with tears of joy": "Gezicht met tranen van vreugde",
|
|
177
|
+
"Smiling face with open mouth": "Lachend gezicht met open mond",
|
|
178
|
+
"Smiling face with open mouth and smiling eyes": "Lachend gezicht met open mond en lachende ogen",
|
|
179
|
+
"Smiling face with open mouth and cold sweat": "Lachend gezicht met open mond en koud zweet",
|
|
180
|
+
"Smiling face with open mouth and tightly-closed eyes": "Lachend gezicht met open mond en strak gesloten ogen",
|
|
181
|
+
"Smiling face with halo": "Lachend gezicht met halo",
|
|
182
|
+
"Smiling face with horns": "Lachend gezicht met hoorns",
|
|
183
|
+
"Winking face": "Knipogend gezicht",
|
|
184
|
+
"Smiling face with smiling eyes": "Lachend gezicht met lachende ogen",
|
|
185
|
+
"Face savoring delicious food": "Gezicht genietend van heerlijk eten",
|
|
186
|
+
"Relieved face": "Opgelucht gezicht",
|
|
187
|
+
"Smiling face with heart-shaped eyes": "Glimlachend gezicht met hart-vormige ogen",
|
|
188
|
+
"Smiling face with sunglasses": "Lachend gezicht met zonnebril",
|
|
189
|
+
"Smirking face": "Grijnzende gezicht",
|
|
190
|
+
"Neutral face": "Neutraal gezicht",
|
|
191
|
+
"Expressionless face": "Uitdrukkingsloos gezicht",
|
|
192
|
+
"Unamused face": "Niet geamuseerd gezicht",
|
|
193
|
+
"Face with cold sweat": "Gezicht met koud zweet",
|
|
194
|
+
"Pensive face": "Peinzend gezicht",
|
|
195
|
+
"Confused face": "Verward gezicht",
|
|
196
|
+
"Confounded face": "Beschaamd gezicht",
|
|
197
|
+
"Kissing face": "Zoenend gezicht",
|
|
198
|
+
"Face throwing a kiss": "Gezicht gooien van een kus",
|
|
199
|
+
"Kissing face with smiling eyes": "Zoenend gezicht met lachende ogen",
|
|
200
|
+
"Kissing face with closed eyes": "Zoenend gezicht met gesloten ogen",
|
|
201
|
+
"Face with stuck out tongue": "Gezicht met uitstekende tong",
|
|
202
|
+
"Face with stuck out tongue and winking eye": "Gezicht met uitstekende tong en knipoog",
|
|
203
|
+
"Face with stuck out tongue and tightly-closed eyes": "Gezicht met uitstekende tong en strak-gesloten ogen",
|
|
204
|
+
"Disappointed face": "Teleurgesteld gezicht",
|
|
205
|
+
"Worried face": "Bezorgd gezicht",
|
|
206
|
+
"Angry face": "Boos gezicht",
|
|
207
|
+
"Pouting face": "Pruilend gezicht",
|
|
208
|
+
"Crying face": "Huilend gezicht",
|
|
209
|
+
"Persevering face": "Volhardend gezicht",
|
|
210
|
+
"Face with look of triumph": "Gezicht met blik van triomf",
|
|
211
|
+
"Disappointed but relieved face": "Teleurgesteld, maar opgelucht gezicht",
|
|
212
|
+
"Frowning face with open mouth": "Fronsend gezicht met open mond",
|
|
213
|
+
"Anguished face": "Gekweld gezicht",
|
|
214
|
+
"Fearful face": "Angstig gezicht",
|
|
215
|
+
"Weary face": "Vermoeid gezicht",
|
|
216
|
+
"Sleepy face": "Slaperig gezicht",
|
|
217
|
+
"Tired face": "Moe gezicht",
|
|
218
|
+
"Grimacing face": "Grimassen trekkend gezicht",
|
|
219
|
+
"Loudly crying face": "Luid schreeuwend gezicht",
|
|
220
|
+
"Face with open mouth": "Gezicht met open mond",
|
|
221
|
+
"Hushed face": "Tot zwijgen gebracht gezicht",
|
|
222
|
+
"Face with open mouth and cold sweat": "Gezicht met open mond en koud zweet",
|
|
223
|
+
"Face screaming in fear": "Gezicht schreeuwend van angst",
|
|
224
|
+
"Astonished face": "Verbaasd gezicht",
|
|
225
|
+
"Flushed face": "Blozend gezicht",
|
|
226
|
+
"Sleeping face": "Slapend gezicht",
|
|
227
|
+
"Dizzy face": "Duizelig gezicht",
|
|
228
|
+
"Face without mouth": "Gezicht zonder mond",
|
|
229
|
+
"Face with medical mask": "Gezicht met medisch masker",
|
|
230
|
+
|
|
231
|
+
// Line breaker
|
|
232
|
+
"Break": "Afbreken",
|
|
233
|
+
|
|
234
|
+
// Math
|
|
235
|
+
"Subscript": "Subscript",
|
|
236
|
+
"Superscript": "Superscript",
|
|
237
|
+
|
|
238
|
+
// Full screen
|
|
239
|
+
"Fullscreen": "Volledig scherm",
|
|
240
|
+
|
|
241
|
+
// Horizontal line
|
|
242
|
+
"Insert Horizontal Line": "Horizontale lijn invoegen",
|
|
243
|
+
|
|
244
|
+
// Clear formatting
|
|
245
|
+
"Clear Formatting": "Verwijder opmaak",
|
|
246
|
+
|
|
247
|
+
// Undo, redo
|
|
248
|
+
"Undo": "Ongedaan maken",
|
|
249
|
+
"Redo": "Opnieuw",
|
|
250
|
+
|
|
251
|
+
// Select all
|
|
252
|
+
"Select All": "Alles selecteren",
|
|
253
|
+
|
|
254
|
+
// Code view
|
|
255
|
+
"Code View": "Codeweergave",
|
|
256
|
+
|
|
257
|
+
// Quote
|
|
258
|
+
"Quote": "Citaat",
|
|
259
|
+
"Increase": "Toenemen",
|
|
260
|
+
"Decrease": "Afnemen",
|
|
261
|
+
|
|
262
|
+
// Quick Insert
|
|
263
|
+
"Quick Insert": "Snel invoegen",
|
|
264
|
+
|
|
265
|
+
// Spcial Characters
|
|
266
|
+
"Special Characters": "Speciale tekens",
|
|
267
|
+
"Latin": "Latijns",
|
|
268
|
+
"Greek": "Grieks",
|
|
269
|
+
"Cyrillic": "Cyrillisch",
|
|
270
|
+
"Punctuation": "Interpunctie",
|
|
271
|
+
"Currency": "Valuta",
|
|
272
|
+
"Arrows": "Pijlen",
|
|
273
|
+
"Math": "Wiskunde",
|
|
274
|
+
"Misc": "Misc",
|
|
275
|
+
|
|
276
|
+
// Print.
|
|
277
|
+
"Print": "Afdrukken",
|
|
278
|
+
|
|
279
|
+
// Spell Checker.
|
|
280
|
+
"Spell Checker": "Spellingscontrole",
|
|
281
|
+
|
|
282
|
+
// Help
|
|
283
|
+
"Help": "Hulp",
|
|
284
|
+
"Shortcuts": "Snelkoppelingen",
|
|
285
|
+
"Inline Editor": "Inline editor",
|
|
286
|
+
"Show the editor": "Laat de editor zien",
|
|
287
|
+
"Common actions": "Algemene acties",
|
|
288
|
+
"Copy": "Kopiëren",
|
|
289
|
+
"Cut": "Knippen",
|
|
290
|
+
"Paste": "Plakken",
|
|
291
|
+
"Basic Formatting": "Basisformattering",
|
|
292
|
+
"Increase quote level": "Citaat niveau verhogen",
|
|
293
|
+
"Decrease quote level": "Citaatniveau verminderen",
|
|
294
|
+
"Image / Video": "Beeld / video",
|
|
295
|
+
"Resize larger": "Groter maken",
|
|
296
|
+
"Resize smaller": "Kleiner maken",
|
|
297
|
+
"Table": "Tabel",
|
|
298
|
+
"Select table cell": "Selecteer tabelcel",
|
|
299
|
+
"Extend selection one cell": "Selecteer een cel uit",
|
|
300
|
+
"Extend selection one row": "Selecteer een rij uit",
|
|
301
|
+
"Navigation": "Navigatie",
|
|
302
|
+
"Focus popup / toolbar": "Focus pop-up / werkbalk",
|
|
303
|
+
"Return focus to previous position": "Focus terug naar vorige positie",
|
|
304
|
+
|
|
305
|
+
// Embed.ly
|
|
306
|
+
"Embed URL": "Embed url",
|
|
307
|
+
"Paste in a URL to embed": "Voer een URL in om toe te voegen",
|
|
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?": "De geplakte inhoud komt uit een Microsoft Word-document. wil je het formaat behouden of schoonmaken?",
|
|
311
|
+
"Keep": "Opmaak behouden",
|
|
312
|
+
"Clean": "Tekst schoonmaken",
|
|
313
|
+
"Word Paste Detected": "Word inhoud gedetecteerd"
|
|
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
|
+
* Polish
|
|
35
|
+
*/
|
|
36
|
+
|
|
37
|
+
$.FE.LANGUAGE['pl'] = {
|
|
38
|
+
translation: {
|
|
39
|
+
// Place holder
|
|
40
|
+
"Type something": "Wpisz co\u015b",
|
|
41
|
+
|
|
42
|
+
// Basic formatting
|
|
43
|
+
"Bold": "Pogrubienie",
|
|
44
|
+
"Italic": "Kursywa",
|
|
45
|
+
"Underline": "Podkre\u015blenie",
|
|
46
|
+
"Strikethrough": "Przekre\u015blenie",
|
|
47
|
+
|
|
48
|
+
// Main buttons
|
|
49
|
+
"Insert": "Wstaw",
|
|
50
|
+
"Delete": "Usun\u0105\u0107",
|
|
51
|
+
"Cancel": "Anuluj",
|
|
52
|
+
"OK": "Ok",
|
|
53
|
+
"Back": "Plecy",
|
|
54
|
+
"Remove": "Usun\u0105\u0107",
|
|
55
|
+
"More": "Jeszcze",
|
|
56
|
+
"Update": "Aktualizacja",
|
|
57
|
+
"Style": "Styl",
|
|
58
|
+
|
|
59
|
+
// Font
|
|
60
|
+
"Font Family": "Kr\u00f3j czcionki",
|
|
61
|
+
"Font Size": "Rozmiar czcionki",
|
|
62
|
+
|
|
63
|
+
// Colors
|
|
64
|
+
"Colors": "Kolory",
|
|
65
|
+
"Background": "T\u0142o",
|
|
66
|
+
"Text": "Tekstu",
|
|
67
|
+
"HEX Color": "Sześciokąt",
|
|
68
|
+
|
|
69
|
+
// Paragraphs
|
|
70
|
+
"Paragraph Format": "Formaty",
|
|
71
|
+
"Normal": "Normalny",
|
|
72
|
+
"Code": "Kod \u017ar\u00f3d\u0142owy",
|
|
73
|
+
"Heading 1": "Nag\u0142\u00f3wek 1",
|
|
74
|
+
"Heading 2": "Nag\u0142\u00f3wek 2",
|
|
75
|
+
"Heading 3": "Nag\u0142\u00f3wek 3",
|
|
76
|
+
"Heading 4": "Nag\u0142\u00f3wek 4",
|
|
77
|
+
|
|
78
|
+
// Style
|
|
79
|
+
"Paragraph Style": "Styl akapitu",
|
|
80
|
+
"Inline Style": "Stylu zgodna",
|
|
81
|
+
|
|
82
|
+
// Alignment
|
|
83
|
+
"Align": "Wyr\u00f3wnaj",
|
|
84
|
+
"Align Left": "Wyr\u00f3wnaj do lewej",
|
|
85
|
+
"Align Center": "Wyr\u00f3wnaj do \u015brodka",
|
|
86
|
+
"Align Right": "Wyr\u00f3wnaj do prawej",
|
|
87
|
+
"Align Justify": "Do lewej i prawej",
|
|
88
|
+
"None": "\u017baden",
|
|
89
|
+
|
|
90
|
+
// Lists
|
|
91
|
+
"Ordered List": "Uporz\u0105dkowana lista",
|
|
92
|
+
"Unordered List": "Lista nieuporz\u0105dkowana",
|
|
93
|
+
|
|
94
|
+
// Indent
|
|
95
|
+
"Decrease Indent": "Zmniejsz wci\u0119cie",
|
|
96
|
+
"Increase Indent": "Zwi\u0119ksz wci\u0119cie",
|
|
97
|
+
|
|
98
|
+
// Links
|
|
99
|
+
"Insert Link": "Wstaw link",
|
|
100
|
+
"Open in new tab": "Otw\u00f3rz w nowej karcie",
|
|
101
|
+
"Open Link": "Otw\u00f3rz link",
|
|
102
|
+
"Edit Link": "Link edytuj",
|
|
103
|
+
"Unlink": "Usu\u0144 link",
|
|
104
|
+
"Choose Link": "Wybierz link",
|
|
105
|
+
|
|
106
|
+
// Images
|
|
107
|
+
"Insert Image": "Wstaw obrazek",
|
|
108
|
+
"Upload Image": "Za\u0142aduj obrazek",
|
|
109
|
+
"By URL": "Przez URL",
|
|
110
|
+
"Browse": "Przegl\u0105danie",
|
|
111
|
+
"Drop image": "Upu\u015bci\u0107 obraz",
|
|
112
|
+
"or click": "lub kliknij",
|
|
113
|
+
"Manage Images": "Zarz\u0105dzanie zdj\u0119ciami",
|
|
114
|
+
"Loading": "\u0141adowanie",
|
|
115
|
+
"Deleting": "Usuwanie",
|
|
116
|
+
"Tags": "Tagi",
|
|
117
|
+
"Are you sure? Image will be deleted.": "Czy na pewno? Obraz zostanie skasowany.",
|
|
118
|
+
"Replace": "Zast\u0105pi\u0107",
|
|
119
|
+
"Uploading": "Zamieszczanie",
|
|
120
|
+
"Loading image": "\u0141adowanie obrazek",
|
|
121
|
+
"Display": "Wystawa",
|
|
122
|
+
"Inline": "Zgodna",
|
|
123
|
+
"Break Text": "Z\u0142ama\u0107 tekst",
|
|
124
|
+
"Alternate Text": "Tekst alternatywny",
|
|
125
|
+
"Change Size": "Zmie\u0144 rozmiar",
|
|
126
|
+
"Width": "Szeroko\u015b\u0107",
|
|
127
|
+
"Height": "Wysoko\u015b\u0107",
|
|
128
|
+
"Something went wrong. Please try again.": "Co\u015b posz\u0142o nie tak. Prosz\u0119 spr\u00f3buj ponownie.",
|
|
129
|
+
"Image Caption": "Podpis obrazu",
|
|
130
|
+
"Advanced Edit": "Zaawansowana edycja",
|
|
131
|
+
|
|
132
|
+
// Video
|
|
133
|
+
"Insert Video": "Wstaw wideo",
|
|
134
|
+
"Embedded Code": "Kod osadzone",
|
|
135
|
+
"Paste in a video URL": "Wklej adres URL filmu",
|
|
136
|
+
"Drop video": "Upuść wideo",
|
|
137
|
+
"Your browser does not support HTML5 video.": "Twoja przeglądarka nie obsługuje wideo html5.",
|
|
138
|
+
"Upload Video": "Prześlij wideo",
|
|
139
|
+
|
|
140
|
+
// Tables
|
|
141
|
+
"Insert Table": "Wstaw tabel\u0119",
|
|
142
|
+
"Table Header": "Nag\u0142\u00f3wek tabeli",
|
|
143
|
+
"Remove Table": "Usu\u0144 tabel\u0119",
|
|
144
|
+
"Table Style": "Styl tabeli",
|
|
145
|
+
"Horizontal Align": "Wyr\u00f3wnaj poziomy",
|
|
146
|
+
"Row": "Wiersz",
|
|
147
|
+
"Insert row above": "Wstaw wiersz przed",
|
|
148
|
+
"Insert row below": "Wstaw wiersz po",
|
|
149
|
+
"Delete row": "Usu\u0144 wiersz",
|
|
150
|
+
"Column": "Kolumna",
|
|
151
|
+
"Insert column before": "Wstaw kolumn\u0119 przed",
|
|
152
|
+
"Insert column after": "Wstaw kolumn\u0119 po",
|
|
153
|
+
"Delete column": "Usu\u0144 kolumn\u0119",
|
|
154
|
+
"Cell": "Kom\u00f3rka",
|
|
155
|
+
"Merge cells": "\u0141\u0105cz kom\u00f3rki",
|
|
156
|
+
"Horizontal split": "Podzia\u0142 poziomy",
|
|
157
|
+
"Vertical split": "Podzia\u0142 pionowy",
|
|
158
|
+
"Cell Background": "T\u0142a kom\u00f3rek",
|
|
159
|
+
"Vertical Align": "Pionowe wyr\u00f3wnanie",
|
|
160
|
+
"Top": "Top",
|
|
161
|
+
"Middle": "\u015arodkowy",
|
|
162
|
+
"Bottom": "Dno",
|
|
163
|
+
"Align Top": "Wyr\u00f3wnaj do g\u00f3ry",
|
|
164
|
+
"Align Middle": "Wyr\u00f3wnaj \u015brodku",
|
|
165
|
+
"Align Bottom": "Wyr\u00f3wnaj do do\u0142u",
|
|
166
|
+
"Cell Style": "Styl kom\u00f3rki",
|
|
167
|
+
|
|
168
|
+
// Files
|
|
169
|
+
"Upload File": "Prze\u015blij plik",
|
|
170
|
+
"Drop file": "Upu\u015bci\u0107 plik",
|
|
171
|
+
|
|
172
|
+
// Emoticons
|
|
173
|
+
"Emoticons": "Emotikony",
|
|
174
|
+
"Grinning face": "Z u\u015bmiechem twarz",
|
|
175
|
+
"Grinning face with smiling eyes": "Z u\u015bmiechem twarz z u\u015bmiechni\u0119tymi oczami",
|
|
176
|
+
"Face with tears of joy": "Twarz ze \u0142zami rado\u015bci",
|
|
177
|
+
"Smiling face with open mouth": "U\u015bmiechni\u0119ta twarz z otwartymi ustami",
|
|
178
|
+
"Smiling face with open mouth and smiling eyes": "U\u015bmiechni\u0119ta twarz z otwartymi ustami i u\u015bmiechni\u0119te oczy",
|
|
179
|
+
"Smiling face with open mouth and cold sweat": "U\u015bmiechni\u0119ta twarz z otwartymi ustami i zimny pot",
|
|
180
|
+
"Smiling face with open mouth and tightly-closed eyes": "U\u015bmiechni\u0119ta twarz z otwartymi ustami i szczelnie zamkni\u0119tych oczu",
|
|
181
|
+
"Smiling face with halo": "U\u015bmiechni\u0119ta twarz z halo",
|
|
182
|
+
"Smiling face with horns": "U\u015bmiechni\u0119ta twarz z rogami",
|
|
183
|
+
"Winking face": "Mrugaj\u0105ca twarz",
|
|
184
|
+
"Smiling face with smiling eyes": "U\u015bmiechni\u0119ta twarz z u\u015bmiechni\u0119tymi oczami",
|
|
185
|
+
"Face savoring delicious food": "Twarz smakuj\u0105 c pyszne jedzenie",
|
|
186
|
+
"Relieved face": "Z ulg\u0105 twarz",
|
|
187
|
+
"Smiling face with heart-shaped eyes": "U\u015bmiechni\u0119ta twarz z oczami w kszta\u0142cie serca",
|
|
188
|
+
"Smiling face with sunglasses": "U\u015bmiechni\u0119ta twarz z okulary",
|
|
189
|
+
"Smirking face": "Zadowolony z siebie twarz",
|
|
190
|
+
"Neutral face": "Neutralny twarzy",
|
|
191
|
+
"Expressionless face": "Bezwyrazowy twarzy",
|
|
192
|
+
"Unamused face": "Nie rozbawiony twarzy",
|
|
193
|
+
"Face with cold sweat": "Zimny pot z twarzy",
|
|
194
|
+
"Pensive face": "Zamy\u015blona twarz",
|
|
195
|
+
"Confused face": "Myli\u0107 twarzy",
|
|
196
|
+
"Confounded face": "Ha\u0144ba twarz",
|
|
197
|
+
"Kissing face": "Ca\u0142owanie twarz",
|
|
198
|
+
"Face throwing a kiss": "Twarz rzucaj\u0105c poca\u0142unek",
|
|
199
|
+
"Kissing face with smiling eyes": "Ca\u0142owanie twarz z u\u015bmiechni\u0119tymi oczami",
|
|
200
|
+
"Kissing face with closed eyes": "Ca\u0142owanie twarz z zamkni\u0119tymi oczami",
|
|
201
|
+
"Face with stuck out tongue": "Twarz z j\u0119zyka stercza\u0142y",
|
|
202
|
+
"Face with stuck out tongue and winking eye": "Twarz z stercza\u0142y j\u0119zyka i mrugaj\u0105c okiem",
|
|
203
|
+
"Face with stuck out tongue and tightly-closed eyes": "Twarz z stercza\u0142y j\u0119zyka i szczelnie zamkni\u0119tych oczu",
|
|
204
|
+
"Disappointed face": "Rozczarowany twarzy",
|
|
205
|
+
"Worried face": "Martwi twarzy",
|
|
206
|
+
"Angry face": "Gniewnych twarzy",
|
|
207
|
+
"Pouting face": "D\u0105sy twarzy",
|
|
208
|
+
"Crying face": "P\u0142acz\u0105cy",
|
|
209
|
+
"Persevering face": "Wytrwa\u0142a twarz",
|
|
210
|
+
"Face with look of triumph": "Twarz z wyrazem triumfu",
|
|
211
|
+
"Disappointed but relieved face": "Rozczarowany ale ulg\u0119 twarz",
|
|
212
|
+
"Frowning face with open mouth": "Krzywi\u0105c twarz z otwartymi ustami",
|
|
213
|
+
"Anguished face": "Bolesna twarz",
|
|
214
|
+
"Fearful face": "W obawie twarzy",
|
|
215
|
+
"Weary face": "Zm\u0119czona twarz",
|
|
216
|
+
"Sleepy face": "Je\u017adziec bez twarzy",
|
|
217
|
+
"Tired face": "Zm\u0119czonej twarzy",
|
|
218
|
+
"Grimacing face": "Skrzywi\u0142 twarz",
|
|
219
|
+
"Loudly crying face": "G\u0142o\u015bno p\u0142aka\u0107 twarz",
|
|
220
|
+
"Face with open mouth": "twarz z otwartymi ustami",
|
|
221
|
+
"Hushed face": "Uciszy\u0142 twarzy",
|
|
222
|
+
"Face with open mouth and cold sweat": "Twarz z otwartymi ustami i zimny pot",
|
|
223
|
+
"Face screaming in fear": "Twarz z krzykiem w strachu",
|
|
224
|
+
"Astonished face": "Zdziwienie twarzy",
|
|
225
|
+
"Flushed face": "Zaczerwienienie twarzy",
|
|
226
|
+
"Sleeping face": "\u015api\u0105ca twarz",
|
|
227
|
+
"Dizzy face": "Zawroty g\u0142owy twarzy",
|
|
228
|
+
"Face without mouth": "Twarz bez usta",
|
|
229
|
+
"Face with medical mask": "Twarz\u0105 w medycznych maski",
|
|
230
|
+
|
|
231
|
+
// Line breaker
|
|
232
|
+
"Break": "Z\u0142ama\u0107",
|
|
233
|
+
|
|
234
|
+
// Math
|
|
235
|
+
"Subscript": "Indeks dolny",
|
|
236
|
+
"Superscript": "Indeks g\u00f3rny",
|
|
237
|
+
|
|
238
|
+
// Full screen
|
|
239
|
+
"Fullscreen": "Pe\u0142ny ekran",
|
|
240
|
+
|
|
241
|
+
// Horizontal line
|
|
242
|
+
"Insert Horizontal Line": "Wstaw lini\u0119 poziom\u0105",
|
|
243
|
+
|
|
244
|
+
// Clear formatting
|
|
245
|
+
"Clear Formatting": "Usu\u0144 formatowanie",
|
|
246
|
+
|
|
247
|
+
// Undo, redo
|
|
248
|
+
"Undo": "Cofnij",
|
|
249
|
+
"Redo": "Pon\u00f3w",
|
|
250
|
+
|
|
251
|
+
// Select all
|
|
252
|
+
"Select All": "Zaznacz wszystko",
|
|
253
|
+
|
|
254
|
+
// Code view
|
|
255
|
+
"Code View": "Widok kod",
|
|
256
|
+
|
|
257
|
+
// Quote
|
|
258
|
+
"Quote": "Cytat",
|
|
259
|
+
"Increase": "Wzrost",
|
|
260
|
+
"Decrease": "Zmniejszenie",
|
|
261
|
+
|
|
262
|
+
// Quick Insert
|
|
263
|
+
"Quick Insert": "Szybkie wstaw",
|
|
264
|
+
|
|
265
|
+
// Spcial Characters
|
|
266
|
+
"Special Characters": "Znaki specjalne",
|
|
267
|
+
"Latin": "Łacina",
|
|
268
|
+
"Greek": "Grecki",
|
|
269
|
+
"Cyrillic": "Cyrylica",
|
|
270
|
+
"Punctuation": "Interpunkcja",
|
|
271
|
+
"Currency": "Waluta",
|
|
272
|
+
"Arrows": "Strzałki",
|
|
273
|
+
"Math": "Matematyka",
|
|
274
|
+
"Misc": "Misc",
|
|
275
|
+
|
|
276
|
+
// Print.
|
|
277
|
+
"Print": "Wydrukować",
|
|
278
|
+
|
|
279
|
+
// Spell Checker.
|
|
280
|
+
"Spell Checker": "Sprawdzanie pisowni",
|
|
281
|
+
|
|
282
|
+
// Help
|
|
283
|
+
"Help": "Wsparcie",
|
|
284
|
+
"Shortcuts": "Skróty",
|
|
285
|
+
"Inline Editor": "Edytor w wierszu",
|
|
286
|
+
"Show the editor": "Pokazać edytor",
|
|
287
|
+
"Common actions": "Wspólne działania",
|
|
288
|
+
"Copy": "Kopiuj",
|
|
289
|
+
"Cut": "Ciąć",
|
|
290
|
+
"Paste": "Pasta",
|
|
291
|
+
"Basic Formatting": "Podstawowe formatowanie",
|
|
292
|
+
"Increase quote level": "Zwiększyć poziom notowań",
|
|
293
|
+
"Decrease quote level": "Zmniejszyć poziom notowań",
|
|
294
|
+
"Image / Video": "Obraz / wideo",
|
|
295
|
+
"Resize larger": "Zmienić rozmiar większy",
|
|
296
|
+
"Resize smaller": "Zmienić rozmiar mniejszy",
|
|
297
|
+
"Table": "Stół",
|
|
298
|
+
"Select table cell": "Wybierz komórkę tabeli",
|
|
299
|
+
"Extend selection one cell": "Przedłużyć wybór jednej komórki",
|
|
300
|
+
"Extend selection one row": "Przedłużyć wybór jednego rzędu",
|
|
301
|
+
"Navigation": "Nawigacja",
|
|
302
|
+
"Focus popup / toolbar": "Focus popup / toolbar",
|
|
303
|
+
"Return focus to previous position": "Powrót do poprzedniej pozycji",
|
|
304
|
+
|
|
305
|
+
// Embed.ly
|
|
306
|
+
"Embed URL": "Osadzaj url",
|
|
307
|
+
"Paste in a URL to embed": "Wklej w adresie URL do osadzenia",
|
|
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?": "Wklejana treść pochodzi z programu Microsoft Word. Czy chcesz zachować formatowanie czy wkleić jako zwykły tekst?",
|
|
311
|
+
"Keep": "Zachowaj formatowanie",
|
|
312
|
+
"Clean": "Wklej jako tekst",
|
|
313
|
+
"Word Paste Detected": "Wykryto sformatowany tekst"
|
|
314
|
+
},
|
|
315
|
+
direction: "ltr"
|
|
316
|
+
};
|
|
317
|
+
|
|
318
|
+
}));
|