├── .circleci └── config.yml ├── .codecov.yml ├── .eslintrc.js ├── .gitignore ├── .nvmrc ├── .prettierrc ├── .vscode └── settings.json ├── CODEOWNERS ├── LICENSE ├── README.md ├── browserslist ├── docs ├── assets │ ├── Shopify-Product-Demo.gif │ ├── ace-editor-extension.png │ ├── ai-image-tagging.jpg │ ├── alloy-editor.png │ ├── bacon-ipsum.png │ ├── chessboard.gif │ ├── diff-extension.png │ ├── external-api-extension.jpg │ ├── inbound-links-extension.png │ ├── json-editor.png │ ├── json-form-editor.png │ ├── marketo_get_munchkin_id.png │ ├── marketo_make_new_role.png │ ├── marketo_make_new_service.png │ ├── marketo_view_details.png │ ├── netlify-build-step-2.png │ ├── netlify-build-step-3.png │ ├── netlify-build.png │ ├── optimizely-audiences.png │ ├── rating-dropdown.png │ ├── router-page-extension.gif │ ├── shopify-object.png │ ├── shopify-parameters.jpg │ ├── slug-widget.png │ ├── translate-widget.png │ ├── uiextensions-default-field-value-assign.png │ ├── uiextensions-default-field-value.png │ ├── uiextensions-vanilla-extension-params.png │ ├── uiextensions-vanilla-extension.png │ ├── wistia-api-key-password.png │ ├── wistia-create-api-key.png │ └── youtube-id.png └── libs │ └── alloy-editor │ ├── BREAKING_CHANGES.md │ ├── LICENSE.md │ ├── README.md │ ├── alloy-editor-all-min.js │ ├── alloy-editor-all.js │ ├── alloy-editor-core-min.js │ ├── alloy-editor-core.js │ ├── alloy-editor-no-ckeditor-min.js │ ├── alloy-editor-no-ckeditor.js │ ├── alloy-editor-no-react-min.js │ ├── alloy-editor-no-react.js │ ├── assets │ ├── alloy-editor-atlas-min.css │ ├── alloy-editor-atlas.css │ ├── alloy-editor-moono-min.css │ ├── alloy-editor-moono.css │ ├── alloy-editor-ocean-min.css │ ├── alloy-editor-ocean.css │ └── fonts │ │ ├── alloyeditor-atlas.eot │ │ ├── alloyeditor-atlas.ttf │ │ ├── alloyeditor-atlas.woff │ │ ├── alloyeditor-atlas.woff2 │ │ ├── alloyeditor-default.eot │ │ ├── alloyeditor-default.ttf │ │ ├── alloyeditor-default.woff │ │ ├── alloyeditor-default.woff2 │ │ ├── alloyeditor-moono.eot │ │ ├── alloyeditor-moono.ttf │ │ ├── alloyeditor-moono.woff │ │ ├── alloyeditor-moono.woff2 │ │ ├── alloyeditor-ocean.eot │ │ ├── alloyeditor-ocean.ttf │ │ ├── alloyeditor-ocean.woff │ │ └── alloyeditor-ocean.woff2 │ ├── build-config.js │ ├── ckeditor.js │ ├── config.js │ ├── contents.css │ ├── lang │ ├── af.js │ ├── alloy-editor │ │ ├── af.js │ │ ├── ar.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ ├── ar.js │ ├── bg.js │ ├── bn.js │ ├── bs.js │ ├── ca.js │ ├── cs.js │ ├── cy.js │ ├── da.js │ ├── de.js │ ├── el.js │ ├── en-au.js │ ├── en-ca.js │ ├── en-gb.js │ ├── en.js │ ├── eo.js │ ├── es.js │ ├── et.js │ ├── eu.js │ ├── fa.js │ ├── fi.js │ ├── fo.js │ ├── fr-ca.js │ ├── fr.js │ ├── gl.js │ ├── gu.js │ ├── he.js │ ├── hi.js │ ├── hr.js │ ├── hu.js │ ├── id.js │ ├── is.js │ ├── it.js │ ├── ja.js │ ├── ka.js │ ├── km.js │ ├── ko.js │ ├── ku.js │ ├── lt.js │ ├── lv.js │ ├── mk.js │ ├── mn.js │ ├── ms.js │ ├── nb.js │ ├── nl.js │ ├── no.js │ ├── pl.js │ ├── pt-br.js │ ├── pt.js │ ├── ro.js │ ├── ru.js │ ├── si.js │ ├── sk.js │ ├── sl.js │ ├── sq.js │ ├── sr-latn.js │ ├── sr.js │ ├── sv.js │ ├── th.js │ ├── tr.js │ ├── tt.js │ ├── ug.js │ ├── uk.js │ ├── vi.js │ ├── zh-cn.js │ └── zh.js │ ├── plugins │ ├── clipboard │ │ └── dialogs │ │ │ └── paste.js │ ├── dialog │ │ └── dialogDefinition.js │ ├── icons.png │ ├── icons_hidpi.png │ └── pastefromword │ │ └── filter │ │ └── default.js │ ├── skins │ └── moono │ │ ├── dialog.css │ │ ├── dialog_ie.css │ │ ├── dialog_ie7.css │ │ ├── dialog_ie8.css │ │ ├── dialog_iequirks.css │ │ ├── editor.css │ │ ├── editor_gecko.css │ │ ├── editor_ie.css │ │ ├── editor_ie7.css │ │ ├── editor_ie8.css │ │ ├── editor_iequirks.css │ │ ├── icons.png │ │ ├── icons_hidpi.png │ │ ├── images │ │ ├── arrow.png │ │ ├── close.png │ │ ├── hidpi │ │ │ ├── close.png │ │ │ ├── lock-open.png │ │ │ ├── lock.png │ │ │ └── refresh.png │ │ ├── lock-open.png │ │ ├── lock.png │ │ ├── refresh.png │ │ └── spinner.gif │ │ └── readme.md │ └── styles.js ├── lerna.json ├── marketplace ├── Readme.md ├── gatsby-preview │ ├── .babelrc │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── assets │ │ ├── demo.gif │ │ ├── demo.mp4 │ │ └── screenshot.png │ ├── extension.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── AppConfig.js │ │ ├── GatsbyIcon.js │ │ ├── Sidebar.js │ │ ├── index.css │ │ ├── index.html │ │ ├── index.js │ │ └── styles.js │ └── test │ │ ├── __snapshots__ │ │ └── sidebar.spec.js.snap │ │ ├── index.spec.js │ │ └── sidebar.spec.js └── sensitive-language │ ├── .babelrc │ ├── .eslintrc.js │ ├── MARKETPLACE.md │ ├── README.md │ ├── extension.json │ ├── package-lock.json │ ├── package.json │ ├── screenshot.png │ ├── src │ ├── app.js │ ├── index.css │ ├── index.html │ ├── index.js │ ├── language-checker.js │ ├── message.js │ ├── no-issues.js │ └── unsupported-language.js │ └── test │ ├── __snapshots__ │ ├── app.test.js.snap │ ├── message.test.js.snap │ ├── no-issues.test.js.snap │ └── unsupported-language.test.js.snap │ ├── app.test.js │ ├── message.test.js │ ├── mock-component.js │ ├── no-issues.test.js │ └── unsupported-language.test.js ├── package-lock.json ├── package.json ├── samples ├── README.md ├── ace-editor │ ├── README.md │ ├── app.html │ └── extension.json ├── alloy-editor │ ├── README.md │ ├── extension.json │ └── index.html ├── bacon-ipsum │ ├── README.md │ ├── app.html │ └── extension.json ├── basic-approval-workflow │ ├── .babelrc │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── build │ │ └── index.html │ ├── extension.json │ ├── package-lock.json │ ├── package.json │ └── src │ │ ├── app.js │ │ ├── avatar.js │ │ ├── dialog.js │ │ ├── events.js │ │ ├── find-user.js │ │ ├── id.js │ │ ├── index.html │ │ ├── index.js │ │ ├── log.js │ │ ├── pubnub-client.js │ │ ├── pubnub-loader.js │ │ ├── review-box.js │ │ ├── sidebar.js │ │ ├── user-name.js │ │ └── vspace.js ├── chessboard │ ├── README.md │ ├── extension.json │ └── index.html ├── content-tree │ ├── .babelrc │ ├── .gitignore │ ├── README.md │ ├── build │ │ └── index.html │ ├── extension.json │ ├── package-lock.json │ ├── package.json │ └── src │ │ ├── index.css │ │ ├── index.html │ │ └── index.js ├── default-field-value │ ├── README.md │ ├── extension.html │ └── extension.json ├── diff │ ├── README.md │ ├── extension.json │ └── index.html ├── entry-editor-extension │ ├── .babelrc │ ├── .gitignore │ ├── README.md │ ├── build │ │ └── index.html │ ├── entry-extension.gif │ ├── entry-extension.png │ ├── extension.json │ ├── package-lock.json │ ├── package.json │ ├── sample-content-type.json │ ├── src │ │ ├── index.css │ │ ├── index.html │ │ └── index.tsx │ └── tsconfig.json ├── external-api │ ├── .babelrc │ ├── .gitignore │ ├── README.md │ ├── build │ │ └── index.html │ ├── extension.json │ ├── package-lock.json │ ├── package.json │ └── src │ │ ├── index.css │ │ ├── index.html │ │ └── index.js ├── gatsby-preview │ ├── .babelrc │ ├── .gitignore │ ├── README.md │ ├── build │ │ └── index.html │ ├── demo.gif │ ├── demo.mp4 │ ├── extension.json │ ├── package.json │ ├── screenshot.png │ ├── src │ │ ├── index.css │ │ ├── index.html │ │ └── index.js │ └── yarn.lock ├── image-uploader │ ├── .babelrc │ ├── .gitignore │ ├── README.md │ ├── build │ │ └── index.html │ ├── extension.json │ ├── gifcast.gif │ ├── package-lock.json │ ├── package.json │ └── src │ │ ├── components │ │ ├── Dropzone.js │ │ ├── FileView │ │ │ ├── fileview.css │ │ │ └── index.js │ │ ├── ProgressView │ │ │ ├── index.js │ │ │ └── progress-view.css │ │ └── UploadView │ │ │ ├── index.js │ │ │ └── upload-view.css │ │ ├── index.css │ │ ├── index.html │ │ ├── index.js │ │ └── utils.js ├── json-editor │ ├── README.md │ ├── extension.json │ └── index.html ├── json-form-editor │ ├── README.md │ ├── extension.json │ └── index.html ├── marketo-forms │ ├── README.md │ ├── app.html │ ├── extension.json │ └── lambda-function.js ├── page-extension-react-router │ ├── .babelrc │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── build │ │ └── index.html │ ├── extension.json │ ├── package-lock.json │ ├── package.json │ └── src │ │ ├── index.css │ │ ├── index.html │ │ └── index.js ├── publish-confirm │ ├── .babelrc │ ├── .gitignore │ ├── README.md │ ├── build │ │ └── index.html │ ├── extension.json │ ├── package.json │ ├── publish_button_with_confirmation_screenshot1.png │ ├── publish_button_with_confirmation_screenshot2.png │ ├── publish_button_with_confirmation_screenshot3.png │ └── src │ │ ├── index.css │ │ ├── index.html │ │ └── index.js ├── rating-dropdown │ ├── README.md │ ├── app.html │ └── extension.json ├── slug │ ├── README.md │ ├── extension.json │ └── index.html ├── template-vanilla │ ├── README.md │ ├── extension.json │ └── index.html ├── translate │ ├── README.md │ ├── extension.json │ └── index.html ├── wistia-videos │ ├── README.md │ ├── app.html │ ├── extension.json │ ├── lambda-function.js │ └── screenshot.png └── youtube-id │ ├── README.md │ ├── extension.json │ └── index.html ├── scripts ├── .eslintrc ├── build.js └── utils.js ├── test ├── .eslintrc ├── dist-file-structure.test.js ├── matchers │ └── filesystem.js ├── setup.js └── source-file-structure.test.js └── tsconfig.json /.circleci/config.yml: -------------------------------------------------------------------------------- 1 | version: 2.1 2 | 3 | docker: &docker 4 | - image: circleci/node:10.15.3 5 | 6 | cache-key: &cache-key 7 | key: dependency-cache-primary-{{ arch }}-{{ checksum ".nvmrc" }}-{{ checksum "package-lock.json" }} 8 | 9 | jobs: 10 | build: 11 | docker: *docker 12 | steps: 13 | - checkout 14 | - restore_cache: *cache-key 15 | - run: 16 | name: Installing dependencies 17 | command: npm install 18 | - save_cache: 19 | <<: *cache-key 20 | paths: 21 | - ./node_modules 22 | - run: 23 | name: Install extension dependencies 24 | command: npm run bootstrap -- --concurrency=2 25 | - run: 26 | name: Check code style 27 | command: npm run prettier-check 28 | - run: 29 | name: Linting code 30 | command: npm run lint 31 | - run: 32 | name: Typechecking code 33 | command: npm run tsc 34 | - run: 35 | name: Running unit tests 36 | command: npm run test 37 | - run: 38 | name: Building extension code 39 | command: npm run build 40 | - persist_to_workspace: 41 | root: . 42 | paths: 43 | - ./dist 44 | 45 | workflows: 46 | version: 2 47 | all: 48 | jobs: 49 | - build 50 | -------------------------------------------------------------------------------- /.codecov.yml: -------------------------------------------------------------------------------- 1 | parsers: 2 | javascript: 3 | enable_partials: yes 4 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: [require.resolve('@contentful/eslint-config-extension')], 3 | globals: { 4 | module: true, 5 | }, 6 | }; 7 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .env 4 | npm-debug.log 5 | .cache 6 | samples/.vscode/settings.json 7 | .idea/ 8 | .contentfulrc.json 9 | marketplace/**/build/ 10 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 10.15 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 100, 3 | "tabWidth": 2, 4 | "useTabs": false, 5 | "jsxBracketSameLine": true, 6 | "singleQuote": true 7 | } 8 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "eslint.autoFixOnSave": false, 3 | "eslint.validate": [ 4 | "javascript", 5 | "javascriptreact", 6 | "typescript", 7 | "typescriptreact" 8 | ], 9 | "tslint.enable": false, 10 | "files.exclude": { 11 | "**/.git": true, 12 | "**/.DS_Store": true 13 | }, 14 | "search.exclude": { 15 | "**/node_modules": true 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | # These owners will be the default owners for everything in 2 | # the repo. 3 | 4 | * @contentful/team-extensibility 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2016, Contentful 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted, provided that the above 5 | copyright notice and this permission notice appear in all copies. 6 | 7 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 8 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 9 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 10 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 11 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 12 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 13 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 14 | -------------------------------------------------------------------------------- /browserslist: -------------------------------------------------------------------------------- 1 | last 2 versions 2 | IE >= 11 3 | not IE 10 4 | -------------------------------------------------------------------------------- /docs/assets/Shopify-Product-Demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/assets/Shopify-Product-Demo.gif -------------------------------------------------------------------------------- /docs/assets/ace-editor-extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/assets/ace-editor-extension.png -------------------------------------------------------------------------------- /docs/assets/ai-image-tagging.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/assets/ai-image-tagging.jpg -------------------------------------------------------------------------------- /docs/assets/alloy-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/assets/alloy-editor.png -------------------------------------------------------------------------------- /docs/assets/bacon-ipsum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/assets/bacon-ipsum.png -------------------------------------------------------------------------------- /docs/assets/chessboard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/assets/chessboard.gif -------------------------------------------------------------------------------- /docs/assets/diff-extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/assets/diff-extension.png -------------------------------------------------------------------------------- /docs/assets/external-api-extension.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/assets/external-api-extension.jpg -------------------------------------------------------------------------------- /docs/assets/inbound-links-extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/assets/inbound-links-extension.png -------------------------------------------------------------------------------- /docs/assets/json-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/assets/json-editor.png -------------------------------------------------------------------------------- /docs/assets/json-form-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/assets/json-form-editor.png -------------------------------------------------------------------------------- /docs/assets/marketo_get_munchkin_id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/assets/marketo_get_munchkin_id.png -------------------------------------------------------------------------------- /docs/assets/marketo_make_new_role.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/assets/marketo_make_new_role.png -------------------------------------------------------------------------------- /docs/assets/marketo_make_new_service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/assets/marketo_make_new_service.png -------------------------------------------------------------------------------- /docs/assets/marketo_view_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/assets/marketo_view_details.png -------------------------------------------------------------------------------- /docs/assets/netlify-build-step-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/assets/netlify-build-step-2.png -------------------------------------------------------------------------------- /docs/assets/netlify-build-step-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/assets/netlify-build-step-3.png -------------------------------------------------------------------------------- /docs/assets/netlify-build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/assets/netlify-build.png -------------------------------------------------------------------------------- /docs/assets/optimizely-audiences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/assets/optimizely-audiences.png -------------------------------------------------------------------------------- /docs/assets/rating-dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/assets/rating-dropdown.png -------------------------------------------------------------------------------- /docs/assets/router-page-extension.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/assets/router-page-extension.gif -------------------------------------------------------------------------------- /docs/assets/shopify-object.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/assets/shopify-object.png -------------------------------------------------------------------------------- /docs/assets/shopify-parameters.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/assets/shopify-parameters.jpg -------------------------------------------------------------------------------- /docs/assets/slug-widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/assets/slug-widget.png -------------------------------------------------------------------------------- /docs/assets/translate-widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/assets/translate-widget.png -------------------------------------------------------------------------------- /docs/assets/uiextensions-default-field-value-assign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/assets/uiextensions-default-field-value-assign.png -------------------------------------------------------------------------------- /docs/assets/uiextensions-default-field-value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/assets/uiextensions-default-field-value.png -------------------------------------------------------------------------------- /docs/assets/uiextensions-vanilla-extension-params.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/assets/uiextensions-vanilla-extension-params.png -------------------------------------------------------------------------------- /docs/assets/uiextensions-vanilla-extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/assets/uiextensions-vanilla-extension.png -------------------------------------------------------------------------------- /docs/assets/wistia-api-key-password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/assets/wistia-api-key-password.png -------------------------------------------------------------------------------- /docs/assets/wistia-create-api-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/assets/wistia-create-api-key.png -------------------------------------------------------------------------------- /docs/assets/youtube-id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/assets/youtube-id.png -------------------------------------------------------------------------------- /docs/libs/alloy-editor/BREAKING_CHANGES.md: -------------------------------------------------------------------------------- 1 | 0.4.0 2 | All AlloyEditor plugins are renamed and they are now prefixed with "ae_". Example: previously "addimages", 3 | now "ae_addimages". The goal of this change is to isolate as much as possible AlloyEditor's plugins 4 | from these of CKEDitor and prevent possibilities for clashing. 5 | 6 | 0.3.0 7 | Issue #219 removes the event 'imageDrop' when user D&D image inside the editor. Instead, an event 'imageAdd' 8 | will be fired. -------------------------------------------------------------------------------- /docs/libs/alloy-editor/README.md: -------------------------------------------------------------------------------- 1 | Alloy Editor 2 | ================== 3 | 4 | Alloy Editor is a modern WYSIWYG editor built on top of CKEditor, designed to create modern and gorgeous web content. 5 | 6 | Works on IE9+, Chrome, Firefox and Safari. 7 | 8 | ## Demo 9 | 10 | * [All-in-one self-guided demo](http://alloyeditor.com/demo/) 11 | * [Screencasts and code samples for specific features](http://alloyeditor.com/features/) 12 | 13 | ## Features 14 | 15 | * Smart toolbars appear right near the selected text and offer different functionality based on context 16 | * Easily add your own buttons (see the "marquee" example in [the demo](http://alloyeditor.com/demo/)) 17 | * Paste images from clipboard, or Drag&Drop them from another application 18 | * Insert images from the device's camera! 19 | * Paste rich text from any web page and preserve its formatting 20 | * The full styling power of CKEditor... 21 | * ...with a much more modern UI 22 | * The core is fully separated from the UI 23 | * The example UI is built with React 24 | * Plugin architecture 25 | 26 | ## Documentation 27 | 28 | Look for documentation and examples on [http://alloyeditor.com/](http://alloyeditor.com/) 29 | 30 | ### License 31 | [LGPL License](LICENSE.md) 32 | 33 | [](https://travis-ci.org/liferay/alloy-editor) 34 | 35 | [](https://saucelabs.com/u/alloyui) 36 | -------------------------------------------------------------------------------- /docs/libs/alloy-editor/assets/fonts/alloyeditor-atlas.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/libs/alloy-editor/assets/fonts/alloyeditor-atlas.eot -------------------------------------------------------------------------------- /docs/libs/alloy-editor/assets/fonts/alloyeditor-atlas.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/libs/alloy-editor/assets/fonts/alloyeditor-atlas.ttf -------------------------------------------------------------------------------- /docs/libs/alloy-editor/assets/fonts/alloyeditor-atlas.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/libs/alloy-editor/assets/fonts/alloyeditor-atlas.woff -------------------------------------------------------------------------------- /docs/libs/alloy-editor/assets/fonts/alloyeditor-atlas.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/libs/alloy-editor/assets/fonts/alloyeditor-atlas.woff2 -------------------------------------------------------------------------------- /docs/libs/alloy-editor/assets/fonts/alloyeditor-default.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/libs/alloy-editor/assets/fonts/alloyeditor-default.eot -------------------------------------------------------------------------------- /docs/libs/alloy-editor/assets/fonts/alloyeditor-default.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/libs/alloy-editor/assets/fonts/alloyeditor-default.ttf -------------------------------------------------------------------------------- /docs/libs/alloy-editor/assets/fonts/alloyeditor-default.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/libs/alloy-editor/assets/fonts/alloyeditor-default.woff -------------------------------------------------------------------------------- /docs/libs/alloy-editor/assets/fonts/alloyeditor-default.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/libs/alloy-editor/assets/fonts/alloyeditor-default.woff2 -------------------------------------------------------------------------------- /docs/libs/alloy-editor/assets/fonts/alloyeditor-moono.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/libs/alloy-editor/assets/fonts/alloyeditor-moono.eot -------------------------------------------------------------------------------- /docs/libs/alloy-editor/assets/fonts/alloyeditor-moono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/libs/alloy-editor/assets/fonts/alloyeditor-moono.ttf -------------------------------------------------------------------------------- /docs/libs/alloy-editor/assets/fonts/alloyeditor-moono.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/libs/alloy-editor/assets/fonts/alloyeditor-moono.woff -------------------------------------------------------------------------------- /docs/libs/alloy-editor/assets/fonts/alloyeditor-moono.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/libs/alloy-editor/assets/fonts/alloyeditor-moono.woff2 -------------------------------------------------------------------------------- /docs/libs/alloy-editor/assets/fonts/alloyeditor-ocean.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/libs/alloy-editor/assets/fonts/alloyeditor-ocean.eot -------------------------------------------------------------------------------- /docs/libs/alloy-editor/assets/fonts/alloyeditor-ocean.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/libs/alloy-editor/assets/fonts/alloyeditor-ocean.ttf -------------------------------------------------------------------------------- /docs/libs/alloy-editor/assets/fonts/alloyeditor-ocean.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/libs/alloy-editor/assets/fonts/alloyeditor-ocean.woff -------------------------------------------------------------------------------- /docs/libs/alloy-editor/assets/fonts/alloyeditor-ocean.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/libs/alloy-editor/assets/fonts/alloyeditor-ocean.woff2 -------------------------------------------------------------------------------- /docs/libs/alloy-editor/config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.editorConfig = function( config ) { 7 | // Define changes to default configuration here. 8 | // For complete reference see: 9 | // http://docs.ckeditor.com/#!/api/CKEDITOR.config 10 | 11 | // The toolbar groups arrangement, optimized for a single toolbar row. 12 | config.toolbarGroups = [ 13 | { name: 'document', groups: [ 'mode', 'document', 'doctools' ] }, 14 | { name: 'clipboard', groups: [ 'clipboard', 'undo' ] }, 15 | { name: 'editing', groups: [ 'find', 'selection', 'spellchecker' ] }, 16 | { name: 'forms' }, 17 | { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] }, 18 | { name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ] }, 19 | { name: 'links' }, 20 | { name: 'insert' }, 21 | { name: 'styles' }, 22 | { name: 'colors' }, 23 | { name: 'tools' }, 24 | { name: 'others' }, 25 | { name: 'about' } 26 | ]; 27 | 28 | // The default plugins included in the basic setup define some buttons that 29 | // are not needed in a basic editor. They are removed here. 30 | config.removeButtons = 'Cut,Copy,Paste,Undo,Redo,Anchor,Underline,Strike,Subscript,Superscript'; 31 | 32 | // Dialog windows are also simplified. 33 | config.removeDialogTabs = 'link:advanced'; 34 | }; 35 | -------------------------------------------------------------------------------- /docs/libs/alloy-editor/lang/alloy-editor/af.js: -------------------------------------------------------------------------------- 1 | AlloyEditor.Strings = {"alignCenter":"Middel","alignJustify":"Eweredig","alignLeft":"Links","alignRight":"Regs","bold":"Vet","bulletedlist":"Ongenommerde lys","cancel":"Kanselleer","horizontalrule":"Horisontale lyn invoeg","italic":"Skuins","numberedlist":"Genommerde lys","quote":"Sitaatblok","removeformat":"Verwyder opmaak","strike":"Deurgestreep","subscript":"Onderskrif","superscript":"Bo-skrif","underline":"Onderstreep","formatted":"Opgemaak","h1":"Opskrif 1","h2":"Opskrif 2","normal":"Normaal","blockStyles":"Blok style","inlineStyles":"Inlyn style","objectStyles":"Objek style","styles":"Styl","cell":"Sel","cellDelete":"Verwyder sel","cellInsertAfter":"Voeg sel in na","cellInsertBefore":"Voeg sel in voor","cellMerge":"Voeg selle saam","cellMergeDown":"Voeg saam ondertoe","cellMergeRight":"Voeg saam na regs","cellSplitHorizontal":"Splits sel horisontaal","cellSplitVertical":"Splits sel vertikaal","column":"Kolom","columnDelete":"Verwyder kolom","columnInsertAfter":"Voeg kolom in na","columnInsertBefore":"Voeg kolom in voor","deleteTable":"Verwyder tabel","row":"Ry","rowDelete":"Verwyder ry","rowInsertAfter":"Voeg ry in na","rowInsertBefore":"Voeg ry in voor","add":"Add","ariaUpdateNoToolbar":"No toolbars are available","ariaUpdateOneToolbar":"{toolbars} toolbar is available. Press ALT+F10 to focus.","ariaUpdateManyToolbars":"{toolbars} toolbars are available. Press ALT+F10 to focus.","camera":"Insert Image from Camera","cite":"Cite","code":"Code","clearInput":"Clear Input Field","confirm":"Confirm","editLink":"Type or paste link here","image":"Insert Image","link":"Link","removeLink":"Remove link","table":"Insert Table","twitter":"Twitter","headers":"Opskrifte","headersBoth":"Beide ","headersColumn":"Eerste kolom","headersNone":"Geen","headersRow":"Eerste ry"}; -------------------------------------------------------------------------------- /docs/libs/alloy-editor/lang/alloy-editor/ar.js: -------------------------------------------------------------------------------- 1 | AlloyEditor.Strings = {"alignCenter":"وسط","alignJustify":"ضبط","alignLeft":"يسار","alignRight":"يمين","bold":"عريض","bulletedlist":"ادخال/حذف تعداد نقطي","cancel":"إلغاء الأمر","horizontalrule":"خط فاصل","italic":"مائل","numberedlist":"ادخال/حذف تعداد رقمي","quote":"اقتباس","removeformat":"إزالة التنسيقات","strike":"يتوسطه خط","subscript":"منخفض","superscript":"مرتفع","underline":"تسطير","formatted":"منسّق","h1":"العنوان 1","h2":"العنوان 2","normal":"عادي","blockStyles":"أنماط الفقرة","inlineStyles":"أنماط مضمنة","objectStyles":"أنماط الكائن","styles":"أنماط","cell":"خلية","cellDelete":"حذف خلية","cellInsertAfter":"إدراج خلية بعد","cellInsertBefore":"إدراج خلية قبل","cellMerge":"دمج خلايا","cellMergeDown":"دمج للأسفل","cellMergeRight":"دمج لليمين","cellSplitHorizontal":"تقسيم الخلية أفقياً","cellSplitVertical":"تقسيم الخلية عمودياً","column":"عمود","columnDelete":"حذف أعمدة","columnInsertAfter":"إدراج عمود بعد","columnInsertBefore":"إدراج عمود قبل","deleteTable":"حذف الجدول","row":"صف","rowDelete":"حذف صفوف","rowInsertAfter":"إدراج صف بعد","rowInsertBefore":"إدراج صف قبل","add":"Add","ariaUpdateNoToolbar":"No toolbars are available","ariaUpdateOneToolbar":"{toolbars} toolbar is available. Press ALT+F10 to focus.","ariaUpdateManyToolbars":"{toolbars} toolbars are available. Press ALT+F10 to focus.","camera":"Insert Image from Camera","cite":"Cite","code":"Code","clearInput":"Clear Input Field","confirm":"Confirm","editLink":"Type or paste link here","image":"Insert Image","link":"Link","removeLink":"Remove link","table":"Insert Table","twitter":"Twitter","headers":"العناوين","headersBoth":"كلاهما","headersColumn":"العمود الأول","headersNone":"بدون","headersRow":"الصف الأول"}; -------------------------------------------------------------------------------- /docs/libs/alloy-editor/lang/alloy-editor/bn.js: -------------------------------------------------------------------------------- 1 | AlloyEditor.Strings = {"alignCenter":"মাঝখানে","alignJustify":"ব্লক জাস্টিফাই","alignLeft":"বামে","alignRight":"ডানে","bold":"বোল্ড","bulletedlist":"বুলেট লিস্ট লেবেল","cancel":"বাতিল","horizontalrule":"রেখা যুক্ত কর","italic":"ইটালিক","numberedlist":"সাংখ্যিক লিস্টের লেবেল","quote":"Block Quote","removeformat":"ফরমেট সরাও","strike":"স্ট্রাইক থ্রু","subscript":"অধোলেখ","superscript":"অভিলেখ","underline":"আন্ডারলাইন","formatted":"ফর্মেটেড","h1":"শীর্ষক ১","h2":"শীর্ষক ২","normal":"সাধারণ","blockStyles":"Block Styles","inlineStyles":"Inline Styles","objectStyles":"Object Styles","styles":"স্টাইল","cell":"সেল","cellDelete":"সেল মুছে দাও","cellInsertAfter":"Insert Cell After","cellInsertBefore":"Insert Cell Before","cellMerge":"সেল জোড়া দাও","cellMergeDown":"Merge Down","cellMergeRight":"Merge Right","cellSplitHorizontal":"Split Cell Horizontally","cellSplitVertical":"Split Cell Vertically","column":"কলাম","columnDelete":"কলাম মুছে দাও","columnInsertAfter":"Insert Column After","columnInsertBefore":"Insert Column Before","deleteTable":"টেবিল ডিলীট কর","row":"রো","rowDelete":"রো মুছে দাও","rowInsertAfter":"Insert Row After","rowInsertBefore":"Insert Row Before","add":"Add","ariaUpdateNoToolbar":"No toolbars are available","ariaUpdateOneToolbar":"{toolbars} toolbar is available. Press ALT+F10 to focus.","ariaUpdateManyToolbars":"{toolbars} toolbars are available. Press ALT+F10 to focus.","camera":"Insert Image from Camera","cite":"Cite","code":"Code","clearInput":"Clear Input Field","confirm":"Confirm","editLink":"Type or paste link here","image":"Insert Image","link":"Link","removeLink":"Remove link","table":"Insert Table","twitter":"Twitter","headers":"Headers","headersBoth":"Both","headersColumn":"First column","headersNone":"None","headersRow":"First Row"}; -------------------------------------------------------------------------------- /docs/libs/alloy-editor/lang/alloy-editor/bs.js: -------------------------------------------------------------------------------- 1 | AlloyEditor.Strings = {"alignCenter":"Centar","alignJustify":"Puno poravnanje","alignLeft":"Lijevo","alignRight":"Desno","bold":"Boldiraj","bulletedlist":"Lista","cancel":"Odustani","horizontalrule":"Ubaci horizontalnu liniju","italic":"Ukosi","numberedlist":"Numerisana lista","quote":"Block Quote","removeformat":"Poništi format","strike":"Precrtaj","subscript":"Subscript","superscript":"Superscript","underline":"Podvuci","formatted":"Formatted","h1":"Heading 1","h2":"Heading 2","normal":"Normal","blockStyles":"Block Styles","inlineStyles":"Inline Styles","objectStyles":"Object Styles","styles":"Stil","cell":"Cell","cellDelete":"Briši æelije","cellInsertAfter":"Insert Cell After","cellInsertBefore":"Insert Cell Before","cellMerge":"Spoji æelije","cellMergeDown":"Merge Down","cellMergeRight":"Merge Right","cellSplitHorizontal":"Split Cell Horizontally","cellSplitVertical":"Split Cell Vertically","column":"Column","columnDelete":"Briši kolone","columnInsertAfter":"Insert Column After","columnInsertBefore":"Insert Column Before","deleteTable":"Delete Table","row":"Row","rowDelete":"Briši redove","rowInsertAfter":"Insert Row After","rowInsertBefore":"Insert Row Before","add":"Add","ariaUpdateNoToolbar":"No toolbars are available","ariaUpdateOneToolbar":"{toolbars} toolbar is available. Press ALT+F10 to focus.","ariaUpdateManyToolbars":"{toolbars} toolbars are available. Press ALT+F10 to focus.","camera":"Insert Image from Camera","cite":"Cite","code":"Code","clearInput":"Clear Input Field","confirm":"Confirm","editLink":"Type or paste link here","image":"Insert Image","link":"Link","removeLink":"Remove link","table":"Insert Table","twitter":"Twitter","headers":"Headers","headersBoth":"Both","headersColumn":"First column","headersNone":"None","headersRow":"First Row"}; -------------------------------------------------------------------------------- /docs/libs/alloy-editor/lang/alloy-editor/cs.js: -------------------------------------------------------------------------------- 1 | AlloyEditor.Strings = {"alignCenter":"Na střed","alignJustify":"Zarovnat do bloku","alignLeft":"Vlevo","alignRight":"Vpravo","bold":"Tučné","bulletedlist":"Odrážky","cancel":"Zrušit","horizontalrule":"Vložit vodorovnou linku","italic":"Kurzíva","numberedlist":"Číslování","quote":"Citace","removeformat":"Odstranit formátování","strike":"Přeškrtnuté","subscript":"Dolní index","superscript":"Horní index","underline":"Podtržené","formatted":"Naformátováno","h1":"Nadpis 1","h2":"Nadpis 2","normal":"Normální","blockStyles":"Blokové styly","inlineStyles":"Řádkové styly","objectStyles":"Objektové styly","styles":"Styl","cell":"Buňka","cellDelete":"Smazat buňky","cellInsertAfter":"Vložit buňku za","cellInsertBefore":"Vložit buňku před","cellMerge":"Sloučit buňky","cellMergeDown":"Sloučit dolů","cellMergeRight":"Sloučit doprava","cellSplitHorizontal":"Rozdělit buňky vodorovně","cellSplitVertical":"Rozdělit buňky svisle","column":"Sloupec","columnDelete":"Smazat sloupec","columnInsertAfter":"Vložit sloupec za","columnInsertBefore":"Vložit sloupec před","deleteTable":"Smazat tabulku","row":"Řádek","rowDelete":"Smazat řádky","rowInsertAfter":"Vložit řádek za","rowInsertBefore":"Vložit řádek před","add":"Add","ariaUpdateNoToolbar":"No toolbars are available","ariaUpdateOneToolbar":"{toolbars} toolbar is available. Press ALT+F10 to focus.","ariaUpdateManyToolbars":"{toolbars} toolbars are available. Press ALT+F10 to focus.","camera":"Insert Image from Camera","cite":"Cite","code":"Code","clearInput":"Clear Input Field","confirm":"Confirm","editLink":"Type or paste link here","image":"Insert Image","link":"Link","removeLink":"Remove link","table":"Insert Table","twitter":"Twitter","headers":"Záhlaví","headersBoth":"Obojí","headersColumn":"První sloupec","headersNone":"Žádné","headersRow":"První řádek"}; -------------------------------------------------------------------------------- /docs/libs/alloy-editor/lang/alloy-editor/cy.js: -------------------------------------------------------------------------------- 1 | AlloyEditor.Strings = {"alignCenter":"Canol","alignJustify":"Unioni","alignLeft":"Chwith","alignRight":"Dde","bold":"Bras","bulletedlist":"Mewnosod/Tynnu Rhestr Bwled","cancel":"Diddymu","horizontalrule":"Mewnosod Llinell Lorweddol","italic":"Italig","numberedlist":"Mewnosod/Tynnu Rhestr Rhifol","quote":"Dyfyniad bloc","removeformat":"Tynnu Fformat","strike":"Llinell Trwyddo","subscript":"Is-sgript","superscript":"Uwchsgript","underline":"Tanlinellu","formatted":"Wedi'i Fformatio","h1":"Pennawd 1","h2":"Pennawd 2","normal":"Normal","blockStyles":"Arddulliau Bloc","inlineStyles":"Arddulliau Mewnol","objectStyles":"Arddulliau Gwrthrych","styles":"Arddulliau","cell":"Cell","cellDelete":"Dileu Celloedd","cellInsertAfter":"Mewnosod Cell Ar Ôl","cellInsertBefore":"Mewnosod Cell Cyn","cellMerge":"Cyfuno Celloedd","cellMergeDown":"Cyfuno i Lawr","cellMergeRight":"Cyfuno i'r Dde","cellSplitHorizontal":"Hollti'r Gell yn Lorweddol","cellSplitVertical":"Hollti'r Gell yn Fertigol","column":"Colofn","columnDelete":"Dileu Colofnau","columnInsertAfter":"Mewnosod Colofn Ar Ôl","columnInsertBefore":"Mewnosod Colofn Cyn","deleteTable":"Dileu Tabl","row":"Rhes","rowDelete":"Dileu Rhesi","rowInsertAfter":"Mewnosod Rhes Ar Ôl","rowInsertBefore":"Mewnosod Rhes Cyn","add":"Add","ariaUpdateNoToolbar":"No toolbars are available","ariaUpdateOneToolbar":"{toolbars} toolbar is available. Press ALT+F10 to focus.","ariaUpdateManyToolbars":"{toolbars} toolbars are available. Press ALT+F10 to focus.","camera":"Insert Image from Camera","cite":"Cite","code":"Code","clearInput":"Clear Input Field","confirm":"Confirm","editLink":"Type or paste link here","image":"Insert Image","link":"Link","removeLink":"Remove link","table":"Insert Table","twitter":"Twitter","headers":"Penynnau","headersBoth":"Y Ddau","headersColumn":"Colofn gyntaf","headersNone":"Dim","headersRow":"Rhes gyntaf"}; -------------------------------------------------------------------------------- /docs/libs/alloy-editor/lang/alloy-editor/da.js: -------------------------------------------------------------------------------- 1 | AlloyEditor.Strings = {"alignCenter":"Centreret","alignJustify":"Lige margener","alignLeft":"Venstre","alignRight":"Højre","bold":"Fed","bulletedlist":"Punktopstilling","cancel":"Annullér","horizontalrule":"Indsæt vandret streg","italic":"Kursiv","numberedlist":"Talopstilling","quote":"Blokcitat","removeformat":"Fjern formatering","strike":"Gennemstreget","subscript":"Sænket skrift","superscript":"Hævet skrift","underline":"Understreget","formatted":"Formateret","h1":"Overskrift 1","h2":"Overskrift 2","normal":"Normal","blockStyles":"Block typografi","inlineStyles":"Inline typografi","objectStyles":"Object typografi","styles":"Typografi","cell":"Celle","cellDelete":"Slet celle","cellInsertAfter":"Indsæt celle efter","cellInsertBefore":"Indsæt celle før","cellMerge":"Flet celler","cellMergeDown":"Flet nedad","cellMergeRight":"Flet til højre","cellSplitHorizontal":"Del celle vandret","cellSplitVertical":"Del celle lodret","column":"Kolonne","columnDelete":"Slet kolonne","columnInsertAfter":"Indsæt kolonne efter","columnInsertBefore":"Indsæt kolonne før","deleteTable":"Slet tabel","row":"Række","rowDelete":"Slet række","rowInsertAfter":"Indsæt række efter","rowInsertBefore":"Indsæt række før","add":"Add","ariaUpdateNoToolbar":"No toolbars are available","ariaUpdateOneToolbar":"{toolbars} toolbar is available. Press ALT+F10 to focus.","ariaUpdateManyToolbars":"{toolbars} toolbars are available. Press ALT+F10 to focus.","camera":"Insert Image from Camera","cite":"Cite","code":"Code","clearInput":"Clear Input Field","confirm":"Confirm","editLink":"Type or paste link here","image":"Insert Image","link":"Link","removeLink":"Remove link","table":"Insert Table","twitter":"Twitter","headers":"Hoved","headersBoth":"Begge","headersColumn":"Første kolonne","headersNone":"Ingen","headersRow":"Første række"}; -------------------------------------------------------------------------------- /docs/libs/alloy-editor/lang/alloy-editor/en-au.js: -------------------------------------------------------------------------------- 1 | AlloyEditor.Strings = {"alignCenter":"Centre","alignJustify":"Justify","alignLeft":"Left","alignRight":"Right","bold":"Bold","bulletedlist":"Insert/Remove Bulleted List","cancel":"Cancel","horizontalrule":"Insert Horizontal Line","italic":"Italic","numberedlist":"Insert/Remove Numbered List","quote":"Block Quote","removeformat":"Remove Format","strike":"Strike Through","subscript":"Subscript","superscript":"Superscript","underline":"Underline","formatted":"Formatted","h1":"Heading 1","h2":"Heading 2","normal":"Normal","blockStyles":"Block Styles","inlineStyles":"Inline Styles","objectStyles":"Object Styles","styles":"Styles","cell":"Cell","cellDelete":"Delete Cells","cellInsertAfter":"Insert Cell After","cellInsertBefore":"Insert Cell Before","cellMerge":"Merge Cells","cellMergeDown":"Merge Down","cellMergeRight":"Merge Right","cellSplitHorizontal":"Split Cell Horizontally","cellSplitVertical":"Split Cell Vertically","column":"Column","columnDelete":"Delete Columns","columnInsertAfter":"Insert Column After","columnInsertBefore":"Insert Column Before","deleteTable":"Delete Table","row":"Row","rowDelete":"Delete Rows","rowInsertAfter":"Insert Row After","rowInsertBefore":"Insert Row Before","add":"Add","ariaUpdateNoToolbar":"No toolbars are available","ariaUpdateOneToolbar":"{toolbars} toolbar is available. Press ALT+F10 to focus.","ariaUpdateManyToolbars":"{toolbars} toolbars are available. Press ALT+F10 to focus.","camera":"Insert Image from Camera","cite":"Cite","code":"Code","clearInput":"Clear Input Field","confirm":"Confirm","editLink":"Type or paste link here","image":"Insert Image","link":"Link","removeLink":"Remove link","table":"Insert Table","twitter":"Twitter","headers":"Headers","headersBoth":"Both","headersColumn":"First column","headersNone":"None","headersRow":"First Row"}; -------------------------------------------------------------------------------- /docs/libs/alloy-editor/lang/alloy-editor/en-ca.js: -------------------------------------------------------------------------------- 1 | AlloyEditor.Strings = {"alignCenter":"Centre","alignJustify":"Justify","alignLeft":"Left","alignRight":"Right","bold":"Bold","bulletedlist":"Insert/Remove Bulleted List","cancel":"Cancel","horizontalrule":"Insert Horizontal Line","italic":"Italic","numberedlist":"Insert/Remove Numbered List","quote":"Block Quote","removeformat":"Remove Format","strike":"Strike Through","subscript":"Subscript","superscript":"Superscript","underline":"Underline","formatted":"Formatted","h1":"Heading 1","h2":"Heading 2","normal":"Normal","blockStyles":"Block Styles","inlineStyles":"Inline Styles","objectStyles":"Object Styles","styles":"Styles","cell":"Cell","cellDelete":"Delete Cells","cellInsertAfter":"Insert Cell After","cellInsertBefore":"Insert Cell Before","cellMerge":"Merge Cells","cellMergeDown":"Merge Down","cellMergeRight":"Merge Right","cellSplitHorizontal":"Split Cell Horizontally","cellSplitVertical":"Split Cell Vertically","column":"Column","columnDelete":"Delete Columns","columnInsertAfter":"Insert Column After","columnInsertBefore":"Insert Column Before","deleteTable":"Delete Table","row":"Row","rowDelete":"Delete Rows","rowInsertAfter":"Insert Row After","rowInsertBefore":"Insert Row Before","add":"Add","ariaUpdateNoToolbar":"No toolbars are available","ariaUpdateOneToolbar":"{toolbars} toolbar is available. Press ALT+F10 to focus.","ariaUpdateManyToolbars":"{toolbars} toolbars are available. Press ALT+F10 to focus.","camera":"Insert Image from Camera","cite":"Cite","code":"Code","clearInput":"Clear Input Field","confirm":"Confirm","editLink":"Type or paste link here","image":"Insert Image","link":"Link","removeLink":"Remove link","table":"Insert Table","twitter":"Twitter","headers":"Headers","headersBoth":"Both","headersColumn":"First column","headersNone":"None","headersRow":"First Row"}; -------------------------------------------------------------------------------- /docs/libs/alloy-editor/lang/alloy-editor/en-gb.js: -------------------------------------------------------------------------------- 1 | AlloyEditor.Strings = {"alignCenter":"Centre","alignJustify":"Justify","alignLeft":"Left","alignRight":"Right","bold":"Bold","bulletedlist":"Insert/Remove Bulleted List","cancel":"Cancel","horizontalrule":"Insert Horizontal Line","italic":"Italic","numberedlist":"Insert/Remove Numbered List","quote":"Block Quote","removeformat":"Remove Format","strike":"Strike Through","subscript":"Subscript","superscript":"Superscript","underline":"Underline","formatted":"Formatted","h1":"Heading 1","h2":"Heading 2","normal":"Normal","blockStyles":"Block Styles","inlineStyles":"Inline Styles","objectStyles":"Object Styles","styles":"Styles","cell":"Cell","cellDelete":"Delete Cells","cellInsertAfter":"Insert Cell After","cellInsertBefore":"Insert Cell Before","cellMerge":"Merge Cells","cellMergeDown":"Merge Down","cellMergeRight":"Merge Right","cellSplitHorizontal":"Split Cell Horizontally","cellSplitVertical":"Split Cell Vertically","column":"Column","columnDelete":"Delete Columns","columnInsertAfter":"Insert Column After","columnInsertBefore":"Insert Column Before","deleteTable":"Delete Table","row":"Row","rowDelete":"Delete Rows","rowInsertAfter":"Insert Row After","rowInsertBefore":"Insert Row Before","add":"Add","ariaUpdateNoToolbar":"No toolbars are available","ariaUpdateOneToolbar":"{toolbars} toolbar is available. Press ALT+F10 to focus.","ariaUpdateManyToolbars":"{toolbars} toolbars are available. Press ALT+F10 to focus.","camera":"Insert Image from Camera","cite":"Cite","code":"Code","clearInput":"Clear Input Field","confirm":"Confirm","editLink":"Type or paste link here","image":"Insert Image","link":"Link","removeLink":"Remove link","table":"Insert Table","twitter":"Twitter","headers":"Headers","headersBoth":"Both","headersColumn":"First column","headersNone":"None","headersRow":"First Row"}; -------------------------------------------------------------------------------- /docs/libs/alloy-editor/lang/alloy-editor/en.js: -------------------------------------------------------------------------------- 1 | AlloyEditor.Strings = {"alignCenter":"Center","alignJustify":"Justify","alignLeft":"Left","alignRight":"Right","bold":"Bold","bulletedlist":"Insert/Remove Bulleted List","cancel":"Cancel","horizontalrule":"Insert Horizontal Line","italic":"Italic","numberedlist":"Insert/Remove Numbered List","quote":"Block Quote","removeformat":"Remove Format","strike":"Strikethrough","subscript":"Subscript","superscript":"Superscript","underline":"Underline","formatted":"Formatted","h1":"Heading 1","h2":"Heading 2","normal":"Normal","blockStyles":"Block Styles","inlineStyles":"Inline Styles","objectStyles":"Object Styles","styles":"Styles","cell":"Cell","cellDelete":"Delete Cells","cellInsertAfter":"Insert Cell After","cellInsertBefore":"Insert Cell Before","cellMerge":"Merge Cells","cellMergeDown":"Merge Down","cellMergeRight":"Merge Right","cellSplitHorizontal":"Split Cell Horizontally","cellSplitVertical":"Split Cell Vertically","column":"Column","columnDelete":"Delete Columns","columnInsertAfter":"Insert Column After","columnInsertBefore":"Insert Column Before","deleteTable":"Delete Table","row":"Row","rowDelete":"Delete Rows","rowInsertAfter":"Insert Row After","rowInsertBefore":"Insert Row Before","add":"Add","ariaUpdateNoToolbar":"No toolbars are available","ariaUpdateOneToolbar":"{toolbars} toolbar is available. Press ALT+F10 to focus.","ariaUpdateManyToolbars":"{toolbars} toolbars are available. Press ALT+F10 to focus.","camera":"Insert Image from Camera","cite":"Cite","code":"Code","clearInput":"Clear Input Field","confirm":"Confirm","editLink":"Type or paste link here","image":"Insert Image","link":"Link","removeLink":"Remove link","table":"Insert Table","twitter":"Twitter","headers":"Headers","headersBoth":"Both","headersColumn":"First column","headersNone":"None","headersRow":"First Row"}; -------------------------------------------------------------------------------- /docs/libs/alloy-editor/lang/alloy-editor/eo.js: -------------------------------------------------------------------------------- 1 | AlloyEditor.Strings = {"alignCenter":"Centre","alignJustify":"Ĝisrandigi Ambaŭflanke","alignLeft":"Maldekstre","alignRight":"Dekstre","bold":"Grasa","bulletedlist":"Bula Listo","cancel":"Rezigni","horizontalrule":"Enmeti Horizontalan Linion","italic":"Kursiva","numberedlist":"Numera Listo","quote":"Citaĵo","removeformat":"Forigi Formaton","strike":"Trastreko","subscript":"Suba indico","superscript":"Supra indico","underline":"Substreko","formatted":"Formatita","h1":"Titolo 1","h2":"Titolo 2","normal":"Normala","blockStyles":"Stiloj de blokoj","inlineStyles":"Enliniaj Stiloj","objectStyles":"Stiloj de objektoj","styles":"Stiloj","cell":"Ĉelo","cellDelete":"Forigi la Ĉelojn","cellInsertAfter":"Enmeti Ĉelon Post","cellInsertBefore":"Enmeti Ĉelon Antaŭ","cellMerge":"Kunfandi la Ĉelojn","cellMergeDown":"Kunfandi malsupren ","cellMergeRight":"Kunfandi dekstren","cellSplitHorizontal":"Horizontale dividi","cellSplitVertical":"Vertikale dividi","column":"Kolumno","columnDelete":"Forigi Kolumnojn","columnInsertAfter":"Enmeti kolumnon post","columnInsertBefore":"Enmeti kolumnon antaŭ","deleteTable":"Forigi Tabelon","row":"Linio","rowDelete":"Forigi Liniojn","rowInsertAfter":"Enmeti linion post","rowInsertBefore":"Enmeti linion antaŭ","add":"Add","ariaUpdateNoToolbar":"No toolbars are available","ariaUpdateOneToolbar":"{toolbars} toolbar is available. Press ALT+F10 to focus.","ariaUpdateManyToolbars":"{toolbars} toolbars are available. Press ALT+F10 to focus.","camera":"Insert Image from Camera","cite":"Cite","code":"Code","clearInput":"Clear Input Field","confirm":"Confirm","editLink":"Type or paste link here","image":"Insert Image","link":"Link","removeLink":"Remove link","table":"Insert Table","twitter":"Twitter","headers":"Supraj Paĝotitoloj","headersBoth":"Ambaŭ","headersColumn":"Unua kolumno","headersNone":"Neniu","headersRow":"Unua linio"}; -------------------------------------------------------------------------------- /docs/libs/alloy-editor/lang/alloy-editor/et.js: -------------------------------------------------------------------------------- 1 | AlloyEditor.Strings = {"alignCenter":"Kesk","alignJustify":"Rööpjoondus","alignLeft":"Vasak","alignRight":"Paremale","bold":"Paks","bulletedlist":"Punktloend","cancel":"Loobu","horizontalrule":"Horisontaaljoone sisestamine","italic":"Kursiiv","numberedlist":"Numberloend","quote":"Blokktsitaat","removeformat":"Vormingu eemaldamine","strike":"Läbijoonitud","subscript":"Allindeks","superscript":"Ülaindeks","underline":"Allajoonitud","formatted":"Vormindatud","h1":"Pealkiri 1","h2":"Pealkiri 2","normal":"Tavaline","blockStyles":"Blokkstiilid","inlineStyles":"Reasisesed stiilid","objectStyles":"Objektistiilid","styles":"Stiil","cell":"Lahter","cellDelete":"Eemalda lahtrid","cellInsertAfter":"Sisesta lahter peale","cellInsertBefore":"Sisesta lahter enne","cellMerge":"Ühenda lahtrid","cellMergeDown":"Ühenda alla","cellMergeRight":"Ühenda paremale","cellSplitHorizontal":"Poolita lahter horisontaalselt","cellSplitVertical":"Poolita lahter vertikaalselt","column":"Veerg","columnDelete":"Eemalda veerud","columnInsertAfter":"Sisesta veerg peale","columnInsertBefore":"Sisesta veerg enne","deleteTable":"Kustuta tabel","row":"Rida","rowDelete":"Eemalda read","rowInsertAfter":"Sisesta rida peale","rowInsertBefore":"Sisesta rida enne","add":"Add","ariaUpdateNoToolbar":"No toolbars are available","ariaUpdateOneToolbar":"{toolbars} toolbar is available. Press ALT+F10 to focus.","ariaUpdateManyToolbars":"{toolbars} toolbars are available. Press ALT+F10 to focus.","camera":"Insert Image from Camera","cite":"Cite","code":"Code","clearInput":"Clear Input Field","confirm":"Confirm","editLink":"Type or paste link here","image":"Insert Image","link":"Link","removeLink":"Remove link","table":"Insert Table","twitter":"Twitter","headers":"Päised","headersBoth":"Mõlemad","headersColumn":"Esimene tulp","headersNone":"Puudub","headersRow":"Esimene rida"}; -------------------------------------------------------------------------------- /docs/libs/alloy-editor/lang/alloy-editor/fa.js: -------------------------------------------------------------------------------- 1 | AlloyEditor.Strings = {"alignCenter":"وسط","alignJustify":"بلوک چین","alignLeft":"چپ","alignRight":"راست","bold":"درشت","bulletedlist":"فهرست نقطهای","cancel":"انصراف","horizontalrule":"گنجاندن خط افقی","italic":"خمیده","numberedlist":"فهرست شمارهدار","quote":"بلوک نقل قول","removeformat":"برداشتن فرمت","strike":"خطخورده","subscript":"زیرنویس","superscript":"بالانویس","underline":"زیرخطدار","formatted":"قالبدار","h1":"سرنویس ۱","h2":"سرنویس ۲","normal":"معمولی","blockStyles":"سبکهای بلوک","inlineStyles":"سبکهای درونخطی","objectStyles":"سبکهای شیء","styles":"سبک","cell":"سلول","cellDelete":"حذف سلولها","cellInsertAfter":"افزودن سلول بعد از","cellInsertBefore":"افزودن سلول قبل از","cellMerge":"ادغام سلولها","cellMergeDown":"ادغام به پایین","cellMergeRight":"ادغام به راست","cellSplitHorizontal":"جدا کردن افقی سلول","cellSplitVertical":"جدا کردن عمودی سلول","column":"ستون","columnDelete":"حذف ستونها","columnInsertAfter":"افزودن ستون بعد از","columnInsertBefore":"افزودن ستون قبل از","deleteTable":"پاک کردن جدول","row":"سطر","rowDelete":"حذف سطرها","rowInsertAfter":"افزودن سطر بعد از","rowInsertBefore":"افزودن سطر قبل از","add":"Add","ariaUpdateNoToolbar":"No toolbars are available","ariaUpdateOneToolbar":"{toolbars} toolbar is available. Press ALT+F10 to focus.","ariaUpdateManyToolbars":"{toolbars} toolbars are available. Press ALT+F10 to focus.","camera":"Insert Image from Camera","cite":"Cite","code":"Code","clearInput":"Clear Input Field","confirm":"Confirm","editLink":"Type or paste link here","image":"Insert Image","link":"Link","removeLink":"Remove link","table":"Insert Table","twitter":"Twitter","headers":"سرنویسها","headersBoth":"هردو","headersColumn":"اولین ستون","headersNone":"هیچ","headersRow":"اولین ردیف"}; -------------------------------------------------------------------------------- /docs/libs/alloy-editor/lang/alloy-editor/fo.js: -------------------------------------------------------------------------------- 1 | AlloyEditor.Strings = {"alignCenter":"Miðsett","alignJustify":"Javnir tekstkantar","alignLeft":"Vinstra","alignRight":"Høgra","bold":"Feit skrift","bulletedlist":"Punktmerktur listi","cancel":"Avlýst","horizontalrule":"Ger vatnrætta linju","italic":"Skráskrift","numberedlist":"Talmerktur listi","quote":"Blockquote","removeformat":"Strika sniðgeving","strike":"Yvirstrikað","subscript":"Lækkað skrift","superscript":"Hækkað skrift","underline":"Undirstrikað","formatted":"Sniðgivið","h1":"Yvirskrift 1","h2":"Yvirskrift 2","normal":"Vanligt","blockStyles":"Blokk stílir","inlineStyles":"Inline stílir","objectStyles":"Object stílir","styles":"Typografi","cell":"Meski","cellDelete":"Strika meskar","cellInsertAfter":"Set meska inn aftaná","cellInsertBefore":"Set meska inn áðrenn","cellMerge":"Flætta meskar","cellMergeDown":"Flætta saman","cellMergeRight":"Flætta meskar til høgru","cellSplitHorizontal":"Kloyv meska vatnrætt","cellSplitVertical":"Kloyv meska loddrætt","column":"Kolonna","columnDelete":"Strika kolonnur","columnInsertAfter":"Set kolonnu inn aftaná","columnInsertBefore":"Set kolonnu inn áðrenn","deleteTable":"Strika tabell","row":"Rað","rowDelete":"Strika røðir","rowInsertAfter":"Set rað inn aftaná","rowInsertBefore":"Set rað inn áðrenn","add":"Add","ariaUpdateNoToolbar":"No toolbars are available","ariaUpdateOneToolbar":"{toolbars} toolbar is available. Press ALT+F10 to focus.","ariaUpdateManyToolbars":"{toolbars} toolbars are available. Press ALT+F10 to focus.","camera":"Insert Image from Camera","cite":"Cite","code":"Code","clearInput":"Clear Input Field","confirm":"Confirm","editLink":"Type or paste link here","image":"Insert Image","link":"Link","removeLink":"Remove link","table":"Insert Table","twitter":"Twitter","headers":"Yvirskriftir","headersBoth":"Báðir","headersColumn":"Fyrsta kolonna","headersNone":"Eingin","headersRow":"Fyrsta rað"}; -------------------------------------------------------------------------------- /docs/libs/alloy-editor/lang/alloy-editor/he.js: -------------------------------------------------------------------------------- 1 | AlloyEditor.Strings = {"alignCenter":"מרכז","alignJustify":"יישור לשוליים","alignLeft":"לשמאל","alignRight":"לימין","bold":"מודגש","bulletedlist":"רשימת נקודות","cancel":"ביטול","horizontalrule":"הוספת קו אופקי","italic":"נטוי","numberedlist":"רשימה ממוספרת","quote":"בלוק ציטוט","removeformat":"הסרת העיצוב","strike":"כתיב מחוק","subscript":"כתיב תחתון","superscript":"כתיב עליון","underline":"קו תחתון","formatted":"קוד","h1":"כותרת","h2":"כותרת 2","normal":"נורמלי","blockStyles":"סגנונות בלוק","inlineStyles":"סגנונות רצף","objectStyles":"סגנונות אובייקט","styles":"סגנון","cell":"מאפייני תא","cellDelete":"מחיקת תאים","cellInsertAfter":"הוספת תא אחרי","cellInsertBefore":"הוספת תא לפני","cellMerge":"מיזוג תאים","cellMergeDown":"מזג למטה","cellMergeRight":"מזג ימינה","cellSplitHorizontal":"פיצול תא אופקית","cellSplitVertical":"פיצול תא אנכית","column":"עמודה","columnDelete":"מחיקת עמודות","columnInsertAfter":"הוספת עמודה אחרי","columnInsertBefore":"הוספת עמודה לפני","deleteTable":"מחק טבלה","row":"שורה","rowDelete":"מחיקת שורות","rowInsertAfter":"הוספת שורה אחרי","rowInsertBefore":"הוספת שורה לפני","add":"Add","ariaUpdateNoToolbar":"No toolbars are available","ariaUpdateOneToolbar":"{toolbars} toolbar is available. Press ALT+F10 to focus.","ariaUpdateManyToolbars":"{toolbars} toolbars are available. Press ALT+F10 to focus.","camera":"Insert Image from Camera","cite":"Cite","code":"Code","clearInput":"Clear Input Field","confirm":"Confirm","editLink":"Type or paste link here","image":"Insert Image","link":"Link","removeLink":"Remove link","table":"Insert Table","twitter":"Twitter","headers":"כותרות","headersBoth":"שניהם","headersColumn":"עמודה ראשונה","headersNone":"אין","headersRow":"שורה ראשונה"}; -------------------------------------------------------------------------------- /docs/libs/alloy-editor/lang/alloy-editor/hi.js: -------------------------------------------------------------------------------- 1 | AlloyEditor.Strings = {"alignCenter":"बीच में","alignJustify":"ब्लॉक जस्टीफ़ाई","alignLeft":"दायें","alignRight":"दायें","bold":"बोल्ड","bulletedlist":"बुलॅट सूची","cancel":"रद्द करें","horizontalrule":"हॉरिज़ॉन्टल रेखा इन्सर्ट करें","italic":"इटैलिक","numberedlist":"अंकीय सूची","quote":"ब्लॉक-कोट","removeformat":"फ़ॉर्मैट हटायें","strike":"स्ट्राइक थ्रू","subscript":"अधोलेख","superscript":"अभिलेख","underline":"रेखांकण","formatted":"फ़ॉर्मैटॅड","h1":"शीर्षक 1","h2":"शीर्षक 2","normal":"साधारण","blockStyles":"Block Styles","inlineStyles":"Inline Styles","objectStyles":"Object Styles","styles":"स्टाइल","cell":"खाना","cellDelete":"सैल डिलीट करें","cellInsertAfter":"बाद में सैल डालें","cellInsertBefore":"पहले सैल डालें","cellMerge":"सैल मिलायें","cellMergeDown":"नीचे विलय करें","cellMergeRight":"बाँया विलय","cellSplitHorizontal":"सैल को क्षैतिज स्थिति में विभाजित करें","cellSplitVertical":"सैल को लम्बाकार में विभाजित करें","column":"कालम","columnDelete":"कालम डिलीट करें","columnInsertAfter":"बाद में कालम डालें","columnInsertBefore":"पहले कालम डालें","deleteTable":"टेबल डिलीट करें","row":"पंक्ति","rowDelete":"पंक्तियाँ डिलीट करें","rowInsertAfter":"बाद में पंक्ति डालें","rowInsertBefore":"पहले पंक्ति डालें","add":"Add","ariaUpdateNoToolbar":"No toolbars are available","ariaUpdateOneToolbar":"{toolbars} toolbar is available. Press ALT+F10 to focus.","ariaUpdateManyToolbars":"{toolbars} toolbars are available. Press ALT+F10 to focus.","camera":"Insert Image from Camera","cite":"Cite","code":"Code","clearInput":"Clear Input Field","confirm":"Confirm","editLink":"Type or paste link here","image":"Insert Image","link":"Link","removeLink":"Remove link","table":"Insert Table","twitter":"Twitter","headers":"Headers","headersBoth":"Both","headersColumn":"First column","headersNone":"None","headersRow":"First Row"}; -------------------------------------------------------------------------------- /docs/libs/alloy-editor/lang/alloy-editor/hr.js: -------------------------------------------------------------------------------- 1 | AlloyEditor.Strings = {"alignCenter":"Središnje","alignJustify":"Blok poravnanje","alignLeft":"Lijevo","alignRight":"Desno","bold":"Podebljaj","bulletedlist":"Obična lista","cancel":"Poništi","horizontalrule":"Ubaci vodoravnu liniju","italic":"Ukosi","numberedlist":"Brojčana lista","quote":"Blockquote","removeformat":"Ukloni formatiranje","strike":"Precrtano","subscript":"Subscript","superscript":"Superscript","underline":"Potcrtano","formatted":"Formatirano","h1":"Heading 1","h2":"Heading 2","normal":"Normal","blockStyles":"Block stilovi","inlineStyles":"Inline stilovi","objectStyles":"Object stilovi","styles":"Stil","cell":"Ćelija","cellDelete":"Izbriši ćelije","cellInsertAfter":"Ubaci ćeliju poslije","cellInsertBefore":"Ubaci ćeliju prije","cellMerge":"Spoji ćelije","cellMergeDown":"Spoji dolje","cellMergeRight":"Spoji desno","cellSplitHorizontal":"Podijeli ćeliju vodoravno","cellSplitVertical":"Podijeli ćeliju okomito","column":"Kolona","columnDelete":"Izbriši kolone","columnInsertAfter":"Ubaci kolonu poslije","columnInsertBefore":"Ubaci kolonu prije","deleteTable":"Izbriši tablicu","row":"Red","rowDelete":"Izbriši redove","rowInsertAfter":"Ubaci red poslije","rowInsertBefore":"Ubaci red prije","add":"Add","ariaUpdateNoToolbar":"No toolbars are available","ariaUpdateOneToolbar":"{toolbars} toolbar is available. Press ALT+F10 to focus.","ariaUpdateManyToolbars":"{toolbars} toolbars are available. Press ALT+F10 to focus.","camera":"Insert Image from Camera","cite":"Cite","code":"Code","clearInput":"Clear Input Field","confirm":"Confirm","editLink":"Type or paste link here","image":"Insert Image","link":"Link","removeLink":"Remove link","table":"Insert Table","twitter":"Twitter","headers":"Zaglavlje","headersBoth":"Oba","headersColumn":"Prva kolona","headersNone":"Ništa","headersRow":"Prvi red"}; -------------------------------------------------------------------------------- /docs/libs/alloy-editor/lang/alloy-editor/hu.js: -------------------------------------------------------------------------------- 1 | AlloyEditor.Strings = {"alignCenter":"Középre","alignJustify":"Sorkizárt","alignLeft":"Bal","alignRight":"Jobbra","bold":"Félkövér","bulletedlist":"Felsorolás","cancel":"Mégsem","horizontalrule":"Elválasztóvonal beillesztése","italic":"Dőlt","numberedlist":"Számozás","quote":"Idézet blokk","removeformat":"Formázás eltávolítása","strike":"Áthúzott","subscript":"Alsó index","superscript":"Felső index","underline":"Aláhúzott","formatted":"Formázott","h1":"Fejléc 1","h2":"Fejléc 2","normal":"Normál","blockStyles":"Blokk stílusok","inlineStyles":"Inline stílusok","objectStyles":"Objektum stílusok","styles":"Stílus","cell":"Cella","cellDelete":"Cellák törlése","cellInsertAfter":"Beszúrás jobbra","cellInsertBefore":"Beszúrás balra","cellMerge":"Cellák egyesítése","cellMergeDown":"Cellák egyesítése lefelé","cellMergeRight":"Cellák egyesítése jobbra","cellSplitHorizontal":"Cellák szétválasztása vízszintesen","cellSplitVertical":"Cellák szétválasztása függőlegesen","column":"Oszlop","columnDelete":"Oszlopok törlése","columnInsertAfter":"Beszúrás jobbra","columnInsertBefore":"Beszúrás balra","deleteTable":"Táblázat törlése","row":"Sor","rowDelete":"Sorok törlése","rowInsertAfter":"Beszúrás alá","rowInsertBefore":"Beszúrás fölé","add":"Add","ariaUpdateNoToolbar":"No toolbars are available","ariaUpdateOneToolbar":"{toolbars} toolbar is available. Press ALT+F10 to focus.","ariaUpdateManyToolbars":"{toolbars} toolbars are available. Press ALT+F10 to focus.","camera":"Insert Image from Camera","cite":"Cite","code":"Code","clearInput":"Clear Input Field","confirm":"Confirm","editLink":"Type or paste link here","image":"Insert Image","link":"Link","removeLink":"Remove link","table":"Insert Table","twitter":"Twitter","headers":"Fejlécek","headersBoth":"Mindkettő","headersColumn":"Első oszlop","headersNone":"Nincsenek","headersRow":"Első sor"}; -------------------------------------------------------------------------------- /docs/libs/alloy-editor/lang/alloy-editor/id.js: -------------------------------------------------------------------------------- 1 | AlloyEditor.Strings = {"alignCenter":"Tengah","alignJustify":"Rata kiri-kanan","alignLeft":"Kiri","alignRight":"Kanan","bold":"Huruf Tebal","bulletedlist":"Sisip/Hapus Daftar Bullet","cancel":"Batal","horizontalrule":"Sisip Garis Horisontal","italic":"Huruf Miring","numberedlist":"Sisip/Hapus Daftar Bernomor","quote":"Kutipan Blok","removeformat":"Hapus Format","strike":"Strikethrough","subscript":"Subscript","superscript":"Superscript","underline":"Garis Bawah","formatted":"Membentuk","h1":"Heading 1","h2":"Heading 2","normal":"Normal","blockStyles":"Block Styles","inlineStyles":"Inline Styles","objectStyles":"Object Styles","styles":"Gaya","cell":"Sel","cellDelete":"Hapus Sel","cellInsertAfter":"Sisip Sel Setelah","cellInsertBefore":"Sisip Sel Sebelum","cellMerge":"Gabungkan Sel","cellMergeDown":"Gabungkan ke Bawah","cellMergeRight":"Gabungkan ke Kanan","cellSplitHorizontal":"Pisahkan Sel Secara Horisontal","cellSplitVertical":"Pisahkan Sel Secara Vertikal","column":"Kolom","columnDelete":"Hapus Kolom","columnInsertAfter":"Sisip Kolom Sesudah","columnInsertBefore":"Sisip Kolom Sebelum","deleteTable":"Hapus Tabel","row":"Baris","rowDelete":"Hapus Baris","rowInsertAfter":"Sisip Baris Sesudah","rowInsertBefore":"Sisip Baris Sebelum","add":"Add","ariaUpdateNoToolbar":"No toolbars are available","ariaUpdateOneToolbar":"{toolbars} toolbar is available. Press ALT+F10 to focus.","ariaUpdateManyToolbars":"{toolbars} toolbars are available. Press ALT+F10 to focus.","camera":"Insert Image from Camera","cite":"Cite","code":"Code","clearInput":"Clear Input Field","confirm":"Confirm","editLink":"Type or paste link here","image":"Insert Image","link":"Link","removeLink":"Remove link","table":"Insert Table","twitter":"Twitter","headers":"Headers","headersBoth":"Keduanya","headersColumn":"Kolom pertama","headersNone":"Tidak ada","headersRow":"Baris Pertama"}; -------------------------------------------------------------------------------- /docs/libs/alloy-editor/lang/alloy-editor/ja.js: -------------------------------------------------------------------------------- 1 | AlloyEditor.Strings = {"alignCenter":"中央","alignJustify":"両端揃え","alignLeft":"左","alignRight":"右","bold":"太字","bulletedlist":"番号無しリスト","cancel":"キャンセル","horizontalrule":"水平線","italic":"斜体","numberedlist":"番号付きリスト","quote":"ブロック引用文","removeformat":"書式を解除","strike":"打ち消し線","subscript":"下付き","superscript":"上付き","underline":"下線","formatted":"書式付き","h1":"見出し 1","h2":"見出し 2","normal":"標準","blockStyles":"ブロックスタイル","inlineStyles":"インラインスタイル","objectStyles":"オブジェクトスタイル","styles":"スタイル","cell":"セル","cellDelete":"セルを削除","cellInsertAfter":"セルを後に挿入","cellInsertBefore":"セルを前に挿入","cellMerge":"セルを結合","cellMergeDown":"下に結合","cellMergeRight":"右に結合","cellSplitHorizontal":"セルを水平方向に分割","cellSplitVertical":"セルを垂直方向に分割","column":"列","columnDelete":"列を削除","columnInsertAfter":"列を右に挿入","columnInsertBefore":"列を左に挿入","deleteTable":"表を削除","row":"行","rowDelete":"行を削除","rowInsertAfter":"行を下に挿入","rowInsertBefore":"行を上に挿入","add":"Add","ariaUpdateNoToolbar":"No toolbars are available","ariaUpdateOneToolbar":"{toolbars} toolbar is available. Press ALT+F10 to focus.","ariaUpdateManyToolbars":"{toolbars} toolbars are available. Press ALT+F10 to focus.","camera":"Insert Image from Camera","cite":"Cite","code":"Code","clearInput":"Clear Input Field","confirm":"Confirm","editLink":"Type or paste link here","image":"Insert Image","link":"Link","removeLink":"Remove link","table":"Insert Table","twitter":"Twitter","headers":"ヘッダ (th)","headersBoth":"両方","headersColumn":"最初の列のみ","headersNone":"なし","headersRow":"最初の行のみ"}; -------------------------------------------------------------------------------- /docs/libs/alloy-editor/lang/alloy-editor/ka.js: -------------------------------------------------------------------------------- 1 | AlloyEditor.Strings = {"alignCenter":"შუა","alignJustify":"両端揃え","alignLeft":"მარცხენა","alignRight":"მარჯვენა","bold":"მსხვილი","bulletedlist":"ღილიანი სია","cancel":"გაუქმება","horizontalrule":"ჰორიზონტალური ხაზის ჩასმა","italic":"დახრილი","numberedlist":"გადანომრილი სია","quote":"ციტატა","removeformat":"ფორმატირების მოხსნა","strike":"გადახაზული","subscript":"ინდექსი","superscript":"ხარისხი","underline":"გახაზული","formatted":"ფორმატირებული","h1":"სათაური 1","h2":"სათაური 2","normal":"ჩვეულებრივი","blockStyles":"არის სტილები","inlineStyles":"თანდართული სტილები","objectStyles":"ობიექტის სტილები","styles":"სტილები","cell":"უჯრა","cellDelete":"უჯრების წაშლა","cellInsertAfter":"უჯრის ჩასმა მერე","cellInsertBefore":"უჯრის ჩასმა მანამდე","cellMerge":"უჯრების შეერთება","cellMergeDown":"შეერთება ქვემოთასთან","cellMergeRight":"შეერთება მარჯვენასთან","cellSplitHorizontal":"გაყოფა ჰორიზონტალურად","cellSplitVertical":"გაყოფა ვერტიკალურად","column":"სვეტი","columnDelete":"სვეტების წაშლა","columnInsertAfter":"სვეტის ჩამატება მერე","columnInsertBefore":"სვეტის ჩამატება წინ","deleteTable":"ცხრილის წაშლა","row":"სტრიქონი","rowDelete":"სტრიქონების წაშლა","rowInsertAfter":"სტრიქონის ჩამატება მერე","rowInsertBefore":"სტრიქონის ჩამატება წინ","add":"Add","ariaUpdateNoToolbar":"No toolbars are available","ariaUpdateOneToolbar":"{toolbars} toolbar is available. Press ALT+F10 to focus.","ariaUpdateManyToolbars":"{toolbars} toolbars are available. Press ALT+F10 to focus.","camera":"Insert Image from Camera","cite":"Cite","code":"Code","clearInput":"Clear Input Field","confirm":"Confirm","editLink":"Type or paste link here","image":"Insert Image","link":"Link","removeLink":"Remove link","table":"Insert Table","twitter":"Twitter","headers":"სათაურები","headersBoth":"ორივე","headersColumn":"პირველი სვეტი","headersNone":"არაფერი","headersRow":"პირველი სტრიქონი"}; -------------------------------------------------------------------------------- /docs/libs/alloy-editor/lang/alloy-editor/ko.js: -------------------------------------------------------------------------------- 1 | AlloyEditor.Strings = {"alignCenter":"가운데","alignJustify":"양쪽 맞춤","alignLeft":"왼쪽","alignRight":"오른쪽","bold":"굵게","bulletedlist":"순서 없는 목록","cancel":"취소","horizontalrule":"가로 줄 삽입","italic":"기울임꼴","numberedlist":"순서 있는 목록","quote":"인용 단락","removeformat":"형식 지우기","strike":"취소선","subscript":"아래 첨자","superscript":"위 첨자","underline":"밑줄","formatted":"정형 문단","h1":"제목 1","h2":"제목 2","normal":"본문","blockStyles":"블록 스타일","inlineStyles":"인라인 스타일","objectStyles":"객체 스타일","styles":"스타일","cell":"셀","cellDelete":"셀 삭제","cellInsertAfter":"뒤에 셀 삽입","cellInsertBefore":"앞에 셀 삽입","cellMerge":"셀 합치기","cellMergeDown":"왼쪽 합치기","cellMergeRight":"오른쪽 합치기","cellSplitHorizontal":"수평 나누기","cellSplitVertical":"수직 나누기","column":"열","columnDelete":"열 삭제","columnInsertAfter":"오른쪽에 열 삽입","columnInsertBefore":"왼쪽에 열 삽입","deleteTable":"표 삭제","row":"행","rowDelete":"행 삭제","rowInsertAfter":"아래에 행 삽입","rowInsertBefore":"위에 행 삽입","add":"Add","ariaUpdateNoToolbar":"No toolbars are available","ariaUpdateOneToolbar":"{toolbars} toolbar is available. Press ALT+F10 to focus.","ariaUpdateManyToolbars":"{toolbars} toolbars are available. Press ALT+F10 to focus.","camera":"Insert Image from Camera","cite":"Cite","code":"Code","clearInput":"Clear Input Field","confirm":"Confirm","editLink":"Type or paste link here","image":"Insert Image","link":"Link","removeLink":"Remove link","table":"Insert Table","twitter":"Twitter","headers":"머릿칸","headersBoth":"모두","headersColumn":"첫 열","headersNone":"없음","headersRow":"첫 행"}; -------------------------------------------------------------------------------- /docs/libs/alloy-editor/lang/alloy-editor/ku.js: -------------------------------------------------------------------------------- 1 | AlloyEditor.Strings = {"alignCenter":"ناوەڕاست","alignJustify":"هاوستوونی","alignLeft":"چەپ","alignRight":"ڕاست","bold":"قەڵەو","bulletedlist":"دانان/لابردنی خاڵی لیست","cancel":"پاشگەزبوونەوە","horizontalrule":"دانانی هێلی ئاسۆیی","italic":"لار","numberedlist":"دانان/لابردنی ژمارەی لیست","quote":"بەربەستکردنی ووتەی وەرگیراو","removeformat":"لابردنی داڕشتەکە","strike":"لێدان","subscript":"ژێرنووس","superscript":"سەرنووس","underline":"ژێرهێڵ","formatted":"شێوازکراو","h1":"سەرنووسەی ١","h2":"سەرنووسەی ٢","normal":"ئاسایی","blockStyles":"شێوازی خشت","inlineStyles":"شێوازی ناوهێڵ","objectStyles":"شێوازی بەرکار","styles":"شێواز","cell":"خانه","cellDelete":"سڕینەوەی خانه","cellInsertAfter":"دانانی خانه لەپاش","cellInsertBefore":"دانانی خانه لەپێش","cellMerge":"تێکەڵکردنی خانە","cellMergeDown":"تێکەڵکردنی لەگەڵ خوارەوە","cellMergeRight":"تێکەڵکردنی لەگەڵ ڕاست","cellSplitHorizontal":"دابەشکردنی خانەی ئاسۆیی","cellSplitVertical":"دابەشکردنی خانەی ئەستونی","column":"ئەستون","columnDelete":"سڕینەوەی ئەستوون","columnInsertAfter":"دانانی ئەستوون لەپاش","columnInsertBefore":"دانانی ئەستون لەپێش","deleteTable":"سڕینەوەی خشتە","row":"ڕیز","rowDelete":"سڕینەوەی ڕیز","rowInsertAfter":"دانانی ڕیز لەپاش","rowInsertBefore":"دانانی ڕیز لەپێش","add":"Add","ariaUpdateNoToolbar":"No toolbars are available","ariaUpdateOneToolbar":"{toolbars} toolbar is available. Press ALT+F10 to focus.","ariaUpdateManyToolbars":"{toolbars} toolbars are available. Press ALT+F10 to focus.","camera":"Insert Image from Camera","cite":"Cite","code":"Code","clearInput":"Clear Input Field","confirm":"Confirm","editLink":"Type or paste link here","image":"Insert Image","link":"Link","removeLink":"Remove link","table":"Insert Table","twitter":"Twitter","headers":"سەرپەڕه","headersBoth":"هەردووك","headersColumn":"یەکەم ئەستوون","headersNone":"هیچ","headersRow":"یەکەم ڕیز"}; -------------------------------------------------------------------------------- /docs/libs/alloy-editor/lang/alloy-editor/mk.js: -------------------------------------------------------------------------------- 1 | AlloyEditor.Strings = {"alignCenter":"Center","alignJustify":"Justify","alignLeft":"Left","alignRight":"Right","bold":"Bold","bulletedlist":"Insert/Remove Bulleted List","cancel":"Cancel","horizontalrule":"Insert Horizontal Line","italic":"Italic","numberedlist":"Insert/Remove Numbered List","quote":"Block Quote","removeformat":"Remove Format","strike":"Strikethrough","subscript":"Subscript","superscript":"Superscript","underline":"Underline","formatted":"Formatted","h1":"Heading 1","h2":"Heading 2","normal":"Normal","blockStyles":"Block Styles","inlineStyles":"Inline Styles","objectStyles":"Object Styles","styles":"Styles","cell":"Cell","cellDelete":"Delete Cells","cellInsertAfter":"Insert Cell After","cellInsertBefore":"Insert Cell Before","cellMerge":"Merge Cells","cellMergeDown":"Merge Down","cellMergeRight":"Merge Right","cellSplitHorizontal":"Split Cell Horizontally","cellSplitVertical":"Split Cell Vertically","column":"Column","columnDelete":"Delete Columns","columnInsertAfter":"Insert Column After","columnInsertBefore":"Insert Column Before","deleteTable":"Delete Table","row":"Row","rowDelete":"Delete Rows","rowInsertAfter":"Insert Row After","rowInsertBefore":"Insert Row Before","add":"Add","ariaUpdateNoToolbar":"No toolbars are available","ariaUpdateOneToolbar":"{toolbars} toolbar is available. Press ALT+F10 to focus.","ariaUpdateManyToolbars":"{toolbars} toolbars are available. Press ALT+F10 to focus.","camera":"Insert Image from Camera","cite":"Cite","code":"Code","clearInput":"Clear Input Field","confirm":"Confirm","editLink":"Type or paste link here","image":"Insert Image","link":"Link","removeLink":"Remove link","table":"Insert Table","twitter":"Twitter","headers":"Headers","headersBoth":"Both","headersColumn":"First column","headersNone":"None","headersRow":"First Row"}; -------------------------------------------------------------------------------- /docs/libs/alloy-editor/lang/alloy-editor/ms.js: -------------------------------------------------------------------------------- 1 | AlloyEditor.Strings = {"alignCenter":"Tengah","alignJustify":"Jajaran Blok","alignLeft":"Kiri","alignRight":"Kanan","bold":"Bold","bulletedlist":"Senarai tidak bernombor","cancel":"Batal","horizontalrule":"Masukkan Garisan Membujur","italic":"Italic","numberedlist":"Senarai bernombor","quote":"Block Quote","removeformat":"Buang Format","strike":"Strike Through","subscript":"Subscript","superscript":"Superscript","underline":"Underline","formatted":"Telah Diformat","h1":"Heading 1","h2":"Heading 2","normal":"Normal","blockStyles":"Block Styles","inlineStyles":"Inline Styles","objectStyles":"Object Styles","styles":"Stail","cell":"Cell","cellDelete":"Buangkan Sel-sel","cellInsertAfter":"Insert Cell After","cellInsertBefore":"Insert Cell Before","cellMerge":"Cantumkan Sel-sel","cellMergeDown":"Merge Down","cellMergeRight":"Merge Right","cellSplitHorizontal":"Split Cell Horizontally","cellSplitVertical":"Split Cell Vertically","column":"Column","columnDelete":"Buangkan Lajur","columnInsertAfter":"Insert Column After","columnInsertBefore":"Insert Column Before","deleteTable":"Delete Table","row":"Row","rowDelete":"Buangkan Baris","rowInsertAfter":"Insert Row After","rowInsertBefore":"Insert Row Before","add":"Add","ariaUpdateNoToolbar":"No toolbars are available","ariaUpdateOneToolbar":"{toolbars} toolbar is available. Press ALT+F10 to focus.","ariaUpdateManyToolbars":"{toolbars} toolbars are available. Press ALT+F10 to focus.","camera":"Insert Image from Camera","cite":"Cite","code":"Code","clearInput":"Clear Input Field","confirm":"Confirm","editLink":"Type or paste link here","image":"Insert Image","link":"Link","removeLink":"Remove link","table":"Insert Table","twitter":"Twitter","headers":"Headers","headersBoth":"Both","headersColumn":"First column","headersNone":"None","headersRow":"First Row"}; -------------------------------------------------------------------------------- /docs/libs/alloy-editor/lang/alloy-editor/nl.js: -------------------------------------------------------------------------------- 1 | AlloyEditor.Strings = {"alignCenter":"Centreren","alignJustify":"Uitvullen","alignLeft":"Links","alignRight":"Rechts","bold":"Vet","bulletedlist":"Opsomming invoegen","cancel":"Annuleren","horizontalrule":"Horizontale lijn invoegen","italic":"Cursief","numberedlist":"Genummerde lijst invoegen","quote":"Citaatblok","removeformat":"Opmaak verwijderen","strike":"Doorhalen","subscript":"Subscript","superscript":"Superscript","underline":"Onderstrepen","formatted":"Met opmaak","h1":"Kop 1","h2":"Kop 2","normal":"Normaal","blockStyles":"Blok stijlen","inlineStyles":"Inline stijlen","objectStyles":"Object stijlen","styles":"Stijl","cell":"Cel","cellDelete":"Cellen verwijderen","cellInsertAfter":"Voeg cel in na","cellInsertBefore":"Voeg cel in voor","cellMerge":"Cellen samenvoegen","cellMergeDown":"Voeg samen naar beneden","cellMergeRight":"Voeg samen naar rechts","cellSplitHorizontal":"Splits cel horizontaal","cellSplitVertical":"Splits cel vertikaal","column":"Kolom","columnDelete":"Kolommen verwijderen","columnInsertAfter":"Voeg kolom in na","columnInsertBefore":"Voeg kolom in voor","deleteTable":"Tabel verwijderen","row":"Rij","rowDelete":"Rijen verwijderen","rowInsertAfter":"Voeg rij in na","rowInsertBefore":"Voeg rij in voor","add":"Add","ariaUpdateNoToolbar":"No toolbars are available","ariaUpdateOneToolbar":"{toolbars} toolbar is available. Press ALT+F10 to focus.","ariaUpdateManyToolbars":"{toolbars} toolbars are available. Press ALT+F10 to focus.","camera":"Insert Image from Camera","cite":"Cite","code":"Code","clearInput":"Clear Input Field","confirm":"Confirm","editLink":"Type or paste link here","image":"Insert Image","link":"Link","removeLink":"Remove link","table":"Insert Table","twitter":"Twitter","headers":"Koppen","headersBoth":"Beide","headersColumn":"Eerste kolom","headersNone":"Geen","headersRow":"Eerste rij"}; -------------------------------------------------------------------------------- /docs/libs/alloy-editor/lang/alloy-editor/si.js: -------------------------------------------------------------------------------- 1 | AlloyEditor.Strings = {"alignCenter":"මධ්ය","alignJustify":"Justify","alignLeft":"වම","alignRight":"දකුණ","bold":"තද අකුරින් ලියනලද","bulletedlist":"ඇතුලත් / ඉවත් කිරීම ලඉස්තුව","cancel":"අවලංගු කිරීම","horizontalrule":"තිරස් රේඛාවක් ඇතුලත් කරන්න","italic":"බැධීඅකුරින් ලියන ලද","numberedlist":"ඇතුලත් / ඉවත් කිරීම අන්න්කිත ලඉස්තුව","quote":"උද්ධෘත කොටස","removeformat":"සැකසීම වෙනස් කරන්න","strike":"Strikethrough","subscript":"Subscript","superscript":"Superscript","underline":"යටින් ඉරි අදින ලද","formatted":"ආකෘතියන්","h1":"ශීර්ෂය 1","h2":"ශීර්ෂය 2","normal":"සාමාන්ය","blockStyles":"Block Styles","inlineStyles":"Inline Styles","objectStyles":"Object Styles","styles":"විලාසය","cell":"කොටුව","cellDelete":"කොටුව මැකීම","cellInsertAfter":"පසුව කොටුවක් ඇතුලත් ","cellInsertBefore":"පෙර කොටුවක් ඇතුල්කිරිම","cellMerge":"කොටු එකට යාකිරිම","cellMergeDown":"පහලට ","cellMergeRight":"දකුණට ","cellSplitHorizontal":"තිරස්ව කොටු පැතිරීම","cellSplitVertical":"සිරස්ව කොටු පැතිරීම","column":"Column","columnDelete":"Delete Columns","columnInsertAfter":"Insert Column After","columnInsertBefore":"Insert Column Before","deleteTable":"වගුව මකන්න","row":"Row","rowDelete":"Delete Rows","rowInsertAfter":"Insert Row After","rowInsertBefore":"Insert Row Before","add":"Add","ariaUpdateNoToolbar":"No toolbars are available","ariaUpdateOneToolbar":"{toolbars} toolbar is available. Press ALT+F10 to focus.","ariaUpdateManyToolbars":"{toolbars} toolbars are available. Press ALT+F10 to focus.","camera":"Insert Image from Camera","cite":"Cite","code":"Code","clearInput":"Clear Input Field","confirm":"Confirm","editLink":"Type or paste link here","image":"Insert Image","link":"Link","removeLink":"Remove link","table":"Insert Table","twitter":"Twitter","headers":"ශීර්ෂක","headersBoth":"දෙකම","headersColumn":"පළමූ සිරස් තීරුව","headersNone":"කිසිවක්ම නොවේ","headersRow":"පළමූ පේළිය"}; -------------------------------------------------------------------------------- /docs/libs/alloy-editor/lang/alloy-editor/sl.js: -------------------------------------------------------------------------------- 1 | AlloyEditor.Strings = {"alignCenter":"Sredinsko","alignJustify":"Obojestranska poravnava","alignLeft":"Levo","alignRight":"Desno","bold":"Krepko","bulletedlist":"Označen seznam","cancel":"Prekliči","horizontalrule":"Vstavi vodoravno črto","italic":"Ležeče","numberedlist":"Oštevilčen seznam","quote":"Citat","removeformat":"Odstrani oblikovanje","strike":"Prečrtano","subscript":"Podpisano","superscript":"Nadpisano","underline":"Podčrtano","formatted":"Oblikovan","h1":"Naslov 1","h2":"Naslov 2","normal":"Navaden","blockStyles":"Slogi odstavkov","inlineStyles":"Slogi besedila","objectStyles":"Slogi objektov","styles":"Slog","cell":"Celica","cellDelete":"Izbriši celice","cellInsertAfter":"Vstavi celico za","cellInsertBefore":"Vstavi celico pred","cellMerge":"Združi celice","cellMergeDown":"Druži navzdol","cellMergeRight":"Združi desno","cellSplitHorizontal":"Razdeli celico vodoravno","cellSplitVertical":"Razdeli celico navpično","column":"Stolpec","columnDelete":"Izbriši stolpce","columnInsertAfter":"Vstavi stolpec za","columnInsertBefore":"Vstavi stolpec pred","deleteTable":"Izbriši tabelo","row":"Vrstica","rowDelete":"Izbriši vrstice","rowInsertAfter":"Vstavi vrstico za","rowInsertBefore":"Vstavi vrstico pred","add":"Add","ariaUpdateNoToolbar":"No toolbars are available","ariaUpdateOneToolbar":"{toolbars} toolbar is available. Press ALT+F10 to focus.","ariaUpdateManyToolbars":"{toolbars} toolbars are available. Press ALT+F10 to focus.","camera":"Insert Image from Camera","cite":"Cite","code":"Code","clearInput":"Clear Input Field","confirm":"Confirm","editLink":"Type or paste link here","image":"Insert Image","link":"Link","removeLink":"Remove link","table":"Insert Table","twitter":"Twitter","headers":"Glave","headersBoth":"Oboje","headersColumn":"Prvi stolpec","headersNone":"Brez","headersRow":"Prva vrstica"}; -------------------------------------------------------------------------------- /docs/libs/alloy-editor/lang/alloy-editor/sq.js: -------------------------------------------------------------------------------- 1 | AlloyEditor.Strings = {"alignCenter":"Qendër","alignJustify":"Zgjero","alignLeft":"Majtas","alignRight":"Djathtas","bold":"Trash","bulletedlist":"Vendos/Largo Listën me Pika","cancel":"Anulo","horizontalrule":"Vendos Vijë Horizontale","italic":"Pjerrët","numberedlist":"Vendos/Largo Listën me Numra","quote":"Citatet","removeformat":"Largo Formatin","strike":"Nëpërmes","subscript":"Nën-skriptë","superscript":"Super-skriptë","underline":"Nënvijëzuar","formatted":"Formatuar","h1":"Titulli 1","h2":"Titulli 2","normal":"Normal","blockStyles":"Stilet e Bllokut","inlineStyles":"Stili i Brendshëm","objectStyles":"Stilet e Objektit","styles":"Stil","cell":"Qeli","cellDelete":"Gris Qelitë","cellInsertAfter":"Shto Qeli Prapa","cellInsertBefore":"Shto Qeli Para","cellMerge":"Bashko Qelitë","cellMergeDown":"Bashko Poshtë","cellMergeRight":"Bashko Djathtas","cellSplitHorizontal":"Ndaj Qelinë Horizontalisht","cellSplitVertical":"Ndaj Qelinë Vertikalisht","column":"Kolona","columnDelete":"Gris Kolonat","columnInsertAfter":"Vendos Kolonë Pas","columnInsertBefore":"Vendos Kolonë Para","deleteTable":"Gris Tabelën","row":"Rreshti","rowDelete":"Gris Rreshtat","rowInsertAfter":"Shto Rresht Prapa","rowInsertBefore":"Shto Rresht Para","add":"Add","ariaUpdateNoToolbar":"No toolbars are available","ariaUpdateOneToolbar":"{toolbars} toolbar is available. Press ALT+F10 to focus.","ariaUpdateManyToolbars":"{toolbars} toolbars are available. Press ALT+F10 to focus.","camera":"Insert Image from Camera","cite":"Cite","code":"Code","clearInput":"Clear Input Field","confirm":"Confirm","editLink":"Type or paste link here","image":"Insert Image","link":"Link","removeLink":"Remove link","table":"Insert Table","twitter":"Twitter","headers":"Kokat","headersBoth":"Së bashku","headersColumn":"Kolona e parë","headersNone":"Asnjë","headersRow":"Rreshti i Parë"}; -------------------------------------------------------------------------------- /docs/libs/alloy-editor/lang/alloy-editor/sr-latn.js: -------------------------------------------------------------------------------- 1 | AlloyEditor.Strings = {"alignCenter":"Sredina","alignJustify":"Obostrano ravnanje","alignLeft":"Levo","alignRight":"Desno","bold":"Podebljano","bulletedlist":"Nenabrojiva lista","cancel":"Otkaži","horizontalrule":"Unesi horizontalnu liniju","italic":"Kurziv","numberedlist":"Nabrojiva lista","quote":"Block Quote","removeformat":"Ukloni formatiranje","strike":"Precrtano","subscript":"Indeks","superscript":"Stepen","underline":"Podvučeno","formatted":"Formatirano","h1":"Naslov 1","h2":"Naslov 2","normal":"Normal","blockStyles":"Block Styles","inlineStyles":"Inline Styles","objectStyles":"Object Styles","styles":"Stil","cell":"Cell","cellDelete":"Obriši ćelije","cellInsertAfter":"Insert Cell After","cellInsertBefore":"Insert Cell Before","cellMerge":"Spoj celije","cellMergeDown":"Merge Down","cellMergeRight":"Merge Right","cellSplitHorizontal":"Split Cell Horizontally","cellSplitVertical":"Split Cell Vertically","column":"Column","columnDelete":"Obriši kolone","columnInsertAfter":"Insert Column After","columnInsertBefore":"Insert Column Before","deleteTable":"Izbriši tabelu","row":"Row","rowDelete":"Obriši redove","rowInsertAfter":"Insert Row After","rowInsertBefore":"Insert Row Before","add":"Add","ariaUpdateNoToolbar":"No toolbars are available","ariaUpdateOneToolbar":"{toolbars} toolbar is available. Press ALT+F10 to focus.","ariaUpdateManyToolbars":"{toolbars} toolbars are available. Press ALT+F10 to focus.","camera":"Insert Image from Camera","cite":"Cite","code":"Code","clearInput":"Clear Input Field","confirm":"Confirm","editLink":"Type or paste link here","image":"Insert Image","link":"Link","removeLink":"Remove link","table":"Insert Table","twitter":"Twitter","headers":"Zaglavlja","headersBoth":"Oba","headersColumn":"Prva kolona","headersNone":"None","headersRow":"Prvi red"}; -------------------------------------------------------------------------------- /docs/libs/alloy-editor/lang/alloy-editor/sr.js: -------------------------------------------------------------------------------- 1 | AlloyEditor.Strings = {"alignCenter":"Средина","alignJustify":"Обострано равнање","alignLeft":"Лево","alignRight":"Десно","bold":"Подебљано","bulletedlist":"Ненабројива листа","cancel":"Oткажи","horizontalrule":"Унеси хоризонталну линију","italic":"Курзив","numberedlist":"Набројиву листу","quote":"Block Quote","removeformat":"Уклони форматирање","strike":"Прецртано","subscript":"Индекс","superscript":"Степен","underline":"Подвучено","formatted":"Formatirano","h1":"Heading 1","h2":"Heading 2","normal":"Normal","blockStyles":"Block Styles","inlineStyles":"Inline Styles","objectStyles":"Object Styles","styles":"Стил","cell":"Cell","cellDelete":"Обриши ћелије","cellInsertAfter":"Insert Cell After","cellInsertBefore":"Insert Cell Before","cellMerge":"Спој ћелије","cellMergeDown":"Merge Down","cellMergeRight":"Merge Right","cellSplitHorizontal":"Split Cell Horizontally","cellSplitVertical":"Split Cell Vertically","column":"Column","columnDelete":"Обриши колоне","columnInsertAfter":"Insert Column After","columnInsertBefore":"Insert Column Before","deleteTable":"Обриши таблу","row":"Row","rowDelete":"Обриши редове","rowInsertAfter":"Insert Row After","rowInsertBefore":"Insert Row Before","add":"Add","ariaUpdateNoToolbar":"No toolbars are available","ariaUpdateOneToolbar":"{toolbars} toolbar is available. Press ALT+F10 to focus.","ariaUpdateManyToolbars":"{toolbars} toolbars are available. Press ALT+F10 to focus.","camera":"Insert Image from Camera","cite":"Cite","code":"Code","clearInput":"Clear Input Field","confirm":"Confirm","editLink":"Type or paste link here","image":"Insert Image","link":"Link","removeLink":"Remove link","table":"Insert Table","twitter":"Twitter","headers":"Поглавља","headersBoth":"Оба","headersColumn":"Прва колона","headersNone":"None","headersRow":"Први ред"}; -------------------------------------------------------------------------------- /docs/libs/alloy-editor/lang/alloy-editor/sv.js: -------------------------------------------------------------------------------- 1 | AlloyEditor.Strings = {"alignCenter":"Centrerad","alignJustify":"Justera till marginaler","alignLeft":"Vänster","alignRight":"Höger","bold":"Fet","bulletedlist":"Punktlista","cancel":"Avbryt","horizontalrule":"Infoga horisontal linje","italic":"Kursiv","numberedlist":"Numrerad lista","quote":"Blockcitat","removeformat":"Radera formatering","strike":"Genomstruken","subscript":"Nedsänkta tecken","superscript":"Upphöjda tecken","underline":"Understruken","formatted":"Formaterad","h1":"Rubrik 1","h2":"Rubrik 2","normal":"Normal","blockStyles":"Blockstil","inlineStyles":"Inbäddad stil","objectStyles":"Objektets stil","styles":"Anpassad stil","cell":"Cell","cellDelete":"Radera celler","cellInsertAfter":"Lägg till cell efter","cellInsertBefore":"Lägg till cell före","cellMerge":"Sammanfoga celler","cellMergeDown":"Sammanfoga ner","cellMergeRight":"Sammanfoga höger","cellSplitHorizontal":"Dela cell horisontellt","cellSplitVertical":"Dela cell vertikalt","column":"Kolumn","columnDelete":"Radera kolumn","columnInsertAfter":"Lägg till kolumn efter","columnInsertBefore":"Lägg till kolumn före","deleteTable":"Radera tabell","row":"Rad","rowDelete":"Radera rad","rowInsertAfter":"Lägg till rad efter","rowInsertBefore":"Lägg till rad före","add":"Add","ariaUpdateNoToolbar":"No toolbars are available","ariaUpdateOneToolbar":"{toolbars} toolbar is available. Press ALT+F10 to focus.","ariaUpdateManyToolbars":"{toolbars} toolbars are available. Press ALT+F10 to focus.","camera":"Insert Image from Camera","cite":"Cite","code":"Code","clearInput":"Clear Input Field","confirm":"Confirm","editLink":"Type or paste link here","image":"Insert Image","link":"Link","removeLink":"Remove link","table":"Insert Table","twitter":"Twitter","headers":"Rubriker","headersBoth":"Båda","headersColumn":"Första kolumnen","headersNone":"Ingen","headersRow":"Första raden"}; -------------------------------------------------------------------------------- /docs/libs/alloy-editor/lang/alloy-editor/th.js: -------------------------------------------------------------------------------- 1 | AlloyEditor.Strings = {"alignCenter":"กึ่งกลาง","alignJustify":"நியாயப்படுத்தவும்","alignLeft":"ชิดซ้าย","alignRight":"ชิดขวา","bold":"ตัวหนา","bulletedlist":"ลำดับรายการแบบสัญลักษณ์","cancel":"ยกเลิก","horizontalrule":"แทรกเส้นคั่นบรรทัด","italic":"ตัวเอียง","numberedlist":"ลำดับรายการแบบตัวเลข","quote":"Block Quote","removeformat":"ล้างรูปแบบ","strike":"ตัวขีดเส้นทับ","subscript":"ตัวห้อย","superscript":"ตัวยก","underline":"ตัวขีดเส้นใต้","formatted":"Formatted","h1":"Heading 1","h2":"Heading 2","normal":"Normal","blockStyles":"Block Styles","inlineStyles":"Inline Styles","objectStyles":"Object Styles","styles":"ลักษณะ","cell":"ช่องตาราง","cellDelete":"ลบช่อง","cellInsertAfter":"Insert Cell After","cellInsertBefore":"Insert Cell Before","cellMerge":"ผสานช่อง","cellMergeDown":"Merge Down","cellMergeRight":"Merge Right","cellSplitHorizontal":"Split Cell Horizontally","cellSplitVertical":"Split Cell Vertically","column":"คอลัมน์","columnDelete":"ลบสดมน์","columnInsertAfter":"Insert Column After","columnInsertBefore":"Insert Column Before","deleteTable":"ลบตาราง","row":"แถว","rowDelete":"ลบแถว","rowInsertAfter":"Insert Row After","rowInsertBefore":"Insert Row Before","add":"Add","ariaUpdateNoToolbar":"No toolbars are available","ariaUpdateOneToolbar":"{toolbars} toolbar is available. Press ALT+F10 to focus.","ariaUpdateManyToolbars":"{toolbars} toolbars are available. Press ALT+F10 to focus.","camera":"Insert Image from Camera","cite":"Cite","code":"Code","clearInput":"Clear Input Field","confirm":"Confirm","editLink":"Type or paste link here","image":"Insert Image","link":"Link","removeLink":"Remove link","table":"Insert Table","twitter":"Twitter","headers":"ส่วนหัว","headersBoth":"ทั้งสองอย่าง","headersColumn":"คอลัมน์แรก","headersNone":"None","headersRow":"แถวแรก"}; -------------------------------------------------------------------------------- /docs/libs/alloy-editor/lang/alloy-editor/tr.js: -------------------------------------------------------------------------------- 1 | AlloyEditor.Strings = {"alignCenter":"Ortala","alignJustify":"İki Kenara Yaslanmış","alignLeft":"Sol","alignRight":"Sağ","bold":"Kalın","bulletedlist":"Simgeli Liste","cancel":"İptal","horizontalrule":"Yatay Satır Ekle","italic":"İtalik","numberedlist":"Numaralı Liste","quote":"Blok Oluştur","removeformat":"Biçimi Kaldır","strike":"Üstü Çizgili","subscript":"Alt Simge","superscript":"Üst Simge","underline":"Altı Çizgili","formatted":"Biçimli","h1":"Başlık 1","h2":"Başlık 2","normal":"Normal","blockStyles":"Blok Stilleri","inlineStyles":"Inline Stilleri","objectStyles":"Nesne Stilleri","styles":"Biçem","cell":"Hücre","cellDelete":"Hücre Sil","cellInsertAfter":"Hücre Ekle - Sonra","cellInsertBefore":"Hücre Ekle - Önce","cellMerge":"Hücreleri Birleştir","cellMergeDown":"Birleştir - Aşağıdaki İle ","cellMergeRight":"Birleştir - Sağdaki İle ","cellSplitHorizontal":"Hücreyi Yatay Böl","cellSplitVertical":"Hücreyi Dikey Böl","column":"Sütun","columnDelete":"Sütun Sil","columnInsertAfter":"Kolon Ekle - Sonra","columnInsertBefore":"Kolon Ekle - Önce","deleteTable":"Tabloyu Sil","row":"Satır","rowDelete":"Satır Sil","rowInsertAfter":"Satır Ekle - Sonra","rowInsertBefore":"Satır Ekle - Önce","add":"Add","ariaUpdateNoToolbar":"No toolbars are available","ariaUpdateOneToolbar":"{toolbars} toolbar is available. Press ALT+F10 to focus.","ariaUpdateManyToolbars":"{toolbars} toolbars are available. Press ALT+F10 to focus.","camera":"Insert Image from Camera","cite":"Cite","code":"Code","clearInput":"Clear Input Field","confirm":"Confirm","editLink":"Type or paste link here","image":"Insert Image","link":"Link","removeLink":"Remove link","table":"Insert Table","twitter":"Twitter","headers":"Başlıklar","headersBoth":"Her İkisi","headersColumn":"İlk Sütun","headersNone":"Yok","headersRow":"İlk Satır"}; -------------------------------------------------------------------------------- /docs/libs/alloy-editor/lang/alloy-editor/vi.js: -------------------------------------------------------------------------------- 1 | AlloyEditor.Strings = {"alignCenter":"Giữa","alignJustify":"Sắp chữ","alignLeft":"Trái","alignRight":"Phải","bold":"Đậm","bulletedlist":"Chèn/Xoá Danh sách không thứ tự","cancel":"Bỏ qua","horizontalrule":"Chèn đường phân cách ngang","italic":"Nghiêng","numberedlist":"Chèn/Xoá Danh sách có thứ tự","quote":"Khối trích dẫn","removeformat":"Xoá định dạng","strike":"Gạch xuyên ngang","subscript":"Chỉ số dưới","superscript":"Chỉ số trên","underline":"Gạch chân","formatted":"Đã thiết lập","h1":"Heading 1","h2":"Heading 2","normal":"Bình thường (P)","blockStyles":"Kiểu khối","inlineStyles":"Kiểu trực tiếp","objectStyles":"Kiểu đối tượng","styles":"Kiểu","cell":"Ô","cellDelete":"Xoá ô","cellInsertAfter":"Chèn ô Phía sau","cellInsertBefore":"Chèn ô Phía trước","cellMerge":"Kết hợp ô","cellMergeDown":"Kết hợp xuống dưới","cellMergeRight":"Kết hợp sang phải","cellSplitHorizontal":"Phân tách ô theo chiều ngang","cellSplitVertical":"Phân tách ô theo chiều dọc","column":"Cột","columnDelete":"Xoá cột","columnInsertAfter":"Chèn cột phía sau","columnInsertBefore":"Chèn cột phía trước","deleteTable":"Xóa bảng","row":"Hàng","rowDelete":"Xoá hàng","rowInsertAfter":"Chèn hàng phía sau","rowInsertBefore":"Chèn hàng phía trước","add":"Add","ariaUpdateNoToolbar":"No toolbars are available","ariaUpdateOneToolbar":"{toolbars} toolbar is available. Press ALT+F10 to focus.","ariaUpdateManyToolbars":"{toolbars} toolbars are available. Press ALT+F10 to focus.","camera":"Insert Image from Camera","cite":"Cite","code":"Code","clearInput":"Clear Input Field","confirm":"Confirm","editLink":"Type or paste link here","image":"Insert Image","link":"Link","removeLink":"Remove link","table":"Insert Table","twitter":"Twitter","headers":"Đầu đề","headersBoth":"Cả hai","headersColumn":"Cột đầu tiên","headersNone":"Không có","headersRow":"Hàng đầu tiên"}; -------------------------------------------------------------------------------- /docs/libs/alloy-editor/lang/alloy-editor/zh-cn.js: -------------------------------------------------------------------------------- 1 | AlloyEditor.Strings = {"alignCenter":"居中","alignJustify":"两端对齐","alignLeft":"左对齐","alignRight":"右对齐","bold":"加粗","bulletedlist":"项目列表","cancel":"取消","horizontalrule":"插入水平线","italic":"倾斜","numberedlist":"编号列表","quote":"块引用","removeformat":"清除格式","strike":"删除线","subscript":"下标","superscript":"上标","underline":"下划线","formatted":"已编排格式","h1":"标题 1","h2":"标题 2","normal":"普通","blockStyles":"块级元素样式","inlineStyles":"内联元素样式","objectStyles":"对象元素样式","styles":"样式","cell":"单元格","cellDelete":"删除单元格","cellInsertAfter":"在右侧插入单元格","cellInsertBefore":"在左侧插入单元格","cellMerge":"合并单元格","cellMergeDown":"向下合并单元格","cellMergeRight":"向右合并单元格","cellSplitHorizontal":"水平拆分单元格","cellSplitVertical":"垂直拆分单元格","column":"列","columnDelete":"删除列","columnInsertAfter":"在右侧插入列","columnInsertBefore":"在左侧插入列","deleteTable":"删除表格","row":"行","rowDelete":"删除行","rowInsertAfter":"在下方插入行","rowInsertBefore":"在上方插入行","add":"Add","ariaUpdateNoToolbar":"No toolbars are available","ariaUpdateOneToolbar":"{toolbars} toolbar is available. Press ALT+F10 to focus.","ariaUpdateManyToolbars":"{toolbars} toolbars are available. Press ALT+F10 to focus.","camera":"Insert Image from Camera","cite":"Cite","code":"Code","clearInput":"Clear Input Field","confirm":"Confirm","editLink":"Type or paste link here","image":"Insert Image","link":"Link","removeLink":"Remove link","table":"Insert Table","twitter":"Twitter","headers":"标题单元格","headersBoth":"第一列和第一行","headersColumn":"第一列","headersNone":"无","headersRow":"第一行"}; -------------------------------------------------------------------------------- /docs/libs/alloy-editor/lang/alloy-editor/zh.js: -------------------------------------------------------------------------------- 1 | AlloyEditor.Strings = {"alignCenter":"置中對齊","alignJustify":"左右對齊","alignLeft":"靠左對齊","alignRight":"靠右對齊","bold":"粗體","bulletedlist":"插入/移除項目符號清單","cancel":"取消","horizontalrule":"插入水平線","italic":"斜體","numberedlist":"插入/移除編號清單清單","quote":"引用段落","removeformat":"移除格式","strike":"刪除線","subscript":"下標","superscript":"上標","underline":"底線","formatted":"格式設定","h1":"標題 1","h2":"標題 2","normal":"標準","blockStyles":"區塊樣式","inlineStyles":"內嵌樣式","objectStyles":"物件樣式","styles":"樣式","cell":"儲存格","cellDelete":"刪除儲存格","cellInsertAfter":"後方插入儲存格","cellInsertBefore":"前方插入儲存格","cellMerge":"合併儲存格","cellMergeDown":"向下合併","cellMergeRight":"向右合併","cellSplitHorizontal":"水平分割儲存格","cellSplitVertical":"垂直分割儲存格","column":"行","columnDelete":"刪除行","columnInsertAfter":"右方插入行","columnInsertBefore":"左方插入行","deleteTable":"刪除表格","row":"列","rowDelete":"刪除列","rowInsertAfter":"下方插入列","rowInsertBefore":"上方插入列","add":"Add","ariaUpdateNoToolbar":"No toolbars are available","ariaUpdateOneToolbar":"{toolbars} toolbar is available. Press ALT+F10 to focus.","ariaUpdateManyToolbars":"{toolbars} toolbars are available. Press ALT+F10 to focus.","camera":"Insert Image from Camera","cite":"Cite","code":"Code","clearInput":"Clear Input Field","confirm":"Confirm","editLink":"Type or paste link here","image":"Insert Image","link":"Link","removeLink":"Remove link","table":"Insert Table","twitter":"Twitter","headers":"頁首","headersBoth":"同時","headersColumn":"第一行","headersNone":"無","headersRow":"第一列"}; -------------------------------------------------------------------------------- /docs/libs/alloy-editor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /docs/libs/alloy-editor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/libs/alloy-editor/plugins/icons.png -------------------------------------------------------------------------------- /docs/libs/alloy-editor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/libs/alloy-editor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /docs/libs/alloy-editor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/libs/alloy-editor/skins/moono/icons.png -------------------------------------------------------------------------------- /docs/libs/alloy-editor/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/libs/alloy-editor/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /docs/libs/alloy-editor/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/libs/alloy-editor/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /docs/libs/alloy-editor/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/libs/alloy-editor/skins/moono/images/close.png -------------------------------------------------------------------------------- /docs/libs/alloy-editor/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/libs/alloy-editor/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /docs/libs/alloy-editor/skins/moono/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/libs/alloy-editor/skins/moono/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /docs/libs/alloy-editor/skins/moono/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/libs/alloy-editor/skins/moono/images/hidpi/lock.png -------------------------------------------------------------------------------- /docs/libs/alloy-editor/skins/moono/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/libs/alloy-editor/skins/moono/images/hidpi/refresh.png -------------------------------------------------------------------------------- /docs/libs/alloy-editor/skins/moono/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/libs/alloy-editor/skins/moono/images/lock-open.png -------------------------------------------------------------------------------- /docs/libs/alloy-editor/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/libs/alloy-editor/skins/moono/images/lock.png -------------------------------------------------------------------------------- /docs/libs/alloy-editor/skins/moono/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/libs/alloy-editor/skins/moono/images/refresh.png -------------------------------------------------------------------------------- /docs/libs/alloy-editor/skins/moono/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/docs/libs/alloy-editor/skins/moono/images/spinner.gif -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- 1 | { 2 | "packages": ["marketplace/*"], 3 | "version": "0.0.0" 4 | } 5 | -------------------------------------------------------------------------------- /marketplace/Readme.md: -------------------------------------------------------------------------------- 1 | # Marketplace extensions 2 | 3 | These extensions are production quality and ready to use out of the box. They used to be published to the public Contentful marketplace. 4 | 5 | ## Development 6 | 7 | We do not accept extensions for our marketplace anymore. Consider [writing an app](https://www.contentful.com/developers/docs/extensibility/app-framework/tutorial/) instead and [reach out to us](https://www.contentful.com/contact/become-partner/) to get your app in the marketplace. 8 | -------------------------------------------------------------------------------- /marketplace/gatsby-preview/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | [ 4 | "@babel/preset-env", 5 | { 6 | "useBuiltIns": false, 7 | } 8 | ], 9 | [ 10 | "@babel/preset-react", 11 | { 12 | "useBuiltIns": true 13 | } 14 | ] 15 | ], 16 | "plugins": [ 17 | [ 18 | "@babel/plugin-proposal-class-properties", 19 | { 20 | "loose": true 21 | } 22 | ], 23 | [ 24 | "@babel/plugin-transform-runtime", 25 | { 26 | "corejs": false, 27 | "helpers": false, 28 | "regenerator": true 29 | } 30 | ] 31 | ] 32 | } 33 | -------------------------------------------------------------------------------- /marketplace/gatsby-preview/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: [ 3 | require.resolve('@contentful/eslint-config-extension'), 4 | require.resolve('@contentful/eslint-config-extension/jest'), 5 | require.resolve('@contentful/eslint-config-extension/jsx-a11y'), 6 | require.resolve('@contentful/eslint-config-extension/react') 7 | ], 8 | globals: { 9 | module: true 10 | } 11 | }; 12 | -------------------------------------------------------------------------------- /marketplace/gatsby-preview/.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # dotenv environment variables file 9 | .env 10 | .contentfulrc.json 11 | 12 | # parcel-bundler cache 13 | .cache 14 | 15 | # Dependency directories 16 | node_modules/ 17 | 18 | # Build 19 | build/** 20 | !/build/index.html -------------------------------------------------------------------------------- /marketplace/gatsby-preview/assets/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/marketplace/gatsby-preview/assets/demo.gif -------------------------------------------------------------------------------- /marketplace/gatsby-preview/assets/demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/marketplace/gatsby-preview/assets/demo.mp4 -------------------------------------------------------------------------------- /marketplace/gatsby-preview/assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/extensions/33bc7678394b6eeb09d450b1680b71a8e2111187/marketplace/gatsby-preview/assets/screenshot.png -------------------------------------------------------------------------------- /marketplace/gatsby-preview/extension.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "gatsby-preview", 3 | "name": "Gatsby Preview", 4 | "srcdoc": "./build/index.html", 5 | "parameters": { 6 | "installation": [ 7 | { 8 | "id": "previewUrl", 9 | "type": "Symbol", 10 | "name": "The URL of your Gatsby Cloud site", 11 | "required": true 12 | }, 13 | { 14 | "id": "webhookUrl", 15 | "type": "Symbol", 16 | "name": "The URL of the webhook to rebuild your Gatsby Cloud site" 17 | }, 18 | { 19 | "id": "authToken", 20 | "type": "Symbol", 21 | "name": "Optional Authentication token for private Gatsby Cloud sites" 22 | } 23 | ] 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /marketplace/gatsby-preview/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "gatsby-preview", 3 | "version": "1.0.0", 4 | "private": true, 5 | "devDependencies": { 6 | "@babel/core": "7.3.4", 7 | "@babel/plugin-proposal-class-properties": "7.3.4", 8 | "@babel/plugin-transform-runtime": "7.3.4", 9 | "@babel/preset-env": "7.3.4", 10 | "@babel/preset-react": "7.0.0", 11 | "@contentful/contentful-extension-scripts": "^0.14.0", 12 | "@testing-library/react": "^8.0.7", 13 | "contentful-cli": "^0.36.0" 14 | }, 15 | "dependencies": { 16 | "@contentful/forma-36-fcss": "^0.0.27", 17 | "@contentful/forma-36-react-components": "^3.15.14", 18 | "@contentful/forma-36-tokens": "^0.4.1", 19 | "@gatsby-cloud-pkg/gatsby-cms-extension-base": "0.0.16", 20 | "contentful-ui-extensions-sdk": "^3.10.6", 21 | "emotion": "10.0.14", 22 | "prop-types": "15.7.2", 23 | "react": "16.8.6", 24 | "react-dom": "16.8.6" 25 | }, 26 | "scripts": { 27 | "start": "contentful-extension-scripts start --serve-only", 28 | "build": "contentful-extension-scripts build", 29 | "deploy": "npm run build && contentful extension update --force", 30 | "login": "contentful login", 31 | "configure": "contentful space use && contentful space environment use", 32 | "logout": "contentful logout", 33 | "help": "contentful-extension-scripts help", 34 | "test:watch": "TZ=UTC contentful-extension-scripts test --env=jsdom --watch", 35 | "test": "TZ=UTC contentful-extension-scripts test --env=jsdom" 36 | }, 37 | "browserslist": [ 38 | "last 5 Chrome version", 39 | "> 1%", 40 | "not ie <= 11" 41 | ] 42 | } 43 | -------------------------------------------------------------------------------- /marketplace/gatsby-preview/src/GatsbyIcon.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | export default function GatsbyIcon() { 4 | return ( 5 | 15 | ); 16 | } 17 | -------------------------------------------------------------------------------- /marketplace/gatsby-preview/src/index.css: -------------------------------------------------------------------------------- 1 | html, 2 | body { 3 | margin: 0; 4 | padding: 0; 5 | border: 0; 6 | font-size: 100%; 7 | font: inherit; 8 | vertical-align: baseline; 9 | } 10 | 11 | .preview-button { 12 | height: 2.5rem; 13 | padding: 0 !important; 14 | font-size: 0.875rem !important; 15 | font-weight: 400 !important; 16 | font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol!important; 17 | } 18 | .preview-button:focus { 19 | outline: 0; 20 | border: 1px solid #f1defa; 21 | } 22 | .powered-by { 23 | margin-bottom: 5%; 24 | } 25 | .powered-by p { 26 | font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol!important; 27 | margin-bottom: inherit; 28 | } 29 | .flexcontainer { 30 | display: flex; 31 | flex-direction: column; 32 | } 33 | -------------------------------------------------------------------------------- /marketplace/gatsby-preview/src/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /marketplace/gatsby-preview/src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { render } from 'react-dom'; 3 | 4 | import { init, locations } from 'contentful-ui-extensions-sdk'; 5 | 6 | import Sidebar from './Sidebar'; 7 | import AppConfig from './AppConfig'; 8 | 9 | import '@contentful/forma-36-react-components/dist/styles.css'; 10 | import '@contentful/forma-36-fcss/dist/styles.css'; 11 | import './index.css'; 12 | 13 | init(sdk => { 14 | const root = document.getElementById('root'); 15 | 16 | if (sdk.location.is(locations.LOCATION_ENTRY_SIDEBAR)) { 17 | render(
12 | Video ID
13 |