mosaico 1.0.0
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/.gitignore +8 -0
- data/Gemfile +7 -0
- data/LICENSE +680 -0
- data/README.md +179 -0
- data/Rakefile +5 -0
- data/app/assets/images/mosaico/logo_transparent.png +0 -0
- data/app/assets/javascripts/mosaico/application.js.erb +51 -0
- data/app/assets/javascripts/mosaico/plugins/debug.js.erb +10 -0
- data/app/assets/javascripts/mosaico/plugins/logo.js.erb +10 -0
- data/app/assets/javascripts/mosaico/plugins/preview.js +85 -0
- data/app/assets/javascripts/mosaico/plugins/save.js.erb +72 -0
- data/app/assets/javascripts/mosaico/plugins/template_path.js.erb +22 -0
- data/app/assets/javascripts/mosaico/plugins/translations.js +10 -0
- data/app/assets/javascripts/mosaico/utilities.js +25 -0
- data/app/assets/stylesheets/mosaico/application.css +6 -0
- data/app/controllers/mosaico/application_controller.rb +17 -0
- data/app/controllers/mosaico/images_controller.rb +142 -0
- data/app/controllers/mosaico/projects_controller.rb +31 -0
- data/app/controllers/mosaico/templates_controller.rb +8 -0
- data/app/helpers/mosaico/application_helper.rb +7 -0
- data/app/models/mosaico/image.rb +9 -0
- data/app/models/mosaico/placeholder_image.rb +9 -0
- data/app/models/mosaico/project.rb +13 -0
- data/app/models/mosaico/uploaded_image.rb +26 -0
- data/app/views/layouts/mosaico/application.html.erb +13 -0
- data/app/views/mosaico/projects/new.html.erb +1 -0
- data/app/views/mosaico/projects/show.html.erb +1 -0
- data/app/views/mosaico/shared/_metadata.html.erb +12 -0
- data/config/routes.rb +12 -0
- data/db/migrate/20170817202255_add_images.rb +14 -0
- data/db/migrate/20170824233755_add_projects.rb +11 -0
- data/lib/mosaico.rb +100 -0
- data/lib/mosaico/engine.rb +72 -0
- data/lib/mosaico/local_backend.rb +23 -0
- data/lib/mosaico/local_image_backend.rb +7 -0
- data/lib/mosaico/local_placeholder_backend.rb +7 -0
- data/lib/mosaico/placeholder.png +0 -0
- data/lib/mosaico/template.rb +89 -0
- data/lib/mosaico/versafix_template.rb +43 -0
- data/lib/mosaico/version.rb +4 -0
- data/lib/tasks/makeThumbs.js.erb +57 -0
- data/lib/tasks/thumbs.rake +35 -0
- data/mosaico.gemspec +22 -0
- data/screenshot.png +0 -0
- data/vendor/assets/fonts/LiberationSans-Regular.ttf +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/.jsbeautifyrc +6 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/.jshintrc +8 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/.travis.yml +6 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/CONTRIBUTING.md +37 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/Dockerfile +21 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/Gruntfile.js +241 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/LICENSE +680 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/NOTICE.txt +87 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/README.md +73 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/backend/README.txt +23 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/backend/main.js +162 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/bower.json +76 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/build/mosaico-material.css +7425 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/build/mosaico.css +7133 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/build/mosaico.debug.js +1517 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/build/mosaico.js +12828 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/build/templates.js +15 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/fa/fonts/fontawesome-webfont.eot +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/fa/fonts/fontawesome-webfont.svg +685 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/fa/fonts/fontawesome-webfont.ttf +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/fa/fonts/fontawesome-webfont.woff +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/fa/fonts/fontawesome-webfont.woff2 +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/img/byvoxmail.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/img/mosaico-badge.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/img/mosaico-v.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/img/mosaico32.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/img/mosaicologo.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/img/screenshot-orig.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/img/screenshot.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/lang/README.md +26 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/lang/mosaico-de.json +88 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/lang/mosaico-en.json +88 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/lang/mosaico-es.json +88 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/lang/mosaico-fr.json +88 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/lang/mosaico-it.json +88 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/lang/mosaico-nl.json +88 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/lang/mosaico-sv.json +88 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/mosaico-material.min.css +5 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/mosaico-material.min.css.map +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/mosaico.min.css +5 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/mosaico.min.css.map +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/mosaico.min.js +1517 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/mosaico.min.js.map +147 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/canvas-to-blob.min.js +2 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/jquery-ui.min.css +7 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/jquery-ui.min.js +13 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/jquery.fileupload-image.js +324 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/jquery.fileupload-process.js +175 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/jquery.fileupload-validate.js +122 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/jquery.fileupload.js +1482 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/jquery.iframe-transport.js +217 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/jquery.min.js +5 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/jquery.min.map +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/jquery.ui.touch-punch.min.js +11 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/knockout-jqueryui.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/knockout.js +123 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/load-image.all.min.js +2 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/notoregular/NotoSans-Regular-webfont.eot +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/notoregular/NotoSans-Regular-webfont.ttf +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/notoregular/NotoSans-Regular-webfont.woff +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/notoregular/stylesheet.css +9 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/advlist/plugin.js +101 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/advlist/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/anchor/plugin.js +55 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/anchor/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/autolink/plugin.js +204 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/autolink/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/autoresize/plugin.js +162 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/autoresize/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/autosave/plugin.js +165 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/autosave/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/bbcode/plugin.js +123 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/bbcode/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/charmap/plugin.js +462 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/charmap/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/code/plugin.js +60 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/code/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/codesample/css/prism.css +138 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/codesample/plugin.js +1319 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/codesample/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/colorpicker/plugin.js +112 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/colorpicker/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/contextmenu/plugin.js +100 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/contextmenu/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/directionality/plugin.js +64 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/directionality/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-cool.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-cry.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-embarassed.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-foot-in-mouth.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-frown.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-innocent.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-kiss.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-laughing.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-money-mouth.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-sealed.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-smile.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-surprised.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-tongue-out.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-undecided.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-wink.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-yell.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/plugin.js +65 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/fullpage/plugin.js +490 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/fullpage/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/fullscreen/plugin.js +154 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/fullscreen/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/hr/plugin.js +30 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/hr/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/image/plugin.js +630 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/image/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/imagetools/plugin.js +2944 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/imagetools/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/importcss/plugin.js +273 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/importcss/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/insertdatetime/plugin.js +121 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/insertdatetime/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/layer/plugin.js +225 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/layer/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/legacyoutput/plugin.js +208 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/legacyoutput/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/link/plugin.js +403 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/link/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/lists/plugin.js +965 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/lists/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/media/moxieplayer.swf +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/media/plugin.js +879 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/media/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/nonbreaking/plugin.js +53 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/nonbreaking/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/noneditable/plugin.js +101 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/noneditable/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/pagebreak/plugin.js +88 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/pagebreak/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/paste/plugin.js +1844 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/paste/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/preview/plugin.js +101 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/preview/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/print/plugin.js +32 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/print/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/save/plugin.js +98 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/save/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/searchreplace/plugin.js +609 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/searchreplace/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/spellchecker/plugin.js +1031 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/spellchecker/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/tabfocus/plugin.js +120 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/tabfocus/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/table/plugin.js +4400 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/table/plugin.min.js +2 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/template/plugin.js +276 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/template/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/textcolor/plugin.js +297 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/textcolor/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/textpattern/plugin.js +268 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/textpattern/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/visualblocks/css/visualblocks.css +135 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/visualblocks/plugin.js +86 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/visualblocks/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/visualchars/plugin.js +123 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/visualchars/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/wordcount/plugin.js +69 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/wordcount/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/Variables.less +196 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/content.inline.min.css +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/content.min.css +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/fonts/readme.md +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/fonts/tinymce-small.eot +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/fonts/tinymce-small.json +1277 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/fonts/tinymce-small.svg +63 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/fonts/tinymce-small.ttf +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/fonts/tinymce-small.woff +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/fonts/tinymce.eot +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/fonts/tinymce.json +1972 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/fonts/tinymce.svg +98 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/fonts/tinymce.ttf +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/fonts/tinymce.woff +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/img/anchor.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/img/loader.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/img/object.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/img/trans.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/skin.ie7.min.css +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/skin.json +79 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/skin.min.css +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/content.inline.min.css +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/content.min.css +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/fonts/tinymce-small.eot +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/fonts/tinymce-small.svg +63 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/fonts/tinymce-small.ttf +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/fonts/tinymce-small.woff +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/fonts/tinymce.eot +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/fonts/tinymce.svg +129 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/fonts/tinymce.ttf +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/fonts/tinymce.woff +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/img/anchor.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/img/loader.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/img/object.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/img/trans.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/skin.ie7.min.css +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/skin.min.css +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/themes/inlite/theme.js +1828 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/themes/inlite/theme.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/themes/modern/theme.js +934 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/themes/modern/theme.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/tinymce.min.js +14 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/editor.html +63 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/favicon.ico +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/index.html +368 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/package.json +92 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/img/byvoxmail.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/img/mosaico-badge.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/img/mosaico-v.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/img/mosaico32.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/img/mosaicologo.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/img/screenshot-orig.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/img/screenshot.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/lang/README.md +26 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/lang/mosaico-de.json +88 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/lang/mosaico-en.json +88 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/lang/mosaico-es.json +88 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/lang/mosaico-fr.json +88 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/lang/mosaico-it.json +88 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/lang/mosaico-nl.json +88 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/lang/mosaico-sv.json +88 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/Variables.less +196 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/content.inline.min.css +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/content.min.css +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/fonts/readme.md +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/fonts/tinymce-small.eot +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/fonts/tinymce-small.json +1277 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/fonts/tinymce-small.svg +63 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/fonts/tinymce-small.ttf +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/fonts/tinymce-small.woff +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/fonts/tinymce.eot +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/fonts/tinymce.json +1972 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/fonts/tinymce.svg +98 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/fonts/tinymce.ttf +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/fonts/tinymce.woff +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/img/anchor.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/img/loader.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/img/object.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/img/trans.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/skin.ie7.min.css +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/skin.json +79 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/skin.min.css +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/server-config.js +12 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/spec/converter-spec.js +115 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/spec/data/template-versafix-1.model.json +137 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/spec/declarations-spec.js +282 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/spec/mensch-spec.js +114 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/spec/model-spec.js +88 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/spec/stylesheet-spec.js +177 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/css/app_standalone.less +7 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/css/app_standalone_material.less +350 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/css/safarihack.css +17 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/css/style_elements.less +497 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/css/style_elements_jquery.less +344 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/css/style_elements_mixins.less +406 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/css/style_elements_moxie.less +130 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/css/style_mosaico.less +529 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/css/style_mosaico_content.less +391 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/css/style_mosaico_tools.less +1043 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/css/style_reset.less +45 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/css/style_variables.less +156 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/app.js +167 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/bind-iframe.js +64 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/blocks.js +118 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/choose-template.js +7 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/colorpicker.js +58 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/csstext.js +16 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/droppable.js +87 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/eventable.js +33 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/extender-pagination.js +60 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/extsortables.js +103 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/fileupload.js +373 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/if-subs.js +110 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/jqueryui-spinner.js +31 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/jqueryui-tabs.js +17 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/script-template.js +30 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/scrollfix.js +48 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/scrollintoview.js +83 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/string-template.js +76 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/tooltips.js +36 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/validated-value.js +40 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/virtuals.js +102 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/wysiwygs.js +304 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/converter/checkmodel.js +114 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/converter/declarations.js +279 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/converter/domutils.js +93 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/converter/editor.js +411 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/converter/main.js +42 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/converter/model.js +536 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/converter/parser.js +485 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/converter/stylesheet.js +205 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/converter/utils.js +156 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/converter/wrapper.js +308 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/ext/color.js +53 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/ext/inliner.js +35 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/ext/localstorage.js +100 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/ko-bindings.js +22 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/template-loader.js +446 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/timed-call.js +31 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/undomanager/undomain.js +49 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/undomanager/undoserializer.js +120 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/viewmodel.js +595 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/tmpl/array.tmpl.html +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/tmpl/block-show.tmpl.html +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/tmpl/block-wysiwyg.tmpl.html +18 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/tmpl/blocks-show.tmpl.html +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/tmpl/blocks-wysiwyg.tmpl.html +2 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/tmpl/customstyle.tmpl.html +3 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/tmpl/empty.tmpl.html +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/tmpl/error.tmpl.html +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/tmpl/gallery-images.tmpl.html +16 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/tmpl/img-wysiwyg.tmpl.html +43 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/tmpl/main.tmpl.html +102 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/tmpl/toolbox.tmpl.html +111 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/tasks/combineKOTemplates.js +24 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/tasks/lib/phantom-thumbnailer-editor.js +168 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/tasks/makeThumbs.js +79 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tedc15/README.md +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tedc15/edres/_full.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tedc15/edres/footerBlock.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tedc15/edres/headerBlock.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tedc15/edres/heroBlock.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tedc15/edres/socialBlock.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tedc15/edres/threetwoBlock.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tedc15/edres/twoColumnBlock.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tedc15/template-tedc15.html +567 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tutorial/edres/HeaderAndText.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tutorial/edres/_full.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tutorial/edres/fixedlist.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tutorial/mosaico-tutorial.md +335 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tutorial/mosaico-tutorial.pdf +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tutorial/screenshot_384.jpg +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tutorial/screenshot_385.jpg +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tutorial/screenshot_386.jpg +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tutorial/screenshot_387.jpg +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tutorial/screenshot_407.jpg +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tutorial/screenshot_408.jpg +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tutorial/template-tutorial.html +68 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/_full.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/buttonBlock.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/doubleArticleBlock.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/doubleImageBlock.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/hrBlock.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/imageBlock.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/logoBlock.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/sideArticleBlock.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/singleArticleBlock.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/socialBlock.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/spacerBlock.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/textBlock.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/titleBlock.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/tripleArticleBlock.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/tripleImageBlock.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/facebook_bw_ok.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/facebook_ok.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/flickr_bw_ok.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/flickr_ok.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/google+_bw_ok.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/google+_ok.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/instagram_bw_ok.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/instagram_ok.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/linkedin_bw_ok.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/linkedin_ok.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/twitter_bw_ok.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/twitter_ok.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/vimeo_bw_ok.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/vimeo_ok.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/web_bw_ok.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/web_ok.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/youtube_bw_ok.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/youtube_ok.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/sponsor.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/template-versafix-1.html +1531 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/uploads/README.md +1 -0
- metadata +536 -0
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Download": "Download",
|
|
3
|
+
"Test": "Test",
|
|
4
|
+
"Save": "Salva",
|
|
5
|
+
"Downloading...": "Download in corso...",
|
|
6
|
+
"Invalid email address": "Indirizzo email invalido",
|
|
7
|
+
"Test email sent...": "Email di test inviata...",
|
|
8
|
+
"Unexpected error talking to server: contact us!": "Errore di comunicazione con il server: contattaci!",
|
|
9
|
+
"Insert here the recipient email address": "Inserisci qui l'indirizzo email a cui spedire",
|
|
10
|
+
"Test email address": "Indirizzo email di test",
|
|
11
|
+
"Block removed: use undo button to restore it...": "Blocco eliminato: usa il pulsante annulla per recuperarlo...",
|
|
12
|
+
"New block added after the selected one (__pos__)": "Nuovo blocco aggiunto sotto a quello selezionato (__pos__)",
|
|
13
|
+
"New block added at the model bottom (__pos__)": "Nuovo blocco aggiunto in fondo al modello (__pos__)",
|
|
14
|
+
"Undo (#COUNT#)": "Annulla (#COUNT#)",
|
|
15
|
+
"Redo": "Ripristina",
|
|
16
|
+
"Selected element has no editable properties": "L'elemento selezionato non fornisce proprietà editabili",
|
|
17
|
+
"This style is specific for this block: click here to remove the custom style and revert to the theme value": "Questo stile è specifico di questo blocco: clicca qui per annullare lo stile personalizzato",
|
|
18
|
+
"Switch between global and block level styles editing": "Permette di specificare se si vuole modificare lo stile generale o solamente quello specifico del blocco selezionato",
|
|
19
|
+
"Undo last operation": "Annulla ultima operazione",
|
|
20
|
+
"Redo last operation": "Ripeti operazione annullata",
|
|
21
|
+
"Show image gallery": "Visualizza galleria immagini",
|
|
22
|
+
"Gallery": "Galleria",
|
|
23
|
+
"Preview": "Anteprima",
|
|
24
|
+
"Show live preview": "Mostra anteprima live",
|
|
25
|
+
"Large screen": "Schermo grande",
|
|
26
|
+
"Tablet": "Tablet",
|
|
27
|
+
"Smartphone": "Smartphone",
|
|
28
|
+
"Show preview and send test": "Visualizza una anteprima e fai un invio di test",
|
|
29
|
+
"Download template": "Scarica il template",
|
|
30
|
+
"Save template": "Salva il template",
|
|
31
|
+
"Saved model is obsolete": "Modello salvato obsoleto",
|
|
32
|
+
"<p>The saved model has been created with a previous, non completely compatible version, of the template</p><p>Some content or style in the model <b>COULD BE LOST</b> if you will <b>save</b></p><p>Contact us for more informations!</p>": "<p>Il modello salvato è stato creato con una versione precedente del template non del tutto compatibile</p><p>Alcuni contenuti o stili del modello <b>POTREBBERO ESSERE PERSI</b> se procederai e deciderai di <b>salvare</b></p><p>Contattaci se hai dei dubbi!</p>",
|
|
33
|
+
"Blocks": "Blocchi",
|
|
34
|
+
"Blocks ready to be added to the template": "Elenco contenuti aggiungibili al messaggio",
|
|
35
|
+
"Content": "Contenuto",
|
|
36
|
+
"Edit content options": "Modifica opzioni contenuti",
|
|
37
|
+
"Style": "Stile",
|
|
38
|
+
"Edit style options": "Modifica opzioni grafiche",
|
|
39
|
+
"Block __name__": "Blocco __name__",
|
|
40
|
+
"Click or drag to add this block to the template": "Clicca o trascina per aggiungere al messaggio",
|
|
41
|
+
"Add": "Aggiungi",
|
|
42
|
+
"By clicking on message parts you will select a block and content options, if any, will show here": "Cliccando su alcune parti del messaggio selezionerai un blocco e le opzioni contenutistiche, se disponibili, compariranno qui",
|
|
43
|
+
"By clicking on message parts you will select a block and style options, if available, will show here": "Cliccando su alcune parti del messaggio selezionerai un blocco e le opzioni di stile, se disponibili, compariranno qui",
|
|
44
|
+
"Click or drag files here": "Clicca o trascina i file qui!",
|
|
45
|
+
"No images uploaded, yet": "Non hai ancora caricato immagini",
|
|
46
|
+
"Show images from the gallery": "Visualizza le immagini caricate nella tua area",
|
|
47
|
+
"Loading...": "Caricamento...",
|
|
48
|
+
"Load gallery": "Carica galleria",
|
|
49
|
+
"Loading gallery...": "Caricamento in corso...",
|
|
50
|
+
"The gallery is empty": "Nessuna immagine nella galleria",
|
|
51
|
+
"Remove image": "Rimuovi immagine",
|
|
52
|
+
"Open the image editing tool": "Avvia strumento modifica immagine",
|
|
53
|
+
"Upload a new image": "Carica una nuova immagine",
|
|
54
|
+
"Drop an image here": "Trascina una immagine qui",
|
|
55
|
+
"Drop an image here or click the upload button": "Trascina una immagine qui o clicca sul pulsante di caricamento",
|
|
56
|
+
"Drag this image and drop it on any template image placeholder": "Trascina questa immagine sulla posizione in cui vuoi inserirla",
|
|
57
|
+
"Gallery:": "Galleria:",
|
|
58
|
+
"Session images": "Immagini di sessione",
|
|
59
|
+
"Recents": "Recenti",
|
|
60
|
+
"Remote gallery": "Galleria remota",
|
|
61
|
+
"Customized block.<ul><li>In this status changes to properties will be specific to the current block (instead of being global to all blocks in the same section)</li><li>A <span class=\"customStyled\"><span>\"small cube\" </span></span> icon beside the property will mark the customization. By clicking this icon the property value will be reverted to the value defined for the section.</li></ul>": "Blocco personalizzato.<ul><li>In questa modalità se cambi una proprietà verrà modificata solamente per questo specifico blocco (invece che per tutti i blocchi della stessa sezione).</li><li>Per segnalare la personalizzazione apparirà l'icona <span class=\"customStyled\"><span> del \"cubetto\"</span></span> a fianco delle proprietà. Cliccando questa icona tornerai al valore comune.</li></ul>",
|
|
62
|
+
"Drop here blocks from the \"Blocks\" tab": "Trascina qui i blocchi dalla scheda 'Blocchi'",
|
|
63
|
+
"Drag this handle to move the block": "Trascina per spostare il blocco altrove",
|
|
64
|
+
"Move this block upside": "Sposta il blocco in su",
|
|
65
|
+
"Move this block downside": "Sposta il blocco in giu",
|
|
66
|
+
"Delete block": "Elimina blocco",
|
|
67
|
+
"Duplicate block": "Duplica blocco",
|
|
68
|
+
"Switch block variant": "Cambia variante blocco",
|
|
69
|
+
"Theme Colors,Standard Colors,Web Colors,Theme Colors,Back to Palette,History,No history yet.": "Colori Tema,Colori Standard,Colori Web,Colori Tema,Torna alla tavolozza,Storico,storico colori vuoto",
|
|
70
|
+
"Drop here": "Rilascia qui",
|
|
71
|
+
"Unknown error": "Errore sconosciuto durante il caricamento",
|
|
72
|
+
"Uploaded bytes exceed file size": "Errore inaspettato durante il caricamento (uploaded bytes)",
|
|
73
|
+
"File type not allowed": "Tipo di file non supportato",
|
|
74
|
+
"File is too large": "File troppo grande",
|
|
75
|
+
"The uploaded file exceeds the post_max_size directive in php.ini": "Il server ha rifiutato il file perchè troppo grande (post_max_size)",
|
|
76
|
+
"File is too big": "Il server ha rifiutato il file perchè troppo grande (max_file_size)",
|
|
77
|
+
"File is too small": "Il server ha rifiutato il file perchè troppo piccolo",
|
|
78
|
+
"Filetype not allowed": "Il server ha rifiutato questo tipo di file",
|
|
79
|
+
"Maximum number of files exceeded": "Numero massimo di file caricabili superato (max_number_of_files)",
|
|
80
|
+
"Image exceeds maximum width": "L'Immagine supera la larghezza massima consentita",
|
|
81
|
+
"Image requires a minimum width": "L'Immagine non è abbastanza larga",
|
|
82
|
+
"Image exceeds maximum height": "L'Immagine supera l'altezza massima consentita",
|
|
83
|
+
"Image requires a minimum height": "L'Immagine non è abbastanza alta",
|
|
84
|
+
"File upload aborted": "Caricamento del file annullato",
|
|
85
|
+
"Failed to resize image": "Impossibile ridimensionare l'immagine",
|
|
86
|
+
"Unexpected upload error": "Errore inaspettato durante il caricamento",
|
|
87
|
+
"Unexpected error listing files": "Errore inaspettato caricando la lista dei file"
|
|
88
|
+
}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Download": "Downloaden",
|
|
3
|
+
"Test": "Test versturen",
|
|
4
|
+
"Save": "Bewaren",
|
|
5
|
+
"Downloading...": "bezig met downloaden...",
|
|
6
|
+
"Invalid email address": "Ongeldig emailadres",
|
|
7
|
+
"Test email sent...": "Email wordt verstuurd.",
|
|
8
|
+
"Unexpected error talking to server: contact us!": "Onverwachte fout in communicatie met de server. Neem contact met ons op!",
|
|
9
|
+
"Insert here the recipient email address": "Geef hier het emailadres op van de ontvanger",
|
|
10
|
+
"Test email address": "Test-emailadres",
|
|
11
|
+
"Block removed: use undo button to restore it...": "Blok is verwijderd. Gebruik het \"undo\" commando om het blok weer terug te zetten...",
|
|
12
|
+
"New block added after the selected one (__pos__)": "Nieuw blok is toegevoegd onder blok (__pos__)",
|
|
13
|
+
"New block added at the model bottom (__pos__)": "Nieuw blok is onderaan toegevoegd (__pos__)",
|
|
14
|
+
"Undo (#COUNT#)": "Undo (#COUNT#)",
|
|
15
|
+
"Redo": "Redo",
|
|
16
|
+
"Selected element has no editable properties": "Het geselecteerde element heeft geen wijzigbare opties.",
|
|
17
|
+
"This style is specific for this block: click here to remove the custom style and revert to the theme value": "Deze stijl is specifiek voor dit blok. Klik hier om deze stijl te verwijderen en de algemene stijl toe te passen.",
|
|
18
|
+
"Switch between global and block level styles editing": "Kies tussen globale en blok-gerelateerde instellingen",
|
|
19
|
+
"Undo last operation": "Maak de laatste handeling ongedaan",
|
|
20
|
+
"Redo last operation": "Doe de laatste handeling opnieuw",
|
|
21
|
+
"Show image gallery": "Toon beschikbare plaatjes",
|
|
22
|
+
"Gallery": "Plaatjes",
|
|
23
|
+
"Preview": "Voorbeeld",
|
|
24
|
+
"Show live preview": "Voorbeeld tonen",
|
|
25
|
+
"Large screen": "Computer",
|
|
26
|
+
"Tablet": "Tablet",
|
|
27
|
+
"Smartphone": "Smartphone",
|
|
28
|
+
"Show preview and send test": "Toon voorbeeld en verstuur een test email",
|
|
29
|
+
"Download template": "Template downloaden",
|
|
30
|
+
"Save template": "Template bewaren",
|
|
31
|
+
"Saved model is obsolete": "De bewaarde tekst is verouderd",
|
|
32
|
+
"<p>The saved model has been created with a previous, non completely compatible version, of the template</p><p>Some content or style in the model <b>COULD BE LOST</b> if you will <b>save</b></p><p>Contact us for more informations!</p>": "<p>De bewaarde tekst werd met een veroudrde editor gemaakt die niet compatibel is met de huidige editor.</p><p><b>Inhoud van deze tekst kan mogelijk verloren gaan bij het bewaren!</b></p><p>Neem contact op met ons!</p>",
|
|
33
|
+
"Blocks": "Blokken",
|
|
34
|
+
"Blocks ready to be added to the template": "Blokken die gebruikt kunnen worden",
|
|
35
|
+
"Content": "Inhoud",
|
|
36
|
+
"Edit content options": "Wijzig opties m.b.t. de inhoud",
|
|
37
|
+
"Style": "Opmaak",
|
|
38
|
+
"Edit style options": "Wijzig opties m.b.t. de opmaak",
|
|
39
|
+
"Block __name__": "Blok __name__",
|
|
40
|
+
"Click or drag to add this block to the template": "Klik of versleep dit blok om het aan de tekst toe te voegen",
|
|
41
|
+
"Add": "Toevoegen",
|
|
42
|
+
"By clicking on message parts you will select a block and content options, if any, will show here": "Door te klikken op een tekstgedeelte selecteer je het blok waarbij de bijbehorende instellingen hier worden getoond",
|
|
43
|
+
"By clicking on message parts you will select a block and style options, if available, will show here": "Door te klikken op een tekstgedeelte selecteer je het blok waarbij de bijbehorende opmaak-opties hier worden getoond",
|
|
44
|
+
"Click or drag files here": "Klik of sleep bestanden in dit vak",
|
|
45
|
+
"No images uploaded, yet": "Nog geen plaatjes beschikbaar",
|
|
46
|
+
"Show images from the gallery": "Toon beschikbare plaatjes",
|
|
47
|
+
"Loading...": "Laden ...",
|
|
48
|
+
"Load gallery": "plaatjes laden",
|
|
49
|
+
"Loading gallery...": "bezig met laden ...",
|
|
50
|
+
"The gallery is empty": "Er zijn geen plaatjes gevonden",
|
|
51
|
+
"Remove image": "Plaatje verwijderen",
|
|
52
|
+
"Open the image editing tool": "Plaatje wijzigen",
|
|
53
|
+
"Upload a new image": "Nieuw plaatje uploaden",
|
|
54
|
+
"Drop an image here": "Plaats hier een plaatje",
|
|
55
|
+
"Drop an image here or click the upload button": "Drop hier een plaatje of klik op de Upload-knop",
|
|
56
|
+
"Drag this image and drop it on any template image placeholder": "Sleep dit plaatje naar een beschikbare plek in de tekst",
|
|
57
|
+
"Gallery:": "Plaatjes:",
|
|
58
|
+
"Session images": "Plaatjes van de sessie",
|
|
59
|
+
"Recents": "Recent",
|
|
60
|
+
"Remote gallery": "Alle bewaarde plaatjes",
|
|
61
|
+
"Customized block.<ul><li>In this status changes to properties will be specific to the current block (instead of being global to all blocks in the same section)</li><li>A <span class=\"customStyled\"><span>\"small cube\" </span></span> icon beside the property will mark the customization. By clicking this icon the property value will be reverted to the value defined for the section.</li></ul>": "Aangepast blok.<ul><li>Op dit moment zullen wijzigingen in instellingen alleen gelden voor het huidige blok (in plaats van globaal voor alle blokken in dezelfde sectie)</li><li>Een <span class=\"customStyled\"><span>\"small cube\" </span></span> icon naast de instelling toont of het aangepast is. Door op dit icon te klikken wordt de waarde teruggezet naar de waarde zoals ingesteld voor de hele sectie.</li></ul>",
|
|
62
|
+
"Drop here blocks from the \"Blocks\" tab": "Drop hier geselecteerde blokken uit het \"Blokken\" - Tabblad",
|
|
63
|
+
"Drag this handle to move the block": "Gebruik dit om het blok te verschuiven",
|
|
64
|
+
"Move this block upside": "Blok naar boven verplaatsen",
|
|
65
|
+
"Move this block downside": "Blok naar onder verplaatsen",
|
|
66
|
+
"Delete block": "Blok verwijderen",
|
|
67
|
+
"Duplicate block": "Blok kopieren",
|
|
68
|
+
"Switch block variant": "Verwissel blok-variant",
|
|
69
|
+
"Theme Colors,Standard Colors,Web Colors,Theme Colors,Back to Palette,History,No history yet.": "Theme kleuren,Standaard kleuren,Web kleuren,Theme kleuren,Terug naar Palette,Geschiedenis,Geen geschiedenis beschikbaar.",
|
|
70
|
+
"Drop here": "Drop hier",
|
|
71
|
+
"Unknown error": "Onbekende fout",
|
|
72
|
+
"Uploaded bytes exceed file size": "Plaatje te groot voor upload",
|
|
73
|
+
"File type not allowed": "Bestandstype is niet toegestaan. Gebruik alleen .jpg, .gif of .png bestanden",
|
|
74
|
+
"File is too large": "Bestand is te groot",
|
|
75
|
+
"The uploaded file exceeds the post_max_size directive in php.ini": "Geuploade bestanden zijn te groot (post_max_size directive in php.ini)",
|
|
76
|
+
"File is too big": "Bestand is te groot",
|
|
77
|
+
"File is too small": "Bestand is te klein",
|
|
78
|
+
"Filetype not allowed": "Bestandstype is niet tooegestaan. Gebruik alleen .jpg, .gif of .png bestanden",
|
|
79
|
+
"Maximum number of files exceeded": "Maximaal aantal bestanden overschreden",
|
|
80
|
+
"Image exceeds maximum width": "Plaatje is breder dan toegestaan",
|
|
81
|
+
"Image requires a minimum width": "Plaatje moet een minimale breedte hebben",
|
|
82
|
+
"Image exceeds maximum height": "Plaatje is hoger dan toegestaan",
|
|
83
|
+
"Image requires a minimum height": "Plaatjje moet een minimale hoogte hebben",
|
|
84
|
+
"File upload aborted": "Bestandsupload is afgebroken",
|
|
85
|
+
"Failed to resize image": "Kon de grootte van het plaatje niet aanpassen",
|
|
86
|
+
"Unexpected upload error": "Onverwachte fout bij upload",
|
|
87
|
+
"Unexpected error listing files": "Onverwachte fout bij tonen van de plaatjes"
|
|
88
|
+
}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Download": "Ladda ner",
|
|
3
|
+
"Test": "Test",
|
|
4
|
+
"Save": "Spara",
|
|
5
|
+
"Downloading...": "Laddar ned...",
|
|
6
|
+
"Invalid email address": "Felaktig e-postadress",
|
|
7
|
+
"Test email sent...": "Test-brev skickat",
|
|
8
|
+
"Unexpected error talking to server: contact us!": "Oväntat fel vid kommunikation med servern, kontakta oss!",
|
|
9
|
+
"Insert here the recipient email address": "Skriv mottagaradressen här",
|
|
10
|
+
"Test email address": "E-post adress för test",
|
|
11
|
+
"Block removed: use undo button to restore it...": "Block borttaget, använd ångra knappen för att återställa det.",
|
|
12
|
+
"New block added after the selected one (__pos__)": "Nytt block tillagt efter valt block (__pos__)",
|
|
13
|
+
"New block added at the model bottom (__pos__)": "Nytt block tillagt i slutet av modellen (__pos__)",
|
|
14
|
+
"Undo (#COUNT#)": "Ångra (#COUNT#)",
|
|
15
|
+
"Redo": "Upprepa",
|
|
16
|
+
"Selected element has no editable properties": "Valt elelement har inga redigerbara egenskaper",
|
|
17
|
+
"This style is specific for this block: click here to remove the custom style and revert to the theme value": "\nDenna stil är specifik för detta block : Klicka här för att ta bort den anpassade stilen och återgå till temats värde",
|
|
18
|
+
"Switch between global and block level styles editing": "Växla mellan redigering av stilar, globalt och på blocknivå.",
|
|
19
|
+
"Undo last operation": "Ångra senaste operation",
|
|
20
|
+
"Redo last operation": "Upprepa senaste operation",
|
|
21
|
+
"Show image gallery": "Visa bildgalleri",
|
|
22
|
+
"Gallery": "Galleri",
|
|
23
|
+
"Preview": "Förhandsgranska",
|
|
24
|
+
"Show live preview": "Visa förhansgranskning",
|
|
25
|
+
"Large screen": "Stor skärm",
|
|
26
|
+
"Tablet": "Surfplatta",
|
|
27
|
+
"Smartphone": "Smartphone",
|
|
28
|
+
"Show preview and send test": "Förhandsgranska och skicka test",
|
|
29
|
+
"Download template": "Ladda ner mallen",
|
|
30
|
+
"Save template": "Spara mall",
|
|
31
|
+
"Saved model is obsolete": "Spara modell är föråldrat",
|
|
32
|
+
"<p>The saved model has been created with a previous, non completely compatible version, of the template</p><p>Some content or style in the model <b>COULD BE LOST</b> if you will <b>save</b></p><p>Contact us for more informations!</p>": "<p>Den spararde modellan har skapats med en tidigare version som inte är kompatibel.</p><p>Visst innehåll och stilar i modellen <b>KAN GÅ FÖRLORAT</b> om du vill <b>spara</b></p><p>Kontakta oss för mer information</p>\n",
|
|
33
|
+
"Blocks": "Block",
|
|
34
|
+
"Blocks ready to be added to the template": "Block redo att läggas till mallen",
|
|
35
|
+
"Content": "Innehåll",
|
|
36
|
+
"Edit content options": "Redigera alternativ för innehåll",
|
|
37
|
+
"Style": "Stilar",
|
|
38
|
+
"Edit style options": "Redigera alternativ för stilar",
|
|
39
|
+
"Block __name__": "Block __name__",
|
|
40
|
+
"Click or drag to add this block to the template": "Klicka eller dra blocket till mallen",
|
|
41
|
+
"Add": "Lägg till",
|
|
42
|
+
"By clicking on message parts you will select a block and content options, if any, will show here": "Genom att klicka på meddelandets delar kommer du att välja ett block och innehållsalternativ, om några, kommer att synas här.",
|
|
43
|
+
"By clicking on message parts you will select a block and style options, if available, will show here": "Genom att klicka på meddelandets delar kommer du att välja ett block och stilalternativ, om några, kommer att synas här.",
|
|
44
|
+
"Click or drag files here": "Klicka eller dra filer hit",
|
|
45
|
+
"No images uploaded, yet": "Inga bilder uppladdade, ännu",
|
|
46
|
+
"Show images from the gallery": "Visa bilder från galleriet",
|
|
47
|
+
"Loading...": "Laddar...",
|
|
48
|
+
"Load gallery": "Ladda galleri",
|
|
49
|
+
"Loading gallery...": "Hämtar galleri...",
|
|
50
|
+
"The gallery is empty": "Galleriet är tomt",
|
|
51
|
+
"Remove image": "Ta bort bild",
|
|
52
|
+
"Open the image editing tool": "Öppna bildredigeringsverktyg",
|
|
53
|
+
"Upload a new image": "Ladda upp en ny billd",
|
|
54
|
+
"Drop an image here": "Släpp en bild här",
|
|
55
|
+
"Drop an image here or click the upload button": "Släpp en bild här eller klicka på uppladdningsknappen",
|
|
56
|
+
"Drag this image and drop it on any template image placeholder": "Dra bilden och släpp på en platshållare i mallen",
|
|
57
|
+
"Gallery:": "Galleri:",
|
|
58
|
+
"Session images": "Bilder för sessionen",
|
|
59
|
+
"Recents": "Senaste",
|
|
60
|
+
"Remote gallery": "Fjärrgalleri",
|
|
61
|
+
"Customized block.<ul><li>In this status changes to properties will be specific to the current block (instead of being global to all blocks in the same section)</li><li>A <span class=\"customStyled\"><span>\"small cube\" </span></span> icon beside the property will mark the customization. By clicking this icon the property value will be reverted to the value defined for the section.</li></ul>": "Skräddarsytt block . < Ul > < li > Statusändringar av egenskaper kommer att vara specifika för det aktuella blocket (i stället för att vara global för alla block i samma avsnitt ) < / li > < li > En < span class = \" customStyled \" > < span> \" liten kub \" < / span> < / span> ikonen bredvid egenskapen kommer att markera edigerbarhet. Genom att klicka på ikonen kommer egenskapen att återställas till det värde som anges för sektionen . < / Li > < / ul >",
|
|
62
|
+
"Drop here blocks from the \"Blocks\" tab": "Dra och släpp block från \"Block\" fliken hit.",
|
|
63
|
+
"Drag this handle to move the block": "Dra i handtaget för att flytta blocket",
|
|
64
|
+
"Move this block upside": "Flytta blocket uppåt",
|
|
65
|
+
"Move this block downside": "Flytta blocket nedåt",
|
|
66
|
+
"Delete block": "Radera block",
|
|
67
|
+
"Duplicate block": "Kopiera block",
|
|
68
|
+
"Switch block variant": "Byt blocktyp",
|
|
69
|
+
"Theme Colors,Standard Colors,Web Colors,Theme Colors,Back to Palette,History,No history yet.": "Temafärger,Standardfärger,Webfärger,Temafärger,Tillbaka till palette,Historik,Ingen historik ännu.",
|
|
70
|
+
"Drop here": "Släpp här",
|
|
71
|
+
"Unknown error": "Okänt fel",
|
|
72
|
+
"Uploaded bytes exceed file size": "Uppladdade bytes överskrider filstorlek",
|
|
73
|
+
"File type not allowed": "Filtypen är inte tillåten",
|
|
74
|
+
"File is too large": "Filen är för stor",
|
|
75
|
+
"The uploaded file exceeds the post_max_size directive in php.ini": "Den uppladdade filen överskrider post_max_size direktivet i php.ini",
|
|
76
|
+
"File is too big": "Filen är för stor",
|
|
77
|
+
"File is too small": "Filen är för liten",
|
|
78
|
+
"Filetype not allowed": "Otillåten filtyp",
|
|
79
|
+
"Maximum number of files exceeded": "Max antal filer överskridet",
|
|
80
|
+
"Image exceeds maximum width": "Bild överskrider max bredd",
|
|
81
|
+
"Image requires a minimum width": "Bilden kräver en minimum bredd",
|
|
82
|
+
"Image exceeds maximum height": "Bilden överskrider maxhöjd",
|
|
83
|
+
"Image requires a minimum height": "Bilden kräver en minimum höjd",
|
|
84
|
+
"File upload aborted": "Uppladdning avbruten",
|
|
85
|
+
"Failed to resize image": "Det gick inte att ändra storlek på bild",
|
|
86
|
+
"Unexpected upload error": "Oväntat uppladdningsfel",
|
|
87
|
+
"Unexpected error listing files": "Oväntat fel vid inläsning av fillista"
|
|
88
|
+
}
|
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
// Variables
|
|
2
|
+
// Syntax: <control>-(<sub control>)-<bg|border|text>-(<state>)-(<extra>);
|
|
3
|
+
// Example: @btn-primary-bg-hover-hlight;
|
|
4
|
+
|
|
5
|
+
@prefix: mce;
|
|
6
|
+
|
|
7
|
+
// Default font
|
|
8
|
+
@font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
9
|
+
@font-size: 14px;
|
|
10
|
+
@line-height: 20px;
|
|
11
|
+
@has-gradients: false;
|
|
12
|
+
@has-radius: true;
|
|
13
|
+
@has-boxshadow: false;
|
|
14
|
+
@has-button-borders: true;
|
|
15
|
+
|
|
16
|
+
// Text colors
|
|
17
|
+
@text: #333333;
|
|
18
|
+
@text-inverse: #ffffff;
|
|
19
|
+
@text-disabled: #aaaaaa;
|
|
20
|
+
@text-shadow: 0 1px 1px hsla(hue(@text-inverse), saturation(@text-inverse), lightness(@text-inverse), 0.75);
|
|
21
|
+
@text-error: #aa0000;
|
|
22
|
+
|
|
23
|
+
// Button
|
|
24
|
+
@btn-text: #ffffff;
|
|
25
|
+
@btn-text-shadow: #333332;
|
|
26
|
+
@btn-border-top: rgba(0,0,0,0.1);
|
|
27
|
+
@btn-border-right: rgba(0,0,0,0.1);
|
|
28
|
+
@btn-border-bottom: rgba(0,0,0,0.25);
|
|
29
|
+
@btn-border-left: rgba(0,0,0,0.25);
|
|
30
|
+
@btn-caret-border: @btn-text;
|
|
31
|
+
@btn-text-disabled: @text-disabled;
|
|
32
|
+
@btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05);
|
|
33
|
+
@btn-box-shadow-active: inset 0 2px 4px rgba(0, 0, 0, .15), 0 1px 2px rgba(0, 0, 0, .05);
|
|
34
|
+
@btn-box-disabled-opacity: 0.4;
|
|
35
|
+
@btn-bg: #333332;
|
|
36
|
+
@btn-bg-hlight: #333332;
|
|
37
|
+
@btn-bg-hover: darken(@btn-bg, 5%);
|
|
38
|
+
@btn-bg-hlight-hover: darken(@btn-bg-hlight, 5%);
|
|
39
|
+
@btn-border-hover: darken(@btn-bg, 20%);
|
|
40
|
+
@btn-border-active: darken(@btn-bg, 20%);
|
|
41
|
+
@btn-padding: 4px 8px;
|
|
42
|
+
|
|
43
|
+
@btn-primary-bg: #333332;
|
|
44
|
+
@btn-primary-bg-hlight: #333332;
|
|
45
|
+
@btn-primary-bg-hover: darken(@btn-primary-bg, 5%);
|
|
46
|
+
@btn-primary-bg-hover-hlight: darken(@btn-primary-bg-hlight, 5%);
|
|
47
|
+
@btn-primary-text: #ffffff;
|
|
48
|
+
@btn-primary-text-shadow: #333333;
|
|
49
|
+
@btn-primary-border-top: mix(@btn-border-top, @btn-primary-bg, 50%);
|
|
50
|
+
@btn-primary-border-right: mix(@btn-border-right, @btn-primary-bg, 50%);
|
|
51
|
+
@btn-primary-border-bottom: mix(@btn-border-bottom, @btn-primary-bg, 50%);
|
|
52
|
+
@btn-primary-border-left: mix(@btn-border-left, @btn-primary-bg, 50%);
|
|
53
|
+
@btn-primary-border: transparent;
|
|
54
|
+
@btn-primary-border-hover: transparent;
|
|
55
|
+
|
|
56
|
+
// Button group
|
|
57
|
+
@btn-group-border-width: 1px;
|
|
58
|
+
|
|
59
|
+
// Menu
|
|
60
|
+
@menuitem-text: #333333;
|
|
61
|
+
@menu-bg: #ffffff;
|
|
62
|
+
@menu-margin: -1px 0 0;
|
|
63
|
+
@menu-border: rgba(0,0,0,0.2);
|
|
64
|
+
@menubar-border: mix(@panel-border, @panel-bg, 60%);
|
|
65
|
+
@menuitem-text-inverse: #ffffff;
|
|
66
|
+
@menubar-bg-active: darken(@btn-bg, 10%);
|
|
67
|
+
@menuitem-bg-hover: #0081C2;
|
|
68
|
+
@menuitem-bg-selected: #333332;
|
|
69
|
+
@menuitem-bg-selected-hlight: #333332;
|
|
70
|
+
@menuitem-bg-disabled: #CCC;
|
|
71
|
+
@menuitem-caret: @menuitem-text;
|
|
72
|
+
@menuitem-caret-selected: @menuitem-text-inverse;
|
|
73
|
+
@menuitem-separator-top: #cbcbcb;
|
|
74
|
+
@menuitem-separator-bottom: #ffffff;
|
|
75
|
+
@menuitem-bg-active: #666666;
|
|
76
|
+
@menuitem-text-active: #ffffff;
|
|
77
|
+
@menuitem-preview-border-active: #aaaaaa;
|
|
78
|
+
@menubar-menubtn-text: ;
|
|
79
|
+
|
|
80
|
+
// Panel
|
|
81
|
+
@panel-border: #9e9e9e;
|
|
82
|
+
@panel-bg: #f1eee6;
|
|
83
|
+
@panel-bg-hlight: #f1eee6;
|
|
84
|
+
|
|
85
|
+
// Tabs
|
|
86
|
+
@tab-border: #c5c5c5;
|
|
87
|
+
@tab-bg: #e3e3e3;
|
|
88
|
+
@tab-bg-hover: #fdfdfd;
|
|
89
|
+
@tab-bg-active: #fdfdfd;
|
|
90
|
+
@tabs-bg: #ffffff;
|
|
91
|
+
|
|
92
|
+
// Tooltip
|
|
93
|
+
@tooltip-bg: #000;
|
|
94
|
+
@tooltip-text: white;
|
|
95
|
+
@tooltip-font-size: 11px;
|
|
96
|
+
|
|
97
|
+
// Notification
|
|
98
|
+
@notification-font-size: 14px;
|
|
99
|
+
@notification-bg: #f0f0f0;
|
|
100
|
+
@notification-border: #cccccc;
|
|
101
|
+
@notification-text: #333333;
|
|
102
|
+
@notification-success-bg: #dff0d8;
|
|
103
|
+
@notification-success-border: #d6e9c6;
|
|
104
|
+
@notification-success-text: #3c763d;
|
|
105
|
+
@notification-info-bg: #d9edf7;
|
|
106
|
+
@notification-info-border: #779ecb;
|
|
107
|
+
@notification-info-text: #31708f;
|
|
108
|
+
@notification-warning-bg: #fcf8e3;
|
|
109
|
+
@notification-warning-border: #faebcc;
|
|
110
|
+
@notification-warning-text: #8a6d3b;
|
|
111
|
+
@notification-error-bg: #f2dede;
|
|
112
|
+
@notification-error-border: #ebccd1;
|
|
113
|
+
@notification-error-text: #a94442;
|
|
114
|
+
|
|
115
|
+
// Window
|
|
116
|
+
@window-border: #c4c4c4;
|
|
117
|
+
@window-head-border: @window-border;
|
|
118
|
+
@window-head-close: mix(@text, @window-bg, 60%);
|
|
119
|
+
@window-head-close-hover: mix(@text, @window-bg, 40%);
|
|
120
|
+
@window-foot-border: @window-border;
|
|
121
|
+
@window-foot-bg: @window-bg;
|
|
122
|
+
@window-fullscreen-bg: #FFF;
|
|
123
|
+
@window-modalblock-bg: #000;
|
|
124
|
+
@window-modalblock-opacity: 0.3;
|
|
125
|
+
@window-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
|
126
|
+
@window-bg: #ffffff;
|
|
127
|
+
@window-title-font-size: 20px;
|
|
128
|
+
|
|
129
|
+
// Popover
|
|
130
|
+
@popover-bg: @window-bg;
|
|
131
|
+
@popover-arrow-width: 10px;
|
|
132
|
+
@popover-arrow: @window-bg;
|
|
133
|
+
@popover-arrow-outer-width: @popover-arrow-width + 1;
|
|
134
|
+
@popover-arrow-outer: rgba(0, 0, 0, 0.25);
|
|
135
|
+
|
|
136
|
+
// Floatpanel
|
|
137
|
+
@floatpanel-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
|
|
138
|
+
|
|
139
|
+
// Checkbox
|
|
140
|
+
@checkbox-bg: @btn-bg;
|
|
141
|
+
@checkbox-bg-hlight: @btn-bg-hlight;
|
|
142
|
+
@checkbox-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05);
|
|
143
|
+
@checkbox-border: #c5c5c5;
|
|
144
|
+
@checkbox-border-focus: #59a5e1;
|
|
145
|
+
|
|
146
|
+
// Path
|
|
147
|
+
@path-text: @text;
|
|
148
|
+
@path-bg-focus: #666;
|
|
149
|
+
@path-text-focus: #fff;
|
|
150
|
+
|
|
151
|
+
// Textbox
|
|
152
|
+
@textbox-text-placeholder: #aaa;
|
|
153
|
+
@textbox-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
154
|
+
@textbox-bg: #ffffff;
|
|
155
|
+
@textbox-border: #c5c5c5;
|
|
156
|
+
@textbox-border-focus: #59a5e1;
|
|
157
|
+
|
|
158
|
+
// Selectbox
|
|
159
|
+
@selectbox-bg: @textbox-bg;
|
|
160
|
+
@selectbox-border: @textbox-border;
|
|
161
|
+
|
|
162
|
+
// Throbber
|
|
163
|
+
@throbber-bg: #fff url('img/loader.gif') no-repeat center center;
|
|
164
|
+
|
|
165
|
+
// Combobox
|
|
166
|
+
@combobox-border: @textbox-border;
|
|
167
|
+
|
|
168
|
+
// Colorpicker
|
|
169
|
+
@colorpicker-border: @textbox-border;
|
|
170
|
+
@colorpicker-hue-bg: #fff;
|
|
171
|
+
@colorpicker-hue-border: #333;
|
|
172
|
+
|
|
173
|
+
// Grid
|
|
174
|
+
@grid-bg-active: @menuitem-bg-active;
|
|
175
|
+
@grid-border-active: #a1a1a1;
|
|
176
|
+
@grid-border: #d6d6d6;
|
|
177
|
+
|
|
178
|
+
// Misc
|
|
179
|
+
@colorbtn-backcolor-bg: #bbbbbb;
|
|
180
|
+
@iframe-border: @panel-border;
|
|
181
|
+
|
|
182
|
+
// Slider
|
|
183
|
+
@slider-border: #aaaaaa;
|
|
184
|
+
@slider-bg: #eeeeee;
|
|
185
|
+
@slider-handle-border: #bbbbbb;
|
|
186
|
+
@slider-handle-bg: #dddddd;
|
|
187
|
+
|
|
188
|
+
// Progress
|
|
189
|
+
@progress-border: #cccccc;
|
|
190
|
+
@progress-bar-bg: #dfdfdf;
|
|
191
|
+
@progress-bar-bg-hlight: #cccccc;
|
|
192
|
+
@progress-text: #333333;
|
|
193
|
+
@progress-text-shadow: #ffffff;
|
|
194
|
+
|
|
195
|
+
// Flow layout
|
|
196
|
+
@flow-layout-spacing: 2px;
|